/**
 * Import Font URL
 * Google Font Library
 * Only used if not called in head
 */
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700,400italic");
/**
 * Vendor style importing
 * Any frameworks, javascript plugins, etc
 * Bootstrap, Foundation, Select2, etc
 */
@import url(../fonts/fontello/css/mmw.css);
@import url(../fonts/fontello/css/animation.css);
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 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.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s; }

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

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

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

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

@keyframes flash {
  0%, 50%, 100% {
    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 {
  0% {
    -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); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes pulse {
  0% {
    -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); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

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

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

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

@-webkit-keyframes shake {
  0%, 100% {
    -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 {
  0%, 100% {
    -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 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); }
  100% {
    -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); }
  100% {
    -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 {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  100% {
    -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 {
  0% {
    -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); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@keyframes wobble {
  0% {
    -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); }
  100% {
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

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

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -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); }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -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); }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

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

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.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); }
  100% {
    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); }
  100% {
    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); }
  100% {
    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); }
  100% {
    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); }
  100% {
    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); }
  100% {
    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); }
  100% {
    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); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

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

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

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

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

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

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

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

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

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

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

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

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

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

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

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

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

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

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

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

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

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

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

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

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

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

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

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

@keyframes fadeOutDownBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

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

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

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

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

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

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

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

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

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

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

@keyframes fadeOutRightBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

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

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

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

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

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

@keyframes fadeOutUpBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

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

@-webkit-keyframes flip {
  0% {
    -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(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

@keyframes flip {
  0% {
    -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(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  100% {
    -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 {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-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-transition-timing-function: ease-in;
    transition-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); }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-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-transition-timing-function: ease-in;
    transition-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); }
  100% {
    -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 {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-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-transition-timing-function: ease-in;
    transition-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); }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-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-transition-timing-function: ease-in;
    transition-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); }
  100% {
    -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 {
  0% {
    -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; }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutX {
  0% {
    -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; }
  100% {
    -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 {
  0% {
    -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; }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutY {
  0% {
    -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; }
  100% {
    -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 {
  0% {
    -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; }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes lightSpeedIn {
  0% {
    -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; }
  100% {
    -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 {
  0% {
    opacity: 1; }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

@keyframes lightSpeedOut {
  0% {
    opacity: 1; }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  100% {
    -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; }
  100% {
    -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; }
  100% {
    -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 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  100% {
    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 {
  0% {
    opacity: 1; }
  100% {
    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 {
  0% {
    opacity: 1; }
  100% {
    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 {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

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

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

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  100% {
    opacity: 0; } }

@keyframes zoomOut {
  0% {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  100% {
    opacity: 0; } }

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

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }

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

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }

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

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden],
template {
  display: none; }

a {
  background-color: transparent; }

a:active,
a:hover {
  outline: 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

mark {
  background: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 1em 40px; }

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

pre {
  overflow: auto; }

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled],
html input[disabled] {
  cursor: default; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input {
  line-height: normal; }

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: ""; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  select {
    background: #fff !important; }
  .navbar {
    display: none; }
  .btn > .caret, .downloadcsv-link > .caret,
  .dropup > .btn > .caret,
  .dropup > .downloadcsv-link > .caret {
    border-top-color: #000 !important; }
  .label {
    border: 1px solid #000; }
  .table {
    border-collapse: collapse !important; }
    .table td,
    .table th {
      background-color: #fff !important; }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important; } }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857;
  color: #333333;
  background-color: #fff; }

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

a {
  color: #337ab7;
  text-decoration: none; }
  a:hover, a:focus {
    color: #23527c;
    text-decoration: underline; }
  a:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }

figure {
  margin: 0; }

img {
  vertical-align: middle; }

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto; }

.img-rounded {
  border-radius: 6px; }

.img-thumbnail {
  padding: 4px;
  line-height: 1.42857;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto; }

.img-circle {
  border-radius: 50%; }

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

[role="button"] {
  cursor: pointer; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit; }
  h1 small,
  h1 .small, h2 small,
  h2 .small, h3 small,
  h3 .small, h4 small,
  h4 .small, h5 small,
  h5 .small, h6 small,
  h6 .small,
  .h1 small,
  .h1 .small, .h2 small,
  .h2 .small, .h3 small,
  .h3 .small, .h4 small,
  .h4 .small, .h5 small,
  .h5 .small, .h6 small,
  .h6 .small {
    font-weight: normal;
    line-height: 1;
    color: #777777; }

h1, .h1,
h2, .h2,
h3, .h3 {
  margin-top: 20px;
  margin-bottom: 10px; }
  h1 small,
  h1 .small, .h1 small,
  .h1 .small,
  h2 small,
  h2 .small, .h2 small,
  .h2 .small,
  h3 small,
  h3 .small, .h3 small,
  .h3 .small {
    font-size: 65%; }

h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 10px;
  margin-bottom: 10px; }
  h4 small,
  h4 .small, .h4 small,
  .h4 .small,
  h5 small,
  h5 .small, .h5 small,
  .h5 .small,
  h6 small,
  h6 .small, .h6 small,
  .h6 .small {
    font-size: 75%; }

h1, .h1 {
  font-size: 36px; }

h2, .h2 {
  font-size: 30px; }

h3, .h3 {
  font-size: 24px; }

h4, .h4 {
  font-size: 18px; }

h5, .h5 {
  font-size: 14px; }

h6, .h6 {
  font-size: 12px; }

p {
  margin: 0 0 10px; }

.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4; }
  @media (min-width: 768px) {
    .lead {
      font-size: 21px; } }

small,
.small {
  font-size: 85%; }

mark,
.mark {
  background-color: #fcf8e3;
  padding: .2em; }

.text-left {
  text-align: left; }

.text-right {
  text-align: right; }

.text-center {
  text-align: center; }

.text-justify {
  text-align: justify; }

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

.text-lowercase {
  text-transform: lowercase; }

.text-uppercase, .initialism {
  text-transform: uppercase; }

.text-capitalize {
  text-transform: capitalize; }

.text-muted {
  color: #777777; }

.text-primary {
  color: #337ab7; }

a.text-primary:hover {
  color: #286090; }

.text-success {
  color: #3c763d; }

a.text-success:hover {
  color: #2b542c; }

.text-info {
  color: #31708f; }

a.text-info:hover {
  color: #245269; }

.text-warning {
  color: #8a6d3b; }

a.text-warning:hover {
  color: #66512c; }

.text-danger {
  color: #a94442; }

a.text-danger:hover {
  color: #843534; }

.bg-primary {
  color: #fff; }

.bg-primary {
  background-color: #337ab7; }

a.bg-primary:hover {
  background-color: #286090; }

.bg-success {
  background-color: #dff0d8; }

a.bg-success:hover {
  background-color: #c1e2b3; }

.bg-info {
  background-color: #d9edf7; }

a.bg-info:hover {
  background-color: #afd9ee; }

.bg-warning {
  background-color: #fcf8e3; }

a.bg-warning:hover {
  background-color: #f7ecb5; }

.bg-danger {
  background-color: #f2dede; }

a.bg-danger:hover {
  background-color: #e4b9b9; }

.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee; }

ul,
ol {
  margin-top: 0;
  margin-bottom: 10px; }
  ul ul,
  ul ol,
  ol ul,
  ol ol {
    margin-bottom: 0; }

.list-unstyled {
  padding-left: 0;
  list-style: none; }

.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px; }
  .list-inline > li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px; }

dl {
  margin-top: 0;
  margin-bottom: 20px; }

dt,
dd {
  line-height: 1.42857; }

dt {
  font-weight: bold; }

dd {
  margin-left: 0; }

.dl-horizontal dd:before, .dl-horizontal dd:after {
  content: " ";
  display: table; }

.dl-horizontal dd:after {
  clear: both; }

@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
  .dl-horizontal dd {
    margin-left: 180px; } }

abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777777; }

.initialism {
  font-size: 90%; }

blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee; }
  blockquote p:last-child,
  blockquote ul:last-child,
  blockquote ol:last-child {
    margin-bottom: 0; }
  blockquote footer,
  blockquote small,
  blockquote .small {
    display: block;
    font-size: 80%;
    line-height: 1.42857;
    color: #777777; }
    blockquote footer:before,
    blockquote small:before,
    blockquote .small:before {
      content: '\2014 \00A0'; }

.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
  text-align: right; }
  .blockquote-reverse footer:before,
  .blockquote-reverse small:before,
  .blockquote-reverse .small:before,
  blockquote.pull-right footer:before,
  blockquote.pull-right small:before,
  blockquote.pull-right .small:before {
    content: ''; }
  .blockquote-reverse footer:after,
  .blockquote-reverse small:after,
  .blockquote-reverse .small:after,
  blockquote.pull-right footer:after,
  blockquote.pull-right small:after,
  blockquote.pull-right .small:after {
    content: '\00A0 \2014'; }

address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857; }

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }
  .container:before, .container:after {
    content: " ";
    display: table; }
  .container:after {
    clear: both; }
  @media (min-width: 768px) {
    .container {
      width: 750px; } }
  @media (min-width: 992px) {
    .container {
      width: 970px; } }
  @media (min-width: 1200px) {
    .container {
      width: 1170px; } }

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }
  .container-fluid:before, .container-fluid:after {
    content: " ";
    display: table; }
  .container-fluid:after {
    clear: both; }

.row {
  margin-left: -15px;
  margin-right: -15px; }
  .row:before, .row:after {
    content: " ";
    display: table; }
  .row:after {
    clear: both; }

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px; }

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left; }

.col-xs-1 {
  width: 8.33333%; }

.col-xs-2 {
  width: 16.66667%; }

.col-xs-3 {
  width: 25%; }

.col-xs-4 {
  width: 33.33333%; }

.col-xs-5 {
  width: 41.66667%; }

.col-xs-6 {
  width: 50%; }

.col-xs-7 {
  width: 58.33333%; }

.col-xs-8 {
  width: 66.66667%; }

.col-xs-9 {
  width: 75%; }

.col-xs-10 {
  width: 83.33333%; }

.col-xs-11 {
  width: 91.66667%; }

.col-xs-12 {
  width: 100%; }

.col-xs-pull-0 {
  right: auto; }

.col-xs-pull-1 {
  right: 8.33333%; }

.col-xs-pull-2 {
  right: 16.66667%; }

.col-xs-pull-3 {
  right: 25%; }

.col-xs-pull-4 {
  right: 33.33333%; }

.col-xs-pull-5 {
  right: 41.66667%; }

.col-xs-pull-6 {
  right: 50%; }

.col-xs-pull-7 {
  right: 58.33333%; }

.col-xs-pull-8 {
  right: 66.66667%; }

.col-xs-pull-9 {
  right: 75%; }

.col-xs-pull-10 {
  right: 83.33333%; }

.col-xs-pull-11 {
  right: 91.66667%; }

.col-xs-pull-12 {
  right: 100%; }

.col-xs-push-0 {
  left: auto; }

.col-xs-push-1 {
  left: 8.33333%; }

.col-xs-push-2 {
  left: 16.66667%; }

.col-xs-push-3 {
  left: 25%; }

.col-xs-push-4 {
  left: 33.33333%; }

.col-xs-push-5 {
  left: 41.66667%; }

.col-xs-push-6 {
  left: 50%; }

.col-xs-push-7 {
  left: 58.33333%; }

.col-xs-push-8 {
  left: 66.66667%; }

.col-xs-push-9 {
  left: 75%; }

.col-xs-push-10 {
  left: 83.33333%; }

.col-xs-push-11 {
  left: 91.66667%; }

.col-xs-push-12 {
  left: 100%; }

.col-xs-offset-0 {
  margin-left: 0%; }

.col-xs-offset-1 {
  margin-left: 8.33333%; }

.col-xs-offset-2 {
  margin-left: 16.66667%; }

.col-xs-offset-3 {
  margin-left: 25%; }

.col-xs-offset-4 {
  margin-left: 33.33333%; }

.col-xs-offset-5 {
  margin-left: 41.66667%; }

.col-xs-offset-6 {
  margin-left: 50%; }

.col-xs-offset-7 {
  margin-left: 58.33333%; }

.col-xs-offset-8 {
  margin-left: 66.66667%; }

.col-xs-offset-9 {
  margin-left: 75%; }

.col-xs-offset-10 {
  margin-left: 83.33333%; }

.col-xs-offset-11 {
  margin-left: 91.66667%; }

.col-xs-offset-12 {
  margin-left: 100%; }

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left; }
  .col-sm-1 {
    width: 8.33333%; }
  .col-sm-2 {
    width: 16.66667%; }
  .col-sm-3 {
    width: 25%; }
  .col-sm-4 {
    width: 33.33333%; }
  .col-sm-5 {
    width: 41.66667%; }
  .col-sm-6 {
    width: 50%; }
  .col-sm-7 {
    width: 58.33333%; }
  .col-sm-8 {
    width: 66.66667%; }
  .col-sm-9 {
    width: 75%; }
  .col-sm-10 {
    width: 83.33333%; }
  .col-sm-11 {
    width: 91.66667%; }
  .col-sm-12 {
    width: 100%; }
  .col-sm-pull-0 {
    right: auto; }
  .col-sm-pull-1 {
    right: 8.33333%; }
  .col-sm-pull-2 {
    right: 16.66667%; }
  .col-sm-pull-3 {
    right: 25%; }
  .col-sm-pull-4 {
    right: 33.33333%; }
  .col-sm-pull-5 {
    right: 41.66667%; }
  .col-sm-pull-6 {
    right: 50%; }
  .col-sm-pull-7 {
    right: 58.33333%; }
  .col-sm-pull-8 {
    right: 66.66667%; }
  .col-sm-pull-9 {
    right: 75%; }
  .col-sm-pull-10 {
    right: 83.33333%; }
  .col-sm-pull-11 {
    right: 91.66667%; }
  .col-sm-pull-12 {
    right: 100%; }
  .col-sm-push-0 {
    left: auto; }
  .col-sm-push-1 {
    left: 8.33333%; }
  .col-sm-push-2 {
    left: 16.66667%; }
  .col-sm-push-3 {
    left: 25%; }
  .col-sm-push-4 {
    left: 33.33333%; }
  .col-sm-push-5 {
    left: 41.66667%; }
  .col-sm-push-6 {
    left: 50%; }
  .col-sm-push-7 {
    left: 58.33333%; }
  .col-sm-push-8 {
    left: 66.66667%; }
  .col-sm-push-9 {
    left: 75%; }
  .col-sm-push-10 {
    left: 83.33333%; }
  .col-sm-push-11 {
    left: 91.66667%; }
  .col-sm-push-12 {
    left: 100%; }
  .col-sm-offset-0 {
    margin-left: 0%; }
  .col-sm-offset-1 {
    margin-left: 8.33333%; }
  .col-sm-offset-2 {
    margin-left: 16.66667%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-4 {
    margin-left: 33.33333%; }
  .col-sm-offset-5 {
    margin-left: 41.66667%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-7 {
    margin-left: 58.33333%; }
  .col-sm-offset-8 {
    margin-left: 66.66667%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-10 {
    margin-left: 83.33333%; }
  .col-sm-offset-11 {
    margin-left: 91.66667%; }
  .col-sm-offset-12 {
    margin-left: 100%; } }

@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left; }
  .col-md-1 {
    width: 8.33333%; }
  .col-md-2 {
    width: 16.66667%; }
  .col-md-3 {
    width: 25%; }
  .col-md-4 {
    width: 33.33333%; }
  .col-md-5 {
    width: 41.66667%; }
  .col-md-6 {
    width: 50%; }
  .col-md-7 {
    width: 58.33333%; }
  .col-md-8 {
    width: 66.66667%; }
  .col-md-9 {
    width: 75%; }
  .col-md-10 {
    width: 83.33333%; }
  .col-md-11 {
    width: 91.66667%; }
  .col-md-12 {
    width: 100%; }
  .col-md-pull-0 {
    right: auto; }
  .col-md-pull-1 {
    right: 8.33333%; }
  .col-md-pull-2 {
    right: 16.66667%; }
  .col-md-pull-3 {
    right: 25%; }
  .col-md-pull-4 {
    right: 33.33333%; }
  .col-md-pull-5 {
    right: 41.66667%; }
  .col-md-pull-6 {
    right: 50%; }
  .col-md-pull-7 {
    right: 58.33333%; }
  .col-md-pull-8 {
    right: 66.66667%; }
  .col-md-pull-9 {
    right: 75%; }
  .col-md-pull-10 {
    right: 83.33333%; }
  .col-md-pull-11 {
    right: 91.66667%; }
  .col-md-pull-12 {
    right: 100%; }
  .col-md-push-0 {
    left: auto; }
  .col-md-push-1 {
    left: 8.33333%; }
  .col-md-push-2 {
    left: 16.66667%; }
  .col-md-push-3 {
    left: 25%; }
  .col-md-push-4 {
    left: 33.33333%; }
  .col-md-push-5 {
    left: 41.66667%; }
  .col-md-push-6 {
    left: 50%; }
  .col-md-push-7 {
    left: 58.33333%; }
  .col-md-push-8 {
    left: 66.66667%; }
  .col-md-push-9 {
    left: 75%; }
  .col-md-push-10 {
    left: 83.33333%; }
  .col-md-push-11 {
    left: 91.66667%; }
  .col-md-push-12 {
    left: 100%; }
  .col-md-offset-0 {
    margin-left: 0%; }
  .col-md-offset-1 {
    margin-left: 8.33333%; }
  .col-md-offset-2 {
    margin-left: 16.66667%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-4 {
    margin-left: 33.33333%; }
  .col-md-offset-5 {
    margin-left: 41.66667%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-7 {
    margin-left: 58.33333%; }
  .col-md-offset-8 {
    margin-left: 66.66667%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-10 {
    margin-left: 83.33333%; }
  .col-md-offset-11 {
    margin-left: 91.66667%; }
  .col-md-offset-12 {
    margin-left: 100%; } }

@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left; }
  .col-lg-1 {
    width: 8.33333%; }
  .col-lg-2 {
    width: 16.66667%; }
  .col-lg-3 {
    width: 25%; }
  .col-lg-4 {
    width: 33.33333%; }
  .col-lg-5 {
    width: 41.66667%; }
  .col-lg-6 {
    width: 50%; }
  .col-lg-7 {
    width: 58.33333%; }
  .col-lg-8 {
    width: 66.66667%; }
  .col-lg-9 {
    width: 75%; }
  .col-lg-10 {
    width: 83.33333%; }
  .col-lg-11 {
    width: 91.66667%; }
  .col-lg-12 {
    width: 100%; }
  .col-lg-pull-0 {
    right: auto; }
  .col-lg-pull-1 {
    right: 8.33333%; }
  .col-lg-pull-2 {
    right: 16.66667%; }
  .col-lg-pull-3 {
    right: 25%; }
  .col-lg-pull-4 {
    right: 33.33333%; }
  .col-lg-pull-5 {
    right: 41.66667%; }
  .col-lg-pull-6 {
    right: 50%; }
  .col-lg-pull-7 {
    right: 58.33333%; }
  .col-lg-pull-8 {
    right: 66.66667%; }
  .col-lg-pull-9 {
    right: 75%; }
  .col-lg-pull-10 {
    right: 83.33333%; }
  .col-lg-pull-11 {
    right: 91.66667%; }
  .col-lg-pull-12 {
    right: 100%; }
  .col-lg-push-0 {
    left: auto; }
  .col-lg-push-1 {
    left: 8.33333%; }
  .col-lg-push-2 {
    left: 16.66667%; }
  .col-lg-push-3 {
    left: 25%; }
  .col-lg-push-4 {
    left: 33.33333%; }
  .col-lg-push-5 {
    left: 41.66667%; }
  .col-lg-push-6 {
    left: 50%; }
  .col-lg-push-7 {
    left: 58.33333%; }
  .col-lg-push-8 {
    left: 66.66667%; }
  .col-lg-push-9 {
    left: 75%; }
  .col-lg-push-10 {
    left: 83.33333%; }
  .col-lg-push-11 {
    left: 91.66667%; }
  .col-lg-push-12 {
    left: 100%; }
  .col-lg-offset-0 {
    margin-left: 0%; }
  .col-lg-offset-1 {
    margin-left: 8.33333%; }
  .col-lg-offset-2 {
    margin-left: 16.66667%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-4 {
    margin-left: 33.33333%; }
  .col-lg-offset-5 {
    margin-left: 41.66667%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-7 {
    margin-left: 58.33333%; }
  .col-lg-offset-8 {
    margin-left: 66.66667%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-10 {
    margin-left: 83.33333%; }
  .col-lg-offset-11 {
    margin-left: 91.66667%; }
  .col-lg-offset-12 {
    margin-left: 100%; } }

table {
  background-color: transparent; }

caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777777;
  text-align: left; }

th {
  text-align: left; }

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px; }
  .table > thead > tr > th,
  .table > thead > tr > td,
  .table > tbody > tr > th,
  .table > tbody > tr > td,
  .table > tfoot > tr > th,
  .table > tfoot > tr > td {
    padding: 8px;
    line-height: 1.42857;
    vertical-align: top;
    border-top: 1px solid #ddd; }
  .table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd; }
  .table > caption + thead > tr:first-child > th,
  .table > caption + thead > tr:first-child > td,
  .table > colgroup + thead > tr:first-child > th,
  .table > colgroup + thead > tr:first-child > td,
  .table > thead:first-child > tr:first-child > th,
  .table > thead:first-child > tr:first-child > td {
    border-top: 0; }
  .table > tbody + tbody {
    border-top: 2px solid #ddd; }
  .table .table {
    background-color: #fff; }

.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 5px; }

.table-bordered {
  border: 1px solid #ddd; }
  .table-bordered > thead > tr > th,
  .table-bordered > thead > tr > td,
  .table-bordered > tbody > tr > th,
  .table-bordered > tbody > tr > td,
  .table-bordered > tfoot > tr > th,
  .table-bordered > tfoot > tr > td {
    border: 1px solid #ddd; }
  .table-bordered > thead > tr > th,
  .table-bordered > thead > tr > td {
    border-bottom-width: 2px; }

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9; }

.table-hover > tbody > tr:hover {
  background-color: #f5f5f5; }

table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column; }

table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell; }

.table > thead > tr > td.active,
.table > thead > tr > th.active,
.table > thead > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5; }

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8; }

.table > thead > tr > td.success,
.table > thead > tr > th.success,
.table > thead > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
  background-color: #dff0d8; }

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6; }

.table > thead > tr > td.info,
.table > thead > tr > th.info,
.table > thead > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th {
  background-color: #d9edf7; }

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3; }

.table > thead > tr > td.warning,
.table > thead > tr > th.warning,
.table > thead > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3; }

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc; }

.table > thead > tr > td.danger,
.table > thead > tr > th.danger,
.table > thead > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
  background-color: #f2dede; }

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc; }

.table-responsive {
  overflow-x: auto;
  min-height: 0.01%; }
  @media screen and (max-width: 767px) {
    .table-responsive {
      width: 100%;
      margin-bottom: 15px;
      overflow-y: hidden;
      -ms-overflow-style: -ms-autohiding-scrollbar;
      border: 1px solid #ddd; }
      .table-responsive > .table {
        margin-bottom: 0; }
        .table-responsive > .table > thead > tr > th,
        .table-responsive > .table > thead > tr > td,
        .table-responsive > .table > tbody > tr > th,
        .table-responsive > .table > tbody > tr > td,
        .table-responsive > .table > tfoot > tr > th,
        .table-responsive > .table > tfoot > tr > td {
          white-space: nowrap; }
      .table-responsive > .table-bordered {
        border: 0; }
        .table-responsive > .table-bordered > thead > tr > th:first-child,
        .table-responsive > .table-bordered > thead > tr > td:first-child,
        .table-responsive > .table-bordered > tbody > tr > th:first-child,
        .table-responsive > .table-bordered > tbody > tr > td:first-child,
        .table-responsive > .table-bordered > tfoot > tr > th:first-child,
        .table-responsive > .table-bordered > tfoot > tr > td:first-child {
          border-left: 0; }
        .table-responsive > .table-bordered > thead > tr > th:last-child,
        .table-responsive > .table-bordered > thead > tr > td:last-child,
        .table-responsive > .table-bordered > tbody > tr > th:last-child,
        .table-responsive > .table-bordered > tbody > tr > td:last-child,
        .table-responsive > .table-bordered > tfoot > tr > th:last-child,
        .table-responsive > .table-bordered > tfoot > tr > td:last-child {
          border-right: 0; }
        .table-responsive > .table-bordered > tbody > tr:last-child > th,
        .table-responsive > .table-bordered > tbody > tr:last-child > td,
        .table-responsive > .table-bordered > tfoot > tr:last-child > th,
        .table-responsive > .table-bordered > tfoot > tr:last-child > td {
          border-bottom: 0; } }

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0; }

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5; }

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold; }

input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal; }

input[type="file"] {
  display: block; }

input[type="range"] {
  display: block;
  width: 100%; }

select[multiple],
select[size] {
  height: auto; }

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857;
  color: #555555; }

.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; }
  .form-control:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }
  .form-control::-moz-placeholder {
    color: #999;
    opacity: 1; }
  .form-control:-ms-input-placeholder {
    color: #999; }
  .form-control::-webkit-input-placeholder {
    color: #999; }
  .form-control[disabled], .form-control[readonly],
  fieldset[disabled] .form-control {
    background-color: #eeeeee;
    opacity: 1; }
  .form-control[disabled],
  fieldset[disabled] .form-control {
    cursor: not-allowed; }

textarea.form-control {
  height: auto; }

input[type="search"] {
  -webkit-appearance: none; }

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"],
  input[type="time"],
  input[type="datetime-local"],
  input[type="month"] {
    line-height: 34px; }
    input[type="date"].input-sm, .input-group-sm > input.form-control[type="date"],
    .input-group-sm > input.input-group-addon[type="date"],
    .input-group-sm > .input-group-btn > input.btn[type="date"],
    .input-group-sm > .input-group-btn > input.downloadcsv-link[type="date"],
    .input-group-sm input[type="date"],
    input[type="time"].input-sm,
    .input-group-sm > input.form-control[type="time"],
    .input-group-sm > input.input-group-addon[type="time"],
    .input-group-sm > .input-group-btn > input.btn[type="time"],
    .input-group-sm > .input-group-btn > input.downloadcsv-link[type="time"],
    .input-group-sm
    input[type="time"],
    input[type="datetime-local"].input-sm,
    .input-group-sm > input.form-control[type="datetime-local"],
    .input-group-sm > input.input-group-addon[type="datetime-local"],
    .input-group-sm > .input-group-btn > input.btn[type="datetime-local"],
    .input-group-sm > .input-group-btn > input.downloadcsv-link[type="datetime-local"],
    .input-group-sm
    input[type="datetime-local"],
    input[type="month"].input-sm,
    .input-group-sm > input.form-control[type="month"],
    .input-group-sm > input.input-group-addon[type="month"],
    .input-group-sm > .input-group-btn > input.btn[type="month"],
    .input-group-sm > .input-group-btn > input.downloadcsv-link[type="month"],
    .input-group-sm
    input[type="month"] {
      line-height: 30px; }
    input[type="date"].input-lg, .input-group-lg > input.form-control[type="date"],
    .input-group-lg > input.input-group-addon[type="date"],
    .input-group-lg > .input-group-btn > input.btn[type="date"],
    .input-group-lg > .input-group-btn > input.downloadcsv-link[type="date"],
    .input-group-lg input[type="date"],
    input[type="time"].input-lg,
    .input-group-lg > input.form-control[type="time"],
    .input-group-lg > input.input-group-addon[type="time"],
    .input-group-lg > .input-group-btn > input.btn[type="time"],
    .input-group-lg > .input-group-btn > input.downloadcsv-link[type="time"],
    .input-group-lg
    input[type="time"],
    input[type="datetime-local"].input-lg,
    .input-group-lg > input.form-control[type="datetime-local"],
    .input-group-lg > input.input-group-addon[type="datetime-local"],
    .input-group-lg > .input-group-btn > input.btn[type="datetime-local"],
    .input-group-lg > .input-group-btn > input.downloadcsv-link[type="datetime-local"],
    .input-group-lg
    input[type="datetime-local"],
    input[type="month"].input-lg,
    .input-group-lg > input.form-control[type="month"],
    .input-group-lg > input.input-group-addon[type="month"],
    .input-group-lg > .input-group-btn > input.btn[type="month"],
    .input-group-lg > .input-group-btn > input.downloadcsv-link[type="month"],
    .input-group-lg
    input[type="month"] {
      line-height: 46px; } }

.form-group {
  margin-bottom: 15px; }

.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px; }
  .radio label,
  .checkbox label {
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer; }

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9; }

.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px; }

.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer; }

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px; }

input[type="radio"][disabled], input[type="radio"].disabled,
fieldset[disabled] input[type="radio"],
input[type="checkbox"][disabled],
input[type="checkbox"].disabled,
fieldset[disabled]
input[type="checkbox"] {
  cursor: not-allowed; }

.radio-inline.disabled,
fieldset[disabled] .radio-inline,
.checkbox-inline.disabled,
fieldset[disabled]
.checkbox-inline {
  cursor: not-allowed; }

.radio.disabled label,
fieldset[disabled] .radio label,
.checkbox.disabled label,
fieldset[disabled]
.checkbox label {
  cursor: not-allowed; }

.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
  min-height: 34px; }
  .form-control-static.input-lg, .input-group-lg > .form-control-static.form-control,
  .input-group-lg > .form-control-static.input-group-addon,
  .input-group-lg > .input-group-btn > .form-control-static.btn,
  .input-group-lg > .input-group-btn > .form-control-static.downloadcsv-link, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control,
  .input-group-sm > .form-control-static.input-group-addon,
  .input-group-sm > .input-group-btn > .form-control-static.btn,
  .input-group-sm > .input-group-btn > .form-control-static.downloadcsv-link {
    padding-left: 0;
    padding-right: 0; }

.input-sm, .input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn,
.input-group-sm > .input-group-btn > .downloadcsv-link {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

select.input-sm, .input-group-sm > select.form-control,
.input-group-sm > select.input-group-addon,
.input-group-sm > .input-group-btn > select.btn,
.input-group-sm > .input-group-btn > select.downloadcsv-link {
  height: 30px;
  line-height: 30px; }

textarea.input-sm, .input-group-sm > textarea.form-control,
.input-group-sm > textarea.input-group-addon,
.input-group-sm > .input-group-btn > textarea.btn,
.input-group-sm > .input-group-btn > textarea.downloadcsv-link,
select[multiple].input-sm,
.input-group-sm > select.form-control[multiple],
.input-group-sm > select.input-group-addon[multiple],
.input-group-sm > .input-group-btn > select.btn[multiple],
.input-group-sm > .input-group-btn > select.downloadcsv-link[multiple] {
  height: auto; }

.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px; }

.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto; }

.form-group-sm .form-control-static {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  min-height: 32px; }

.input-lg, .input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn,
.input-group-lg > .input-group-btn > .downloadcsv-link {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33333;
  border-radius: 6px; }

select.input-lg, .input-group-lg > select.form-control,
.input-group-lg > select.input-group-addon,
.input-group-lg > .input-group-btn > select.btn,
.input-group-lg > .input-group-btn > select.downloadcsv-link {
  height: 46px;
  line-height: 46px; }

textarea.input-lg, .input-group-lg > textarea.form-control,
.input-group-lg > textarea.input-group-addon,
.input-group-lg > .input-group-btn > textarea.btn,
.input-group-lg > .input-group-btn > textarea.downloadcsv-link,
select[multiple].input-lg,
.input-group-lg > select.form-control[multiple],
.input-group-lg > select.input-group-addon[multiple],
.input-group-lg > .input-group-btn > select.btn[multiple],
.input-group-lg > .input-group-btn > select.downloadcsv-link[multiple] {
  height: auto; }

.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33333;
  border-radius: 6px; }

.form-group-lg select.form-control {
  height: 46px;
  line-height: 46px; }

.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto; }

.form-group-lg .form-control-static {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33333;
  min-height: 38px; }

.has-feedback {
  position: relative; }
  .has-feedback .form-control {
    padding-right: 42.5px; }

.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none; }

.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback, .input-group-lg > .input-group-addon + .form-control-feedback, .input-group-lg > .input-group-btn > .btn + .form-control-feedback, .input-group-lg > .input-group-btn > .downloadcsv-link + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px; }

.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback, .input-group-sm > .input-group-addon + .form-control-feedback, .input-group-sm > .input-group-btn > .btn + .form-control-feedback, .input-group-sm > .input-group-btn > .downloadcsv-link + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px; }

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #3c763d; }

.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  .has-success .form-control:focus {
    border-color: #2b542c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; }

.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8; }

.has-success .form-control-feedback {
  color: #3c763d; }

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #8a6d3b; }

.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  .has-warning .form-control:focus {
    border-color: #66512c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; }

.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3; }

.has-warning .form-control-feedback {
  color: #8a6d3b; }

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442; }

.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  .has-error .form-control:focus {
    border-color: #843534;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; }

.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede; }

.has-error .form-control-feedback {
  color: #a94442; }

.has-feedback label ~ .form-control-feedback {
  top: 25px; }

.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0; }

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373; }

@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle; }
  .form-inline .form-control-static {
    display: inline-block; }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle; }
    .form-inline .input-group .input-group-addon,
    .form-inline .input-group .input-group-btn,
    .form-inline .input-group .form-control {
      width: auto; }
  .form-inline .input-group > .form-control {
    width: 100%; }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle; }
    .form-inline .radio label,
    .form-inline .checkbox label {
      padding-left: 0; }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0; }
  .form-inline .has-feedback .form-control-feedback {
    top: 0; } }

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px; }

.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px; }

.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px; }
  .form-horizontal .form-group:before, .form-horizontal .form-group:after {
    content: " ";
    display: table; }
  .form-horizontal .form-group:after {
    clear: both; }

@media (min-width: 768px) {
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px; } }

.form-horizontal .has-feedback .form-control-feedback {
  right: 15px; }

@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 14.33333px; } }

@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px; } }

.btn, .results-content.downloadcsv-link,
.downloadcsv-link {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .btn:focus,
  .downloadcsv-link:focus, .btn.focus,
  .focus.downloadcsv-link, .btn:active:focus,
  .downloadcsv-link:active:focus, .btn:active.focus,
  .downloadcsv-link:active.focus, .btn.active:focus,
  .active.downloadcsv-link:focus, .btn.active.focus,
  .active.focus.downloadcsv-link {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }
  .btn:hover,
  .downloadcsv-link:hover, .btn:focus,
  .downloadcsv-link:focus, .btn.focus,
  .focus.downloadcsv-link {
    color: #333;
    text-decoration: none; }
  .btn:active,
  .downloadcsv-link:active, .btn.active,
  .active.downloadcsv-link {
    outline: 0;
    background-image: none;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
  .btn.disabled,
  .disabled.downloadcsv-link, .btn[disabled],
  .downloadcsv-link[disabled],
  fieldset[disabled] .btn,
  fieldset[disabled] .downloadcsv-link {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none; }

.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc; }
  .btn-default:hover, .btn-default:focus, .btn-default.focus, .btn-default:active, .btn-default.active,
  .open > .btn-default.dropdown-toggle {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad; }
  .btn-default:active, .btn-default.active,
  .open > .btn-default.dropdown-toggle {
    background-image: none; }
  .btn-default.disabled, .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default.disabled:active, .btn-default.disabled.active, .btn-default[disabled], .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus, .btn-default[disabled]:active, .btn-default[disabled].active,
  fieldset[disabled] .btn-default,
  fieldset[disabled] .btn-default:hover,
  fieldset[disabled] .btn-default:focus,
  fieldset[disabled] .btn-default.focus,
  fieldset[disabled] .btn-default:active,
  fieldset[disabled] .btn-default.active {
    background-color: #fff;
    border-color: #ccc; }
  .btn-default .badge {
    color: #fff;
    background-color: #333; }

.btn-primary, .results-content.downloadcsv-link,
.downloadcsv-link {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4; }
  .btn-primary:hover,
  .downloadcsv-link:hover, .btn-primary:focus,
  .downloadcsv-link:focus, .btn-primary.focus,
  .focus.downloadcsv-link, .btn-primary:active,
  .downloadcsv-link:active, .btn-primary.active,
  .active.downloadcsv-link,
  .open > .btn-primary.dropdown-toggle,
  .open > .dropdown-toggle.downloadcsv-link {
    color: #fff;
    background-color: #286090;
    border-color: #204d74; }
  .btn-primary:active,
  .downloadcsv-link:active, .btn-primary.active,
  .active.downloadcsv-link,
  .open > .btn-primary.dropdown-toggle,
  .open > .dropdown-toggle.downloadcsv-link {
    background-image: none; }
  .btn-primary.disabled,
  .disabled.downloadcsv-link, .btn-primary.disabled:hover,
  .disabled.downloadcsv-link:hover, .btn-primary.disabled:focus,
  .disabled.downloadcsv-link:focus, .btn-primary.disabled.focus,
  .disabled.focus.downloadcsv-link, .btn-primary.disabled:active,
  .disabled.downloadcsv-link:active, .btn-primary.disabled.active,
  .disabled.active.downloadcsv-link, .btn-primary[disabled],
  .downloadcsv-link[disabled], .btn-primary[disabled]:hover,
  .downloadcsv-link[disabled]:hover, .btn-primary[disabled]:focus,
  .downloadcsv-link[disabled]:focus, .btn-primary[disabled].focus,
  .downloadcsv-link[disabled].focus, .btn-primary[disabled]:active,
  .downloadcsv-link[disabled]:active, .btn-primary[disabled].active,
  .downloadcsv-link[disabled].active,
  fieldset[disabled] .btn-primary,
  fieldset[disabled] .downloadcsv-link,
  fieldset[disabled] .btn-primary:hover,
  fieldset[disabled] .downloadcsv-link:hover,
  fieldset[disabled] .btn-primary:focus,
  fieldset[disabled] .downloadcsv-link:focus,
  fieldset[disabled] .btn-primary.focus,
  fieldset[disabled] .focus.downloadcsv-link,
  fieldset[disabled] .btn-primary:active,
  fieldset[disabled] .downloadcsv-link:active,
  fieldset[disabled] .btn-primary.active,
  fieldset[disabled] .active.downloadcsv-link {
    background-color: #337ab7;
    border-color: #2e6da4; }
  .btn-primary .badge, .downloadcsv-link .badge {
    color: #337ab7;
    background-color: #fff; }

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c; }
  .btn-success:hover, .btn-success:focus, .btn-success.focus, .btn-success:active, .btn-success.active,
  .open > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #449d44;
    border-color: #398439; }
  .btn-success:active, .btn-success.active,
  .open > .btn-success.dropdown-toggle {
    background-image: none; }
  .btn-success.disabled, .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success.disabled:active, .btn-success.disabled.active, .btn-success[disabled], .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus, .btn-success[disabled]:active, .btn-success[disabled].active,
  fieldset[disabled] .btn-success,
  fieldset[disabled] .btn-success:hover,
  fieldset[disabled] .btn-success:focus,
  fieldset[disabled] .btn-success.focus,
  fieldset[disabled] .btn-success:active,
  fieldset[disabled] .btn-success.active {
    background-color: #5cb85c;
    border-color: #4cae4c; }
  .btn-success .badge {
    color: #5cb85c;
    background-color: #fff; }

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da; }
  .btn-info:hover, .btn-info:focus, .btn-info.focus, .btn-info:active, .btn-info.active,
  .open > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc; }
  .btn-info:active, .btn-info.active,
  .open > .btn-info.dropdown-toggle {
    background-image: none; }
  .btn-info.disabled, .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info.disabled:active, .btn-info.disabled.active, .btn-info[disabled], .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus, .btn-info[disabled]:active, .btn-info[disabled].active,
  fieldset[disabled] .btn-info,
  fieldset[disabled] .btn-info:hover,
  fieldset[disabled] .btn-info:focus,
  fieldset[disabled] .btn-info.focus,
  fieldset[disabled] .btn-info:active,
  fieldset[disabled] .btn-info.active {
    background-color: #5bc0de;
    border-color: #46b8da; }
  .btn-info .badge {
    color: #5bc0de;
    background-color: #fff; }

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236; }
  .btn-warning:hover, .btn-warning:focus, .btn-warning.focus, .btn-warning:active, .btn-warning.active,
  .open > .btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512; }
  .btn-warning:active, .btn-warning.active,
  .open > .btn-warning.dropdown-toggle {
    background-image: none; }
  .btn-warning.disabled, .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning.disabled:active, .btn-warning.disabled.active, .btn-warning[disabled], .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus, .btn-warning[disabled]:active, .btn-warning[disabled].active,
  fieldset[disabled] .btn-warning,
  fieldset[disabled] .btn-warning:hover,
  fieldset[disabled] .btn-warning:focus,
  fieldset[disabled] .btn-warning.focus,
  fieldset[disabled] .btn-warning:active,
  fieldset[disabled] .btn-warning.active {
    background-color: #f0ad4e;
    border-color: #eea236; }
  .btn-warning .badge {
    color: #f0ad4e;
    background-color: #fff; }

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a; }
  .btn-danger:hover, .btn-danger:focus, .btn-danger.focus, .btn-danger:active, .btn-danger.active,
  .open > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925; }
  .btn-danger:active, .btn-danger.active,
  .open > .btn-danger.dropdown-toggle {
    background-image: none; }
  .btn-danger.disabled, .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger.disabled:active, .btn-danger.disabled.active, .btn-danger[disabled], .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus, .btn-danger[disabled]:active, .btn-danger[disabled].active,
  fieldset[disabled] .btn-danger,
  fieldset[disabled] .btn-danger:hover,
  fieldset[disabled] .btn-danger:focus,
  fieldset[disabled] .btn-danger.focus,
  fieldset[disabled] .btn-danger:active,
  fieldset[disabled] .btn-danger.active {
    background-color: #d9534f;
    border-color: #d43f3a; }
  .btn-danger .badge {
    color: #d9534f;
    background-color: #fff; }

.btn-link {
  color: #337ab7;
  font-weight: normal;
  border-radius: 0; }
  .btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled],
  fieldset[disabled] .btn-link {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
    border-color: transparent; }
  .btn-link:hover, .btn-link:focus {
    color: #23527c;
    text-decoration: underline;
    background-color: transparent; }
  .btn-link[disabled]:hover, .btn-link[disabled]:focus,
  fieldset[disabled] .btn-link:hover,
  fieldset[disabled] .btn-link:focus {
    color: #777777;
    text-decoration: none; }

.btn-lg, .btn-group-lg > .btn,
.btn-group-lg > .downloadcsv-link {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33333;
  border-radius: 6px; }

.btn-sm, .btn-group-sm > .btn,
.btn-group-sm > .downloadcsv-link {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

.btn-xs, .btn-group-xs > .btn,
.btn-group-xs > .downloadcsv-link {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

.btn-block {
  display: block;
  width: 100%; }

.btn-block + .btn-block {
  margin-top: 5px; }

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%; }

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear; }
  .fade.in {
    opacity: 1; }

.collapse {
  display: none; }
  .collapse.in {
    display: block; }

tr.collapse.in {
  display: table-row; }

tbody.collapse.in {
  display: table-row-group; }

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease; }

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent; }

.dropup,
.dropdown {
  position: relative; }

.dropdown-toggle:focus {
  outline: 0; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box; }
  .dropdown-menu.pull-right {
    right: 0;
    left: auto; }
  .dropdown-menu .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5; }
  .dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857;
    color: #333333;
    white-space: nowrap; }

.dropdown-menu > li > a:hover:not(.disabled), .dropdown-menu > li > a:focus:not(.disabled) {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5; }

.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #337ab7; }

.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  color: #777777; }

.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed; }

.open > .dropdown-menu {
  display: block; }

.open > a {
  outline: 0; }

.dropdown-menu-right {
  left: auto;
  right: 0; }

.dropdown-menu-left {
  left: 0;
  right: auto; }

.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857;
  color: #777777;
  white-space: nowrap; }

.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990; }

.pull-right > .dropdown-menu {
  right: 0;
  left: auto; }

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px solid;
  content: ""; }

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px; }

@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto; }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto; } }

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle; }
  .btn-group > .btn,
  .btn-group > .downloadcsv-link,
  .btn-group-vertical > .btn,
  .btn-group-vertical > .downloadcsv-link {
    position: relative;
    float: left; }
    .btn-group > .btn:hover,
    .btn-group > .downloadcsv-link:hover, .btn-group > .btn:focus,
    .btn-group > .downloadcsv-link:focus, .btn-group > .btn:active,
    .btn-group > .downloadcsv-link:active, .btn-group > .btn.active,
    .btn-group > .active.downloadcsv-link,
    .btn-group-vertical > .btn:hover,
    .btn-group-vertical > .downloadcsv-link:hover,
    .btn-group-vertical > .btn:focus,
    .btn-group-vertical > .downloadcsv-link:focus,
    .btn-group-vertical > .btn:active,
    .btn-group-vertical > .downloadcsv-link:active,
    .btn-group-vertical > .btn.active,
    .btn-group-vertical > .active.downloadcsv-link {
      z-index: 2; }

.btn-group .btn + .btn, .btn-group .downloadcsv-link + .btn,
.btn-group .btn + .downloadcsv-link,
.btn-group .downloadcsv-link + .downloadcsv-link,
.btn-group .btn + .btn-group,
.btn-group .downloadcsv-link + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .downloadcsv-link,
.btn-group .btn-group + .btn-group {
  margin-left: -1px; }

.btn-toolbar {
  margin-left: -5px; }
  .btn-toolbar:before, .btn-toolbar:after {
    content: " ";
    display: table; }
  .btn-toolbar:after {
    clear: both; }
  .btn-toolbar .btn-group,
  .btn-toolbar .input-group {
    float: left; }
  .btn-toolbar > .btn,
  .btn-toolbar > .downloadcsv-link,
  .btn-toolbar > .btn-group,
  .btn-toolbar > .input-group {
    margin-left: 5px; }

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle),
.btn-group > .downloadcsv-link:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0; }

.btn-group > .btn:first-child,
.btn-group > .downloadcsv-link:first-child {
  margin-left: 0; }
  .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle),
  .btn-group > .downloadcsv-link:first-child:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0; }

.btn-group > .btn:last-child:not(:first-child),
.btn-group > .downloadcsv-link:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.btn-group > .btn-group {
  float: left; }

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn,
.btn-group > .btn-group:not(:first-child):not(:last-child) > .downloadcsv-link {
  border-radius: 0; }

.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .downloadcsv-link:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0; }

.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child,
.btn-group > .btn-group:last-child:not(:first-child) > .downloadcsv-link:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0; }

.btn-group > .btn + .dropdown-toggle, .btn-group > .downloadcsv-link + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px; }

.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle, .btn-group-lg.btn-group > .downloadcsv-link + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px; }

.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
  .btn-group.open .dropdown-toggle.btn-link {
    -webkit-box-shadow: none;
    box-shadow: none; }

.btn .caret, .downloadcsv-link .caret {
  margin-left: 0; }

.btn-lg .caret, .btn-group-lg > .btn .caret, .btn-group-lg > .downloadcsv-link .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0; }

.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret, .dropup .btn-group-lg > .downloadcsv-link .caret {
  border-width: 0 5px 5px; }


.btn-group-vertical > .btn,
.btn-group-vertical > .downloadcsv-link,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn,
.btn-group-vertical > .btn-group > .downloadcsv-link {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%; }

.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
  content: " ";
  display: table; }

.btn-group-vertical > .btn-group:after {
  clear: both; }


.btn-group-vertical > .btn-group > .btn,
.btn-group-vertical > .btn-group > .downloadcsv-link {
  float: none; }

.btn-group-vertical > .btn + .btn, .btn-group-vertical > .downloadcsv-link + .btn,
.btn-group-vertical > .btn + .downloadcsv-link,
.btn-group-vertical > .downloadcsv-link + .downloadcsv-link,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .downloadcsv-link + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .downloadcsv-link,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0; }

.btn-group-vertical > .btn:not(:first-child):not(:last-child),
.btn-group-vertical > .downloadcsv-link:not(:first-child):not(:last-child) {
  border-radius: 0; }

.btn-group-vertical > .btn:first-child:not(:last-child),
.btn-group-vertical > .downloadcsv-link:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group-vertical > .btn:last-child:not(:first-child),
.btn-group-vertical > .downloadcsv-link:last-child:not(:first-child) {
  border-bottom-left-radius: 4px;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn,
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .downloadcsv-link {
  border-radius: 0; }

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .downloadcsv-link:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child,
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .downloadcsv-link:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate; }
  .btn-group-justified > .btn,
  .btn-group-justified > .downloadcsv-link,
  .btn-group-justified > .btn-group {
    float: none;
    display: table-cell;
    width: 1%; }
  .btn-group-justified > .btn-group .btn,
  .btn-group-justified > .btn-group .downloadcsv-link {
    width: 100%; }
  .btn-group-justified > .btn-group .dropdown-menu {
    left: auto; }

[data-toggle="buttons"] > .btn input[type="radio"], [data-toggle="buttons"] > .downloadcsv-link input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .downloadcsv-link input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .downloadcsv-link input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .downloadcsv-link input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none; }

.input-group {
  position: relative;
  display: table;
  border-collapse: separate; }
  .input-group[class*="col-"] {
    float: none;
    padding-left: 0;
    padding-right: 0; }
  .input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0; }

.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell; }
  .input-group-addon:not(:first-child):not(:last-child),
  .input-group-btn:not(:first-child):not(:last-child),
  .input-group .form-control:not(:first-child):not(:last-child) {
    border-radius: 0; }

.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle; }

.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555555;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  border-radius: 4px; }
  .input-group-addon.input-sm,
  .input-group-sm > .input-group-addon,
  .input-group-sm > .input-group-btn > .input-group-addon.btn,
  .input-group-sm > .input-group-btn > .input-group-addon.downloadcsv-link {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px; }
  .input-group-addon.input-lg,
  .input-group-lg > .input-group-addon,
  .input-group-lg > .input-group-btn > .input-group-addon.btn,
  .input-group-lg > .input-group-btn > .input-group-addon.downloadcsv-link {
    padding: 10px 16px;
    font-size: 18px;
    border-radius: 6px; }
  .input-group-addon input[type="radio"],
  .input-group-addon input[type="checkbox"] {
    margin-top: 0; }

.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .downloadcsv-link,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .btn-group > .downloadcsv-link,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .downloadcsv-link:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn,
.input-group-btn:last-child > .btn-group:not(:last-child) > .downloadcsv-link {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0; }

.input-group-addon:first-child {
  border-right: 0; }

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .downloadcsv-link,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .btn-group > .downloadcsv-link,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .downloadcsv-link:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn,
.input-group-btn:first-child > .btn-group:not(:first-child) > .downloadcsv-link {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.input-group-addon:last-child {
  border-left: 0; }

.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap; }
  .input-group-btn > .btn,
  .input-group-btn > .downloadcsv-link {
    position: relative; }
    .input-group-btn > .btn + .btn, .input-group-btn > .downloadcsv-link + .btn,
    .input-group-btn > .btn + .downloadcsv-link,
    .input-group-btn > .downloadcsv-link + .downloadcsv-link {
      margin-left: -1px; }
    .input-group-btn > .btn:hover,
    .input-group-btn > .downloadcsv-link:hover, .input-group-btn > .btn:focus,
    .input-group-btn > .downloadcsv-link:focus, .input-group-btn > .btn:active,
    .input-group-btn > .downloadcsv-link:active {
      z-index: 2; }
  
  .input-group-btn:first-child > .btn,
  .input-group-btn:first-child > .downloadcsv-link,
  .input-group-btn:first-child > .btn-group {
    margin-right: -1px; }
  
  .input-group-btn:last-child > .btn,
  .input-group-btn:last-child > .downloadcsv-link,
  .input-group-btn:last-child > .btn-group {
    margin-left: -1px; }

.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none; }
  .nav:before, .nav:after {
    content: " ";
    display: table; }
  .nav:after {
    clear: both; }
  .nav > li {
    position: relative;
    display: block; }
    .nav > li > a {
      position: relative;
      display: block;
      padding: 10px 15px; }
      .nav > li > a:hover, .nav > li > a:focus {
        text-decoration: none;
        background-color: #eeeeee; }
    .nav > li.disabled > a {
      color: #777777; }
      .nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
        color: #777777;
        text-decoration: none;
        background-color: transparent;
        cursor: not-allowed; }
  .nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
    background-color: #eeeeee;
    border-color: #337ab7; }
  .nav .nav-divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5; }
  .nav > li > a > img {
    max-width: none; }

.nav-tabs {
  border-bottom: 1px solid #ddd; }
  .nav-tabs > li {
    float: left;
    margin-bottom: -1px; }
    .nav-tabs > li > a {
      margin-right: 2px;
      line-height: 1.42857;
      border: 1px solid transparent;
      border-radius: 4px 4px 0 0; }
    .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
      color: #555555;
      background-color: #fff;
      border: 1px solid #ddd;
      border-bottom-color: transparent;
      cursor: default; }

.nav-pills > li {
  float: left; }
  .nav-pills > li > a {
    border-radius: 4px; }
  .nav-pills > li + li {
    margin-left: 2px; }
  .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
    color: #fff;
    background-color: #337ab7; }

.nav-stacked > li {
  float: none; }
  .nav-stacked > li + li {
    margin-top: 2px;
    margin-left: 0; }

.nav-justified, .nav-tabs.nav-justified {
  width: 100%; }
  .nav-justified > li, .nav-tabs.nav-justified > li {
    float: none; }
    .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
      text-align: center;
      margin-bottom: 5px; }
  .nav-justified > .dropdown .dropdown-menu {
    top: auto;
    left: auto; }
  @media (min-width: 768px) {
    .nav-justified > li, .nav-tabs.nav-justified > li {
      display: table-cell;
      width: 1%; }
      .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
        margin-bottom: 0; } }

.nav-tabs-justified, .nav-tabs.nav-justified {
  border-bottom: 0; }
  .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-right: 0;
    border-radius: 4px; }
  .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus,
  .nav-tabs.nav-justified > .active > a:focus {
    border: 1px solid #ddd; }
  @media (min-width: 768px) {
    .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
      border-bottom: 1px solid #ddd;
      border-radius: 4px 4px 0 0; }
    .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
    .nav-tabs-justified > .active > a:hover,
    .nav-tabs.nav-justified > .active > a:hover,
    .nav-tabs-justified > .active > a:focus,
    .nav-tabs.nav-justified > .active > a:focus {
      border-bottom-color: #fff; } }

.tab-content > .tab-pane {
  display: none; }

.tab-content > .active {
  display: block; }

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent; }
  .navbar:before, .navbar:after {
    content: " ";
    display: table; }
  .navbar:after {
    clear: both; }
  @media (min-width: 768px) {
    .navbar {
      border-radius: 4px; } }

.navbar-header:before, .navbar-header:after {
  content: " ";
  display: table; }

.navbar-header:after {
  clear: both; }

@media (min-width: 768px) {
  .navbar-header {
    float: left; } }

.navbar-collapse {
  overflow-x: visible;
  padding-right: 15px;
  padding-left: 15px;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch; }
  .navbar-collapse:before, .navbar-collapse:after {
    content: " ";
    display: table; }
  .navbar-collapse:after {
    clear: both; }
  .navbar-collapse.in {
    overflow-y: auto; }
  @media (min-width: 768px) {
    .navbar-collapse {
      width: auto;
      border-top: 0;
      box-shadow: none; }
      .navbar-collapse.collapse {
        display: block !important;
        height: auto !important;
        padding-bottom: 0;
        overflow: visible !important; }
      .navbar-collapse.in {
        overflow-y: visible; }
      .navbar-fixed-top .navbar-collapse,
      .navbar-static-top .navbar-collapse,
      .navbar-fixed-bottom .navbar-collapse {
        padding-left: 0;
        padding-right: 0; } }

.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px; }
  @media (max-device-width: 480px) and (orientation: landscape) {
    .navbar-fixed-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
      max-height: 200px; } }

.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px; }
  @media (min-width: 768px) {
    .container > .navbar-header,
    .container > .navbar-collapse,
    .container-fluid > .navbar-header,
    .container-fluid > .navbar-collapse {
      margin-right: 0;
      margin-left: 0; } }

.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px; }
  @media (min-width: 768px) {
    .navbar-static-top {
      border-radius: 0; } }

.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030; }
  @media (min-width: 768px) {
    .navbar-fixed-top,
    .navbar-fixed-bottom {
      border-radius: 0; } }

.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px; }

.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0; }

.navbar-brand {
  float: left;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
  height: 50px; }
  .navbar-brand:hover, .navbar-brand:focus {
    text-decoration: none; }
  .navbar-brand > img {
    display: block; }
  @media (min-width: 768px) {
    .navbar > .container .navbar-brand,
    .navbar > .container-fluid .navbar-brand {
      margin-left: -15px; } }

.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px; }
  .navbar-toggle:focus {
    outline: 0; }
  .navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px; }
  .navbar-toggle .icon-bar + .icon-bar {
    margin-top: 4px; }
  @media (min-width: 768px) {
    .navbar-toggle {
      display: none; } }

.navbar-nav {
  margin: 7.5px -15px; }
  .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 20px; }
  @media (max-width: 767px) {
    .navbar-nav .open .dropdown-menu {
      position: static;
      float: none;
      width: auto;
      margin-top: 0;
      background-color: transparent;
      border: 0;
      box-shadow: none; }
      .navbar-nav .open .dropdown-menu > li > a,
      .navbar-nav .open .dropdown-menu .dropdown-header {
        padding: 5px 15px 5px 25px; }
      .navbar-nav .open .dropdown-menu > li > a {
        line-height: 20px; }
        .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
          background-image: none; } }
  @media (min-width: 768px) {
    .navbar-nav {
      float: left;
      margin: 0; }
      .navbar-nav > li {
        float: left; }
        .navbar-nav > li > a {
          padding-top: 15px;
          padding-bottom: 15px; } }

.navbar-form {
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 8px;
  margin-bottom: 8px; }
  @media (min-width: 768px) {
    .navbar-form .form-group {
      display: inline-block;
      margin-bottom: 0;
      vertical-align: middle; }
    .navbar-form .form-control {
      display: inline-block;
      width: auto;
      vertical-align: middle; }
    .navbar-form .form-control-static {
      display: inline-block; }
    .navbar-form .input-group {
      display: inline-table;
      vertical-align: middle; }
      .navbar-form .input-group .input-group-addon,
      .navbar-form .input-group .input-group-btn,
      .navbar-form .input-group .form-control {
        width: auto; }
    .navbar-form .input-group > .form-control {
      width: 100%; }
    .navbar-form .control-label {
      margin-bottom: 0;
      vertical-align: middle; }
    .navbar-form .radio,
    .navbar-form .checkbox {
      display: inline-block;
      margin-top: 0;
      margin-bottom: 0;
      vertical-align: middle; }
      .navbar-form .radio label,
      .navbar-form .checkbox label {
        padding-left: 0; }
    .navbar-form .radio input[type="radio"],
    .navbar-form .checkbox input[type="checkbox"] {
      position: relative;
      margin-left: 0; }
    .navbar-form .has-feedback .form-control-feedback {
      top: 0; } }
  @media (max-width: 767px) {
    .navbar-form .form-group {
      margin-bottom: 5px; }
      .navbar-form .form-group:last-child {
        margin-bottom: 0; } }
  @media (min-width: 768px) {
    .navbar-form {
      width: auto;
      border: 0;
      margin-left: 0;
      margin-right: 0;
      padding-top: 0;
      padding-bottom: 0;
      -webkit-box-shadow: none;
      box-shadow: none; } }

.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px; }
  .navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn,
  .btn-group-sm > .navbar-btn.downloadcsv-link {
    margin-top: 10px;
    margin-bottom: 10px; }
  .navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn,
  .btn-group-xs > .navbar-btn.downloadcsv-link {
    margin-top: 14px;
    margin-bottom: 14px; }

.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px; }
  @media (min-width: 768px) {
    .navbar-text {
      float: left;
      margin-left: 15px;
      margin-right: 15px; } }

@media (min-width: 768px) {
  .navbar-left {
    float: left !important; }
  .navbar-right {
    float: right !important;
    margin-right: -15px; }
    .navbar-right ~ .navbar-right {
      margin-right: 0; } }

.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7; }
  .navbar-default .navbar-brand {
    color: #777; }
    .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
      color: #5e5e5e;
      background-color: transparent; }
  .navbar-default .navbar-text {
    color: #777; }
  .navbar-default .navbar-nav > li > a {
    color: #777; }
    .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
      color: #333;
      background-color: transparent; }
  .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
    color: #555;
    background-color: #e7e7e7; }
  .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
    color: #ccc;
    background-color: transparent; }
  .navbar-default .navbar-toggle {
    border-color: #ddd; }
    .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
      background-color: #ddd; }
    .navbar-default .navbar-toggle .icon-bar {
      background-color: #888; }
  .navbar-default .navbar-collapse,
  .navbar-default .navbar-form {
    border-color: #e7e7e7; }
  .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
    background-color: #e7e7e7;
    color: #555; }
  @media (max-width: 767px) {
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
      color: #777; }
      .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #333;
        background-color: transparent; }
    .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
      color: #555;
      background-color: #e7e7e7; }
    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
      color: #ccc;
      background-color: transparent; } }
  .navbar-default .navbar-link {
    color: #777; }
    .navbar-default .navbar-link:hover {
      color: #333; }
  .navbar-default .btn-link {
    color: #777; }
    .navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
      color: #333; }
    .navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus,
    fieldset[disabled] .navbar-default .btn-link:hover,
    fieldset[disabled] .navbar-default .btn-link:focus {
      color: #ccc; }

.navbar-inverse {
  background-color: #222;
  border-color: #090909; }
  .navbar-inverse .navbar-brand {
    color: #9d9d9d; }
    .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
      color: #fff;
      background-color: transparent; }
  .navbar-inverse .navbar-text {
    color: #9d9d9d; }
  .navbar-inverse .navbar-nav > li > a {
    color: #9d9d9d; }
    .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
      color: #fff;
      background-color: transparent; }
  .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
    color: #fff;
    background-color: #090909; }
  .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
    color: #444;
    background-color: transparent; }
  .navbar-inverse .navbar-toggle {
    border-color: #333; }
    .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
      background-color: #333; }
    .navbar-inverse .navbar-toggle .icon-bar {
      background-color: #fff; }
  .navbar-inverse .navbar-collapse,
  .navbar-inverse .navbar-form {
    border-color: #101010; }
  .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
    background-color: #090909;
    color: #fff; }
  @media (max-width: 767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
      border-color: #090909; }
    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
      background-color: #090909; }
    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
      color: #9d9d9d; }
      .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #fff;
        background-color: transparent; }
    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
      color: #fff;
      background-color: #090909; }
    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
      color: #444;
      background-color: transparent; } }
  .navbar-inverse .navbar-link {
    color: #9d9d9d; }
    .navbar-inverse .navbar-link:hover {
      color: #fff; }
  .navbar-inverse .btn-link {
    color: #9d9d9d; }
    .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
      color: #fff; }
    .navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus,
    fieldset[disabled] .navbar-inverse .btn-link:hover,
    fieldset[disabled] .navbar-inverse .btn-link:focus {
      color: #444; }

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px; }
  .pagination > li {
    display: inline; }
    .pagination > li > a,
    .pagination > li > span {
      position: relative;
      float: left;
      padding: 6px 12px;
      line-height: 1.42857;
      text-decoration: none;
      color: #337ab7;
      background-color: #fff;
      border: 1px solid #ddd;
      margin-left: -1px; }
    .pagination > li:first-child > a,
    .pagination > li:first-child > span {
      margin-left: 0;
      border-bottom-left-radius: 4px;
      border-top-left-radius: 4px; }
    .pagination > li:last-child > a,
    .pagination > li:last-child > span {
      border-bottom-right-radius: 4px;
      border-top-right-radius: 4px; }
  .pagination > li > a:hover, .pagination > li > a:focus,
  .pagination > li > span:hover,
  .pagination > li > span:focus {
    color: #23527c;
    background-color: #eeeeee;
    border-color: #ddd; }
  .pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
  .pagination > .active > span,
  .pagination > .active > span:hover,
  .pagination > .active > span:focus {
    z-index: 2;
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7;
    cursor: default; }
  .pagination > .disabled > span,
  .pagination > .disabled > span:hover,
  .pagination > .disabled > span:focus,
  .pagination > .disabled > a,
  .pagination > .disabled > a:hover,
  .pagination > .disabled > a:focus {
    color: #777777;
    background-color: #fff;
    border-color: #ddd;
    cursor: not-allowed; }

.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px; }

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px; }

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px; }

.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px; }

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px; }

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px; }

.pager {
  padding-left: 0;
  margin: 20px 0;
  list-style: none;
  text-align: center; }
  .pager:before, .pager:after {
    content: " ";
    display: table; }
  .pager:after {
    clear: both; }
  .pager li {
    display: inline; }
    .pager li > a,
    .pager li > span {
      display: inline-block;
      padding: 5px 14px;
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 15px; }
    .pager li > a:hover,
    .pager li > a:focus {
      text-decoration: none;
      background-color: #eeeeee; }
  .pager .next > a,
  .pager .next > span {
    float: right; }
  .pager .previous > a,
  .pager .previous > span {
    float: left; }
  .pager .disabled > a,
  .pager .disabled > a:hover,
  .pager .disabled > a:focus,
  .pager .disabled > span {
    color: #777777;
    background-color: #fff;
    cursor: not-allowed; }

.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em; }
  .label:empty {
    display: none; }
  .btn .label, .downloadcsv-link .label {
    position: relative;
    top: -1px; }

a.label:hover, a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer; }

.label-default {
  background-color: #777777; }
  .label-default[href]:hover, .label-default[href]:focus {
    background-color: #5e5e5e; }

.label-primary {
  background-color: #337ab7; }
  .label-primary[href]:hover, .label-primary[href]:focus {
    background-color: #286090; }

.label-success {
  background-color: #5cb85c; }
  .label-success[href]:hover, .label-success[href]:focus {
    background-color: #449d44; }

.label-info {
  background-color: #5bc0de; }
  .label-info[href]:hover, .label-info[href]:focus {
    background-color: #31b0d5; }

.label-warning {
  background-color: #f0ad4e; }
  .label-warning[href]:hover, .label-warning[href]:focus {
    background-color: #ec971f; }

.label-danger {
  background-color: #d9534f; }
  .label-danger[href]:hover, .label-danger[href]:focus {
    background-color: #c9302c; }

.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  vertical-align: baseline;
  white-space: nowrap;
  text-align: center;
  background-color: #777777;
  border-radius: 10px; }
  .badge:empty {
    display: none; }
  .btn .badge, .downloadcsv-link .badge {
    position: relative;
    top: -1px; }
  .btn-xs .badge, .btn-group-xs > .btn .badge, .btn-group-xs > .downloadcsv-link .badge,
  .btn-group-xs > .btn .badge,
  .btn-group-xs > .downloadcsv-link .badge {
    top: 0;
    padding: 1px 5px; }
  .list-group-item.active > .badge,
  .nav-pills > .active > a > .badge {
    color: #337ab7;
    background-color: #fff; }
  .list-group-item > .badge {
    float: right; }
  .list-group-item > .badge + .badge {
    margin-right: 5px; }
  .nav-pills > li > a > .badge {
    margin-left: 3px; }

a.badge:hover, a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer; }

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px; }
  .alert h4 {
    margin-top: 0;
    color: inherit; }
  .alert .alert-link {
    font-weight: bold; }
  .alert > p,
  .alert > ul {
    margin-bottom: 0; }
  .alert > p + p {
    margin-top: 5px; }

.alert-dismissable,
.alert-dismissible {
  padding-right: 35px; }
  .alert-dismissable .close,
  .alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit; }

.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d; }
  .alert-success hr {
    border-top-color: #c9e2b3; }
  .alert-success .alert-link {
    color: #2b542c; }

.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f; }
  .alert-info hr {
    border-top-color: #a6e1ec; }
  .alert-info .alert-link {
    color: #245269; }

.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b; }
  .alert-warning hr {
    border-top-color: #f7e1b5; }
  .alert-warning .alert-link {
    color: #66512c; }

.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442; }
  .alert-danger hr {
    border-top-color: #e4b9c0; }
  .alert-danger .alert-link {
    color: #843534; }

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0; }
  to {
    background-position: 0 0; } }

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0; }
  to {
    background-position: 0 0; } }

.progress {
  overflow: hidden;
  height: 20px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }

.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease; }

.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px; }

.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite; }

.progress-bar-success {
  background-color: #5cb85c; }
  .progress-striped .progress-bar-success {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.progress-bar-info {
  background-color: #5bc0de; }
  .progress-striped .progress-bar-info {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.progress-bar-warning {
  background-color: #f0ad4e; }
  .progress-striped .progress-bar-warning {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.progress-bar-danger {
  background-color: #d9534f; }
  .progress-striped .progress-bar-danger {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.media {
  margin-top: 15px; }
  .media:first-child {
    margin-top: 0; }

.media,
.media-body {
  zoom: 1;
  overflow: hidden; }

.media-body {
  width: 10000px; }

.media-object {
  display: block; }

.media-right,
.media > .pull-right {
  padding-left: 10px; }

.media-left,
.media > .pull-left {
  padding-right: 10px; }

.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top; }

.media-middle {
  vertical-align: middle; }

.media-bottom {
  vertical-align: bottom; }

.media-heading {
  margin-top: 0;
  margin-bottom: 5px; }

.media-list {
  padding-left: 0;
  list-style: none; }

.list-group {
  margin-bottom: 20px;
  padding-left: 0; }

.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd; }
  .list-group-item:first-child {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px; }
  .list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px; }

a.list-group-item {
  color: #555; }
  a.list-group-item .list-group-item-heading {
    color: #333; }
  a.list-group-item:hover, a.list-group-item:focus {
    text-decoration: none;
    color: #555;
    background-color: #f5f5f5; }

.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
  background-color: #eeeeee;
  color: #777777;
  cursor: not-allowed; }
  .list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
    color: inherit; }
  .list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
    color: #777777; }

.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7; }
  .list-group-item.active .list-group-item-heading,
  .list-group-item.active .list-group-item-heading > small,
  .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
  .list-group-item.active:hover .list-group-item-heading > small,
  .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
  .list-group-item.active:focus .list-group-item-heading > small,
  .list-group-item.active:focus .list-group-item-heading > .small {
    color: inherit; }
  .list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
    color: #c7ddef; }

.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8; }

a.list-group-item-success {
  color: #3c763d; }
  a.list-group-item-success .list-group-item-heading {
    color: inherit; }
  a.list-group-item-success:hover, a.list-group-item-success:focus {
    color: #3c763d;
    background-color: #d0e9c6; }
  a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus {
    color: #fff;
    background-color: #3c763d;
    border-color: #3c763d; }

.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7; }

a.list-group-item-info {
  color: #31708f; }
  a.list-group-item-info .list-group-item-heading {
    color: inherit; }
  a.list-group-item-info:hover, a.list-group-item-info:focus {
    color: #31708f;
    background-color: #c4e3f3; }
  a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus {
    color: #fff;
    background-color: #31708f;
    border-color: #31708f; }

.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3; }

a.list-group-item-warning {
  color: #8a6d3b; }
  a.list-group-item-warning .list-group-item-heading {
    color: inherit; }
  a.list-group-item-warning:hover, a.list-group-item-warning:focus {
    color: #8a6d3b;
    background-color: #faf2cc; }
  a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus {
    color: #fff;
    background-color: #8a6d3b;
    border-color: #8a6d3b; }

.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede; }

a.list-group-item-danger {
  color: #a94442; }
  a.list-group-item-danger .list-group-item-heading {
    color: inherit; }
  a.list-group-item-danger:hover, a.list-group-item-danger:focus {
    color: #a94442;
    background-color: #ebcccc; }
  a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus {
    color: #fff;
    background-color: #a94442;
    border-color: #a94442; }

.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px; }

.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3; }

.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); }

.panel-body {
  padding: 15px; }
  .panel-body:before, .panel-body:after {
    content: " ";
    display: table; }
  .panel-body:after {
    clear: both; }

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px; }
  .panel-heading > .dropdown .dropdown-toggle {
    color: inherit; }

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit; }
  .panel-title > a,
  .panel-title > small,
  .panel-title > .small,
  .panel-title > small > a,
  .panel-title > .small > a {
    color: inherit; }

.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }

.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0; }
  .panel > .list-group .list-group-item,
  .panel > .panel-collapse > .list-group .list-group-item {
    border-width: 1px 0;
    border-radius: 0; }
  .panel > .list-group:first-child .list-group-item:first-child,
  .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
    border-top: 0;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px; }
  .panel > .list-group:last-child .list-group-item:last-child,
  .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
    border-bottom: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px; }

.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0; }

.list-group + .panel-footer {
  border-top-width: 0; }

.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0; }
  .panel > .table caption,
  .panel > .table-responsive > .table caption,
  .panel > .panel-collapse > .table caption {
    padding-left: 15px;
    padding-right: 15px; }

.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px; }
  .panel > .table:first-child > thead:first-child > tr:first-child,
  .panel > .table:first-child > tbody:first-child > tr:first-child,
  .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
  .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px; }
    .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
    .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
    .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
    .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
    .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
    .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
    .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
    .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
      border-top-left-radius: 3px; }
    .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
    .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
    .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
    .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
    .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
    .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
    .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
    .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
      border-top-right-radius: 3px; }

.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }
  .panel > .table:last-child > tbody:last-child > tr:last-child,
  .panel > .table:last-child > tfoot:last-child > tr:last-child,
  .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
  .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px; }
    .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
    .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
    .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
    .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
    .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
    .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
    .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
    .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
      border-bottom-left-radius: 3px; }
    .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
    .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
    .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
    .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
    .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
    .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
    .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
    .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
      border-bottom-right-radius: 3px; }

.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd; }

.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0; }

.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0; }
  .panel > .table-bordered > thead > tr > th:first-child,
  .panel > .table-bordered > thead > tr > td:first-child,
  .panel > .table-bordered > tbody > tr > th:first-child,
  .panel > .table-bordered > tbody > tr > td:first-child,
  .panel > .table-bordered > tfoot > tr > th:first-child,
  .panel > .table-bordered > tfoot > tr > td:first-child,
  .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
  .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0; }
  .panel > .table-bordered > thead > tr > th:last-child,
  .panel > .table-bordered > thead > tr > td:last-child,
  .panel > .table-bordered > tbody > tr > th:last-child,
  .panel > .table-bordered > tbody > tr > td:last-child,
  .panel > .table-bordered > tfoot > tr > th:last-child,
  .panel > .table-bordered > tfoot > tr > td:last-child,
  .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
  .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0; }
  .panel > .table-bordered > thead > tr:first-child > td,
  .panel > .table-bordered > thead > tr:first-child > th,
  .panel > .table-bordered > tbody > tr:first-child > td,
  .panel > .table-bordered > tbody > tr:first-child > th,
  .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
  .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
  .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
  .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
    border-bottom: 0; }
  .panel > .table-bordered > tbody > tr:last-child > td,
  .panel > .table-bordered > tbody > tr:last-child > th,
  .panel > .table-bordered > tfoot > tr:last-child > td,
  .panel > .table-bordered > tfoot > tr:last-child > th,
  .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
  .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
    border-bottom: 0; }

.panel > .table-responsive {
  border: 0;
  margin-bottom: 0; }

.panel-group {
  margin-bottom: 20px; }
  .panel-group .panel {
    margin-bottom: 0;
    border-radius: 4px; }
    .panel-group .panel + .panel {
      margin-top: 5px; }
  .panel-group .panel-heading {
    border-bottom: 0; }
    .panel-group .panel-heading + .panel-collapse > .panel-body,
    .panel-group .panel-heading + .panel-collapse > .list-group {
      border-top: 1px solid #ddd; }
  .panel-group .panel-footer {
    border-top: 0; }
    .panel-group .panel-footer + .panel-collapse .panel-body {
      border-bottom: 1px solid #ddd; }

.panel-default {
  border-color: #ddd; }
  .panel-default > .panel-heading {
    color: #333333;
    background-color: #f5f5f5;
    border-color: #ddd; }
    .panel-default > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #ddd; }
    .panel-default > .panel-heading .badge {
      color: #f5f5f5;
      background-color: #333333; }
  .panel-default > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ddd; }

.panel-primary {
  border-color: #337ab7; }
  .panel-primary > .panel-heading {
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7; }
    .panel-primary > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #337ab7; }
    .panel-primary > .panel-heading .badge {
      color: #337ab7;
      background-color: #fff; }
  .panel-primary > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #337ab7; }

.panel-success {
  border-color: #d6e9c6; }
  .panel-success > .panel-heading {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6; }
    .panel-success > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #d6e9c6; }
    .panel-success > .panel-heading .badge {
      color: #dff0d8;
      background-color: #3c763d; }
  .panel-success > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #d6e9c6; }

.panel-info {
  border-color: #bce8f1; }
  .panel-info > .panel-heading {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1; }
    .panel-info > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #bce8f1; }
    .panel-info > .panel-heading .badge {
      color: #d9edf7;
      background-color: #31708f; }
  .panel-info > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #bce8f1; }

.panel-warning {
  border-color: #faebcc; }
  .panel-warning > .panel-heading {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc; }
    .panel-warning > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #faebcc; }
    .panel-warning > .panel-heading .badge {
      color: #fcf8e3;
      background-color: #8a6d3b; }
  .panel-warning > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #faebcc; }

.panel-danger {
  border-color: #ebccd1; }
  .panel-danger > .panel-heading {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1; }
    .panel-danger > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #ebccd1; }
    .panel-danger > .panel-heading .badge {
      color: #f2dede;
      background-color: #a94442; }
  .panel-danger > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ebccd1; }

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden; }
  .embed-responsive .embed-responsive-item,
  .embed-responsive iframe,
  .embed-responsive embed,
  .embed-responsive object,
  .embed-responsive video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border: 0; }

.embed-responsive-16by9 {
  padding-bottom: 56.25%; }

.embed-responsive-4by3 {
  padding-bottom: 75%; }

.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20); }
  .close:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.5;
    filter: alpha(opacity=50); }

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none; }

.modal-open {
  overflow: hidden; }

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0; }
  .modal.fade .modal-dialog {
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    -o-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -moz-transition: -moz-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out; }
  .modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0); }

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px; }

.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000; }
  .modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0); }
  .modal-backdrop.in {
    opacity: 0.5;
    filter: alpha(opacity=50); }

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.42857px; }

.modal-header .close {
  margin-top: -2px; }

.modal-title {
  margin: 0;
  line-height: 1.42857; }

.modal-body {
  position: relative;
  padding: 15px; }

.modal-footer {
  text-align: right;
  border-top: 1px solid #e5e5e5; }
  .modal-footer:before, .modal-footer:after {
    content: " ";
    display: table; }
  .modal-footer:after {
    clear: both; }
  .modal-footer .btn + .btn, .modal-footer .downloadcsv-link + .btn,
  .modal-footer .btn + .downloadcsv-link,
  .modal-footer .downloadcsv-link + .downloadcsv-link {
    margin-left: 5px;
    margin-bottom: 0; }
  .modal-footer .btn-group .btn + .btn, .modal-footer .btn-group .downloadcsv-link + .btn,
  .modal-footer .btn-group .btn + .downloadcsv-link,
  .modal-footer .btn-group .downloadcsv-link + .downloadcsv-link {
    margin-left: -1px; }
  .modal-footer .btn-block + .btn-block {
    margin-left: 0; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto; }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
  .modal-sm {
    width: 300px; } }

@media (min-width: 992px) {
  .modal-lg {
    width: 900px; } }

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.4;
  opacity: 0;
  filter: alpha(opacity=0); }
  .tooltip.in {
    opacity: 0.9;
    filter: alpha(opacity=90); }
  .tooltip.top {
    margin-top: -3px;
    padding: 5px 0; }
  .tooltip.right {
    margin-left: 3px;
    padding: 0 5px; }
  .tooltip.bottom {
    margin-top: 3px;
    padding: 5px 0; }
  .tooltip.left {
    margin-left: -3px;
    padding: 0 5px; }

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #000;
  border-radius: 4px; }

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000; }

.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000; }

.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000; }

.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000; }

.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000; }

.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000; }

.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000; }

.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000; }

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857;
  text-align: left;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  white-space: normal; }
  .popover.top {
    margin-top: -10px; }
  .popover.right {
    margin-left: 10px; }
  .popover.bottom {
    margin-top: 10px; }
  .popover.left {
    margin-left: -10px; }

.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0; }

.popover-content {
  padding: 9px 14px; }

.popover > .arrow, .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.popover > .arrow {
  border-width: 11px; }

.popover > .arrow:after {
  border-width: 10px;
  content: ""; }

.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px; }
  .popover.top > .arrow:after {
    content: " ";
    bottom: 1px;
    margin-left: -10px;
    border-bottom-width: 0;
    border-top-color: #fff; }

.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25); }
  .popover.right > .arrow:after {
    content: " ";
    left: 1px;
    bottom: -10px;
    border-left-width: 0;
    border-right-color: #fff; }

.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px; }
  .popover.bottom > .arrow:after {
    content: " ";
    top: 1px;
    margin-left: -10px;
    border-top-width: 0;
    border-bottom-color: #fff; }

.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25); }
  .popover.left > .arrow:after {
    content: " ";
    right: 1px;
    border-right-width: 0;
    border-left-color: #fff;
    bottom: -10px; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.pull-right {
  float: right !important; }

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

.hide {
  display: none !important; }

.show {
  display: block !important; }

.invisible {
  visibility: hidden; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.hidden {
  display: none !important; }

.affix {
  position: fixed; }

@-ms-viewport {
  width: device-width; }

.visible-xs {
  display: none !important; }

.visible-sm {
  display: none !important; }

.visible-md {
  display: none !important; }

.visible-lg {
  display: none !important; }

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important; }

@media (max-width: 767px) {
  .visible-xs {
    display: block !important; }
  table.visible-xs {
    display: table; }
  tr.visible-xs {
    display: table-row !important; }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important; } }

@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important; } }

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important; } }

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important; }
  table.visible-sm {
    display: table; }
  tr.visible-sm {
    display: table-row !important; }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important; }
  table.visible-md {
    display: table; }
  tr.visible-md {
    display: table-row !important; }
  th.visible-md,
  td.visible-md {
    display: table-cell !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important; } }

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important; }
  table.visible-lg {
    display: table; }
  tr.visible-lg {
    display: table-row !important; }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important; } }

@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important; } }

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important; } }

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important; } }

.visible-print {
  display: none !important; }

@media print {
  .visible-print {
    display: block !important; }
  table.visible-print {
    display: table; }
  tr.visible-print {
    display: table-row !important; }
  th.visible-print,
  td.visible-print {
    display: table-cell !important; } }

.visible-print-block {
  display: none !important; }
  @media print {
    .visible-print-block {
      display: block !important; } }

.visible-print-inline {
  display: none !important; }
  @media print {
    .visible-print-inline {
      display: inline !important; } }

.visible-print-inline-block {
  display: none !important; }
  @media print {
    .visible-print-inline-block {
      display: inline-block !important; } }

@media print {
  .hidden-print {
    display: none !important; } }

/**
 * All sass tools, utilities and helpers
 * Includes Global variables, functions, mixins, placeholders
 * Does not include vendors
 */
/*Dark Grey*/
/*Medium Grey*/
/*Light Grey*/
/* Medium Light Grey */
/* Output Tab Bar */
/*Errors*/
/* Error Background */
/*Warnings*/
/*Bright*/
/*Teal*/
/* Slightly Darker Teal */
/*Sky*/
/*Water*/
/*Evapotranspiration*/
/*Infiltration*/
/*Runoff*/
.nlcd-11 {
  background-color: #5475A8; }

.nlcd-12 {
  background-color: #FFFFFF; }

.nlcd-21 {
  background-color: #E8D1D1; }

.nlcd-22 {
  background-color: #E29E8C; }

.nlcd-23 {
  background-color: #ff0000; }

.nlcd-24 {
  background-color: #B50000; }

.nlcd-31 {
  background-color: #D2CDC0; }

.nlcd-41 {
  background-color: #85C77E; }

.nlcd-42 {
  background-color: #38814E; }

.nlcd-43 {
  background-color: #D4E7B0; }

.nlcd-52 {
  background-color: #DCCA8F; }

.nlcd-71 {
  background-color: #FDE9AA; }

.nlcd-81 {
  background-color: #FBF65D; }

.nlcd-82 {
  background-color: #CA9146; }

.nlcd-90 {
  background-color: #C8E6F8; }

.nlcd-95 {
  background-color: #64B3D5; }

.io-lulc-1 {
  background-color: #419bdf; }

.io-lulc-2 {
  background-color: #397d49; }

.io-lulc-4 {
  background-color: #7a87c6; }

.io-lulc-5 {
  background-color: #e49635; }

.io-lulc-7 {
  background-color: #c4281b; }

.io-lulc-8 {
  background-color: #a59b8f; }

.io-lulc-9 {
  background-color: #a8ebff; }

.io-lulc-10 {
  background-color: #616161; }

.io-lulc-11 {
  background-color: #e3e2c3; }

.protected-lands-pra_f {
  background-color: #AFB42B; }

.protected-lands-pra_s {
  background-color: #C0CA33; }

.protected-lands-pra_l {
  background-color: #CDDC39; }

.protected-lands-pra_p {
  background-color: #D4E157; }

.protected-lands-pra_u {
  background-color: #E6EE9C; }

.protected-lands-nra_f {
  background-color: #388E3C; }

.protected-lands-nra_s {
  background-color: #43A047; }

.protected-lands-nra_l {
  background-color: #4CAF50; }

.protected-lands-nra_p {
  background-color: #66BB6A; }

.protected-lands-nra_u {
  background-color: #A5D6A7; }

.protected-lands-con_ease {
  background-color: #9E9446; }

.protected-lands-ag_ease {
  background-color: #8D6E63; }

.soil-a {
  background-color: #ffffd4; }

.soil-b {
  background-color: #fee391; }

.soil-c {
  background-color: #fec44f; }

.soil-d {
  background-color: #8c2d04; }

.soil-ad {
  background-color: #fe9929; }

.soil-bd {
  background-color: #ec7014; }

.soil-cd {
  background-color: #cc4c02; }

.stream-0 {
  background-color: #1a9641; }

.stream-1 {
  background-color: #a6d96a; }

.stream-2 {
  background-color: #ffffbf; }

.stream-3 {
  background-color: #fdae61; }

.stream-4 {
  background-color: #d7191c; }

.stream-NA {
  background-color: #9E9E9E; }

.catchment-1 {
  background-color: #A0A0A0; }

.catchment-2 {
  background-color: #888888; }

.catchment-3 {
  background-color: #707070; }

.catchment-4 {
  background-color: #484848; }

.catchment-5 {
  background-color: #202020; }

.ui-light {
  background-color: #eceff1; }

.pad-1 {
  padding: 1rem; }

.brd-bottom {
  border-bottom: solid 1px rgba(0, 0, 0, 0.12); }

.flex-1 {
  flex: 1; }

.flex-2 {
  flex: 2; }

.flex-3 {
  flex: 3; }

.flex-4 {
  flex: 4; }

.flex-5 {
  flex: 5; }

.flex-6 {
  flex: 6; }

.margin-bottom-sm {
  margin-bottom: 8px; }

.margin-bottom-md {
  margin-bottom: 12px; }

.menu-right {
  right: 0;
  left: inherit; }

.bdr-bottom {
  border-bottom: solid 1px rgba(0, 0, 0, 0.12); }

.pad-sm {
  padding: 1rem; }

.pad-md {
  padding: 2rem; }

.pad-lg {
  padding: 3rem; }

.ui-danger {
  color: #e0412d; }

.black-74 {
  color: rgba(0, 0, 0, 0.74); }

/**
 * Boilerplate styling
 * Examples include browser reset, typographic rules, etc
 * General rule of thumb no user defined selectors (.classes, #ids)
 */
html {
  font-size: 62.5%;
  height: 100%;
  overflow: hidden; }

body {
  margin: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Roboto", helvetica, arial, sans-serif;
  font-size: 1.4em; }

a {
  transition: all 0.2s ease-out; }

.row {
  margin: 0 !important; }

p.info {
  font-size: 13px;
  margin-top: 20px; }

#footer.top-nav {
  margin-top: 44px !important; }

#footer.model-nav {
  margin-top: 103px !important; }

#footer .title-row {
  padding: 0.7rem;
  display: block;
  width: 100%; }

#geocode-search-region {
  display: inline-block;
  pointer-events: auto; }
  #geocode-search-region #search-results-container {
    position: absolute; }

#boundary-label {
  display: none;
  padding: 5px;
  background-color: #394750;
  color: #ffffff;
  position: absolute;
  z-index: 1;
  opacity: 0.8; }

a:focus {
  outline: none;
  outline-offset: 0; }

p {
  font-size: 15px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.5;
  margin: 0; }

h1, h2, h3 {
  margin: 0; }
  h1.light, h2.light, h3.light {
    color: #ffffff; }
  h1.dark, h2.dark, h3.dark {
    color: #273238; }

h1 {
  font-size: 24px;
  font-weight: 800; }
  h1.precip {
    color: #49b8ea; }
  h1.evapo {
    color: #2d8bff; }
  h1.runoff {
    color: #ed3b3b; }
  h1.infil {
    color: #f2cf46; }

h2 {
  font-size: 21px;
  font-weight: 800; }

h3 {
  font-size: 18px;
  font-weight: 800; }

label {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2; }
  label.paper {
    color: #ffffff; }
  label.light {
    color: rgba(255, 255, 255, 0.54); }
  label.medium {
    color: rgba(0, 0, 0, 0.54); }
  label.dark {
    color: #394750; }
  label.small {
    font-size: 13px; }

.nvd3 text {
  font-family: -apple-system, BlinkMacSystemFont, "Roboto", helvetica, arial, sans-serif;
  fill: #273238; }

small,
.small {
  font-size: 13px; }

/**
 * App layout and overall structure
 * Styling the main portion of the site.
 * Grid, Navbar, footer, sidebar
 */
header {
  width: 100%;
  position: relative;
  top: 0; }

#app-header {
  background-color: #273238;
  height: 44px;
  padding: 0 1rem;
  text-align: center; }
  #app-header .brand a {
    float: left;
    line-height: 44px;
    font-size: 15px;
    font-weight: 800;
    color: #ffffff; }
    #app-header .brand a:hover {
      color: rgba(255, 255, 255, 0.54);
      text-decoration: none;
      cursor: pointer; }
  #app-header img {
    height: 26px;
    position: relative;
    top: 10px; }
  #app-header .navigation {
    float: right;
    display: inline-block; }
    #app-header .navigation .main {
      list-style-type: none;
      display: inline-block; }
      #app-header .navigation .main li.header-link {
        line-height: 44px !important;
        font-size: 13px;
        font-weight: 400;
        margin-left: 1rem;
        display: inline-block;
        float: left; }
        #app-header .navigation .main li.header-link .dropdown-menu {
          left: auto;
          right: 0px;
          z-index: 1010; }
          #app-header .navigation .main li.header-link .dropdown-menu a {
            color: #394750; }
            #app-header .navigation .main li.header-link .dropdown-menu a:hover, #app-header .navigation .main li.header-link .dropdown-menu a:active {
              color: #394750; }
        #app-header .navigation .main li.header-link a {
          color: rgba(255, 255, 255, 0.54);
          text-decoration: none !important; }
          #app-header .navigation .main li.header-link a:hover, #app-header .navigation .main li.header-link a:active {
            color: #ffffff;
            text-decoration: none !important;
            cursor: pointer; }

#model-header {
  background-color: #394750; }
  #model-header.bigcz {
    height: 47px; }
  #model-header #project-menu-region {
    height: 47px; }
  #model-header .project {
    position: relative;
    top: -15px;
    height: 47px;
    background-color: #273238;
    width: 100%;
    display: flex;
    flex: 0 0 100%; }
    #model-header .project .project-right, #model-header .project .project-left {
      display: flex; }
    #model-header .project .project-center {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      margin-left: 0; }
    #model-header .project .project-left {
      flex: 1; }
    #model-header .project .project-right {
      margin-right: 8px; }
      #model-header .project .project-right .btn + .btn, #model-header .project .project-right .downloadcsv-link + .btn,
      #model-header .project .project-right .btn + .downloadcsv-link,
      #model-header .project .project-right .downloadcsv-link + .downloadcsv-link {
        margin-left: 8px; }
    #model-header .project .project-title {
      display: inline-block;
      position: relative;
      margin: 0 1rem;
      vertical-align: top; }
  #model-header .toolbar {
    height: 47px;
    left: 0;
    right: 0;
    padding: 0rem 1rem 0 1rem;
    background-color: #eceff1;
    height: 47px;
    line-height: 45px;
    display: flex;
    flex: 0 0 100%;
    flex-direction: row;
    flex-wrap: nowrap; }
    #model-header .toolbar .tooltip-inner {
      white-space: normal;
      max-width: 100px;
      width: 100px; }
    #model-header .toolbar #gwlfe-modifications-bar, #model-header .toolbar #gwlfe-modifications-popup {
      padding: 5px;
      position: absolute;
      display: block; }
      #model-header .toolbar #gwlfe-modifications-bar .thumb, #model-header .toolbar #gwlfe-modifications-popup .thumb {
        cursor: pointer;
        border: solid 2px transparent;
        height: 40px;
        width: 40px; }
      #model-header .toolbar #gwlfe-modifications-bar .thumb:hover, #model-header .toolbar #gwlfe-modifications-popup .thumb:hover {
        border: solid 2px #000000; }
    #model-header .toolbar #gwlfe-modifications-bar {
      top: 47px;
      right: 0;
      background-color: #eceff1;
      z-index: 2; }
      #model-header .toolbar #gwlfe-modifications-bar .title-icon {
        height: 45px; }
    #model-header .toolbar #gwlfe-modifications-popup {
      right: 56px;
      left: auto;
      z-index: 1003;
      border-radius: 12px; }
      #model-header .toolbar #gwlfe-modifications-popup .popover-content {
        padding: 11px 14px; }
        #model-header .toolbar #gwlfe-modifications-popup .popover-content .table {
          margin-bottom: 10px; }
      #model-header .toolbar #gwlfe-modifications-popup .close {
        position: absolute;
        top: 5px;
        right: 5px; }
    #model-header .toolbar #modification-btn-wrapper {
      display: inline-block;
      white-space: initial; }
    #model-header .toolbar #modifications {
      max-height: calc(100vh - 152px);
      overflow-y: scroll; }
      #model-header .toolbar #modifications .modification-type {
        min-width: 140px; }
      #model-header .toolbar #modifications .message {
        font-size: 13px; }
    #model-header .toolbar .inline {
      display: inline-block; }
    #model-header .toolbar #scenarios-region {
      white-space: nowrap; }
    #model-header .toolbar #toolbar-region {
      width: 100%; }
    #model-header .toolbar #toolbar-region > .toolbar-container {
      display: flex;
      flex-basis: 100%;
      flex-direction: row;
      height: 100%;
      align-items: center; }
      #model-header .toolbar #toolbar-region > .toolbar-container .right-controls-container {
        margin-left: auto; }
      #model-header .toolbar #toolbar-region > .toolbar-container #add-changes {
        color: #389b9b;
        height: 100%; }
    #model-header .toolbar .scenario-toolbar-tab-content,
    #model-header .toolbar .active.scenario-toolbar-tab-pane {
      display: inline-block;
      white-space: nowrap; }
    #model-header .toolbar .controls .control-item {
      margin-left: 5px; }
      #model-header .toolbar .controls .control-item label {
        font-size: 12px; }

.precipitation {
  width: 285px; }
  .precipitation .precipitation-slider {
    display: inline-block;
    width: 120px;
    margin: 0 0.7rem;
    padding: 0;
    vertical-align: middle; }

#compare-header {
  background-color: #394750;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.54); }
  #compare-header .top {
    height: 44px; }
    #compare-header .top .project {
      width: 240px;
      background-color: #273238;
      height: 100%; }
      #compare-header .top .project .project-title {
        display: inline-block;
        position: relative;
        width: 180px; }
        #compare-header .top .project .project-title h3 {
          margin: 0;
          line-height: 44px; }
    #compare-header .top .top-bar {
      position: absolute;
      top: 0;
      left: 240px;
      right: 0;
      padding: 8px 0 8px 8px;
      height: inherit; }
      #compare-header .top .top-bar .tab-controls {
        position: absolute;
        top: 0;
        left: 0;
        padding: 7px; }
      #compare-header .top .top-bar .scenario-tabs-wrapper {
        position: absolute;
        top: 0;
        left: 45px;
        height: 44px;
        width: 5000px; }
      #compare-header .top .top-bar .fade-tabs {
        position: absolute;
        top: 0;
        right: 85px;
        height: 44px;
        width: 10px;
        z-index: 200;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0), #394750); }

.profile-reminder-dot {
  border-radius: 50%;
  margin-left: 3px;
  vertical-align: middle;
  margin-top: -2px;
  border: 6px solid #238cea;
  display: inline-block; }

.popover.bottom.profile-popover {
  width: 400px;
  background: #394750;
  padding: 1rem; }
  .popover.bottom.profile-popover > .popover-title {
    padding: 0;
    padding-bottom: 1rem;
    background: #394750;
    color: #ffffff;
    font-size: 21px; }
  .popover.bottom.profile-popover > .popover-content {
    background: #394750;
    color: #ffffff;
    padding: 0;
    padding-bottom: 1rem; }
  .popover.bottom.profile-popover > .arrow:after {
    border-bottom-color: #394750; }

.profile-fade-background {
  top: 44px;
  display: block; }

#continue-as-divider {
  margin: 1.2rem 0;
  font-size: 13px;
  text-align: center; }

#guest-buttons .btn,
#guest-buttons .downloadcsv-link {
  float: left;
  width: 100%; }

#guest-buttons.half-width .btn,
#guest-buttons.half-width .downloadcsv-link {
  width: 48%; }

#guest-buttons.half-width .btn + .btn, #guest-buttons.half-width .downloadcsv-link + .btn,
#guest-buttons.half-width .btn + .downloadcsv-link,
#guest-buttons.half-width .downloadcsv-link + .downloadcsv-link {
  margin-left: 4%; }

.map-container {
  position: absolute;
  top: 44px;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all 200ms; }
  .map-container.-toolbarheader {
    top: 138px; }
  .map-container.-projectheader {
    top: 91px; }
  .map-container.-sidebar {
    left: 460px; }
  .map-container.-sidebar.-double {
    left: calc(460px + 300px); }
  .compare-scenarios-container .map-container {
    top: 0; }

#map {
  background-color: rgba(0, 0, 0, 0.12);
  z-index: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  height: 100%; }

#overlay-subclass-vector .disabled, #overlay-subclass-raster .disabled {
  color: rgba(0, 0, 0, 0.54); }

.leaflet-draw-toolbar a {
  background-image: url("../images/spritesheet.png"); }

.leaflet-retina .leaflet-draw-toolbar a {
  background-image: url("../images/spritesheet-2x.png"); }

.leaflet-control-layers-toggle {
  background-image: url("../images/layers.png"); }

.leaflet-retina .leaflet-control-layers-toggle {
  background-image: url("../images/layers-2x.png"); }

.layer-control-button-container a {
  float: right; }

.leaflet-control-layers-expanded {
  padding: 0;
  background-color: transparent; }

.leaflet-bottom.leaflet-right {
  text-align: right; }

.leaflet-bottom.leaflet-right > .leaflet-control {
  display: inline-block;
  float: none;
  vertical-align: middle;
  margin-bottom: 6px; }
  .leaflet-bottom.leaflet-right > .leaflet-control:first-child {
    margin-right: 10px; }
  .leaflet-bottom.leaflet-right > .leaflet-control.leaflet-control-attribution {
    display: block;
    margin-bottom: 0px; }
  .leaflet-bottom.leaflet-right > .leaflet-control.leaflet-control-zoom {
    width: 68px; }
    .leaflet-bottom.leaflet-right > .leaflet-control.leaflet-control-zoom .leaflet-control-zoom-out {
      border-right: 2px #ccc solid; }
    .leaflet-bottom.leaflet-right > .leaflet-control.leaflet-control-zoom .leaflet-control-zoom-out, .leaflet-bottom.leaflet-right > .leaflet-control.leaflet-control-zoom .leaflet-control-zoom-in {
      font-size: 24px;
      line-height: 32px;
      font-size: 21px !important;
      font-weight: 900;
      font-family: -apple-system, BlinkMacSystemFont, "Roboto", helvetica, arial, sans-serif; }
    .leaflet-touch .leaflet-bottom.leaflet-right > .leaflet-control.leaflet-control-zoom {
      width: 72px;
      height: 38px; }

.leaflet-bottom.leaflet-right > .leaflet-bar,
.layer-control-button-container.leaflet-bar {
  height: 34px;
  width: 34px; }
  .leaflet-bottom.leaflet-right > .leaflet-bar > a,
  .layer-control-button-container.leaflet-bar > a {
    display: inline-block;
    background-color: #eceff1;
    color: #394750;
    border-radius: 0px;
    height: 34px;
    width: 34px;
    line-height: 34px;
    border: none;
    font-size: 15px;
    box-shadow: none;
    float: none;
    color: #333333 !important; }
    .leaflet-bottom.leaflet-right > .leaflet-bar > a:hover,
    .layer-control-button-container.leaflet-bar > a:hover {
      background-color: #ccc; }
  .leaflet-touch .leaflet-bottom.leaflet-right > .leaflet-bar, .leaflet-touch
  .layer-control-button-container.leaflet-bar {
    height: 38px;
    width: 38px; }
  .leaflet-bottom.leaflet-right > .leaflet-bar.hidden-control,
  .layer-control-button-container.leaflet-bar.hidden-control {
    visibility: hidden; }

.leaflet-control .leaflet-control-layers-list {
  display: block; }

.leaflet-control.opacity_slider_control {
  position: absolute;
  top: 134px; }

.leaflet-control.leaflet-control-layers {
  min-width: 246px;
  margin-right: 50px;
  display: none;
  position: absolute;
  top: 120px;
  right: 15px;
  height: 83%;
  max-height: 365px; }
  .leaflet-control.leaflet-control-layers h4 {
    font-size: 15px;
    margin: 4px 0 4px 0; }
  .leaflet-control.leaflet-control-layers form {
    padding: 4px 10px;
    height: calc(100% - 80px);
    overflow-y: auto; }

.leaflet-control .leaflet-control-stream {
  min-width: 220px;
  min-height: 100px;
  margin-right: 50px;
  background-color: #fff;
  display: none; }

.leaflet-control .modal-header {
  background-color: #273238;
  color: #ffffff;
  padding: 5px 15px; }
  .leaflet-control .modal-header .modal-title {
    font-size: 15px; }

.leaflet-control form {
  padding: 15px; }

.leaflet-control .close {
  text-shadow: none;
  color: #ffffff;
  font-size: 24px; }

.leaflet-control-layers,
.leaflet-popup {
  font-family: -apple-system, BlinkMacSystemFont, "Roboto", helvetica, arial, sans-serif !important; }

.marker-rwd {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  border: 1px solid #fff; }
  .marker-rwd:after {
    position: absolute;
    width: 10px;
    height: 10px;
    top: 2px;
    left: 2px;
    background-color: #fff;
    content: "";
    border-radius: 100%; }

.marker-rwd-original-point {
  background-color: #8e44ad; }

.marker-rwd-nearest-stream-point {
  background-color: #3498db; }

.leaflet-popup-content h3, .leaflet-popup-content h5, #gwlfe-modifications-popup h3, #gwlfe-modifications-popup h5 {
  margin-bottom: 10px; }

.leaflet-popup-content table, #gwlfe-modifications-popup table {
  margin-bottom: 10px; }
  .leaflet-popup-content table td, #gwlfe-modifications-popup table td {
    padding: 4px !important; }
    .leaflet-popup-content table td:first-child, #gwlfe-modifications-popup table td:first-child {
      padding-left: 0 !important; }
    .leaflet-popup-content table td:last-child, #gwlfe-modifications-popup table td:last-child {
      padding-right: 0 !important; }

.leaflet-popup-content .delete-modification, #gwlfe-modifications-popup .delete-modification {
  padding: 0; }

div.leaflet-popup.data-catalog-popover.leaflet-zoom-animated div.leaflet-popup-content-wrapper,
div.leaflet-popup.data-catalog-popover-list.leaflet-zoom-animated div.leaflet-popup-content-wrapper {
  border-radius: 0px; }

div.leaflet-popup.data-catalog-popover.leaflet-zoom-animated div.leaflet-popup-content-wrapper div.leaflet-popup-content {
  margin-left: 10px;
  margin-bottom: 10px; }

div.leaflet-popup.data-catalog-popover-list.leaflet-zoom-animated div.leaflet-popup-content-wrapper {
  width: 250px; }
  div.leaflet-popup.data-catalog-popover-list.leaflet-zoom-animated div.leaflet-popup-content-wrapper div.leaflet-popup-content {
    margin: 0; }

.map-highlight.bigcz-highlight-map,
.map-highlight.bigcz-detail-map {
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 100; }

.map-highlight.bigcz-highlight-map {
  border: 3px solid gold; }

.map-highlight.bigcz-detail-map {
  border: 3px solid steelblue; }

/**
 * Components
 * Buttons, text-input, tabs.
 */
.btn, .results-content.downloadcsv-link,
.downloadcsv-link {
  display: inline-block;
  position: relative;
  transition: all 0.2s ease-out; }

.btn-xs, .btn-group-xs > .btn,
.btn-group-xs > .downloadcsv-link {
  font-size: 0.5rem;
  padding: 0 0.3rem;
  line-height: 18px; }

.btn-sm, .btn-group-sm > .btn,
.btn-group-sm > .downloadcsv-link {
  border-radius: 2px;
  font-size: 13px;
  padding: 0 0.7rem;
  line-height: 28px; }

.btn-md {
  line-height: 36px;
  border-radius: 2px;
  font-size: 15px;
  padding: 0 1rem; }

.btn-lg, .btn-group-lg > .btn,
.btn-group-lg > .downloadcsv-link {
  line-height: 44px;
  border-radius: 2px;
  font-size: 15px;
  padding: 0 1rem; }

.btn-default {
  color: #389b9b;
  position: relative;
  display: inline-block;
  background-color: transparent;
  border: solid 1px transparent; }
  .btn-default:hover, .btn-default:focus, .btn-default.focus {
    color: #ffffff;
    background-color: #389b9b;
    border: solid 1px transparent; }

.btn-primary, .results-content.downloadcsv-link,
.downloadcsv-link {
  color: rgba(0, 0, 0, 0.74);
  position: relative;
  display: inline-block;
  background-color: #eceff1;
  border: solid 1px #dde3e6; }
  .btn-primary i, .results-content.downloadcsv-link i, .downloadcsv-link i {
    color: rgba(0, 0, 0, 0.74);
    margin-right: 1px; }
  .btn-primary:hover,
  .downloadcsv-link:hover, .btn-primary:focus,
  .downloadcsv-link:focus {
    color: rgba(0, 0, 0, 0.74);
    background-color: #dde3e6;
    border: solid 1px #cfd6db; }
  .btn-primary label, .results-content.downloadcsv-link label, .downloadcsv-link label {
    color: rgba(0, 0, 0, 0.74);
    font-weight: 400; }

.btn-active {
  color: #ffffff !important;
  position: relative;
  display: inline-block;
  background-color: #389b9b !important;
  border-color: #318888; }
  .btn-active:hover, .btn-active:focus {
    color: #ffffff !important;
    background-color: #318888;
    border-color: #2a7676; }

.btn-secondary {
  height: 36px;
  background-color: #394750;
  color: #ffffff;
  border: solid 1px #242d32; }
  .btn-secondary i {
    color: #ffffff;
    margin-right: 1px; }
  .btn-secondary:hover, .btn-secondary:focus {
    color: #ffffff;
    background-color: #2e3a41;
    border: solid 1px #191f23; }

.btn-cta {
  color: #ffffff;
  text-align: center;
  background-color: #51dec2;
  width: 56px;
  line-height: 56px;
  text-align: center;
  border-radius: 28px;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.54);
  margin-bottom: 0.5rem; }
  .btn-cta:hover, .btn-cta:focus {
    color: #ffffff;
    background-color: #28d4b2; }

.btn-tab {
  margin-right: 1px;
  width: 29px;
  height: 29px;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.54);
  font-size: 15px;
  padding: 4px;
  border-radius: 0 !important; }
  .btn-tab:hover, .btn-tab:focus {
    background-color: rgba(255, 255, 255, 0.12);
    color: #ffffff; }

.btn-icon {
  text-align: center;
  background-color: transparent;
  line-height: inherit !important; }
  .btn-icon.light {
    color: rgba(255, 255, 255, 0.74); }
    .btn-icon.light:hover, .btn-icon.light:focus {
      color: #ffffff; }
  .btn-icon.dark {
    color: rgba(0, 0, 0, 0.54); }
    .btn-icon.dark:hover, .btn-icon.dark:focus {
      color: rgba(0, 0, 0, 0.74); }
  .gwlfe_settings > .btn-icon {
    z-index: 3; }

.btn-scenario {
  color: #273238; }
  .btn-scenario i {
    margin-right: 4px;
    color: #273238; }
  .btn-scenario:hover i, .btn-scenario:focus i {
    color: #ffffff; }

.btn-back-compare {
  font-size: 18px; }
  .btn-back-compare i {
    margin-right: 4px; }

.btn-search-tool {
  color: #394750;
  position: relative;
  display: inline-block;
  background-color: #ffffff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.74);
  margin-right: 0.6rem; }
  .btn-search-tool:hover {
    color: #394750;
    background-color: #eceff1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.74); }


.open > .btn-primary.dropdown-toggle,
.open > .dropdown-toggle.downloadcsv-link {
  background-color: #dde3e6;
  border: solid 1px #cfd6db; }

#change-area-button {
  margin-right: 10px; }
  .data-catalog > #change-area-button {
    margin-right: 0; }

#change-area-button,
.select-model-button,
.go-to-data-catalog-button {
  width: 100%;
  height: 46px; }

.select-model-button {
  font-weight: 800; }

.go-to-data-catalog-button > .fa-arrow-right {
  margin-left: 0.25rem; }

.input-group-btn > button {
  height: 34px; }

.btn-page {
  background: #ffffff;
  border: solid 1px #cfd6db;
  text-align: center;
  border-radius: 2px; }

.btn-search-option {
  color: rgba(0, 0, 0, 0.74);
  position: relative;
  display: inline-block;
  background-color: transparent;
  border: none; }
  .btn-search-option i {
    color: rgba(0, 0, 0, 0.74);
    margin-right: 1px; }
  .btn-search-option:hover, .btn-search-option:focus {
    color: #000000; }
  .btn-search-option:active {
    box-shadow: none; }

.chart-container {
  width: 100%;
  height: 100%; }

.bar-chart {
  width: 100%;
  display: block;
  height: 300px;
  vertical-align: baseline;
  vertical-align: bottom; }
  .bar-chart .nv-bar {
    fill: #389b9b; }
  .bar-chart .nlcd-fill-11 {
    fill: #5475A8; }
  .bar-chart .nlcd-fill-12 {
    fill: #FFFFFF; }
  .bar-chart .nlcd-fill-21 {
    fill: #E8D1D1; }
  .bar-chart .nlcd-fill-22 {
    fill: #E29E8C; }
  .bar-chart .nlcd-fill-23 {
    fill: #ff0000; }
  .bar-chart .nlcd-fill-24 {
    fill: #B50000; }
  .bar-chart .nlcd-fill-31 {
    fill: #D2CDC0; }
  .bar-chart .nlcd-fill-41 {
    fill: #85C77E; }
  .bar-chart .nlcd-fill-42 {
    fill: #38814E; }
  .bar-chart .nlcd-fill-43 {
    fill: #D4E7B0; }
  .bar-chart .nlcd-fill-52 {
    fill: #DCCA8F; }
  .bar-chart .nlcd-fill-71 {
    fill: #FDE9AA; }
  .bar-chart .nlcd-fill-81 {
    fill: #FBF65D; }
  .bar-chart .nlcd-fill-82 {
    fill: #CA9146; }
  .bar-chart .nlcd-fill-90 {
    fill: #C8E6F8; }
  .bar-chart .nlcd-fill-95 {
    fill: #64B3D5; }
  .bar-chart .io-lulc-fill-1 {
    fill: #419bdf; }
  .bar-chart .io-lulc-fill-2 {
    fill: #397d49; }
  .bar-chart .io-lulc-fill-4 {
    fill: #7a87c6; }
  .bar-chart .io-lulc-fill-5 {
    fill: #e49635; }
  .bar-chart .io-lulc-fill-7 {
    fill: #c4281b; }
  .bar-chart .io-lulc-fill-8 {
    fill: #a59b8f; }
  .bar-chart .io-lulc-fill-9 {
    fill: #a8ebff; }
  .bar-chart .io-lulc-fill-10 {
    fill: #616161; }
  .bar-chart .io-lulc-fill-11 {
    fill: #e3e2c3; }
  .bar-chart .protected-lands-fill-pra_f {
    fill: #AFB42B; }
  .bar-chart .protected-lands-fill-pra_s {
    fill: #C0CA33; }
  .bar-chart .protected-lands-fill-pra_l {
    fill: #CDDC39; }
  .bar-chart .protected-lands-fill-pra_p {
    fill: #D4E157; }
  .bar-chart .protected-lands-fill-pra_u {
    fill: #E6EE9C; }
  .bar-chart .protected-lands-fill-nra_f {
    fill: #388E3C; }
  .bar-chart .protected-lands-fill-nra_s {
    fill: #43A047; }
  .bar-chart .protected-lands-fill-nra_l {
    fill: #4CAF50; }
  .bar-chart .protected-lands-fill-nra_p {
    fill: #66BB6A; }
  .bar-chart .protected-lands-fill-nra_u {
    fill: #A5D6A7; }
  .bar-chart .protected-lands-fill-con_ease {
    fill: #9E9446; }
  .bar-chart .protected-lands-fill-ag_ease {
    fill: #8D6E63; }
  .bar-chart .soil-fill-a {
    fill: #ffffd4; }
  .bar-chart .soil-fill-b {
    fill: #fee391; }
  .bar-chart .soil-fill-c {
    fill: #fec44f; }
  .bar-chart .soil-fill-d {
    fill: #8c2d04; }
  .bar-chart .soil-fill-ad {
    fill: #fe9929; }
  .bar-chart .soil-fill-bd {
    fill: #ec7014; }
  .bar-chart .soil-fill-cd {
    fill: #cc4c02; }
  .bar-chart svg {
    width: 435px;
    height: 300px; }

.quality-chart-container .bullet-charts .bullet-chart {
  width: 100%;
  height: 60px; }
  .quality-chart-container .bullet-charts .bullet-chart svg {
    width: 435px;
    height: 60px; }
  .quality-chart-container .bullet-charts .bullet-chart .nv-tick line {
    stroke: #bababa;
    stroke-width: 0.5px; }

.quality-chart-container .chart-units {
  font-size: 12px;
  text-align: center; }

#scenario-wrapper {
  position: relative;
  width: 100%; }

.sidebar-tab-header-label {
  position: relative;
  padding: 0 4px; }
  .sidebar-tab-header-label:after {
    position: absolute;
    left: 0;
    content: "";
    border-bottom: 2px solid transparent;
    padding-bottom: 0px;
    top: 0;
    height: 40px;
    line-height: 40px;
    width: 100%;
    margin-top: 2px; }

.sidebar-tab-header-label-icon {
  color: rgba(0, 0, 0, 0.54);
  position: absolute;
  bottom: 2px;
  height: auto;
  text-align: center;
  width: calc(100% - 8px);
  font-size: 8px; }

.model-stage-results-tab-pane .model-nav-tabs {
  background-color: #ffffff; }

.model-stage-results-tab-pane .model-tab-content {
  height: calc(100% - 47px * 2 - 44px - 21px) !important; }

.model-stage-results-tab-pane .analyze-tab-content {
  height: calc(100% - 47px - 44px * 2 - 54px - 21px) !important; }

.subbasin-tab-content-region .tab-content.model-tab-content {
  height: calc(100% - 47px * 2 - 44px - 100px) !important;
  padding: 0;
  width: calc(460px - 2rem); }

.analyze-stage-results-tab-pane .tab-content {
  height: calc(100% - 44px * 3 - 54px - 21px - 42px) !important; }

.analyze-stage-monitor-tab-pane .tab-content {
  height: calc(100% - 44px * 3 - 54px - 42px - 46px - 21px) !important; }
  .analyze-stage-monitor-tab-pane .tab-content.paginated {
    height: calc(100% - 44px * 3 - 54px - 42px - 46px - 21px - 54px) !important; }

.model-stage-monitor-tab-pane .tab-content {
  height: calc(100% - 44px - 47px - 54px - 42px - 46px - 21px) !important; }
  .model-stage-monitor-tab-pane .tab-content.paginated {
    height: calc(100% - 44px - 47px - 54px - 42px - 46px - 21px - 54px) !important; }

.data-catalog-stage-results-tab-pane .tab-content {
  height: 100% !important; }
  .data-catalog-stage-results-tab-pane .tab-content.analyze-tab-content {
    height: calc(100% - 44px - 47px - 42px) !important; }

.output-tabs-wrapper .nav-tabs {
  font-weight: 400;
  font-size: 13px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12); }
  .output-tabs-wrapper .nav-tabs li a {
    border-radius: 0 !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important; }
  .output-tabs-wrapper .nav-tabs li > a {
    margin-right: 0px;
    color: #394750;
    padding: 0 0.4rem;
    line-height: 42px;
    background-color: transparent;
    height: 42px; }
    .output-tabs-wrapper .nav-tabs li > a i {
      color: rgba(0, 0, 0, 0.54);
      position: relative;
      top: 1.4rem;
      font-size: 0.8rem; }
    .output-tabs-wrapper .nav-tabs li > a:hover, .output-tabs-wrapper .nav-tabs li > a:focus {
      border-radius: 0 !important;
      color: #394750;
      background-color: transparent; }
  .output-tabs-wrapper .nav-tabs li.active > a {
    color: #394750; }
    .output-tabs-wrapper .nav-tabs li.active > a .sidebar-tab-header-label {
      color: #389b9b;
      font-weight: 800; }
      .output-tabs-wrapper .nav-tabs li.active > a .sidebar-tab-header-label:after {
        border-bottom-color: #389b9b; }

.output-tabs-wrapper .tab-content {
  position: absolute;
  padding: 1rem;
  overflow-y: auto;
  width: 460px; }
  .output-tabs-wrapper .tab-content img {
    width: 100%;
    height: 200px; }
  .output-tabs-wrapper .tab-content .left, .output-tabs-wrapper .tab-content .right {
    position: relative;
    width: 100%; }

.output-tabs-wrapper .tab-pane {
  padding-bottom: 1rem; }

#compare-wrapper {
  position: relative;
  width: 100%; }
  #compare-wrapper .nav-tabs {
    font-weight: 500;
    font-size: 15px;
    border-bottom: none !important;
    background-color: #394750; }
    #compare-wrapper .nav-tabs li a {
      border-radius: 0 !important;
      border-top: none !important;
      border-left: none !important;
      border-right: none !important;
      text-transform: uppercase; }
    #compare-wrapper .nav-tabs li.active > a {
      color: #ffffff;
      background-color: rgba(255, 255, 255, 0.12); }
    #compare-wrapper .nav-tabs li > a {
      color: rgba(255, 255, 255, 0.54);
      padding: 0 1.2rem;
      line-height: 44px;
      margin-right: 2px;
      background-color: transparent; }
      #compare-wrapper .nav-tabs li > a:hover {
        background-color: rgba(255, 255, 255, 0.12);
        border-radius: 0 !important;
        color: #ffffff; }

.model-analyze-toggle-tab-header {
  height: 36px;
  display: inline-block;
  margin-left: 12px;
  border: 1px solid transparent; }
  .model-analyze-toggle-tab-header .nav-tabs {
    height: 100%;
    border-bottom: 0;
    background-color: rgba(0, 0, 0, 0.06); }
  .model-analyze-toggle-tab-header .nav-tabs > li.active > a,
  .model-analyze-toggle-tab-header .nav-tabs > li.active > a:hover,
  .model-analyze-toggle-tab-header .nav-tabs > li.active > a:focus {
    background-color: #389b9b;
    border: 0;
    font-weight: 800;
    color: #ffffff; }
  .model-analyze-toggle-tab-header .nav-tabs > li {
    float: left;
    position: relative;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1); }
    .model-analyze-toggle-tab-header .nav-tabs > li:first-child a {
      float: right;
      border-radius: 3px 0 0 3px;
      width: 9.3rem;
      transition: none; }
    .model-analyze-toggle-tab-header .nav-tabs > li:last-child a {
      float: left;
      border-radius: 0 3px 3px 0;
      width: 8rem;
      transition: none; }
  .model-analyze-toggle-tab-header .nav-tabs > li > a {
    width: 100%;
    margin: 0;
    border-radius: 0;
    border: 0;
    background-color: #394750;
    padding-top: 0;
    font-size: 15px;
    font-weight: lighter;
    text-align: center;
    color: #ffffff;
    height: 34px;
    line-height: 34px;
    padding-left: 17px;
    padding-right: 17px; }

#sidebar .nav-tabs {
  padding: 0 1rem; }
  #sidebar .nav-tabs li:first-child a {
    padding-left: 0; }
  #sidebar .nav-tabs li:last-child a {
    padding-right: 0; }

#land-tab-ara-section,
#streams-tab-ag-section {
  padding-top: 1rem;
  margin-left: 0.3rem; }
  #land-tab-ara-section .land-tab-ara-line-item,
  #land-tab-ara-section .streams-tab-ag-line-item,
  #streams-tab-ag-section .land-tab-ara-line-item,
  #streams-tab-ag-section .streams-tab-ag-line-item {
    font-weight: 800;
    font-size: 13px; }

.dropdown {
  display: inline-block;
  line-height: 1 !important; }
  .dropdown .dropdown-menu {
    padding: 0;
    border-radius: 2px !important;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.24); }
    .dropdown .dropdown-menu .divider {
      margin: 0 !important; }
    .dropdown .dropdown-menu.menu-left {
      left: 0; }
    .dropdown .dropdown-menu.menu-right {
      right: 0;
      left: inherit; }
    .dropdown .dropdown-menu li a,
    .dropdown .dropdown-menu li .scenario-dropdown-menu-item,
    .dropdown .dropdown-menu li .scenario-options-dropdown-menu-item {
      color: rgba(0, 0, 0, 0.74);
      line-height: 36px;
      padding: 0 0.5rem;
      font-size: 13px;
      text-transform: capitalize !important; }
      .dropdown .dropdown-menu li a:not(.disabled),
      .dropdown .dropdown-menu li .scenario-dropdown-menu-item:not(.disabled),
      .dropdown .dropdown-menu li .scenario-options-dropdown-menu-item:not(.disabled) {
        cursor: pointer; }
        .dropdown .dropdown-menu li a:not(.disabled):hover, .dropdown .dropdown-menu li a:not(.disabled):focus,
        .dropdown .dropdown-menu li .scenario-dropdown-menu-item:not(.disabled):hover,
        .dropdown .dropdown-menu li .scenario-dropdown-menu-item:not(.disabled):focus,
        .dropdown .dropdown-menu li .scenario-options-dropdown-menu-item:not(.disabled):hover,
        .dropdown .dropdown-menu li .scenario-options-dropdown-menu-item:not(.disabled):focus {
          color: rgba(0, 0, 0, 0.74);
          background-color: #eceff1; }
      .dropdown .dropdown-menu li a.disabled,
      .dropdown .dropdown-menu li .scenario-dropdown-menu-item.disabled,
      .dropdown .dropdown-menu li .scenario-options-dropdown-menu-item.disabled {
        cursor: default !important;
        color: rgba(0, 0, 0, 0.54); }
      .dropdown .dropdown-menu li a i,
      .dropdown .dropdown-menu li .scenario-dropdown-menu-item i,
      .dropdown .dropdown-menu li .scenario-options-dropdown-menu-item i {
        color: rgba(0, 0, 0, 0.54);
        margin-right: 6px; }
    .dropdown .dropdown-menu .dropdown-footer {
      background-color: #eceff1;
      min-height: 100px; }
      .dropdown .dropdown-menu .dropdown-footer span {
        color: rgba(0, 0, 0, 0.54); }

.manual-entry {
  min-width: 250px; }
  .manual-entry .header .header-text {
    background-color: #eceff1; }
    .manual-entry .header .header-text .name, .manual-entry .header .header-text .back-button {
      display: inline; }
  .manual-entry .header svg {
    position: absolute; }
  .manual-entry .content {
    padding: 1rem; }
    .manual-entry .content .form-group {
      margin-bottom: 0; }
    .manual-entry .content .info-region {
      min-height: 25px; }
      .manual-entry .content .info-region .info-message {
        color: #787878; }
      .manual-entry .content .info-region .error-message {
        color: #e0412d; }
    .manual-entry .content .amount-form {
      margin: 10px; }

.thumb-select {
  white-space: normal;
  padding: 0 !important;
  min-width: 200px; }
  .thumb-select .summary {
    line-height: 150%; }
  .thumb-select .select-draw-manual {
    padding-left: 1rem;
    padding-bottom: 0.5rem; }
  .thumb-select ul {
    list-style-type: none;
    -webkit-padding-start: 0 !important;
    -moz-padding-start: 0 !important;
    display: flex;
    flex-direction: row; }
    .thumb-select ul li {
      float: left;
      display: block;
      width: 70px;
      margin-bottom: 0.2rem;
      transition: all 0.4s ease-out;
      margin-right: 1rem;
      text-align: center;
      white-space: normal; }
      .thumb-select ul li:last-child {
        margin-right: 0 !important; }
      .thumb-select ul li .thumb {
        height: 60px;
        width: 60px;
        position: relative;
        left: 5px;
        border: solid 2px transparent;
        margin-bottom: 0.2rem;
        display: block; }
        .thumb-select ul li .thumb:not(.disabled):hover {
          border-color: #273238;
          cursor: pointer; }
    .thumb-select ul .disabled {
      opacity: 0.4; }

#predefined-shape ul.dropdown-menu {
  min-width: 280px; }

.modification-dropdown {
  z-index: 1002;
  white-space: normal; }

.project-dropdown,
.project-dropdown:hover,
.project-dropdown:focus {
  font-size: 21px;
  font-weight: 400;
  color: #ffffff;
  background-color: transparent;
  padding-left: 0px;
  margin: 0;
  max-width: 25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border: none; }

.scenario-dropdown, .scenario-dropdown:disabled {
  opacity: 1;
  font-size: 18px;
  font-weight: 800;
  color: #273238;
  background-color: transparent;
  padding-left: 0;
  position: relative;
  top: -1px; }
  .scenario-dropdown > span, .scenario-dropdown:disabled > span {
    display: inline-block;
    max-width: 240px;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle; }

.scenario-dropdown > i,
.project-dropdown > i {
  margin-left: 4px;
  font-size: 12px; }

.scenario-dropdown-menu-item {
  width: 300px;
  height: 100%; }
  .scenario-dropdown-menu-item .-active {
    color: #389b9b; }

.scenario-dropdown-menu-item > #scenario-name {
  text-transform: initial;
  white-space: normal;
  display: block; }

.scenario-dropdown-menu-item > .scenario-dropdown-actions {
  float: right;
  clear: right; }
  .scenario-dropdown-menu-item > .scenario-dropdown-actions > i {
    font-size: 15px;
    line-height: 35px;
    margin-left: 2px;
    margin-right: 0px !important;
    padding: 0rem 5px; }
    .scenario-dropdown-menu-item > .scenario-dropdown-actions > i:hover {
      color: #273238 !important; }
  .scenario-dropdown-menu-item > .scenario-dropdown-actions.-open > i {
    background: rgba(0, 0, 0, 0.12);
    margin-top: 7px;
    margin-bottom: 0px;
    height: 22px;
    padding: 0px 5px;
    line-height: 22px; }
  .scenario-dropdown-menu-item > .scenario-dropdown-actions > i.fa.fa-pencil-square-o {
    line-height: 36px; }
  .scenario-dropdown-menu-item > .scenario-dropdown-actions #export-gms-form {
    display: none; }
  .scenario-dropdown-menu-item > .scenario-dropdown-actions .scenario-options-dropdown {
    float: right;
    display: inline;
    left: 31px;
    top: -25px; }

#draw-pane-buttons .dropdown-menu .divider {
  margin: 6px 0; }

.modal {
  background-color: rgba(0, 0, 0, 0.54); }
  .modal .modal-dialog {
    margin: 72px auto 0 auto; }
  .modal .modal-content {
    border-radius: 0 !important;
    border: 0px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.24); }
    .modal .modal-content .modal-text-input-label {
      display: block; }
    .modal .modal-content .modal-text-input {
      width: 100%;
      padding: 0.75rem 0.5rem;
      margin: 0.5rem 0 2.5rem 0; }
    .modal .modal-content .col-sm-6 {
      padding: 0; }
  .modal .modal-content.modal-content-padded {
    padding: 2rem; }
  .modal .modal-content.modal-content-danger .btn-active {
    background-color: #e0412d !important; }
  .modal .modal-content.modal-content-danger .btn-default {
    color: #BDBDBD; }
    .modal .modal-content.modal-content-danger .btn-default:hover, .modal .modal-content.modal-content-danger .btn-default:focus {
      background: none !important; }
  .modal .cancel {
    position: absolute;
    top: 1rem;
    right: 0; }
  .modal iframe {
    width: 100%;
    height: 100%;
    border: none; }
    .modal iframe.hydroshare {
      height: 600px; }

.modal-dialog-sm {
  width: 100%; }
  @media (min-width: 768px) {
    .modal-dialog-sm {
      width: 400px; } }

.modal-basic .modal-content {
  padding: 1rem; }
  .modal-basic .modal-content .modal-header {
    padding: 0 0 1rem 0;
    border: 0; }
  .modal-basic .modal-content .modal-body {
    padding: 1rem 0; }
  .modal-basic .modal-content .modal-footer {
    padding: 0;
    border: 0; }

.modal-large .errors {
  list-style: none;
  background-color: lightpink;
  border-width: 1px;
  border-style: solid;
  border-color: red;
  padding: 1rem;
  color: red; }

.modal-large .modal-content {
  padding: 0; }
  .modal-large .modal-content .modal-header {
    padding: 3rem 2rem;
    border: 0;
    background-color: #389b9b; }
    .modal-large .modal-content .modal-header > h2 {
      margin-bottom: 4px; }
    .modal-large .modal-content .modal-header p {
      font-size: 15px;
      color: #ffffff;
      line-height: 1.6; }
  .modal-large .modal-content .modal-body {
    padding: 2rem;
    /* Reference: https://codepen.io/scottzirkel/pen/yNxNME */ }
    .modal-large .modal-content .modal-body .btn-active {
      font-weight: bolder; }
    .modal-large .modal-content .modal-body p {
      margin-bottom: 2rem; }
    .modal-large .modal-content .modal-body .hr-text {
      line-height: 1em;
      position: relative;
      outline: 0;
      border: 0;
      color: #cfd6db;
      text-align: center;
      font-size: 1.25em;
      height: 1.5em; }
      .modal-large .modal-content .modal-body .hr-text:before {
        content: '';
        background: #cfd6db;
        position: absolute;
        left: 0;
        top: 50%;
        width: 100%;
        height: 1px; }
      .modal-large .modal-content .modal-body .hr-text:after {
        content: attr(data-content);
        position: relative;
        display: inline-block;
        color: black;
        padding: 0 .5em;
        line-height: 1.5em;
        color: #818078;
        background-color: #fcfcfa; }
    .modal-large .modal-content .modal-body .actions {
      margin-top: 2rem;
      text-align: center; }
  .modal-large .modal-content .modal-footer {
    border: 0;
    text-align: center; }
    .modal-large .modal-content .modal-footer a {
      color: #389b9b;
      cursor: pointer;
      text-decoration: none; }
    .modal-large .modal-content .modal-footer .footer-content {
      background-color: #f4f4f4;
      padding: 15px; }

.modal-xl .modal-dialog {
  width: 960px; }

.modal-xl .modal-content {
  padding: 0; }
  .modal-xl .modal-content .modal-header {
    padding: 1.5rem;
    border: 0;
    background-color: #389b9b; }
    .modal-xl .modal-content .modal-header > h2 {
      margin-bottom: 4px; }
    .modal-xl .modal-content .modal-header p {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.54);
      line-height: 1; }
  .modal-xl .modal-content .modal-body {
    padding: 1.5rem; }
  .modal-xl .modal-content .modal-footer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    border: 0; }

.modal-popup .fa {
  font-size: 21px;
  padding: 1rem 0.4rem 0 0rem; }

.modal-popup .fa-info-circle {
  color: #389b9b; }

.modal-popup .fa-ban {
  color: #e0412d; }

.modal-popup .fa-exclamation-triangle {
  color: #e4b72f; }

.multi-share-modal p {
  font-size: 13px;
  margin-bottom: 1rem !important; }

.multi-share-modal .hydroshare-spinner,
.multi-share-modal .hydroshare-warning {
  margin: 12px; }

.multi-share-modal .hydroshare-autosync-container {
  padding: 10px;
  border: 1px solid #eceff1;
  border-radius: 4px; }
  .multi-share-modal .hydroshare-autosync-container label {
    font-size: 13px;
    font-weight: normal;
    margin-bottom: 1rem; }
  .multi-share-modal .hydroshare-autosync-container .hydroshare-timestamp {
    color: #787878; }
  .multi-share-modal .hydroshare-autosync-container .hydroshare-export {
    display: inline-block;
    border-left: 1px solid #787878;
    margin-left: 5px;
    padding-left: 10px; }

.modal-about .modal-content, .modal-text .modal-content {
  padding: 2rem; }

.modal-about .modal-header, .modal-text .modal-header {
  border: none; }
  .modal-about .modal-header p.version, .modal-text .modal-header p.version {
    margin-top: 1rem;
    font-size: 13px;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.39); }

.modal-about .modal-body p, .modal-about .modal-body li, .modal-text .modal-body p, .modal-text .modal-body li {
  font-size: 15px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.5; }

.modal-about .modal-body li, .modal-text .modal-body li {
  padding-left: 1rem; }

.modal-about .modal-body p, .modal-text .modal-body p {
  margin-bottom: 2rem; }

.modal-about .modal-body img.splash-sponsor-logo, .modal-text .modal-body img.splash-sponsor-logo {
  height: 100px; }

.modal-about .modal-body p.about-footer, .modal-text .modal-body p.about-footer {
  padding-top: 1rem;
  font-size: 13px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.39);
  margin-bottom: 0; }

.modal-text .modal-body {
  max-height: 600px;
  overflow-y: auto; }
  .modal-text .modal-body h2 {
    margin-bottom: 10px; }
  .modal-text .modal-body h3 {
    margin-bottom: 8px; }
  .modal-text .modal-body li {
    padding-bottom: 0.5rem; }

.hydroshare-modal .modal-text-input-label {
  margin-top: 2.5rem; }

.hydroshare-modal .modal-content .modal-text-input {
  margin-bottom: 0.5rem; }

.hydroshare-modal .modal-text-input-error {
  display: block;
  padding: 0.75rem;
  border: 1px solid #e0412d;
  color: #e0412d;
  background: rgba(224, 65, 45, 0.18); }

.hydroshare-modal textarea {
  border: 1px solid #ccc;
  color: #333; }

.hydroshare-modal .input-group > input {
  box-shadow: none;
  border-radius: 0; }

.hydroshare-modal .input-group button {
  border-radius: 0 !important;
  font-weight: normal !important; }

.hydroshare-modal .hydroshare-keyword {
  display: inline-block;
  color: #eceff1;
  background: #273238;
  padding: 0.75rem;
  margin: 0.25rem 0.1rem;
  border-radius: 4px; }
  .hydroshare-modal .hydroshare-keyword .hydroshare-keyword-delete {
    margin-left: 0.5rem;
    cursor: pointer; }

#weather-data-modal .modal-header,
#entry-modal .modal-header,
#land-cover-modal .modal-header {
  background: #eceff1;
  padding: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12); }

#weather-data-modal .modal-body,
#entry-modal .modal-body,
#land-cover-modal .modal-body {
  padding: 0; }

#weather-data-modal .modal-footer > .footer-content,
#entry-modal .modal-footer > .footer-content,
#land-cover-modal .modal-footer > .footer-content {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.12); }

#weather-data-modal .modal-body {
  padding: 1rem;
  display: flex; }
  #weather-data-modal .modal-body .weather-col {
    flex: 0 0 50%;
    padding: 0 1rem; }
    #weather-data-modal .modal-body .weather-col + .weather-col {
      border-left: 1px solid #eee; }
    #weather-data-modal .modal-body .weather-col-title {
      margin-bottom: 1rem; }
      #weather-data-modal .modal-body .weather-col-title input {
        float: left;
        margin-right: 1rem; }
    #weather-data-modal .modal-body .weather-col-description {
      font-size: 13px;
      margin-bottom: 1rem; }
    #weather-data-modal .modal-body .weather-col .file-select {
      cursor: pointer; }
      #weather-data-modal .modal-body .weather-col .file-select span {
        color: #ffffff;
        background-color: #389b9b;
        border-color: #318888; }
      #weather-data-modal .modal-body .weather-col .file-select input[type="text"] {
        background-color: #ffffff; }
    #weather-data-modal .modal-body .weather-col .custom-weather-file-text {
      background-color: #ffffff;
      border: solid 1px #dde3e6; }
    #weather-data-modal .modal-body .weather-col .delete-error-box,
    #weather-data-modal .modal-body .weather-col .upload-error-box {
      margin-top: 15px; }
    #weather-data-modal .modal-body .weather-col .delete-error-list,
    #weather-data-modal .modal-body .weather-col .upload-error-list {
      padding-left: 15px; }

#entry-modal .nav-tabs {
  padding: 0 2rem;
  font-weight: 400;
  font-size: 13px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  background: #ffffff; }
  #entry-modal .nav-tabs > li > a {
    border: none;
    border-bottom: inherit;
    padding: 0;
    margin: 0 1rem 2px;
    line-height: 47px;
    height: 47px;
    color: #394750; }
    #entry-modal .nav-tabs > li > a:hover, #entry-modal .nav-tabs > li > a:focus {
      background: inherit; }
    #entry-modal .nav-tabs > li > a > .tab-label {
      padding: 0 1px; }
  #entry-modal .nav-tabs > li.active > a > .tab-label {
    color: #389b9b;
    font-weight: 800;
    border-bottom: 2px solid #389b9b; }
  #entry-modal .nav-tabs > li:first-child > a {
    margin-left: 0; }

#entry-modal .tab-pane {
  padding: 2rem; }
  #entry-modal .tab-pane .rows {
    padding: 2rem 0; }
    #entry-modal .tab-pane .rows .row {
      padding-bottom: 0.5rem; }

#land-cover-modal .rows {
  padding: 2rem 0; }
  #land-cover-modal .rows .row {
    padding-bottom: 0.5rem; }

#land-cover-modal .modal-footer > .footer-content {
  display: flex;
  flex-direction: row; }
  #land-cover-modal .modal-footer > .footer-content .total-content {
    flex: 1;
    text-align: left;
    line-height: 36px;
    font-size: 15px; }
    #land-cover-modal .modal-footer > .footer-content .total-content .error {
      color: #e0412d;
      font-weight: bold; }

.mapshed-manual-entry .mapshed-manual-entry-label {
  padding-top: 7px; }

.mapshed-manual-entry input[type='number'] {
  -moz-appearance: textfield; }

.mapshed-manual-entry input::-webkit-outer-spin-button,
.mapshed-manual-entry input::-webkit-inner-spin-button {
  -webkit-appearance: none; }

.mapshed-manual-entry .form-control {
  border-radius: 0;
  color: #999; }
  .mapshed-manual-entry .form-control:invalid {
    border-color: #e0412d; }
    .mapshed-manual-entry .form-control:invalid:focus {
      box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; }

.mapshed-manual-entry select.form-control {
  color: #273238; }

.mapshed-manual-entry .btn-undo {
  display: none;
  position: absolute;
  top: 0;
  right: 20px; }
  .mapshed-manual-entry .btn-undo i {
    color: #449ff0; }
  .mapshed-manual-entry .btn-undo:focus {
    outline: none; }

.mapshed-manual-entry.has-user-value .btn-undo {
  display: block; }

.mapshed-manual-entry.has-user-value .form-control {
  color: #555; }

.triplet-tab-pane table {
  width: 100%; }
  .triplet-tab-pane table th {
    padding-bottom: 5px; }
  .triplet-tab-pane table td {
    padding-right: 5px;
    padding-bottom: 5px; }
    .triplet-tab-pane table td .mapshed-manual-entry {
      width: 100px;
      position: relative; }
      .triplet-tab-pane table td .mapshed-manual-entry .btn-undo {
        right: 0; }

.search-input {
  position: relative;
  display: inline-block;
  background-color: #ffffff;
  line-height: 36px;
  border-radius: 2px;
  border: 0 !important;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.74);
  font-size: 15px;
  width: 300px;
  height: 36px;
  padding: 0 0.7rem;
  color: rgba(0, 0, 0, 0.54);
  background-color: #ffffff; }
  .search-input:hover {
    background-color: #eceff1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.74);
    border: 0 !important; }
  .search-input::-webkit-input-placeholder {
    color: #394750; }
  .search-input:-moz-placeholder {
    /* Firefox 18- */
    color: #394750;
    opacity: 1 !important; }
  .search-input::-moz-placeholder {
    /* Firefox 19+ */
    color: #394750;
    opacity: 1 !important; }
  .search-input:-ms-input-placeholder {
    color: #394750; }

.bootstrap-select {
  margin: 0.5rem 0 2.5rem 0; }
  .bootstrap-select .btn-default {
    color: inherit;
    border-color: #dddddd;
    padding: 0.75rem 0.5rem;
    border-width: 1px;
    border-radius: 0; }
  .bootstrap-select .btn-default:hover, .bootstrap-select .btn-default:focus {
    background-color: inherit; }

.slider {
  -webkit-appearance: none;
  width: 100%;
  cursor: pointer; }
  .slider:focus {
    outline: none; }
  .slider.slider-leaflet {
    background: #000000;
    width: 150px;
    height: 26px;
    padding: 1px;
    border: 11px solid #ffffff;
    border-radius: 4px;
    box-shadow: -1px 0 5px rgba(0, 0, 0, 0.65);
    cursor: pointer; }
    .slider.slider-leaflet::-webkit-slider-thumb {
      background: #ffffff;
      width: 12px;
      height: 12px;
      border: 2px solid rgba(0, 0, 0, 0.74);
      border-radius: 4px;
      box-shadow: -1px 0 1px rgba(0, 0, 0, 0.54);
      -webkit-appearance: none; }
    .slider.slider-leaflet:focus::-webkit-slider-thumb {
      background: #000000; }
    .slider.slider-leaflet::-moz-range-track {
      background: #000000; }
    .slider.slider-leaflet::-moz-range-thumb {
      background: #ffffff;
      width: 10px;
      height: 10px;
      border: 2px solid rgba(0, 0, 0, 0.74);
      border-radius: 4px;
      box-shadow: -1px 0 1px rgba(0, 0, 0, 0.54); }
    .slider.slider-leaflet::-ms-track {
      background: transparent;
      border-color: transparent;
      color: transparent; }
    .slider.slider-leaflet::-ms-thumb {
      background: #ffffff;
      width: 14px;
      height: 14px;
      border: 2px solid rgba(0, 0, 0, 0.74);
      border-radius: 4px;
      box-shadow: -1px 0 1px rgba(0, 0, 0, 0.54); }
    .slider.slider-leaflet::-ms-fill-lower {
      background: #ffffff;
      border: #ffffff; }
    .slider.slider-leaflet::-ms-fill-upper {
      background: #ffffff;
      border: #ffffff; }
    .slider.slider-leaflet:focus::-ms-fill-lower {
      background: #ffffff;
      border: #ffffff; }
    .slider.slider-leaflet:focus::-ms-fill-upper {
      background: #ffffff;
      border: #ffffff; }
  .slider#precip-slider {
    height: 24px;
    padding: 0px;
    background: transparent; }
    .slider#precip-slider::-webkit-slider-runnable-track {
      width: 100%;
      height: 4px;
      background: #a4c9d7; }
    .slider#precip-slider::-webkit-slider-thumb {
      border: 3px solid #ffffff;
      height: 24px;
      width: 24px;
      border-radius: 15px;
      background: #51dec2;
      -webkit-appearance: none;
      margin-top: -10px; }
    .slider#precip-slider:focus::-webkit-slider-runnable-track {
      background: #a4c9d7; }
    .slider#precip-slider::-moz-range-track {
      width: 100%;
      height: 4px;
      background: #a4c9d7; }
    .slider#precip-slider::-moz-range-thumb {
      border: 3px solid #ffffff;
      height: 24px;
      width: 24px;
      border-radius: 15px;
      background: #51dec2; }
    .slider#precip-slider::-ms-track {
      width: 100%;
      height: 24px;
      background: transparent;
      border-color: transparent;
      color: transparent; }
    .slider#precip-slider::-ms-fill-lower {
      background: #a4c9d7;
      border: 0px solid #000000;
      border-radius: 24px; }
    .slider#precip-slider::-ms-fill-upper {
      background: #a4c9d7;
      border: 0px solid #000000;
      border-radius: 24px; }
    .slider#precip-slider::-ms-thumb {
      border: 3px solid #ffffff;
      height: 18px;
      width: 18px;
      border-radius: 15px;
      background: #51dec2; }
    .slider#precip-slider:focus::-ms-fill-lower {
      background: #a4c9d7; }
    .slider#precip-slider:focus::-ms-fill-upper {
      background: #a4c9d7; }

.opacity_slider_control {
  transform: matrix(0, -1, 1, 0, -62, 63); }

.table {
  width: 100%;
  font-size: 13px;
  color: #273238; }
  .table .strong {
    font-weight: 800;
    color: #389b9b; }
  .table th, .table td {
    padding: 0.8rem 0.4rem;
    line-height: 1 !important;
    vertical-align: middle !important;
    border-top: none !important; }

.custom-hover thead {
  border-bottom: solid 1px rgba(0, 0, 0, 0.12);
  font-weight: 500; }

.custom-hover tr:hover {
  background-color: #eceff1; }

.custom-hover tr.huc12-total.highlighted,
.custom-hover tr.huc12-total:hover,
.custom-hover tr.huc12-total:focus,
.custom-hover tr.subbasin-catchment-row.highlighted,
.custom-hover tr.subbasin-catchment-row:hover,
.custom-hover tr.subbasin-catchment-row:focus {
  background-color: rgba(56, 155, 155, 0.3); }

.custom-hover tfoot th {
  border-left: 1px solid #ddd; }
  .custom-hover tfoot th:first-child {
    border-left: none; }

.modifications {
  margin-bottom: 1rem; }
  .modifications th, .modifications td {
    white-space: nowrap; }
    .modifications th:last-child, .modifications td:last-child {
      padding-right: 0; }

.fixed-table-container {
  padding-bottom: 0px !important;
  margin-top: 20px; }
  .fixed-table-container thead th .th-inner {
    white-space: normal;
    line-height: 1.25; }

.fixed-table-footer tr {
  font-weight: bold; }
  .fixed-table-footer tr td:nth-child(n+2) {
    color: #389b9b; }

.catchment-water-quality-table-footer,
.ptsrc-table-footer {
  border-top: 1px solid #ddd; }

.catchment-water-quality-footer-item,
.ptsrc-footer-item {
  border-left: 1px solid #ddd; }

.catchment-water-quality .catchment-water-quality-id,
.point-source .point-source-id, .huc12-total {
  cursor: pointer; }

.bootstrap-table .fixed-table-toolbar {
  display: none; }

.subbasin-source-col {
  min-width: 100px; }

.modal .measurements-platform {
  font-size: 15px;
  margin-bottom: 10px; }

.observation-popup {
  min-width: 280px; }
  .observation-popup .measurements-platform {
    margin-bottom: .2rem; }
  .observation-popup .measurements-name {
    margin-bottom: .5rem; }
  .observation-popup .measurements-updated {
    color: #787878;
    font-size: 15px; }
  .observation-popup .measurement-name {
    min-width: 100px; }
  .observation-popup .measurement-value {
    text-align: right;
    min-width: 75px;
    color: #389b9b; }
  .observation-popup .measurement-depth {
    color: #aaa;
    text-align: right; }
  .observation-popup table {
    margin-bottom: 14px;
    width: 100%; }
  .observation-popup tbody > tr {
    cursor: pointer; }
    .observation-popup tbody > tr:hover {
      background-color: #fafafa; }
  .observation-popup hr {
    margin: 10px 0; }
  .observation-popup td, .observation-popup th {
    padding: 3px 6px; }
    .observation-popup td:last-child, .observation-popup th:last-child {
      padding-right: 0; }
    .observation-popup td:first-child, .observation-popup th:first-child {
      padding-left: 0; }
  .observation-popup .row {
    margin: 0 -15px !important; }

.plot-modal .measurements-updated {
  color: #787878;
  font-size: 15px;
  float: right; }

.plot-measurement-select {
  width: 50%;
  height: 40px;
  font-size: 20px; }

.highcharts-range-selector-buttons > text:first-child {
  display: none; }

.highcharts-tooltip + text {
  display: none; }

.results-content.downloadcsv-link,
.downloadcsv-link {
  margin-top: 14px;
  margin-bottom: 3rem;
  cursor: pointer;
  font-size: 13px; }
  .results-content.downloadcsv-link:hover, .results-content.downloadcsv-link:focus,
  .downloadcsv-link:hover,
  .downloadcsv-link:focus {
    border-width: 1px; }

.download-bmp {
  padding-bottom: 20px; }
  .download-bmp hr {
    margin-top: 0; }
  .download-bmp i {
    font-size: 32px;
    color: #BDBDBD;
    margin-top: 5px; }

.global-navigation {
  float: left;
  list-style: none;
  padding: 0;
  margin-left: 0;
  margin-bottom: 0; }
  .global-navigation:before, .global-navigation:after {
    content: " ";
    display: table; }
  .global-navigation:after {
    clear: both; }
  .global-navigation > li:first-child:after {
    content: none; }

.global-navigation-item {
  float: left;
  position: relative; }
  .global-navigation-item button {
    font-weight: 800;
    background: none;
    background-color: transparent;
    color: #fff;
    border: 0;
    font-size: 15px;
    line-height: 44px;
    padding: 0 16px 0 0; }
    .global-navigation-item button::-moz-focus-inner {
      border: 0;
      padding: 0; }

.layerpicker {
  z-index: 500;
  position: absolute;
  bottom: 22px;
  left: 12px;
  width: 240px;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.74); }
  .layerpicker .popover {
    max-width: none; }
  .layerpicker .popover > .popover-content {
    border: #fff 1px solid; }

#layer-picker-slider-region {
  z-index: 400;
  position: absolute;
  left: 265px;
  bottom: 23px;
  width: 150px;
  padding: 8px;
  background-color: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.74);
  font-size: 13px; }
  #layer-picker-slider-region:empty {
    display: none; }

input.time-slider {
  padding: 5px 0 5px 0; }

.time-slider-short-name {
  font-weight: bold; }

span.time-slider-end {
  position: absolute;
  right: 10px; }

.layerpicker-header {
  background-color: #273238;
  color: #ffffff;
  cursor: pointer;
  font-size: 15px;
  font-weight: bold;
  padding: 5px 8px 5px 6px; }
  .layerpicker-header i {
    float: right;
    margin-top: 2px;
    font-size: 12px;
    position: relative;
    top: 2px; }

.layerpicker-layers {
  max-height: 104px;
  overflow: auto; }

.layerpicker-layer {
  font-size: 13px;
  padding: 4px 6px; }
  .layerpicker-layer:before, .layerpicker-layer:after {
    content: " ";
    display: table; }
  .layerpicker-layer:after {
    clear: both; }

.layerpicker-title {
  float: left;
  width: 91%;
  padding: 0;
  text-align: left;
  border: 0;
  outline: 0;
  background: none;
  color: #273238; }
  .layerpicker-title:hover {
    color: inherit; }
  .layerpicker-title.active {
    color: #389b9b; }
  .layerpicker-title:disabled {
    color: #BDBDBD; }

.layerpicker-heading {
  font-size: 15px;
  font-weight: 800;
  padding: 10px 6px 4px;
  display: flex;
  position: relative; }

.layerpicker-navbutton {
  text-align: center;
  width: 20%;
  float: left;
  padding: 4px 6px 5px;
  background-color: #eceff1;
  cursor: pointer;
  font-size: 1.6rem; }
  .layerpicker-navbutton.open {
    background-color: #fff; }
  .layerpicker-navbutton.active {
    color: #389b9b; }

.layerpicker-info {
  float: left;
  width: 24px;
  text-align: center;
  position: relative;
  font-family: FontAwesome;
  color: #999;
  padding: 4px;
  margin: -4px; }
  .layerpicker-info:hover {
    color: inherit;
    text-decoration: none; }
  .layerpicker-info:after {
    content: "\f05a"; }

.layerpicker-arrow-2 {
  bottom: 46px;
  right: -4px;
  position: absolute;
  z-index: 20000;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid #fff;
  border-left: none;
  margin-left: 26px;
  margin-top: 5px;
  opacity: 1; }
  .layerpicker-info .layerpicker-arrow-2 {
    opacity: 1; }

.layerpicker-legend {
  font-size: 15px;
  width: 200px;
  background-color: #fff; }

.layerpicker-legenditem:before, .layerpicker-legenditem:after {
  content: " ";
  display: table; }

.layerpicker-legenditem:after {
  clear: both; }

.layerpicker-legenditem > .urban-land-cover-2011-30m-nonurban {
  background-color: white; }

.layerpicker-legenditem > .urban-land-cover-2011-30m-urban {
  background-color: #b71c1c; }

.layerpicker-legenditem > .protected-lands-30m {
  border: none;
  width: 14px;
  height: 14px; }
  .layerpicker-legenditem > .protected-lands-30m-pra_f {
    background-color: #AFB42B; }
  .layerpicker-legenditem > .protected-lands-30m-pra_s {
    background-color: #C0CA33; }
  .layerpicker-legenditem > .protected-lands-30m-pra_l {
    background-color: #CDDC39; }
  .layerpicker-legenditem > .protected-lands-30m-pra_p {
    background-color: #D4E157; }
  .layerpicker-legenditem > .protected-lands-30m-pra_u {
    background-color: #E6EE9C; }
  .layerpicker-legenditem > .protected-lands-30m-nra_f {
    background-color: #388E3C; }
  .layerpicker-legenditem > .protected-lands-30m-nra_s {
    background-color: #43A047; }
  .layerpicker-legenditem > .protected-lands-30m-nra_l {
    background-color: #4CAF50; }
  .layerpicker-legenditem > .protected-lands-30m-nra_p {
    background-color: #66BB6A; }
  .layerpicker-legenditem > .protected-lands-30m-nra_u {
    background-color: #A5D6A7; }
  .layerpicker-legenditem > .protected-lands-30m-con_ease {
    background-color: #9E9446; }
  .layerpicker-legenditem > .protected-lands-30m-ag_ease {
    background-color: #8D6E63; }

.layerpicker-legendcolor {
  width: 12px;
  height: 12px;
  float: left;
  position: relative;
  top: 3px;
  border: 1px solid #ccc; }

.layerpicker-legendtext {
  margin-left: 18px; }

#layerpicker-opacity-control {
  margin-left: auto;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 5px; }

.layerpicker-slider {
  -webkit-appearance: none;
  width: 90px !important;
  margin: auto;
  display: inline;
  cursor: pointer; }
  .layerpicker-slider:focus {
    outline: none; }
  .layerpicker-slider.slider-leaflet {
    background-color: transparent;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: 12px;
    top: 6px; }

.layerpicker-loading {
  font-size: 13px;
  padding: 0 0 8px 6px; }

#temperature-legend {
  height: 20px;
  width: 300px;
  margin-left: 2px;
  margin-right: 2px;
  background: linear-gradient(90deg, #2e0067 0%, #8d14ff 16.66667%, #a50ff5 20%, #bd0aeb 23.33333%, #d505e1 26.66667%, #ee00d7 30%, #b208e1 33.33333%, #7710eb 36.66667%, #3b19f5 40%, #0022ff 43.33333%, #004dc7 46.66667%, #00798f 50%, #00a456 53.33333%, #00d01f 56.66667%, #3bd317 60%, #75d60f 63.33333%, #b0d907 66.66667%, #ecdd00 70%, #f0a500 73.33333%, #f56e02 76.66667%, #fa3702 80%, #ff0004 83.33333%, #570010 100%); }

#precipitation-legend {
  height: 20px;
  width: 300px;
  margin-left: 3px;
  margin-right: 2px;
  background: linear-gradient(90deg, #e66f00 0%, #f69b38 8%, #3eb2bd 16%, #61d4e7 24%, #037474 32%, #003160 100%); }

#percent-slope-legend {
  height: 20px;
  width: 300px;
  margin-left: 3px;
  margin-right: 2px;
  background: linear-gradient(90deg, #d0d1cf 0%, #e3e6cc 9%, #fcffeb 19%, #fcffb3 26%, #fbff00 31%, #ffd500 43%, #ffb84d 48%, #ff9900 59%, #ff5500 73%, #fa0000 85%, #a2481d 99%, #ab3f00 100%); }

#elevation-legend {
  height: 20px;
  width: 320px;
  margin-left: 3px;
  margin-right: 2px;
  background: linear-gradient(90deg, #005ce6 0%, #a1cfdb 7%, #cef5dd 15%, #e0f779 29%, #7ecc58 40%, #2a853c 56%, #ccaf1d 69%, #c99a17 75%, #bd4602 84%, #602709 90%, #6b2d0c 92%, #94725f 94%, #b2998b 96%, #c2c2c2 97%, white 100%); }

#shippensburg-legend {
  height: 20px;
  width: 320px;
  margin-left: 3px;
  margin-right: 2px;
  background: linear-gradient(90deg, white 0%, #b71c1c 100%); }

.-pa-dep-area {
  background-color: #cccccc; }

.-pa-dep-muni {
  background-color: #1d3331; }

.climate-legend-tooltip {
  height: 65px; }

.climate-legend-unit-breaks-labels {
  font-size: 0.8em;
  position: absolute;
  left: 0px; }

.climate-legend-label-ticks {
  display: table;
  width: 100%;
  table-layout: fixed; }

.climate-legend-label-tick {
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  display: table-cell; }

.climate-legend-label-tick::after {
  display: block;
  text-align: center;
  content: '|'; }

.climate-legend-label-values {
  display: table;
  width: 100%;
  table-layout: fixed; }

.climate-legend-label-value {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 auto;
  display: table-cell;
  text-align: center; }

.climate-legend-label-value.max {
  padding-right: 10px; }

.climate-legend-units-label {
  font-weight: bold;
  text-align: center;
  padding-top: 30px; }

#map-info-region {
  position: absolute;
  left: 460px;
  top: calc(44px + 47px + 47px);
  margin: 12px;
  z-index: 500;
  background: rgba(0, 0, 0, 0.54);
  border-radius: 3px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.74);
  color: #ffffff;
  width: 240px; }

.spinner:after {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 22px;
  right: 14px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-top-color: #333;
  animation: spinner-animation 0.6s linear infinite; }

@keyframes spinner-animation {
  to {
    transform: rotate(360deg); } }

.custom-slider {
  -webkit-appearance: none;
  background-color: transparent;
  cursor: pointer; }
  .custom-slider:focus {
    outline: none; }
  .custom-slider::-webkit-slider-thumb {
    background: #389b9b;
    width: 12px;
    height: 12px;
    border: 1px solid #389b9b;
    border-radius: 50px;
    margin-top: -5px;
    -webkit-appearance: none; }
  .custom-slider:focus::-webkit-slider-thumb {
    background: #389b9b; }
  .custom-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 2.2px;
    cursor: pointer;
    background: #999; }
  .custom-slider::-moz-range-track {
    background: #999; }
  .custom-slider::-moz-range-thumb {
    background: #389b9b;
    width: 12px;
    height: 12px;
    border: 1px solid #389b9b;
    border-radius: 50px; }
  .custom-slider::-ms-track {
    background: transparent;
    border-color: transparent;
    width: 100%;
    height: 2.2px;
    cursor: pointer;
    border-width: 6px 0;
    color: transparent; }
  .custom-slider::-ms-thumb {
    background: #389b9b;
    width: 12px;
    height: 12px;
    border: 1px solid #389b9b;
    border-radius: 50px; }
  .custom-slider::-ms-fill-lower {
    background: #999;
    border: #999; }
  .custom-slider::-ms-fill-upper {
    background: #999;
    border: #999; }
  .custom-slider:focus::-ms-fill-lower {
    background: #999;
    border: #999;
    border-radius: 7px; }
  .custom-slider:focus::-ms-fill-upper {
    background: #999;
    border: #999;
    border-radius: 7px; }

label.toggle {
  width: 64px;
  height: 38px;
  border-radius: 3px;
  background-color: #BDBDBD;
  display: inline-block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  font-weight: normal;
  font-size: 13px;
  line-height: 3;
  transition: 0.3s all ease-in-out; }
  label.toggle input {
    display: none; }
  label.toggle input:checked + .toggle-switch {
    background-color: #389b9b;
    position: absolute;
    right: 0;
    top: 0; }
  label.toggle .toggle-switch {
    background-color: #787878;
    color: #ffffff;
    height: 38px;
    width: 38px;
    text-align: center;
    display: inline-block; }
  label.toggle input:checked + .toggle-switch:after {
    content: "On"; }
  label.toggle input + .toggle-switch:after {
    content: "Off"; }

.toggle-row {
  margin-bottom: 8px !important; }
  .toggle-row h3 {
    float: left;
    margin: 2px 0;
    padding: 7.5px 0; }

/**
 * Pages
 */
#search-map {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 600;
  padding: 0.7rem;
  padding-right: 12px; }
  @media (max-width: 1200px) {
    #search-map {
      max-width: 595px;
      pointer-events: none; } }
  @media (max-width: 750px) {
    #search-map {
      max-width: 320px; } }
  #search-map .search-icon {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.54);
    position: absolute;
    top: 17px;
    right: 20px; }
    #search-map .search-icon.empty {
      color: rgba(0, 0, 0, 0.24); }
    #search-map .search-icon.error {
      color: #e0412d; }
  #search-map .search-select-btn {
    font-size: 15px;
    position: absolute;
    top: 12px;
    right: 42px;
    background-color: #389b9b;
    color: #ffffff;
    border: none; }
  #search-map .message {
    position: absolute;
    color: rgba(255, 255, 255, 0.74);
    background-color: rgba(0, 0, 0, 0.54);
    border-radius: 2px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.74);
    font-size: 15px;
    padding: 0.5rem 1rem;
    margin-top: 6px;
    width: 300px; }
    #search-map .message.dismiss {
      float: right;
      padding: 0;
      border: none;
      background-color: transparent; }

#geocode-search-results-region {
  position: absolute;
  right: 12px;
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.74);
  font-size: 15px;
  color: rgba(0, 0, 0, 0.54);
  background-color: #ffffff;
  margin-top: 6px;
  min-width: 300px;
  max-height: 600px;
  overflow: hidden;
  overflow-y: auto;
  z-index: 700; }
  #geocode-search-results-region .geocode-suggestions {
    padding-top: 0.3rem; }
  #geocode-search-results-region h1 {
    margin: 0.6rem 0.5rem 0.3rem;
    border-bottom: 1px solid #ccc;
    font-size: 15px;
    color: #333;
    text-transform: uppercase;
    padding-bottom: 0.3rem; }
  #geocode-search-results-region ul {
    list-style-type: none;
    margin: 0;
    padding: 0; }
    #geocode-search-results-region ul > li {
      cursor: pointer;
      padding: 0.2rem 0.5rem; }
      #geocode-search-results-region ul > li:hover {
        color: #273238; }

.boundary-suggestions {
  padding-bottom: 0.3rem; }

.geocoder-search-location-prompt {
  padding: 0.7rem;
  cursor: pointer; }
  .geocoder-search-location-prompt:hover {
    color: rgba(0, 0, 0, 0.74); }
  .geocoder-search-location-prompt i {
    margin: 0 0.5rem; }

#draw-window,
#splash-window {
  width: 460px;
  padding: 15px;
  transition: all 200ms;
  overflow-y: auto;
  position: absolute;
  height: calc(100% - 44px);
  padding-top: 30px; }
  #draw-window > h1, #draw-window > h2,
  #splash-window > h1,
  #splash-window > h2 {
    font-size: 24px;
    font-weight: 800; }
  #draw-window > p,
  #splash-window > p {
    font-size: 15px;
    margin: 10px 0; }
  #draw-window #get-started,
  #splash-window #get-started {
    font-size: 18px;
    font-weight: 800; }

.splash-step {
  margin-top: 2rem; }
  .splash-step .badge {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    background-color: #324376;
    padding: 4px 6px; }
  .splash-step h2 {
    font-size: 18px;
    margin-bottom: 1rem; }
  .splash-step p {
    font-size: 15px; }
  .splash-step ol {
    margin-left: 30px;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.65); }

.splash-logo {
  max-width: 250px;
  display: block;
  margin: 1rem auto; }

.splash-sponsor-logo {
  height: 52px;
  margin-top: 1rem;
  padding: 1rem; }

#draw-pane-header-description {
  margin-top: 0.8rem;
  font-size: 15px; }

#draw-pane-buttons {
  margin-top: 1rem; }
  #draw-pane-buttons .draw-button-group {
    width: 100%; }
  #draw-pane-buttons .draw-tool-button {
    background-color: #d4d7d8;
    padding: 0.6rem 1rem;
    margin-top: 8px; }
    #draw-pane-buttons .draw-tool-button.-hasselection {
      margin-bottom: 0px;
      border-bottom-left-radius: 0px;
      border-bottom-right-radius: 0px; }
  #draw-pane-buttons .reset-draw-button {
    cursor: pointer; }
  #draw-pane-buttons .draw-tool-selection {
    padding: 1rem 1rem;
    background-color: #389b9b;
    font-size: 15px;
    color: #ffffff;
    font-weight: lighter; }
    #draw-pane-buttons .draw-tool-selection i {
      margin-top: 0.1rem; }
  #draw-pane-buttons .draw-button-title {
    font-size: 18px;
    text-align: left;
    font-weight: 500;
    color: black;
    line-height: 1.4;
    margin-top: 0.4rem;
    float: none !important;
    margin-bottom: 0.4rem; }
  #draw-pane-buttons .draw-button-subtitle {
    font-size: 15px;
    text-align: left;
    margin-bottom: 0.4rem; }
  #draw-pane-buttons #upload-file-region {
    height: 10rem; }
    #draw-pane-buttons #upload-file-region .aoi-upload-dropdown.drag {
      background-color: #D1ECEE; }
    #draw-pane-buttons #upload-file-region #file-upload-title {
      margin-top: 0; }
  #draw-pane-buttons #draw-tool-file-upload-button {
    margin-top: 0.4rem;
    margin-bottom: 0.4rem; }
  #draw-pane-buttons .draw-pane-list {
    text-align: left;
    font-size: 1rem;
    width: 100%; }
    #draw-pane-buttons .draw-pane-list .draw-pane-list-item {
      list-style-type: none;
      font-size: 15px;
      display: flex; }
      #draw-pane-buttons .draw-pane-list .draw-pane-list-item .draw-pane-list-item-button {
        background: transparent;
        display: block;
        width: 100%;
        text-align: left;
        border: none;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        padding-left: 0.8rem; }
      #draw-pane-buttons .draw-pane-list .draw-pane-list-item .draw-pane-list-item-button:disabled {
        color: #7f8181; }
      #draw-pane-buttons .draw-pane-list .draw-pane-list-item .draw-pane-description-list {
        margin-bottom: 1rem; }
        #draw-pane-buttons .draw-pane-list .draw-pane-list-item .draw-pane-description-list > li {
          margin: 0.25rem 0;
          font-size: 15px;
          list-style-type: disc; }
      #draw-pane-buttons .draw-pane-list .draw-pane-list-item a.help {
        color: #999;
        padding: 0.5rem 1rem;
        margin-right: 0;
        margin-left: auto; }
        #draw-pane-buttons .draw-pane-list .draw-pane-list-item a.help:hover {
          color: inherit; }
  #draw-pane-buttons .delineate-watershed-status-icon {
    margin-top: 1rem; }

#popover-close-button {
  cursor: pointer;
  margin-right: 0.5rem;
  margin-top: 0.5rem; }

.aoi-upload-dropdown {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0 0 0 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  padding: 1rem 1rem; }

.draw-tools .thumb-select label {
  font-size: 13px; }

.dropdown-footer h2 {
  font-size: 18px;
  margin: 0.4rem 0 0.8rem; }

body.processing {
  opacity: 0.6; }

.tab-content.analyze {
  padding: 0 !important; }

#analyze-output-wrapper {
  background-color: #ffffff;
  z-index: 100;
  width: 100%; }

.results-content {
  padding-bottom: 1rem; }

.aoi-region > div,
.navigation-footer {
  padding: 1rem; }

.navigation-footer {
  border-top: 2px solid #eceff1;
  position: absolute;
  bottom: 0;
  height: 68px;
  background: #ffffff;
  width: 460px;
  display: inline-flex; }

.navigation-footer > button {
  height: 46px; }

.sidebar-tab-header {
  background-color: rgba(0, 0, 0, 0.06); }
  .sidebar-tab-header .nav-tabs li > a {
    font-size: 16px;
    padding: 0 0.7rem; }

.aoi-region > div {
  padding-top: 20px;
  padding-bottom: 0px !important; }

.aoi-region h2 {
  font-size: 21px;
  line-height: 27px; }

.aoi-region .dropdown {
  float: right; }
  .aoi-region .dropdown button {
    border: none;
    background: none;
    padding-bottom: 0; }

.aoi-region:empty {
  display: none; }

.aoi-region.-bottom-padded > div {
  padding-bottom: 20px !important; }

.aoi-area {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.39);
  font-weight: 400; }

.aoi-suffix {
  font-size: 15px;
  color: #787878;
  margin-right: 10px;
  font-weight: 400; }

.aoi-primary {
  margin-right: 10px; }

.analyze-message-region {
  background-color: #ffffff;
  position: relative;
  height: 100%;
  min-height: 200px;
  text-align: center; }

.analyze-message-inner {
  padding-top: 50px; }

.analyze-message-text {
  font-size: 18px; }

.analyze-title {
  padding-top: 5px;
  font-size: 15px;
  font-weight: 800; }

.analyze-source {
  padding-bottom: 6px; }
  .analyze-source:empty {
    display: none; }

.analyze-tab-content .help > i {
  color: #333333;
  width: 15px; }

.analyze-source,
.analyze-layertoggle,
.analyze-layermessage {
  font-size: 13px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.54); }

.layer-region:empty {
  display: none; }

.layer-region .analyze-layertoggle, .layer-region .analyze-layermessage {
  padding-left: 0px;
  border: none;
  background: none;
  display: inline;
  text-align: left;
  width: 100%;
  padding-bottom: 2px; }

.layer-region .analyze-layertoggle.dropdown-toggle > .on-off-toggle {
  margin-left: 0.5rem;
  margin-right: 0.2rem; }

.layer-region .analyze-layer-dropdown {
  margin: 0.75rem; }

.layer-region .on-off-toggle,
.layer-region .dropdown .dropdown-menu li a i {
  color: #337ab7;
  display: inline;
  margin-left: 1rem; }

.paging-ctl-row {
  text-align: center;
  margin-top: 20px !important; }

.pageable-table-container {
  overflow: visible;
  padding-bottom: 10%; }
  .pageable-table-container tbody {
    white-space: nowrap; }
  @media (max-height: 884px) {
    .pageable-table-container {
      padding-bottom: 0px; } }

.pageable-table {
  width: 650px !important;
  max-width: 650px !important;
  height: 100%; }

.hidden-analyze-table-column {
  display: none; }

#climate select.form-control {
  margin: 10px 0; }

.analyze-stage-model-tab-pane .tab-content > h3 {
  margin-bottom: 12px; }

.analyze-stage-model-tab-pane .tab-content > p {
  font-size: 15px;
  margin-bottom: 12px; }

.analyze-stage-model-tab-pane .tab-content .model-package {
  margin-bottom: 6px;
  background-color: #eceff1;
  border-radius: 2px;
  padding: 1rem; }
  .analyze-stage-model-tab-pane .tab-content .model-package > a {
    white-space: normal; }
    .analyze-stage-model-tab-pane .tab-content .model-package > a > .analyze-model-name {
      font-size: 15px;
      color: #273238;
      font-weight: 600; }
    .analyze-stage-model-tab-pane .tab-content .model-package > a > p {
      font-size: 13px;
      color: #787878; }
    .analyze-stage-model-tab-pane .tab-content .model-package > a.analyze-worksheet-status {
      display: block;
      margin-top: 10px; }
      .analyze-stage-model-tab-pane .tab-content .model-package > a.analyze-worksheet-status.status-started {
        color: #273238; }
      .analyze-stage-model-tab-pane .tab-content .model-package > a.analyze-worksheet-status.status-complete {
        color: #389b9b; }
      .analyze-stage-model-tab-pane .tab-content .model-package > a.analyze-worksheet-status.status-failed {
        color: #e0412d; }
    .analyze-stage-model-tab-pane .tab-content .model-package > a.disabled {
      opacity: 0.75; }

#model-output-wrapper {
  width: 460px !important;
  background-color: #ffffff;
  z-index: 100;
  height: 100%; }
  #model-output-wrapper .disabled {
    text-decoration: none; }
  #model-output-wrapper .title-row {
    background-color: #eceff1;
    color: #394750; }
    #model-output-wrapper .title-row .title {
      display: inline-block;
      position: relative; }
      #model-output-wrapper .title-row .title h2 {
        margin-top: 0.4rem !important;
        line-height: 0.4rem; }
  #model-output-wrapper .result-region {
    height: 100%;
    width: 100%; }
    #model-output-wrapper .result-region .result-title {
      padding-top: 5px;
      font-size: 15px;
      font-weight: 800; }
    #model-output-wrapper .result-region .result-description {
      font-size: 13px;
      font-weight: 400;
      color: rgba(0, 0, 0, 0.54);
      margin-bottom: 4px;
      margin: 2px 0; }
    #model-output-wrapper .result-region #view-subbasin-results-link {
      font-weight: 400;
      font-size: 13px;
      color: #389b96;
      cursor: pointer;
      display: block;
      margin-top: -2px; }
    #model-output-wrapper .result-region .mean-flow {
      font-size: 13px;
      font-weight: 700;
      margin-top: 12px; }
    #model-output-wrapper .result-region .runoff-chart-container {
      height: 300px;
      width: 100%; }
    #model-output-wrapper .result-region .runoff-chart-container.current-conditions {
      height: 300px;
      width: 100%; }
    #model-output-wrapper .result-region .runoff-selector-region select {
      width: 50%; }
  #model-output-wrapper .model-results-tooltip {
    color: #333333; }
    #model-output-wrapper .model-results-tooltip i {
      width: 15px; }

#export-gms-form {
  display: none; }

.model-details-dropdown {
  width: 240px;
  padding: 1rem;
  z-index: 600; }
  .model-details-dropdown > h3 {
    margin: 10px 0;
    font-weight: bold; }
    .model-details-dropdown > h3 i {
      font-size: 12px;
      vertical-align: middle;
      margin-left: 4px;
      color: black; }
  .model-details-dropdown > .edit-btn {
    cursor: pointer;
    font-size: 12px;
    padding: 0px;
    border: none;
    background: none;
    color: #389b9b; }
    .model-details-dropdown > .edit-btn:hover {
      text-decoration: underline; }

.itsi-model-toolbar {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: flex !important;
  -webkit-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important; }

.subbasin-region .tab-pane .result,
.subbasin-huc12-region .tab-pane .result {
  padding: 1rem;
  background: #ffffff; }
  .subbasin-region .tab-pane .result .catchment-layertoggle,
  .subbasin-huc12-region .tab-pane .result .catchment-layertoggle {
    padding-left: 0;
    padding-bottom: 2px;
    border: none;
    background: none;
    display: inline;
    width: 100%;
    font-size: 13px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.54); }
  .subbasin-region .tab-pane .result .result-detail-header,
  .subbasin-huc12-region .tab-pane .result .result-detail-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between; }
    .subbasin-region .tab-pane .result .result-detail-header .subbasin-spinner,
    .subbasin-huc12-region .tab-pane .result .result-detail-header .subbasin-spinner {
      height: 14px;
      width: 14px;
      margin: 0.7rem; }
    .subbasin-region .tab-pane .result .result-detail-header a.zoom,
    .subbasin-huc12-region .tab-pane .result .result-detail-header a.zoom {
      display: block; }
    .subbasin-region .tab-pane .result .result-detail-header .close,
    .subbasin-huc12-region .tab-pane .result .result-detail-header .close {
      float: none;
      display: block;
      opacity: 1;
      color: #389b96;
      text-shadow: none;
      font-size: 13px;
      font-weight: 400;
      padding: 6px 0 2px; }

.subbasin-huc12-region .nav-tabs,
.subbasin-region .nav-tabs {
  margin-left: -10px;
  margin-right: -10px; }

.subbasin-hotspot-info {
  padding: 6px; }
  .subbasin-hotspot-info p {
    color: rgba(255, 255, 255, 0.74);
    padding: 10px 0; }

#subbasin-slider-region {
  position: absolute;
  z-index: 400;
  left: 265px;
  bottom: 22px;
  padding: 8px;
  width: 250px;
  background-color: #ffffff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.74); }
  #subbasin-slider-region:empty {
    display: none; }
  #subbasin-slider-region .subbasin-slider {
    padding: 12px 10px 13px 10px; }
  #subbasin-slider-region .legend-stream {
    height: 10px;
    margin: 30px 10px 0 9px;
    background: linear-gradient(90deg, #007A39 0%, #00E72A 25%, #EBFF5B 50%, #FF6508 75%, #CB1A00 100%); }
  #subbasin-slider-region .legend-catchment {
    height: 10px;
    margin: 0 10px -2px 9px;
    background: linear-gradient(90deg, #00A151 0%, #8BDE65 25%, #FCFFBC 50%, #FF9555 75%, #FF6B55 100%); }
  #subbasin-slider-region .main-label {
    text-align: center;
    font-weight: bold; }
  #subbasin-slider-region .stream-units-label {
    font-size: 0.8em;
    text-align: center; }
  #subbasin-slider-region .catchment-units-label {
    font-size: 0.8em;
    text-align: center;
    margin-top: 30px; }

.compare-scenarios-container {
  overflow: hidden;
  position: absolute;
  top: 44px;
  left: 0;
  right: 0;
  bottom: 50px;
  z-index: 100;
  background-color: #eceff1;
  transition: 0.3s ease left, 0.3s ease right; }
  .compare-scenarios-container .compare-table {
    height: 100%; }
    .compare-scenarios-container .compare-table .scenario-overlay {
      position: absolute;
      z-index: 100;
      height: 25vh;
      width: 100%;
      background-color: black;
      opacity: 0.25; }
    .compare-scenarios-container .compare-table .scenario-title {
      text-shadow: 0px 0px 5px black;
      position: absolute;
      top: 5px;
      z-index: 101;
      left: 15px;
      opacity: 1;
      color: white; }
    .compare-scenarios-container .compare-table tbody tr {
      height: 100%; }
      .compare-scenarios-container .compare-table tbody tr td .compare-column {
        position: relative;
        z-index: 50;
        width: 48vw;
        height: 100%;
        overflow: hidden;
        display: inline-block;
        float: left;
        border-right: solid 1px rgba(0, 0, 0, 0.12); }
        @media (min-width: 768px) {
          .compare-scenarios-container .compare-table tbody tr td .compare-column {
            width: 32.5vw; } }
        @media (min-width: 1024px) {
          .compare-scenarios-container .compare-table tbody tr td .compare-column {
            width: 24.5vw; } }
        @media (min-width: 1280px) {
          .compare-scenarios-container .compare-table tbody tr td .compare-column {
            width: 19.5vw; } }
      .compare-scenarios-container .compare-table tbody tr td h3 {
        display: inline-block;
        font-size: 15px; }
      .compare-scenarios-container .compare-table tbody tr td .fa-minus-square {
        opacity: 0.54 !important; }
      .compare-scenarios-container .compare-table tbody tr td .map-region {
        height: 25vh;
        width: 100%; }
        .compare-scenarios-container .compare-table tbody tr td .map-region .map-container {
          position: relative;
          width: 100%;
          height: 100%; }
          .compare-scenarios-container .compare-table tbody tr td .map-region .map-container .map {
            height: 100%;
            width: 100%;
            position: relative;
            z-index: 1; }
            .compare-scenarios-container .compare-table tbody tr td .map-region .map-container .map .leaflet-control-container {
              display: none; }
          .compare-scenarios-container .compare-table tbody tr td .map-region .map-container .scenario-title {
            position: absolute;
            z-index: 50;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.74);
            vertical-align: bottom;
            padding: 1rem; }
            .compare-scenarios-container .compare-table tbody tr td .map-region .map-container .scenario-title h3 {
              position: absolute;
              bottom: 1rem;
              left: 1rem; }
      .compare-scenarios-container .compare-table tbody tr td .chart-table-regions {
        height: calc(100vh - 44px - 50px - 25vh);
        overflow-y: auto;
        overflow-x: hidden; }
      .compare-scenarios-container .compare-table tbody tr td .modeling-region {
        width: 100%; }
        .compare-scenarios-container .compare-table tbody tr td .modeling-region label {
          font-size: 13px;
          margin-top: 4px; }
          .compare-scenarios-container .compare-table tbody tr td .modeling-region label input[type="range"] {
            width: 80px;
            display: inline; }
        .compare-scenarios-container .compare-table tbody tr td .modeling-region .modeling-container {
          position: relative;
          width: auto;
          height: 100%;
          padding: 1rem 1rem 0 1rem; }
          .compare-scenarios-container .compare-table tbody tr td .modeling-region .modeling-container .fa-spin {
            margin-left: 8px;
            font-size: 15px;
            color: rgba(0, 0, 0, 0.54); }
          .compare-scenarios-container .compare-table tbody tr td .modeling-region .modeling-container .header {
            height: 12%; }
          .compare-scenarios-container .compare-table tbody tr td .modeling-region .modeling-container .result-region {
            height: 95%; }
            .compare-scenarios-container .compare-table tbody tr td .modeling-region .modeling-container .result-region .tab-pane {
              height: 100%; }
              .compare-scenarios-container .compare-table tbody tr td .modeling-region .modeling-container .result-region .tab-pane .quality-chart-region, .compare-scenarios-container .compare-table tbody tr td .modeling-region .modeling-container .result-region .tab-pane .runoff-chart-region {
                height: 100%; }
          .compare-scenarios-container .compare-table tbody tr td .modeling-region .modeling-container .controls-region .controls .precipitation .btn-primary,
          .compare-scenarios-container .compare-table tbody tr td .modeling-region .modeling-container .controls-region .controls .precipitation .downloadcsv-link {
            z-index: 10;
            padding: 0;
            margin-top: 10px;
            width: 100%; }
            .compare-scenarios-container .compare-table tbody tr td .modeling-region .modeling-container .controls-region .controls .precipitation .btn-primary label, .compare-scenarios-container .compare-table tbody tr td .modeling-region .modeling-container .controls-region .controls .precipitation .downloadcsv-link label {
              display: table;
              width: 100%; }
              .compare-scenarios-container .compare-table tbody tr td .modeling-region .modeling-container .controls-region .controls .precipitation .btn-primary label span, .compare-scenarios-container .compare-table tbody tr td .modeling-region .modeling-container .controls-region .controls .precipitation .downloadcsv-link label span {
                display: table-cell;
                width: 10%;
                white-space: nowrap;
                padding: 5px; }
              .compare-scenarios-container .compare-table tbody tr td .modeling-region .modeling-container .controls-region .controls .precipitation .btn-primary label input, .compare-scenarios-container .compare-table tbody tr td .modeling-region .modeling-container .controls-region .controls .precipitation .downloadcsv-link label input {
                display: table-cell;
                width: 100%;
                vertical-align: bottom; }
      .compare-scenarios-container .compare-table tbody tr td .modifications-region {
        width: 100%; }
        .compare-scenarios-container .compare-table tbody tr td .modifications-region .modifications-container {
          position: relative;
          width: 100%;
          height: 100%;
          padding: 0.5rem 1rem; }
          .compare-scenarios-container .compare-table tbody tr td .modifications-region .modifications-container .modifications-table {
            font-size: 15px;
            width: 100%; }
            .compare-scenarios-container .compare-table tbody tr td .modifications-region .modifications-container .modifications-table td {
              padding: 2px; }
              .compare-scenarios-container .compare-table tbody tr td .modifications-region .modifications-container .modifications-table td:first-child {
                padding-left: 0; }
              .compare-scenarios-container .compare-table tbody tr td .modifications-region .modifications-container .modifications-table td:last-child {
                padding-right: 0; }
            .compare-scenarios-container .compare-table tbody tr td .modifications-region .modifications-container .modifications-table .modification-area {
              color: #389b9b;
              text-align: right; }
      .compare-scenarios-container .compare-table tbody tr td .compare-section-collapse {
        height: 52px !important; }
  .compare-scenarios-container #edge-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 100;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    width: 4vw; }
    @media (min-width: 768px) {
      .compare-scenarios-container #edge-fade {
        width: 2.5vw; } }
    @media (min-width: 1024px) {
      .compare-scenarios-container #edge-fade {
        width: 2vw; } }
    @media (min-width: 1280px) {
      .compare-scenarios-container #edge-fade {
        width: 2.5vw; } }

#compare-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background-color: #eceff1;
  z-index: 100; }
  #compare-footer #slide-controls {
    float: right;
    padding: 8px; }
  #compare-footer .back {
    line-height: 50px;
    height: 100%;
    display: inline-block;
    position: relative;
    vertical-align: top; }

.compare-column .downloadcsv-link {
  margin: 0 0 10px; }

.compare-column caption {
  font-size: 15px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.74); }

#compare-new {
  overflow-y: hidden;
  padding-left: 0 !important; }

#compare-new-dialog {
  z-index: 8000;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  width: auto;
  height: auto;
  margin-top: 20px;
  max-width: 1200px;
  height: calc(100% - 20px); }
  @media screen and (max-width: 1300px) {
    #compare-new-dialog {
      max-width: 1000px; } }
  @media screen and (max-width: 1000px) {
    #compare-new-dialog {
      margin-top: 0;
      max-height: 100%; } }
  #compare-new-dialog .compare-modal-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    height: calc(100% - 20px);
    -webkit-font-smoothing: antialiased; }
    #compare-new-dialog .compare-modal-content #compare-selection-region > select {
      width: 250px;
      margin: 1.5rem; }
  #compare-new-dialog .compare-actions {
    padding-top: 20px; }
    #compare-new-dialog .compare-actions:before, #compare-new-dialog .compare-actions:after {
      content: " ";
      display: table; }
    #compare-new-dialog .compare-actions:after {
      clear: both; }
  #compare-new-dialog .compare-sections {
    flex: 0 1 auto;
    overflow: auto;
    z-index: 1000; }
    #compare-new-dialog .compare-sections.polling .compare-column, #compare-new-dialog .compare-sections.polling rect {
      opacity: 0.25; }
  #compare-new-dialog .spinner {
    position: absolute;
    top: 53px;
    right: 50%; }
  #compare-new-dialog .compare-close {
    position: absolute;
    top: 20px;
    right: 20px; }
    #compare-new-dialog .compare-close button {
      background: none;
      border: none;
      padding: 0; }
  #compare-new-dialog .compare-tabs {
    float: left; }
    #compare-new-dialog .compare-tabs:before, #compare-new-dialog .compare-tabs:after {
      content: " ";
      display: table; }
    #compare-new-dialog .compare-tabs:after {
      clear: both; }
  #compare-new-dialog .compare-tab {
    float: left;
    position: relative;
    color: #999;
    text-decoration: none; }
    #compare-new-dialog .compare-tab.active {
      color: #389b9b;
      font-weight: 800; }
      #compare-new-dialog .compare-tab.active:after {
        border-bottom-color: #389b9b; }
    #compare-new-dialog .compare-tab:after {
      position: absolute;
      left: 0;
      content: "";
      border-bottom: 2px solid transparent;
      padding-bottom: 0px;
      top: 0;
      height: 30px;
      line-height: 30px;
      width: 100%;
      margin-top: 2px; }
    #compare-new-dialog .compare-tab:not(:last-child) {
      margin-right: 20px; }
  #compare-new-dialog .compare-scenarios {
    padding: 20px 0;
    display: flex;
    width: 100%;
    flex-shrink: 0;
    position: relative; }
    #compare-new-dialog .compare-scenarios:before, #compare-new-dialog .compare-scenarios:after {
      content: " ";
      display: table; }
    #compare-new-dialog .compare-scenarios:after {
      clear: both; }
  #compare-new-dialog .compare-table-row {
    padding: 20px 0;
    display: flex;
    width: 100%;
    flex-shrink: 0;
    position: relative;
    border-bottom: 1px solid #ccc; }
    #compare-new-dialog .compare-table-row:before, #compare-new-dialog .compare-table-row:after {
      content: " ";
      display: table; }
    #compare-new-dialog .compare-table-row:after {
      clear: both; }
    #compare-new-dialog .compare-table-row .compare-column {
      text-align: right; }
  #compare-new-dialog .compare-chart-row {
    padding: 20px 0;
    display: flex;
    width: 100%;
    flex-shrink: 0;
    position: relative;
    border-bottom: 1px solid #ccc; }
    #compare-new-dialog .compare-chart-row:before, #compare-new-dialog .compare-chart-row:after {
      content: " ";
      display: table; }
    #compare-new-dialog .compare-chart-row:after {
      clear: both; }
    #compare-new-dialog .compare-chart-row .compare-chart-row-description {
      width: 180px;
      min-width: 180px;
      padding-right: 5px; }
    #compare-new-dialog .compare-chart-row #evapotranspiration-badge {
      background-color: #2D8BFF; }
    #compare-new-dialog .compare-chart-row #runoff-badge {
      background-color: #ED3B3B; }
    #compare-new-dialog .compare-chart-row #infiltration-badge {
      background-color: #F2CF46; }
    #compare-new-dialog .compare-chart-row .compare-column {
      text-align: right; }
    #compare-new-dialog .compare-chart-row .compare-bar-chart {
      display: block;
      height: 300px;
      vertical-align: baseline;
      vertical-align: bottom; }
      #compare-new-dialog .compare-chart-row .compare-bar-chart .nv-bar .positive {
        width: 120px !important;
        margin-right: 14px !important; }
      #compare-new-dialog .compare-chart-row .compare-bar-chart svg {
        width: 100%;
        height: 300px; }
    #compare-new-dialog .compare-chart-row .nv-x .tick line {
      display: none; }
    #compare-new-dialog .compare-chart-row .nvd3.nv-wrap.nv-axis {
      transition: transform 0.3s ease-in-out; }
    #compare-new-dialog .compare-chart-row g, #compare-new-dialog .compare-chart-row rect {
      transition: opacity 0.3s ease-in-out; }
    #compare-new-dialog .compare-chart-row .bar-value-text-bg-shadow,
    #compare-new-dialog .compare-chart-row .bar-value-text-bg,
    #compare-new-dialog .compare-chart-row .bar-value-text-bg-tick,
    #compare-new-dialog .compare-chart-row .bar-value-text {
      pointer-events: none; }
  #compare-new-dialog .compare-scenario-gradient {
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 80%, white 100%);
    top: 0;
    right: 0;
    bottom: 0;
    width: 100px;
    position: absolute;
    z-index: 200; }
  #compare-new-dialog .compare-section {
    padding: 20px 0;
    border-bottom: 1px solid #cccccc;
    display: flex;
    width: 100%; }
    #compare-new-dialog .compare-section:last-child {
      border-bottom: 0; }
  #compare-new-dialog .compare-header {
    position: relative;
    padding: 20px 20px 11px;
    background-color: #eee;
    border-bottom: 1px solid #ccc;
    z-index: 300; }
    #compare-new-dialog .compare-header .fa {
      font-size: 15px; }
  #compare-new-dialog .compare-scenario-row-description {
    width: 250px;
    min-width: 250px;
    padding: 0 20px; }
    #compare-new-dialog .compare-scenario-row-description h2 {
      margin-bottom: 10px; }
  #compare-new-dialog .compare-scenario-row-content-container {
    overflow: hidden; }
  #compare-new-dialog .compare-scenario-row-content {
    flex: 1;
    display: flex;
    flex-flow: row nowrap;
    transition: margin 0.3s ease-in-out; }
    #compare-new-dialog .compare-scenario-row-content .popover-content h5 {
      margin-top: 2rem;
      margin-bottom: 0; }
  #compare-new-dialog .compare-scenario-samplechartplaceholder {
    min-width: 790px;
    background-color: #aaa;
    height: 210px; }
  #compare-new-dialog .compare-column {
    min-width: 120px;
    width: 120px;
    transition: opacity 0.3s ease-in-out; }
    #compare-new-dialog .compare-column.-gwlfe {
      display: flex;
      align-items: baseline;
      justify-content: left;
      text-align: left; }
      #compare-new-dialog .compare-column.-gwlfe > .compare-scenario-title {
        padding-left: 5px; }
    #compare-new-dialog .compare-column .compare-scenario-title {
      font-size: 13px;
      font-weight: 400; }
    #compare-new-dialog .compare-column:not(:last-child) {
      margin-right: 14px; }
  #compare-new-dialog .compare-scenarios {
    border-bottom: 1px solid #cccccc; }
  #compare-new-dialog .scenario-badge {
    height: 12px;
    width: 12px;
    border-radius: 100%;
    background-color: #333;
    position: relative;
    top: 1px;
    display: inline-block;
    margin-right: 4px; }
  #compare-new-dialog .compare-scenario-buttons {
    position: absolute;
    right: 0;
    top: 44px;
    right: 6px;
    z-index: 200; }
    #compare-new-dialog .compare-scenario-buttons button {
      background-color: #389b9b;
      color: #fff;
      border-radius: 100%;
      border: none;
      height: 40px;
      width: 40px;
      font-size: 15px;
      box-shadow: 1px 1px rgba(117, 117, 117, 0.6); }
      #compare-new-dialog .compare-scenario-buttons button:not(.active) {
        background-color: #666; }
      #compare-new-dialog .compare-scenario-buttons button:not(.visible) {
        display: none; }
  #compare-new-dialog .compare-map-container {
    cursor: pointer !important;
    height: 90px;
    background-color: #aaa;
    margin-bottom: 10px;
    width: 120px; }
  #compare-new-dialog .compare-modifications-table {
    font-size: 13px;
    width: 100%; }
    #compare-new-dialog .compare-modifications-table .modification-value {
      padding-right: 12px; }
      #compare-new-dialog .compare-modifications-table .modification-value.-gwlfe {
        padding-top: 12px; }
    #compare-new-dialog .compare-modifications-table .modification-area {
      color: #389b9b;
      text-align: right; }
  #compare-new-dialog .compare-no-mods-popover {
    width: 189px; }
    #compare-new-dialog .compare-no-mods-popover > .compare-no-mod-title {
      margin-bottom: 2px; }
  #compare-new-dialog .compare-inputs {
    float: right;
    margin-right: -5px; }
    #compare-new-dialog .compare-inputs:before, #compare-new-dialog .compare-inputs:after {
      content: " ";
      display: table; }
    #compare-new-dialog .compare-inputs:after {
      clear: both; }
    #compare-new-dialog .compare-inputs button {
      padding: 1px 4px;
      margin-top: -4px;
      background-color: transparent;
      border: 0; }
      #compare-new-dialog .compare-inputs button.active {
        background-color: #666;
        color: #fff; }
  #compare-new-dialog .compare-input {
    float: left; }
    #compare-new-dialog .compare-input:not(:last-child) {
      margin-right: 12px; }
    #compare-new-dialog .compare-input.compare-precipitation {
      margin-right: 20px; }
      #compare-new-dialog .compare-input.compare-precipitation label {
        font-size: 12px;
        margin-bottom: 0; }

.itsi-compare-modal {
  max-width: 100% !important;
  max-height: 100% !important; }

.itsi-compare-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap; }

.itsi-compare-dialog {
  margin-left: 3% !important;
  max-width: 70% !important;
  max-height: 100% !important;
  width: 70% !important;
  height: 100% !important; }

.compare-scenario-row-content-container.-line {
  padding: 2%; }
  .compare-scenario-row-content-container.-line > .compare-scenario-row-content.-line > .compare-line-chart {
    height: 350px;
    width: 700px; }

.compare-table-row.-hydrology > .compare-scenario-row-content-container > .compare-scenario-row-content > .compare-column {
  opacity: 1.0 !important; }

#projects-container {
  padding: 28px 44px;
  overflow: scroll;
  position: absolute;
  top: 44px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background-color: #eceff1;
  transition: 0.3s ease left, 0.3s ease right; }
  #projects-container .new-project {
    height: 44px; }
    #projects-container .new-project i {
      font-size: 0.8em;
      margin-right: 0.5em; }
  #projects-container .project-rows-container {
    margin-top: 44px; }
    #projects-container .project-rows-container .project.row {
      background-color: rgba(255, 255, 255, 0.74);
      border-radius: 2px;
      box-shadow: 0 0 6px rgba(0, 0, 0, 0.12);
      transition: 0.2s ease all;
      padding: 18px;
      margin-bottom: 18px !important; }
      #projects-container .project-rows-container .project.row:hover {
        box-shadow: 0 0 6px rgba(0, 0, 0, 0.24); }
      #projects-container .project-rows-container .project.row h2 .fa {
        font-size: 0.8em;
        color: rgba(0, 0, 0, 0.24); }
        #projects-container .project-rows-container .project.row h2 .fa.fa-lock {
          margin-right: 0.5em; }
        #projects-container .project-rows-container .project.row h2 .fa.fa-globe {
          margin-right: 0.3em; }
      #projects-container .project-rows-container .project.row p {
        margin-left: 1.2em; }
      #projects-container .project-rows-container .project.row .btn,
      #projects-container .project-rows-container .project.row .downloadcsv-link {
        height: 44px; }

#account-container {
  padding: 2em;
  display: flex;
  flex-direction: row;
  position: absolute;
  top: 44px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background-color: #eceff1;
  transition: 0.3s ease left, 0.3s ease right; }
  #account-container > .page-toggle-column {
    width: 200px; }
  #account-container > .account-page-column {
    flex-grow: 1; }

#account-container .page-toggle-button {
  background: none;
  border: none;
  display: block;
  font-size: 15px;
  font-weight: lighter;
  text-align: left; }
  #account-container .page-toggle-button.active {
    font-weight: bolder;
    color: #389b9b; }

#account-container .account-page-container {
  background: #ffffff;
  padding: 2rem;
  box-sizing: content-box;
  box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.5);
  margin-left: 1em;
  max-width: 700px; }
  #account-container .account-page-container h2 {
    margin-bottom: 2rem; }
  #account-container .account-page-container .error {
    color: #e0412d;
    margin: 1em 0 1em 0; }
    #account-container .account-page-container .error > .account-inline-error-icon {
      margin-right: 5px; }

.account-api-key-section {
  border: 1px solid #BDBDBD;
  padding: 1rem;
  display: inline-block;
  margin: 1rem 0 3rem 0; }
  .account-api-key-section > .detail {
    color: #787878;
    font-weight: 400;
    margin: 1rem 0; }

.account-api-key-section > .api-key-row {
  display: flex;
  flex: 1 1 auto; }
  .account-api-key-section > .api-key-row .copiable-input, .account-api-key-section > .api-key-row .btn-copy {
    border: 1px solid #BDBDBD; }
  .account-api-key-section > .api-key-row .copiable-input {
    padding-left: 0.5rem;
    width: 345px;
    border-radius: 2px 0 0 2px;
    border-right: none; }
  .account-api-key-section > .api-key-row .btn-copy {
    background: #eceff1;
    border-radius: 0 2px 2px 0;
    height: 40px;
    width: 40px; }
  .account-api-key-section > .api-key-row .btn-copy > .spinner:after {
    top: auto;
    right: auto; }

.user-profile-section label {
  color: #777777;
  font-size: 13px;
  font-weight: 500;
  display: block; }

.user-profile-section input {
  width: 100%;
  padding: 0.75rem 0.5rem; }

.user-profile-section p {
  margin: 0 0 2rem 0; }

.user-profile-section .col-sm-6 {
  padding: 0 8rem 0 0; }

.user-profile-section .btn-save > .spinner:after {
  top: 16px;
  right: -30px; }

.linked-account-section {
  border: 1px solid #BDBDBD;
  border-radius: 4px;
  padding: 2rem 1rem;
  display: inline-block;
  margin: 1rem 1.25rem 1rem 0; }
  @media (min-width: 910px) {
    .linked-account-section {
      width: 47%; } }
  .linked-account-section .linked-account-status {
    font-size: 18px;
    font-style: italic;
    margin: 1rem 0 0.5rem 0; }
    .linked-account-section .linked-account-status.active {
      font-style: normal;
      color: #389b9b; }
  .linked-account-section .linked-account-description {
    margin-bottom: 1.5rem; }
  .linked-account-section .linked-account-error {
    margin-top: 1rem;
    color: #e0412d; }

#water-balance h1 {
  font-weight: 900; }

#water-balance.container-fluid {
  background-color: #bbe5f5;
  background-image: url("../images/water_balance/art_clouds.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  min-width: 936px;
  height: 100%; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    #water-balance.container-fluid {
      background-image: url("../images/water_balance/art_clouds@2x.png"); } }

#water-balance .canvas {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin-right: 360px;
  overflow: auto;
  white-space: nowrap; }

#water-balance .model-container {
  position: absolute;
  display: block;
  width: 400px;
  margin: 0 auto;
  float: left;
  top: 0;
  left: 0;
  right: 100px;
  bottom: 0; }
  #water-balance .model-container .land-container {
    width: 100%;
    height: auto;
    position: absolute;
    top: 40px;
    display: block;
    margin: 0 auto;
    z-index: 200; }
    #water-balance .model-container .land-container .land {
      width: 100%; }
      #water-balance .model-container .land-container .land img {
        width: 100%;
        max-width: 500px;
        height: auto; }
  #water-balance .model-container .soil-container {
    width: 100%;
    height: auto;
    position: absolute;
    top: 320px;
    display: block;
    margin: 0 auto;
    z-index: 200; }
    #water-balance .model-container .soil-container .soil {
      width: 100%; }
      #water-balance .model-container .soil-container .soil img {
        width: 100%;
        max-width: 500px;
        height: auto; }

#water-balance #effect-precip {
  position: absolute;
  top: 90px;
  z-index: 100; }

#water-balance #effect-evapo {
  position: absolute;
  bottom: 120px;
  left: 290px;
  width: 84px;
  height: 140px;
  z-index: 100; }
  #water-balance #effect-evapo svg {
    width: auto;
    height: 100%;
    transition: height 0.3s ease; }

#water-balance #effect-runoff {
  position: absolute;
  top: 60px;
  right: 270px;
  width: 127px;
  height: 120px;
  z-index: 100; }
  #water-balance #effect-runoff svg {
    width: auto;
    height: 100%;
    transition: height 0.3s ease; }

#water-balance #effect-infiltration {
  position: absolute;
  top: 40px;
  left: 290px;
  width: 98px;
  height: 140px;
  z-index: 100; }
  #water-balance #effect-infiltration svg {
    width: auto;
    height: 100%;
    transition: height 0.3s ease; }

#water-balance #alert {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  display: none;
  margin-top: -27px;
  width: 100%;
  text-align: center; }

#water-balance #water-column-container {
  position: absolute;
  display: block;
  width: 84px;
  margin: 0 auto;
  right: 20px;
  top: 30px;
  bottom: 30px;
  padding-bottom: 48px;
  white-space: normal;
  z-index: 200; }
  #water-balance #water-column-container .column {
    position: relative;
    display: block;
    width: 100%;
    text-align: right;
    transition: height 0.3s ease; }
    #water-balance #water-column-container .column label {
      color: #ffffff;
      padding: 0.4rem;
      text-align: right; }
  #water-balance #water-column-container #column-et {
    height: 30%;
    background-color: #2d8bff;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem; }
  #water-balance #water-column-container #column-r {
    height: 40%;
    background-color: #ed3b3b; }
  #water-balance #water-column-container #column-i {
    height: 30%;
    background-color: #f2cf46;
    border-bottom-left-radius: 0.3rem;
    border-bottom-right-radius: 0.3rem; }
  #water-balance #water-column-container #column-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 24px;
    margin: 16px 16px 48px 16px;
    background-color: rgba(0, 0, 0, 0.12);
    border-bottom-left-radius: 0.3rem;
    border-top-left-radius: 0.3rem;
    z-index: 200; }
  #water-balance #water-column-container label {
    display: block;
    text-align: center; }

#water-balance #well-precip {
  position: absolute;
  left: 0;
  top: 30px;
  min-width: 116px; }

#water-balance #well-evapo {
  position: absolute;
  right: 0;
  top: 30px;
  min-width: 116px; }

#water-balance #well-runoff {
  position: absolute;
  left: 0;
  bottom: 30px;
  min-width: 116px; }

#water-balance #well-infil {
  position: absolute;
  right: 0;
  bottom: 30px;
  min-width: 116px; }

#water-balance .well-custom {
  background-color: #ffffff;
  border-radius: 0.3rem;
  padding: 16px;
  z-index: 300; }
  #water-balance .well-custom label {
    padding-top: 4px; }

#water-balance .well-precip {
  background-color: #bbe5f5;
  border-radius: 0.3rem;
  padding: 10px 6px;
  margin: 8px 8px 0 8px !important;
  height: 42px; }
  #water-balance .well-precip label {
    display: inline-block !important; }

#water-balance .sidebar {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 370px;
  background-color: #ffffff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.74);
  overflow-y: auto; }
  #water-balance .sidebar .slider-wrapper {
    display: inline-block; }
  #water-balance .sidebar p {
    margin: 0 0 0 8px; }
  #water-balance .sidebar ul {
    list-style-type: none;
    padding: 0;
    white-space: nowrap;
    float: left; }
    #water-balance .sidebar ul li {
      display: inline-block;
      float: left;
      position: relative;
      margin: 8px 8px 0 8px;
      width: 61px;
      white-space: normal; }
      #water-balance .sidebar ul li:nth-child(4n+5) {
        clear: left; }
      #water-balance .sidebar ul li a {
        padding: 0;
        border: solid 3px transparent; }
        #water-balance .sidebar ul li aimg {
          width: 100%;
          height: auto; }
      #water-balance .sidebar ul li label {
        padding-bottom: 6px;
        display: block;
        text-align: center;
        font-size: 0.55rem; }
      #water-balance .sidebar ul li.active a {
        border: solid 3px #51dec2; }
        #water-balance .sidebar ul li.active a:after {
          position: absolute;
          top: -10px;
          right: -10px;
          content: "\f00c";
          font-family: FontAwesome;
          font-size: 15px;
          padding-top: 4px;
          color: #ffffff;
          background-color: #51dec2;
          width: 24px;
          height: 24px;
          border-radius: 12px;
          text-align: center; }
        #water-balance .sidebar ul li.active a.nlcd-11 {
          border-color: #5475A8; }
          #water-balance .sidebar ul li.active a.nlcd-11:after {
            background-color: #5475A8; }
        #water-balance .sidebar ul li.active a.nlcd-12 {
          border-color: #FFFFFF; }
          #water-balance .sidebar ul li.active a.nlcd-12:after {
            background-color: #FFFFFF; }
        #water-balance .sidebar ul li.active a.nlcd-21 {
          border-color: #E8D1D1; }
          #water-balance .sidebar ul li.active a.nlcd-21:after {
            background-color: #E8D1D1; }
        #water-balance .sidebar ul li.active a.nlcd-22 {
          border-color: #E29E8C; }
          #water-balance .sidebar ul li.active a.nlcd-22:after {
            background-color: #E29E8C; }
        #water-balance .sidebar ul li.active a.nlcd-23 {
          border-color: #ff0000; }
          #water-balance .sidebar ul li.active a.nlcd-23:after {
            background-color: #ff0000; }
        #water-balance .sidebar ul li.active a.nlcd-24 {
          border-color: #B50000; }
          #water-balance .sidebar ul li.active a.nlcd-24:after {
            background-color: #B50000; }
        #water-balance .sidebar ul li.active a.nlcd-31 {
          border-color: #D2CDC0; }
          #water-balance .sidebar ul li.active a.nlcd-31:after {
            background-color: #D2CDC0; }
        #water-balance .sidebar ul li.active a.nlcd-41 {
          border-color: #85C77E; }
          #water-balance .sidebar ul li.active a.nlcd-41:after {
            background-color: #85C77E; }
        #water-balance .sidebar ul li.active a.nlcd-42 {
          border-color: #38814E; }
          #water-balance .sidebar ul li.active a.nlcd-42:after {
            background-color: #38814E; }
        #water-balance .sidebar ul li.active a.nlcd-43 {
          border-color: #D4E7B0; }
          #water-balance .sidebar ul li.active a.nlcd-43:after {
            background-color: #D4E7B0; }
        #water-balance .sidebar ul li.active a.nlcd-52 {
          border-color: #DCCA8F; }
          #water-balance .sidebar ul li.active a.nlcd-52:after {
            background-color: #DCCA8F; }
        #water-balance .sidebar ul li.active a.nlcd-71 {
          border-color: #FDE9AA; }
          #water-balance .sidebar ul li.active a.nlcd-71:after {
            background-color: #FDE9AA; }
        #water-balance .sidebar ul li.active a.nlcd-81 {
          border-color: #FBF65D; }
          #water-balance .sidebar ul li.active a.nlcd-81:after {
            background-color: #FBF65D; }
        #water-balance .sidebar ul li.active a.nlcd-82 {
          border-color: #CA9146; }
          #water-balance .sidebar ul li.active a.nlcd-82:after {
            background-color: #CA9146; }
        #water-balance .sidebar ul li.active a.nlcd-90 {
          border-color: #C8E6F8; }
          #water-balance .sidebar ul li.active a.nlcd-90:after {
            background-color: #C8E6F8; }
        #water-balance .sidebar ul li.active a.nlcd-95 {
          border-color: #64B3D5; }
          #water-balance .sidebar ul li.active a.nlcd-95:after {
            background-color: #64B3D5; }
        #water-balance .sidebar ul li.active a.soil-a {
          border-color: #ffffd4; }
          #water-balance .sidebar ul li.active a.soil-a:after {
            background-color: #ffffd4;
            color: #333; }
        #water-balance .sidebar ul li.active a.soil-b {
          border-color: #fee391; }
          #water-balance .sidebar ul li.active a.soil-b:after {
            background-color: #fee391;
            color: #333; }
        #water-balance .sidebar ul li.active a.soil-c {
          border-color: #fec44f; }
          #water-balance .sidebar ul li.active a.soil-c:after {
            background-color: #fec44f;
            color: #333; }
        #water-balance .sidebar ul li.active a.soil-d {
          border-color: #8c2d04; }
          #water-balance .sidebar ul li.active a.soil-d:after {
            background-color: #8c2d04;
            color: #333; }
        #water-balance .sidebar ul li.active a.soil-ad {
          border-color: #fe9929; }
          #water-balance .sidebar ul li.active a.soil-ad:after {
            background-color: #fe9929;
            color: #333; }
        #water-balance .sidebar ul li.active a.soil-bd {
          border-color: #ec7014; }
          #water-balance .sidebar ul li.active a.soil-bd:after {
            background-color: #ec7014;
            color: #333; }
        #water-balance .sidebar ul li.active a.soil-cd {
          border-color: #cc4c02; }
          #water-balance .sidebar ul li.active a.soil-cd:after {
            background-color: #cc4c02;
            color: #333; }

.water-balance #info.dropdown-menu {
  border-radius: 2px;
  border: 0 !important;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.74);
  font-size: 0.8rem;
  width: 360px;
  padding: 2rem;
  color: rgba(0, 0, 0, 0.74);
  background-color: #ffffff; }

.water-balance #info h2 {
  margin-bottom: 1rem; }

.popover {
  border-radius: 0;
  border: solid 1px rgba(0, 0, 0, 0.12);
  padding: 0px; }

.popover-title {
  font-size: 0.8rem;
  color: #ffffff;
  padding: 1rem;
  border: 0;
  background-color: #389b9b;
  border-radius: 0; }

.popover-content {
  padding: 1rem; }

@-webkit-keyframes breathing {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9); }
  25% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  60% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9); }
  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9); } }

@keyframes breathing {
  0% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9); }
  25% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  60% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9); }
  100% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9); } }

.registration-form label {
  display: block;
  font-size: 1rem; }

.registration-form input[type=email], .registration-form input[type=password] {
  margin-bottom: 1rem;
  width: 13rem;
  height: 2.3rem; }

.data-catalog-window {
  transition: all 200ms;
  flex-direction: column; }
  .data-catalog-window .tab-contents-region {
    flex: 1; }
  .data-catalog-window .result-details-region .result {
    background: #ffffff;
    padding: 1rem; }
    .data-catalog-window .result-details-region .result p {
      margin: 5px 0 0 0; }
    .data-catalog-window .result-details-region .result #cuahsi-status-region {
      position: relative; }
      .data-catalog-window .result-details-region .result #cuahsi-status-region .spinner:after {
        top: 1rem;
        right: 1rem; }
      .data-catalog-window .result-details-region .result #cuahsi-status-region .error {
        position: absolute;
        right: 13px; }
    .data-catalog-window .result-details-region .result .result-detail-header h2 {
      display: inline-block;
      margin: 10px 0 4px;
      max-width: 95%; }
    .data-catalog-window .result-details-region .result .result-detail-header a.zoom {
      display: block; }
    .data-catalog-window .result-details-region .result .result-detail-header .close {
      float: none;
      display: block;
      opacity: 1;
      color: #389b9b;
      text-shadow: none;
      font-size: 13px;
      font-weight: 400;
      padding: 6px 0 2px; }
    .data-catalog-window .result-details-region .result .cuahsi-buttons button {
      padding: 1px 4px;
      margin-top: -4px;
      background-color: transparent;
      border: 0; }
      .data-catalog-window .result-details-region .result .cuahsi-buttons button.active {
        color: #ffffff;
        background-color: rgba(0, 0, 0, 0.54); }
    .data-catalog-window .result-details-region .result #cuahsi-chart-region {
      margin-top: 20px; }
      .data-catalog-window .result-details-region .result #cuahsi-chart-region .cuahsi-variable-select {
        margin-bottom: 10px; }
    .data-catalog-window .result-details-region .result .hydroshare-nav-tabs > li > a {
      padding: 10px 15px !important; }
    .data-catalog-window .result-details-region .result .hydroshare-tab-content {
      padding-top: 15px; }
  .data-catalog-window .pager-region > div > div {
    padding: 10px 0;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    position: fixed;
    bottom: 68px;
    width: 460px; }
    .model-stage-monitor-tab-pane .data-catalog-window .pager-region > div > div {
      bottom: 0; }
  .data-catalog-window .data-catalog-title {
    margin: 10px 0 0;
    padding: 10px; }
  .data-catalog-window .data-catalog-form {
    padding: 1rem 1rem 0 1rem; }
    .data-catalog-window .data-catalog-form:hover {
      text-decoration: none; }
    .data-catalog-window .data-catalog-form .data-catalog-search {
      display: flex;
      flex-direction: column; }
      .data-catalog-window .data-catalog-form .data-catalog-search button {
        border-radius: 2px; }
        .data-catalog-window .data-catalog-form .data-catalog-search button:focus {
          outline: none; }
      .data-catalog-window .data-catalog-form .data-catalog-search .search-group {
        display: flex; }
        .data-catalog-window .data-catalog-form .data-catalog-search .search-group input[type="text"] {
          border-radius: 0;
          box-shadow: none;
          flex: 1;
          height: auto; }
        .data-catalog-window .data-catalog-form .data-catalog-search .search-group .btn-search {
          border-bottom-left-radius: 0;
          border-top-left-radius: 0;
          margin-left: -1px; }
      .data-catalog-window .data-catalog-form .data-catalog-search .search-options-group {
        margin: 0 -10px;
        padding: 0.7rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.12); }
    .data-catalog-window .data-catalog-form > .dropdown {
      display: inherit;
      line-height: inherit !important;
      position: absolute;
      left: 422px;
      margin-top: 12px; }
      .data-catalog-window .data-catalog-form > .dropdown > button {
        border: 0;
        background-color: transparent; }
  .data-catalog-window .intro-text {
    padding: 1.5rem 1rem; }
    .data-catalog-window .intro-text p {
      margin-bottom: 10px; }
  .data-catalog-window .output-tabs-wrapper {
    display: flex;
    flex-direction: column;
    overflow-y: auto; }
  .data-catalog-window .catalog-tab-content {
    padding: 0; }
    .data-catalog-window .catalog-tab-content .loading-panel,
    .data-catalog-window .catalog-tab-content .no-results-panel {
      text-align: center;
      font-size: larger;
      padding: 10px; }
  .data-catalog-window .catalog-description {
    padding: 10px; }
  .data-catalog-window .resource {
    cursor: pointer; }
    .data-catalog-window .resource + .resource {
      border-top: 1px solid rgba(0, 0, 0, 0.12); }
    .data-catalog-window .resource:hover {
      background: #F3F3F3; }
    .data-catalog-window .resource .resource-wrapper {
      padding: 15px 10px; }
      .data-catalog-window .resource .resource-wrapper.active {
        background: #F3F3F3; }

.data-catalog-window h3,
.data-catalog-resource-popover h3,
.data-catalog-popover-list-item h3 {
  margin-bottom: 7px; }

.data-catalog-window .resource-description,
.data-catalog-resource-popover .resource-description,
.data-catalog-popover-list-item .resource-description {
  color: #787878;
  padding-bottom: 3px; }

.data-catalog-window .resource-date,
.data-catalog-resource-popover .resource-date,
.data-catalog-popover-list-item .resource-date {
  font-size: 13px; }

.data-catalog-window .resource-detail,
.data-catalog-resource-popover .resource-detail,
.data-catalog-popover-list-item .resource-detail {
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.data-catalog-window .resource-detail.-showall,
.data-catalog-resource-popover .resource-detail.-showall,
.data-catalog-popover-list-item .resource-detail.-showall {
  display: flex;
  white-space: normal;
  overflow: auto;
  text-overflow: initial; }
  .data-catalog-window .resource-detail.-showall > i,
  .data-catalog-resource-popover .resource-detail.-showall > i,
  .data-catalog-popover-list-item .resource-detail.-showall > i {
    flex: 0 0 18px; }
  .data-catalog-window .resource-detail.-showall > .detail-text,
  .data-catalog-resource-popover .resource-detail.-showall > .detail-text,
  .data-catalog-popover-list-item .resource-detail.-showall > .detail-text {
    display: inline; }

.data-catalog-window .resource .resource-title,
.data-catalog-resource-popover .resource .resource-title,
.data-catalog-popover-list-item .resource .resource-title {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 4px; }

.data-catalog-window .resource i.fa,
.data-catalog-resource-popover .resource i.fa,
.data-catalog-popover-list-item .resource i.fa {
  width: 14px;
  text-align: center;
  margin-right: 4px; }

.data-catalog-window .expand-list-btn,
.data-catalog-resource-popover .expand-list-btn,
.data-catalog-popover-list-item .expand-list-btn {
  padding: 0; }

.data-catalog-resource-popover .resource .resource-description {
  color: #787878;
  font-size: 13px;
  padding-bottom: 3px; }

.data-catalog-resource-popover .data-catalog-popover-details-btn {
  border-radius: 0px;
  margin-top: 10px; }

.data-catalog-popover-container .data-catalog-resource-popover {
  padding: 0 10px 10px 10px; }

.data-catalog-popover-back-btn {
  color: #389b9b;
  border: none;
  background: none;
  padding: 10px;
  font-size: 13px; }

.data-catalog-popover-result-list {
  padding: 0px; }

.data-catalog-popover-pagination {
  text-align: center; }

.data-catalog-popover-pagination .data-catalog-popover-pagination-btn {
  border: none;
  background: none; }
  .data-catalog-popover-pagination .data-catalog-popover-pagination-btn:disabled {
    color: #eceff1; }

.data-catalog-popover-pagination-btn,
.data-catalog-popover-num-results {
  margin-bottom: 0 !important; }

.data-catalog-popover-num-results {
  color: #394750;
  font-weight: 800;
  padding: 6px;
  padding-top: 0;
  border-bottom: 1px solid #eceff1; }

.data-catalog-popover-list-item {
  display: block; }
  .data-catalog-popover-list-item .data-catalog-popover-list-item-btn {
    border: none;
    border-bottom: 1px solid #eceff1;
    padding: 6px;
    background: none;
    text-align: left;
    width: 100%; }
    .data-catalog-popover-list-item .data-catalog-popover-list-item-btn:hover {
      background: #f3f3f3; }
  .data-catalog-popover-list-item .data-catalog-popover-list-item-btn .list-item-title {
    color: #389b9b;
    height: 17px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden; }
  .data-catalog-popover-list-item .data-catalog-popover-list-item-btn .data-catalog-popover-list-item-date {
    color: #787878;
    font-size: 13px; }

.data-catalog-filter-window {
  left: 460px;
  width: 300px;
  transition: all 200ms;
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  top: 44px; }
  body.modeling-stage .data-catalog-filter-window {
    top: 91px; }
  .data-catalog-filter-window .data-catalog-filters-header {
    display: flex;
    flex-direction: row;
    height: 42px;
    padding: 0 calc(1rem + 2px);
    background-color: rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.12); }
    body.modeling-stage .data-catalog-filter-window .data-catalog-filters-header {
      height: 47px; }
    .data-catalog-filter-window .data-catalog-filters-header > .filter-title {
      font-size: 16px;
      font-weight: 800;
      line-height: 42px; }
      body.modeling-stage .data-catalog-filter-window .data-catalog-filters-header > .filter-title {
        line-height: 47px; }
    .data-catalog-filter-window .data-catalog-filters-header > .btn-reset {
      margin-left: auto;
      font-weight: 600;
      color: #389b9b;
      font-size: 13px;
      line-height: 42px; }
      body.modeling-stage .data-catalog-filter-window .data-catalog-filters-header > .btn-reset {
        line-height: 47px; }
  .data-catalog-filter-window .data-catalog-filter-groups {
    padding: 1rem;
    border-left: 2px solid #eceff1;
    flex: 1; }
    .data-catalog-filter-window .data-catalog-filter-groups .data-catalog-filter-group h5,
    .data-catalog-filter-window .data-catalog-filter-groups .data-catalog-filter-group label {
      font-weight: 700;
      margin-top: 4px;
      font-size: 12px;
      color: #4d6d82; }
    .data-catalog-filter-window .data-catalog-filter-groups .data-catalog-filter-group .data-catalog-filter-checkbox input[type=checkbox] {
      position: relative;
      margin-right: 5px;
      display: none; }
      .data-catalog-filter-window .data-catalog-filter-groups .data-catalog-filter-group .data-catalog-filter-checkbox input[type=checkbox]:checked + .checkbox--styled {
        background-color: #389b9b;
        border-color: #389b9b;
        text-align: center; }
        .data-catalog-filter-window .data-catalog-filter-groups .data-catalog-filter-group .data-catalog-filter-checkbox input[type=checkbox]:checked + .checkbox--styled:after {
          content: "\f00c";
          font-family: FontAwesome;
          color: #fff;
          position: absolute;
          left: 0;
          right: 0;
          line-height: 18px; }
    .data-catalog-filter-window .data-catalog-filter-groups .data-catalog-filter-group .data-catalog-filter-checkbox .checkbox--styled {
      display: inline-block;
      width: 18px;
      height: 18px;
      border: 0;
      border-radius: 2px;
      position: relative;
      margin-right: 3px;
      top: 3px;
      box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
      background-color: #fff; }
    .data-catalog-filter-window .data-catalog-filter-groups .data-catalog-filter-group .data-catalog-filter-checkbox input, .data-catalog-filter-window .data-catalog-filter-groups .data-catalog-filter-group .data-catalog-filter-checkbox .checkbox--styled {
      border: 1px solid #ccc; }
    .data-catalog-filter-window .data-catalog-filter-groups .data-catalog-filter-group .data-catalog-filter-checkbox label {
      font-size: 15px; }
    .data-catalog-filter-window .data-catalog-filter-groups .data-catalog-filter-group .data-catalog-search-dates {
      padding: 0 10px;
      margin: 0 -10px 0; }
      .data-catalog-filter-window .data-catalog-filter-groups .data-catalog-filter-group .data-catalog-search-dates label {
        display: block;
        font-size: 13px; }
    .data-catalog-filter-window .data-catalog-filter-groups .data-catalog-filter-group .data-catalog-clearable-input {
      width: 100%;
      display: inline-block;
      position: relative; }
    .data-catalog-filter-window .data-catalog-filter-groups .data-catalog-filter-group .data-catalog-date-input {
      height: 38px;
      border-radius: 0;
      display: inline;
      margin-bottom: 12px; }
    .data-catalog-filter-window .data-catalog-filter-groups .data-catalog-filter-group .data-catalog-clear-icon {
      color: #394750;
      position: relative;
      font-size: 13px;
      position: absolute;
      right: 10px;
      top: 10px; }
    .data-catalog-filter-window .data-catalog-filter-groups .data-catalog-filter-group .data-catalog-validation-msg {
      color: #e0412d;
      margin-top: 8px; }

.result-details-region > div {
  position: absolute;
  width: 460px;
  overflow-y: scroll; }
  .analyze-stage-monitor-tab-pane .result-details-region > div {
    height: calc(100% - 44px - 42px - 68px) !important; }

.result-details-region p {
  font-size: 13px; }

.result-details-region .btn,
.result-details-region .downloadcsv-link {
  font-size: 14px;
  border-radius: 2px; }

.table-data-detail {
  font-size: 13px;
  margin: 14px 0 6px; }
  .table-data-detail td,
  .table-data-detail th {
    vertical-align: top;
    padding-bottom: 10px; }
  .table-data-detail td {
    color: #777; }
  .table-data-detail th {
    padding-right: 20px; }

.data-catalog-search-dates label {
  font-weight: 600;
  color: #555;
  font-size: 13px;
  margin: 10px 0px 12px; }

.data-catalog-filter-group .data-catalog-filter-checkbox label {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  padding-left: 0; }

.contribute-modal .contribute-group {
  display: flex;
  flex-direction: column; }
  .contribute-modal .contribute-group + .contribute-group {
    margin-top: 2rem; }
  .contribute-modal .contribute-group .contribute-row {
    display: flex;
    justify-content: space-between; }
  .contribute-modal .contribute-group .contribute-description p {
    margin-bottom: 1rem; }
  .contribute-modal .contribute-group .contribute-link {
    margin-left: 1rem; }
  .contribute-modal .contribute-group .contribute-logos {
    display: flex;
    justify-content: space-evenly; }
    .contribute-modal .contribute-group .contribute-logos img {
      max-width: 250px;
      margin: 1rem; }
