@import url(https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900);
@import url(https://fonts.googleapis.com/css?family=Source+Code+Pro:400,600&display=swap);
@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.6.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

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

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

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

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

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) 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;
  }

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

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

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

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

  80% {
    -webkit-transform: perspective(400px) scale3d(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;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes rollOut {
  from {
    opacity: 1;
  }

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

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

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

  50% {
    opacity: 1;
  }
}

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

  50% {
    opacity: 1;
  }
}

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


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

  50% {
    opacity: 1;
  }
}

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

  50% {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

 html {
    line-height: 1.15; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
  }
  
  /* Sections
     ========================================================================== */
  
  /**
   * Remove the margin in all browsers.
   */
  
  body {
    margin: 0;
  }
  
  /**
   * Correct the font size and margin on `h1` elements within `section` and
   * `article` contexts in Chrome, Firefox, and Safari.
   */
  
  h1 {
    font-size: 2em;
    margin: 0.67em 0;
  }
  
  /* Grouping content
     ========================================================================== */
  
  /**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
  
  hr {
    box-sizing: content-box; /* 1 */
    height: 0; /* 1 */
    overflow: visible; /* 2 */
  }
  
  /**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
  
  pre {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
  }
  
  /* Text-level semantics
     ========================================================================== */
  
  /**
   * Remove the gray background on active links in IE 10.
   */
  
  a {
    background-color: transparent;
  }
  
  /**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */
  
  abbr[title] {
    border-bottom: none; /* 1 */
    text-decoration: underline; /* 2 */
    text-decoration: underline dotted; /* 2 */
  }
  
  /**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */
  
  b,
  strong {
    font-weight: bolder;
  }
  
  /**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
  
  code,
  kbd,
  samp {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
  }
  
  /**
   * Add the correct font size in all browsers.
   */
  
  small {
    font-size: 80%;
  }
  
  /**
   * Prevent `sub` and `sup` elements from affecting the line height in
   * all browsers.
   */
  
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  
  sub {
    bottom: -0.25em;
  }
  
  sup {
    top: -0.5em;
  }
  
  /* Embedded content
     ========================================================================== */
  
  /**
   * Remove the border on images inside links in IE 10.
   */
  
  img {
    border-style: none;
  }
  
  /* Forms
     ========================================================================== */
  
  /**
   * 1. Change the font styles in all browsers.
   * 2. Remove the margin in Firefox and Safari.
   */
  
  button,
  input,
  optgroup,
  select,
  textarea {
    font-family: inherit; /* 1 */
    font-size: 100%; /* 1 */
    line-height: 1.15; /* 1 */
    margin: 0; /* 2 */
  }
  
  /**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */
  
  button,
  input { /* 1 */
    overflow: visible;
  }
  
  /**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */
  
  button,
  select { /* 1 */
    text-transform: none;
  }
  
  /**
   * Correct the inability to style clickable types in iOS and Safari.
   */
  
  button,
  [type="button"],
  [type="reset"],
  [type="submit"] {
    -webkit-appearance: button;
  }
  
  /**
   * Remove the inner border and padding in Firefox.
   */
  
  button::-moz-focus-inner,
  [type="button"]::-moz-focus-inner,
  [type="reset"]::-moz-focus-inner,
  [type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
  }
  
  /**
   * Restore the focus styles unset by the previous rule.
   */
  
  button:-moz-focusring,
  [type="button"]:-moz-focusring,
  [type="reset"]:-moz-focusring,
  [type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
  }
  
  /**
   * Correct the padding in Firefox.
   */
  
  fieldset {
    padding: 0.35em 0.75em 0.625em;
  }
  
  /**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *    `fieldset` elements in all browsers.
   */
  
  legend {
    box-sizing: border-box; /* 1 */
    color: inherit; /* 2 */
    display: table; /* 1 */
    max-width: 100%; /* 1 */
    padding: 0; /* 3 */
    white-space: normal; /* 1 */
  }
  
  /**
   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */
  
  progress {
    vertical-align: baseline;
  }
  
  /**
   * Remove the default vertical scrollbar in IE 10+.
   */
  
  textarea {
    overflow: auto;
  }
  
  /**
   * 1. Add the correct box sizing in IE 10.
   * 2. Remove the padding in IE 10.
   */
  
  [type="checkbox"],
  [type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
  }
  
  /**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */
  
  [type="number"]::-webkit-inner-spin-button,
  [type="number"]::-webkit-outer-spin-button {
    height: auto;
  }
  
  /**
   * 1. Correct the odd appearance in Chrome and Safari.
   * 2. Correct the outline style in Safari.
   */
  
  [type="search"] {
    -webkit-appearance: textfield; /* 1 */
    outline-offset: -2px; /* 2 */
  }
  
  /**
   * Remove the inner padding in Chrome and Safari on macOS.
   */
  
  [type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  
  /**
   * 1. Correct the inability to style clickable types in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */
  
  ::-webkit-file-upload-button {
    -webkit-appearance: button; /* 1 */
    font: inherit; /* 2 */
  }
  
  /* Interactive
     ========================================================================== */
  
  /*
   * Add the correct display in Edge, IE 10+, and Firefox.
   */
  
  details {
    display: block;
  }
  
  /*
   * Add the correct display in all browsers.
   */
  
  summary {
    display: list-item;
  }
  
  /* Misc
     ========================================================================== */
  
  /**
   * Add the correct display in IE 10+.
   */
  
  template {
    display: none;
  }
  
  /**
   * Add the correct display in IE 10.
   */
  
  [hidden] {
    display: none;
  }
/*!
 * Bootstrap Grid v4.0.0 (https://getbootstrap.com)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
 @-ms-viewport {
    width: device-width;
  }
  
  html {
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: inherit;
  }
  
  .container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }
  
  @media (min-width: 576px) {
    .container {
      max-width: 540px;
    }
  }
  
  @media (min-width: 768px) {
    .container {
      max-width: 720px;
    }
  }
  
  @media (min-width: 992px) {
    .container {
      max-width: 960px;
    }
  }
  
  @media (min-width: 1200px) {
    .container {
      max-width: 1140px;
    }
  }
  
  .container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }
  
  .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  
  .no-gutters {
    margin-right: 0;
    margin-left: 0;
  }
  
  .no-gutters > .col,
  .no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
  }
  
  .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
  .col-auto, .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, .col-sm,
  .col-sm-auto, .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, .col-md,
  .col-md-auto, .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, .col-lg,
  .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
  .col-xl-auto {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
  }
  
  .col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  
  .col-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  
  .col-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  
  .col-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  
  .col-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  
  .col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  
  .col-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  
  .col-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .col-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  
  .col-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  
  .col-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  
  .col-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  
  .col-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  
  .col-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .order-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  
  .order-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  
  .order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  
  .order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  
  .order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  
  .order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  
  .order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  
  .order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  
  .order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  
  .order-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  
  .order-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  
  .order-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  
  .order-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  
  .order-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  
  .order-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  
  .offset-1 {
    margin-left: 8.333333%;
  }
  
  .offset-2 {
    margin-left: 16.666667%;
  }
  
  .offset-3 {
    margin-left: 25%;
  }
  
  .offset-4 {
    margin-left: 33.333333%;
  }
  
  .offset-5 {
    margin-left: 41.666667%;
  }
  
  .offset-6 {
    margin-left: 50%;
  }
  
  .offset-7 {
    margin-left: 58.333333%;
  }
  
  .offset-8 {
    margin-left: 66.666667%;
  }
  
  .offset-9 {
    margin-left: 75%;
  }
  
  .offset-10 {
    margin-left: 83.333333%;
  }
  
  .offset-11 {
    margin-left: 91.666667%;
  }
  
  @media (min-width: 576px) {
    .col-sm {
      -ms-flex-preferred-size: 0;
      flex-basis: 0;
      -webkit-box-flex: 1;
      -ms-flex-positive: 1;
      flex-grow: 1;
      max-width: 100%;
    }
    .col-sm-auto {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      width: auto;
      max-width: none;
    }
    .col-sm-1 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 8.333333%;
      flex: 0 0 8.333333%;
      max-width: 8.333333%;
    }
    .col-sm-2 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 16.666667%;
      flex: 0 0 16.666667%;
      max-width: 16.666667%;
    }
    .col-sm-3 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%;
    }
    .col-sm-4 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 33.333333%;
      flex: 0 0 33.333333%;
      max-width: 33.333333%;
    }
    .col-sm-5 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 41.666667%;
      flex: 0 0 41.666667%;
      max-width: 41.666667%;
    }
    .col-sm-6 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%;
    }
    .col-sm-7 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 58.333333%;
      flex: 0 0 58.333333%;
      max-width: 58.333333%;
    }
    .col-sm-8 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 66.666667%;
      flex: 0 0 66.666667%;
      max-width: 66.666667%;
    }
    .col-sm-9 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
      flex: 0 0 75%;
      max-width: 75%;
    }
    .col-sm-10 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 83.333333%;
      flex: 0 0 83.333333%;
      max-width: 83.333333%;
    }
    .col-sm-11 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 91.666667%;
      flex: 0 0 91.666667%;
      max-width: 91.666667%;
    }
    .col-sm-12 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
    }
    .order-sm-first {
      -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
      order: -1;
    }
    .order-sm-last {
      -webkit-box-ordinal-group: 14;
      -ms-flex-order: 13;
      order: 13;
    }
    .order-sm-0 {
      -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
      order: 0;
    }
    .order-sm-1 {
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1;
    }
    .order-sm-2 {
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2;
    }
    .order-sm-3 {
      -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
      order: 3;
    }
    .order-sm-4 {
      -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
      order: 4;
    }
    .order-sm-5 {
      -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
      order: 5;
    }
    .order-sm-6 {
      -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
      order: 6;
    }
    .order-sm-7 {
      -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
      order: 7;
    }
    .order-sm-8 {
      -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
      order: 8;
    }
    .order-sm-9 {
      -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
      order: 9;
    }
    .order-sm-10 {
      -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
      order: 10;
    }
    .order-sm-11 {
      -webkit-box-ordinal-group: 12;
      -ms-flex-order: 11;
      order: 11;
    }
    .order-sm-12 {
      -webkit-box-ordinal-group: 13;
      -ms-flex-order: 12;
      order: 12;
    }
    .offset-sm-0 {
      margin-left: 0;
    }
    .offset-sm-1 {
      margin-left: 8.333333%;
    }
    .offset-sm-2 {
      margin-left: 16.666667%;
    }
    .offset-sm-3 {
      margin-left: 25%;
    }
    .offset-sm-4 {
      margin-left: 33.333333%;
    }
    .offset-sm-5 {
      margin-left: 41.666667%;
    }
    .offset-sm-6 {
      margin-left: 50%;
    }
    .offset-sm-7 {
      margin-left: 58.333333%;
    }
    .offset-sm-8 {
      margin-left: 66.666667%;
    }
    .offset-sm-9 {
      margin-left: 75%;
    }
    .offset-sm-10 {
      margin-left: 83.333333%;
    }
    .offset-sm-11 {
      margin-left: 91.666667%;
    }
  }
  
  @media (min-width: 768px) {
    .col-md {
      -ms-flex-preferred-size: 0;
      flex-basis: 0;
      -webkit-box-flex: 1;
      -ms-flex-positive: 1;
      flex-grow: 1;
      max-width: 100%;
    }
    .col-md-auto {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      width: auto;
      max-width: none;
    }
    .col-md-1 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 8.333333%;
      flex: 0 0 8.333333%;
      max-width: 8.333333%;
    }
    .col-md-2 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 16.666667%;
      flex: 0 0 16.666667%;
      max-width: 16.666667%;
    }
    .col-md-3 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%;
    }
    .col-md-4 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 33.333333%;
      flex: 0 0 33.333333%;
      max-width: 33.333333%;
    }
    .col-md-5 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 41.666667%;
      flex: 0 0 41.666667%;
      max-width: 41.666667%;
    }
    .col-md-6 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%;
    }
    .col-md-7 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 58.333333%;
      flex: 0 0 58.333333%;
      max-width: 58.333333%;
    }
    .col-md-8 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 66.666667%;
      flex: 0 0 66.666667%;
      max-width: 66.666667%;
    }
    .col-md-9 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
      flex: 0 0 75%;
      max-width: 75%;
    }
    .col-md-10 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 83.333333%;
      flex: 0 0 83.333333%;
      max-width: 83.333333%;
    }
    .col-md-11 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 91.666667%;
      flex: 0 0 91.666667%;
      max-width: 91.666667%;
    }
    .col-md-12 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
    }
    .order-md-first {
      -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
      order: -1;
    }
    .order-md-last {
      -webkit-box-ordinal-group: 14;
      -ms-flex-order: 13;
      order: 13;
    }
    .order-md-0 {
      -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
      order: 0;
    }
    .order-md-1 {
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1;
    }
    .order-md-2 {
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2;
    }
    .order-md-3 {
      -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
      order: 3;
    }
    .order-md-4 {
      -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
      order: 4;
    }
    .order-md-5 {
      -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
      order: 5;
    }
    .order-md-6 {
      -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
      order: 6;
    }
    .order-md-7 {
      -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
      order: 7;
    }
    .order-md-8 {
      -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
      order: 8;
    }
    .order-md-9 {
      -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
      order: 9;
    }
    .order-md-10 {
      -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
      order: 10;
    }
    .order-md-11 {
      -webkit-box-ordinal-group: 12;
      -ms-flex-order: 11;
      order: 11;
    }
    .order-md-12 {
      -webkit-box-ordinal-group: 13;
      -ms-flex-order: 12;
      order: 12;
    }
    .offset-md-0 {
      margin-left: 0;
    }
    .offset-md-1 {
      margin-left: 8.333333%;
    }
    .offset-md-2 {
      margin-left: 16.666667%;
    }
    .offset-md-3 {
      margin-left: 25%;
    }
    .offset-md-4 {
      margin-left: 33.333333%;
    }
    .offset-md-5 {
      margin-left: 41.666667%;
    }
    .offset-md-6 {
      margin-left: 50%;
    }
    .offset-md-7 {
      margin-left: 58.333333%;
    }
    .offset-md-8 {
      margin-left: 66.666667%;
    }
    .offset-md-9 {
      margin-left: 75%;
    }
    .offset-md-10 {
      margin-left: 83.333333%;
    }
    .offset-md-11 {
      margin-left: 91.666667%;
    }
  }
  
  @media (min-width: 992px) {
    .col-lg {
      -ms-flex-preferred-size: 0;
      flex-basis: 0;
      -webkit-box-flex: 1;
      -ms-flex-positive: 1;
      flex-grow: 1;
      max-width: 100%;
    }
    .col-lg-auto {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      width: auto;
      max-width: none;
    }
    .col-lg-1 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 8.333333%;
      flex: 0 0 8.333333%;
      max-width: 8.333333%;
    }
    .col-lg-2 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 16.666667%;
      flex: 0 0 16.666667%;
      max-width: 16.666667%;
    }
    .col-lg-3 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%;
    }
    .col-lg-4 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 33.333333%;
      flex: 0 0 33.333333%;
      max-width: 33.333333%;
    }
    .col-lg-5 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 41.666667%;
      flex: 0 0 41.666667%;
      max-width: 41.666667%;
    }
    .col-lg-6 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%;
    }
    .col-lg-7 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 58.333333%;
      flex: 0 0 58.333333%;
      max-width: 58.333333%;
    }
    .col-lg-8 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 66.666667%;
      flex: 0 0 66.666667%;
      max-width: 66.666667%;
    }
    .col-lg-9 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
      flex: 0 0 75%;
      max-width: 75%;
    }
    .col-lg-10 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 83.333333%;
      flex: 0 0 83.333333%;
      max-width: 83.333333%;
    }
    .col-lg-11 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 91.666667%;
      flex: 0 0 91.666667%;
      max-width: 91.666667%;
    }
    .col-lg-12 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
    }
    .order-lg-first {
      -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
      order: -1;
    }
    .order-lg-last {
      -webkit-box-ordinal-group: 14;
      -ms-flex-order: 13;
      order: 13;
    }
    .order-lg-0 {
      -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
      order: 0;
    }
    .order-lg-1 {
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1;
    }
    .order-lg-2 {
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2;
    }
    .order-lg-3 {
      -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
      order: 3;
    }
    .order-lg-4 {
      -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
      order: 4;
    }
    .order-lg-5 {
      -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
      order: 5;
    }
    .order-lg-6 {
      -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
      order: 6;
    }
    .order-lg-7 {
      -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
      order: 7;
    }
    .order-lg-8 {
      -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
      order: 8;
    }
    .order-lg-9 {
      -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
      order: 9;
    }
    .order-lg-10 {
      -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
      order: 10;
    }
    .order-lg-11 {
      -webkit-box-ordinal-group: 12;
      -ms-flex-order: 11;
      order: 11;
    }
    .order-lg-12 {
      -webkit-box-ordinal-group: 13;
      -ms-flex-order: 12;
      order: 12;
    }
    .offset-lg-0 {
      margin-left: 0;
    }
    .offset-lg-1 {
      margin-left: 8.333333%;
    }
    .offset-lg-2 {
      margin-left: 16.666667%;
    }
    .offset-lg-3 {
      margin-left: 25%;
    }
    .offset-lg-4 {
      margin-left: 33.333333%;
    }
    .offset-lg-5 {
      margin-left: 41.666667%;
    }
    .offset-lg-6 {
      margin-left: 50%;
    }
    .offset-lg-7 {
      margin-left: 58.333333%;
    }
    .offset-lg-8 {
      margin-left: 66.666667%;
    }
    .offset-lg-9 {
      margin-left: 75%;
    }
    .offset-lg-10 {
      margin-left: 83.333333%;
    }
    .offset-lg-11 {
      margin-left: 91.666667%;
    }
  }
  
  @media (min-width: 1200px) {
    .col-xl {
      -ms-flex-preferred-size: 0;
      flex-basis: 0;
      -webkit-box-flex: 1;
      -ms-flex-positive: 1;
      flex-grow: 1;
      max-width: 100%;
    }
    .col-xl-auto {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      width: auto;
      max-width: none;
    }
    .col-xl-1 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 8.333333%;
      flex: 0 0 8.333333%;
      max-width: 8.333333%;
    }
    .col-xl-2 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 16.666667%;
      flex: 0 0 16.666667%;
      max-width: 16.666667%;
    }
    .col-xl-3 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%;
    }
    .col-xl-4 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 33.333333%;
      flex: 0 0 33.333333%;
      max-width: 33.333333%;
    }
    .col-xl-5 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 41.666667%;
      flex: 0 0 41.666667%;
      max-width: 41.666667%;
    }
    .col-xl-6 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%;
    }
    .col-xl-7 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 58.333333%;
      flex: 0 0 58.333333%;
      max-width: 58.333333%;
    }
    .col-xl-8 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 66.666667%;
      flex: 0 0 66.666667%;
      max-width: 66.666667%;
    }
    .col-xl-9 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
      flex: 0 0 75%;
      max-width: 75%;
    }
    .col-xl-10 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 83.333333%;
      flex: 0 0 83.333333%;
      max-width: 83.333333%;
    }
    .col-xl-11 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 91.666667%;
      flex: 0 0 91.666667%;
      max-width: 91.666667%;
    }
    .col-xl-12 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
    }
    .order-xl-first {
      -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
      order: -1;
    }
    .order-xl-last {
      -webkit-box-ordinal-group: 14;
      -ms-flex-order: 13;
      order: 13;
    }
    .order-xl-0 {
      -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
      order: 0;
    }
    .order-xl-1 {
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1;
    }
    .order-xl-2 {
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2;
    }
    .order-xl-3 {
      -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
      order: 3;
    }
    .order-xl-4 {
      -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
      order: 4;
    }
    .order-xl-5 {
      -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
      order: 5;
    }
    .order-xl-6 {
      -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
      order: 6;
    }
    .order-xl-7 {
      -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
      order: 7;
    }
    .order-xl-8 {
      -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
      order: 8;
    }
    .order-xl-9 {
      -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
      order: 9;
    }
    .order-xl-10 {
      -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
      order: 10;
    }
    .order-xl-11 {
      -webkit-box-ordinal-group: 12;
      -ms-flex-order: 11;
      order: 11;
    }
    .order-xl-12 {
      -webkit-box-ordinal-group: 13;
      -ms-flex-order: 12;
      order: 12;
    }
    .offset-xl-0 {
      margin-left: 0;
    }
    .offset-xl-1 {
      margin-left: 8.333333%;
    }
    .offset-xl-2 {
      margin-left: 16.666667%;
    }
    .offset-xl-3 {
      margin-left: 25%;
    }
    .offset-xl-4 {
      margin-left: 33.333333%;
    }
    .offset-xl-5 {
      margin-left: 41.666667%;
    }
    .offset-xl-6 {
      margin-left: 50%;
    }
    .offset-xl-7 {
      margin-left: 58.333333%;
    }
    .offset-xl-8 {
      margin-left: 66.666667%;
    }
    .offset-xl-9 {
      margin-left: 75%;
    }
    .offset-xl-10 {
      margin-left: 83.333333%;
    }
    .offset-xl-11 {
      margin-left: 91.666667%;
    }
  }
  
  .d-none {
    display: none !important;
  }
  
  .d-inline {
    display: inline !important;
  }
  
  .d-inline-block {
    display: inline-block !important;
  }
  
  .d-block {
    display: block !important;
  }
  
  .d-table {
    display: table !important;
  }
  
  .d-table-row {
    display: table-row !important;
  }
  
  .d-table-cell {
    display: table-cell !important;
  }
  
  .d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  
  .d-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  
  @media (min-width: 576px) {
    .d-sm-none {
      display: none !important;
    }
    .d-sm-inline {
      display: inline !important;
    }
    .d-sm-inline-block {
      display: inline-block !important;
    }
    .d-sm-block {
      display: block !important;
    }
    .d-sm-table {
      display: table !important;
    }
    .d-sm-table-row {
      display: table-row !important;
    }
    .d-sm-table-cell {
      display: table-cell !important;
    }
    .d-sm-flex {
      display: -webkit-box !important;
      display: -ms-flexbox !important;
      display: flex !important;
    }
    .d-sm-inline-flex {
      display: -webkit-inline-box !important;
      display: -ms-inline-flexbox !important;
      display: inline-flex !important;
    }
  }
  
  @media (min-width: 768px) {
    .d-md-none {
      display: none !important;
    }
    .d-md-inline {
      display: inline !important;
    }
    .d-md-inline-block {
      display: inline-block !important;
    }
    .d-md-block {
      display: block !important;
    }
    .d-md-table {
      display: table !important;
    }
    .d-md-table-row {
      display: table-row !important;
    }
    .d-md-table-cell {
      display: table-cell !important;
    }
    .d-md-flex {
      display: -webkit-box !important;
      display: -ms-flexbox !important;
      display: flex !important;
    }
    .d-md-inline-flex {
      display: -webkit-inline-box !important;
      display: -ms-inline-flexbox !important;
      display: inline-flex !important;
    }
  }
  
  @media (min-width: 992px) {
    .d-lg-none {
      display: none !important;
    }
    .d-lg-inline {
      display: inline !important;
    }
    .d-lg-inline-block {
      display: inline-block !important;
    }
    .d-lg-block {
      display: block !important;
    }
    .d-lg-table {
      display: table !important;
    }
    .d-lg-table-row {
      display: table-row !important;
    }
    .d-lg-table-cell {
      display: table-cell !important;
    }
    .d-lg-flex {
      display: -webkit-box !important;
      display: -ms-flexbox !important;
      display: flex !important;
    }
    .d-lg-inline-flex {
      display: -webkit-inline-box !important;
      display: -ms-inline-flexbox !important;
      display: inline-flex !important;
    }
  }
  
  @media (min-width: 1200px) {
    .d-xl-none {
      display: none !important;
    }
    .d-xl-inline {
      display: inline !important;
    }
    .d-xl-inline-block {
      display: inline-block !important;
    }
    .d-xl-block {
      display: block !important;
    }
    .d-xl-table {
      display: table !important;
    }
    .d-xl-table-row {
      display: table-row !important;
    }
    .d-xl-table-cell {
      display: table-cell !important;
    }
    .d-xl-flex {
      display: -webkit-box !important;
      display: -ms-flexbox !important;
      display: flex !important;
    }
    .d-xl-inline-flex {
      display: -webkit-inline-box !important;
      display: -ms-inline-flexbox !important;
      display: inline-flex !important;
    }
  }
  
  @media print {
    .d-print-none {
      display: none !important;
    }
    .d-print-inline {
      display: inline !important;
    }
    .d-print-inline-block {
      display: inline-block !important;
    }
    .d-print-block {
      display: block !important;
    }
    .d-print-table {
      display: table !important;
    }
    .d-print-table-row {
      display: table-row !important;
    }
    .d-print-table-cell {
      display: table-cell !important;
    }
    .d-print-flex {
      display: -webkit-box !important;
      display: -ms-flexbox !important;
      display: flex !important;
    }
    .d-print-inline-flex {
      display: -webkit-inline-box !important;
      display: -ms-inline-flexbox !important;
      display: inline-flex !important;
    }
  }
  
  .flex-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  
  .flex-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  
  .flex-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  
  .flex-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  
  .flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  
  .flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  
  .flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  
  .flex-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  
  .justify-content-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  
  .justify-content-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  
  .justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  
  .justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  
  .justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  
  .align-items-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  
  .align-items-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  
  .align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  
  .align-items-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  
  .align-items-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  
  .align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  
  .align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  
  .align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  
  .align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  
  .align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  
  .align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  
  .align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  
  .align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  
  .align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  
  .align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  
  .align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  
  .align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  
  @media (min-width: 576px) {
    .flex-sm-row {
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
      flex-direction: row !important;
    }
    .flex-sm-column {
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
      flex-direction: column !important;
    }
    .flex-sm-row-reverse {
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
      flex-direction: row-reverse !important;
    }
    .flex-sm-column-reverse {
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: reverse !important;
      -ms-flex-direction: column-reverse !important;
      flex-direction: column-reverse !important;
    }
    .flex-sm-wrap {
      -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
    }
    .flex-sm-nowrap {
      -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
    }
    .flex-sm-wrap-reverse {
      -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important;
    }
    .flex-sm-fill {
      -webkit-box-flex: 1 !important;
      -ms-flex: 1 1 auto !important;
      flex: 1 1 auto !important;
    }
    .justify-content-sm-start {
      -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
      justify-content: flex-start !important;
    }
    .justify-content-sm-end {
      -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
      justify-content: flex-end !important;
    }
    .justify-content-sm-center {
      -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
      justify-content: center !important;
    }
    .justify-content-sm-between {
      -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
      justify-content: space-between !important;
    }
    .justify-content-sm-around {
      -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
    }
    .align-items-sm-start {
      -webkit-box-align: start !important;
      -ms-flex-align: start !important;
      align-items: flex-start !important;
    }
    .align-items-sm-end {
      -webkit-box-align: end !important;
      -ms-flex-align: end !important;
      align-items: flex-end !important;
    }
    .align-items-sm-center {
      -webkit-box-align: center !important;
      -ms-flex-align: center !important;
      align-items: center !important;
    }
    .align-items-sm-baseline {
      -webkit-box-align: baseline !important;
      -ms-flex-align: baseline !important;
      align-items: baseline !important;
    }
    .align-items-sm-stretch {
      -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
      align-items: stretch !important;
    }
    .align-content-sm-start {
      -ms-flex-line-pack: start !important;
      align-content: flex-start !important;
    }
    .align-content-sm-end {
      -ms-flex-line-pack: end !important;
      align-content: flex-end !important;
    }
    .align-content-sm-center {
      -ms-flex-line-pack: center !important;
      align-content: center !important;
    }
    .align-content-sm-between {
      -ms-flex-line-pack: justify !important;
      align-content: space-between !important;
    }
    .align-content-sm-around {
      -ms-flex-line-pack: distribute !important;
      align-content: space-around !important;
    }
    .align-content-sm-stretch {
      -ms-flex-line-pack: stretch !important;
      align-content: stretch !important;
    }
    .align-self-sm-auto {
      -ms-flex-item-align: auto !important;
      align-self: auto !important;
    }
    .align-self-sm-start {
      -ms-flex-item-align: start !important;
      align-self: flex-start !important;
    }
    .align-self-sm-end {
      -ms-flex-item-align: end !important;
      align-self: flex-end !important;
    }
    .align-self-sm-center {
      -ms-flex-item-align: center !important;
      align-self: center !important;
    }
    .align-self-sm-baseline {
      -ms-flex-item-align: baseline !important;
      align-self: baseline !important;
    }
    .align-self-sm-stretch {
      -ms-flex-item-align: stretch !important;
      align-self: stretch !important;
    }
  }
  
  @media (min-width: 768px) {
    .flex-md-row {
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
      flex-direction: row !important;
    }
    .flex-md-column {
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
      flex-direction: column !important;
    }
    .flex-md-row-reverse {
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
      flex-direction: row-reverse !important;
    }
    .flex-md-column-reverse {
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: reverse !important;
      -ms-flex-direction: column-reverse !important;
      flex-direction: column-reverse !important;
    }
    .flex-md-wrap {
      -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
    }
    .flex-md-nowrap {
      -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
    }
    .flex-md-wrap-reverse {
      -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important;
    }
    .flex-md-fill {
      -webkit-box-flex: 1 !important;
      -ms-flex: 1 1 auto !important;
      flex: 1 1 auto !important;
    }
    .justify-content-md-start {
      -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
      justify-content: flex-start !important;
    }
    .justify-content-md-end {
      -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
      justify-content: flex-end !important;
    }
    .justify-content-md-center {
      -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
      justify-content: center !important;
    }
    .justify-content-md-between {
      -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
      justify-content: space-between !important;
    }
    .justify-content-md-around {
      -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
    }
    .align-items-md-start {
      -webkit-box-align: start !important;
      -ms-flex-align: start !important;
      align-items: flex-start !important;
    }
    .align-items-md-end {
      -webkit-box-align: end !important;
      -ms-flex-align: end !important;
      align-items: flex-end !important;
    }
    .align-items-md-center {
      -webkit-box-align: center !important;
      -ms-flex-align: center !important;
      align-items: center !important;
    }
    .align-items-md-baseline {
      -webkit-box-align: baseline !important;
      -ms-flex-align: baseline !important;
      align-items: baseline !important;
    }
    .align-items-md-stretch {
      -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
      align-items: stretch !important;
    }
    .align-content-md-start {
      -ms-flex-line-pack: start !important;
      align-content: flex-start !important;
    }
    .align-content-md-end {
      -ms-flex-line-pack: end !important;
      align-content: flex-end !important;
    }
    .align-content-md-center {
      -ms-flex-line-pack: center !important;
      align-content: center !important;
    }
    .align-content-md-between {
      -ms-flex-line-pack: justify !important;
      align-content: space-between !important;
    }
    .align-content-md-around {
      -ms-flex-line-pack: distribute !important;
      align-content: space-around !important;
    }
    .align-content-md-stretch {
      -ms-flex-line-pack: stretch !important;
      align-content: stretch !important;
    }
    .align-self-md-auto {
      -ms-flex-item-align: auto !important;
      align-self: auto !important;
    }
    .align-self-md-start {
      -ms-flex-item-align: start !important;
      align-self: flex-start !important;
    }
    .align-self-md-end {
      -ms-flex-item-align: end !important;
      align-self: flex-end !important;
    }
    .align-self-md-center {
      -ms-flex-item-align: center !important;
      align-self: center !important;
    }
    .align-self-md-baseline {
      -ms-flex-item-align: baseline !important;
      align-self: baseline !important;
    }
    .align-self-md-stretch {
      -ms-flex-item-align: stretch !important;
      align-self: stretch !important;
    }
  }
  
  @media (min-width: 992px) {
    .flex-lg-row {
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
      flex-direction: row !important;
    }
    .flex-lg-column {
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
      flex-direction: column !important;
    }
    .flex-lg-row-reverse {
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
      flex-direction: row-reverse !important;
    }
    .flex-lg-column-reverse {
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: reverse !important;
      -ms-flex-direction: column-reverse !important;
      flex-direction: column-reverse !important;
    }
    .flex-lg-wrap {
      -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
    }
    .flex-lg-nowrap {
      -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
    }
    .flex-lg-wrap-reverse {
      -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important;
    }
    .flex-lg-fill {
      -webkit-box-flex: 1 !important;
      -ms-flex: 1 1 auto !important;
      flex: 1 1 auto !important;
    }
    .justify-content-lg-start {
      -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
      justify-content: flex-start !important;
    }
    .justify-content-lg-end {
      -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
      justify-content: flex-end !important;
    }
    .justify-content-lg-center {
      -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
      justify-content: center !important;
    }
    .justify-content-lg-between {
      -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
      justify-content: space-between !important;
    }
    .justify-content-lg-around {
      -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
    }
    .align-items-lg-start {
      -webkit-box-align: start !important;
      -ms-flex-align: start !important;
      align-items: flex-start !important;
    }
    .align-items-lg-end {
      -webkit-box-align: end !important;
      -ms-flex-align: end !important;
      align-items: flex-end !important;
    }
    .align-items-lg-center {
      -webkit-box-align: center !important;
      -ms-flex-align: center !important;
      align-items: center !important;
    }
    .align-items-lg-baseline {
      -webkit-box-align: baseline !important;
      -ms-flex-align: baseline !important;
      align-items: baseline !important;
    }
    .align-items-lg-stretch {
      -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
      align-items: stretch !important;
    }
    .align-content-lg-start {
      -ms-flex-line-pack: start !important;
      align-content: flex-start !important;
    }
    .align-content-lg-end {
      -ms-flex-line-pack: end !important;
      align-content: flex-end !important;
    }
    .align-content-lg-center {
      -ms-flex-line-pack: center !important;
      align-content: center !important;
    }
    .align-content-lg-between {
      -ms-flex-line-pack: justify !important;
      align-content: space-between !important;
    }
    .align-content-lg-around {
      -ms-flex-line-pack: distribute !important;
      align-content: space-around !important;
    }
    .align-content-lg-stretch {
      -ms-flex-line-pack: stretch !important;
      align-content: stretch !important;
    }
    .align-self-lg-auto {
      -ms-flex-item-align: auto !important;
      align-self: auto !important;
    }
    .align-self-lg-start {
      -ms-flex-item-align: start !important;
      align-self: flex-start !important;
    }
    .align-self-lg-end {
      -ms-flex-item-align: end !important;
      align-self: flex-end !important;
    }
    .align-self-lg-center {
      -ms-flex-item-align: center !important;
      align-self: center !important;
    }
    .align-self-lg-baseline {
      -ms-flex-item-align: baseline !important;
      align-self: baseline !important;
    }
    .align-self-lg-stretch {
      -ms-flex-item-align: stretch !important;
      align-self: stretch !important;
    }
  }
  
  @media (min-width: 1200px) {
    .flex-xl-row {
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
      flex-direction: row !important;
    }
    .flex-xl-column {
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
      flex-direction: column !important;
    }
    .flex-xl-row-reverse {
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
      flex-direction: row-reverse !important;
    }
    .flex-xl-column-reverse {
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: reverse !important;
      -ms-flex-direction: column-reverse !important;
      flex-direction: column-reverse !important;
    }
    .flex-xl-wrap {
      -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
    }
    .flex-xl-nowrap {
      -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
    }
    .flex-xl-wrap-reverse {
      -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important;
    }
    .flex-xl-fill {
      -webkit-box-flex: 1 !important;
      -ms-flex: 1 1 auto !important;
      flex: 1 1 auto !important;
    }
    .justify-content-xl-start {
      -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
      justify-content: flex-start !important;
    }
    .justify-content-xl-end {
      -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
      justify-content: flex-end !important;
    }
    .justify-content-xl-center {
      -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
      justify-content: center !important;
    }
    .justify-content-xl-between {
      -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
      justify-content: space-between !important;
    }
    .justify-content-xl-around {
      -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
    }
    .align-items-xl-start {
      -webkit-box-align: start !important;
      -ms-flex-align: start !important;
      align-items: flex-start !important;
    }
    .align-items-xl-end {
      -webkit-box-align: end !important;
      -ms-flex-align: end !important;
      align-items: flex-end !important;
    }
    .align-items-xl-center {
      -webkit-box-align: center !important;
      -ms-flex-align: center !important;
      align-items: center !important;
    }
    .align-items-xl-baseline {
      -webkit-box-align: baseline !important;
      -ms-flex-align: baseline !important;
      align-items: baseline !important;
    }
    .align-items-xl-stretch {
      -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
      align-items: stretch !important;
    }
    .align-content-xl-start {
      -ms-flex-line-pack: start !important;
      align-content: flex-start !important;
    }
    .align-content-xl-end {
      -ms-flex-line-pack: end !important;
      align-content: flex-end !important;
    }
    .align-content-xl-center {
      -ms-flex-line-pack: center !important;
      align-content: center !important;
    }
    .align-content-xl-between {
      -ms-flex-line-pack: justify !important;
      align-content: space-between !important;
    }
    .align-content-xl-around {
      -ms-flex-line-pack: distribute !important;
      align-content: space-around !important;
    }
    .align-content-xl-stretch {
      -ms-flex-line-pack: stretch !important;
      align-content: stretch !important;
    }
    .align-self-xl-auto {
      -ms-flex-item-align: auto !important;
      align-self: auto !important;
    }
    .align-self-xl-start {
      -ms-flex-item-align: start !important;
      align-self: flex-start !important;
    }
    .align-self-xl-end {
      -ms-flex-item-align: end !important;
      align-self: flex-end !important;
    }
    .align-self-xl-center {
      -ms-flex-item-align: center !important;
      align-self: center !important;
    }
    .align-self-xl-baseline {
      -ms-flex-item-align: baseline !important;
      align-self: baseline !important;
    }
    .align-self-xl-stretch {
      -ms-flex-item-align: stretch !important;
      align-self: stretch !important;
    }
  }
  /*# sourceMappingURL=bootstrap-grid.css.map */
.spinner {
    width: 111px;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  
  .spinner > div {
    width: 30px;
    height: 30px;
    background-color: #0764d4;
  
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  }
  
  .spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
  }
  
  .spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
  }
  
  @-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% { -webkit-transform: scale(0) }
    40% { -webkit-transform: scale(1.0) }
  }
  
  @keyframes sk-bouncedelay {
    0%, 80%, 100% { 
      -webkit-transform: scale(0);
      transform: scale(0);
    } 40% { 
      -webkit-transform: scale(1.0);
      transform: scale(1.0);
    }
  }
.rdrCalendarWrapper {
    box-sizing: border-box;
    background: #ffffff;
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  
  .rdrDateDisplay{
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
  
  .rdrDateDisplayItem{
    -webkit-box-flex: 1;
            flex: 1 1;
    width: 0;
    text-align: center;
    color: inherit;
  }
  
  .rdrDateDisplayItem + .rdrDateDisplayItem{
      margin-left: 0.833em;
    }
  
  .rdrDateDisplayItem input{
      text-align: inherit
    }
  
  .rdrDateDisplayItem input:disabled{
        cursor: default;
      }
  
  .rdrDateDisplayItemActive{}
  
  .rdrMonthAndYearWrapper {
    box-sizing: inherit;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
  
  .rdrMonthAndYearPickers{
    -webkit-box-flex: 1;
            flex: 1 1 auto;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
  }
  
  .rdrMonthPicker{}
  
  .rdrYearPicker{}
  
  .rdrNextPrevButton {
    box-sizing: inherit;
    cursor: pointer;
    outline: none;
  }
  
  .rdrPprevButton {}
  
  .rdrNextButton {}
  
  .rdrMonths{
    display: -webkit-box;
    display: flex;
  }
  
  .rdrMonthsVertical{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  
  .rdrMonthsHorizontal > div > div > div{
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
  
  .rdrMonth{
    width: 27.667em;
  }
  
  .rdrWeekDays{
    display: -webkit-box;
    display: flex;
  }
  
  .rdrWeekDay {
    flex-basis: calc(100% / 7);
    box-sizing: inherit;
    text-align: center;
  }
  
  .rdrDays{
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
  }
  
  .rdrDateDisplayWrapper{}
  
  .rdrMonthName{}
  
  .rdrInfiniteMonths{
    overflow: auto;
  }
  
  .rdrDateRangeWrapper{
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  
  .rdrDateInput {
    position: relative;
  }
  
  .rdrDateInput input {
      outline: none;
    }
  
  .rdrDateInput .rdrWarning {
      position: absolute;
      font-size: 1.6em;
      line-height: 1.6em;
      top: 0;
      right: .25em;
      color: #FF0000;
    }
  
  .rdrDay {
    box-sizing: inherit;
    width: calc(100% / 7);
    position: relative;
    font: inherit;
    cursor: pointer;
  }
  
  .rdrDayNumber {
    display: block;
    position: relative;
  }
  
  .rdrDayNumber span{
      color: #1d2429;
    }
  
  .rdrDayDisabled {
    cursor: not-allowed;
  }
  
  @supports (-ms-ime-align: auto) {
    .rdrDay {
      flex-basis: 14.285% !important;
    }
  }
  
  .rdrSelected, .rdrInRange, .rdrStartEdge, .rdrEndEdge{
    pointer-events: none;
  }
  
  .rdrInRange{}
  
  .rdrDayStartPreview, .rdrDayInPreview, .rdrDayEndPreview{
    pointer-events: none;
  }
  
  .rdrDayHovered{}
  
  .rdrDayActive{}
  
  .rdrDateRangePickerWrapper{
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  
  .rdrDefinedRangesWrapper{}
  
  .rdrStaticRanges{
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  
  .rdrStaticRange{
    font-size: inherit;
  }
  
  .rdrStaticRangeLabel{}
  
  .rdrInputRanges{}
  
  .rdrInputRange{
    display: -webkit-box;
    display: flex;
  }
  
  .rdrInputRangeInput{}

  .rdrCalendarWrapper{
    color: #000000;
    font-size: 12px;
  }
  
  .rdrDateDisplayWrapper{
    background-color: rgb(239, 242, 247);
  }
  
  .rdrDateDisplay{
    margin: 0.833em;
  }
  
  .rdrDateDisplayItem{
    border-radius: 4px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 1px 2px 0 rgba(35, 57, 66, 0.21);
    border: 1px solid transparent;
  }
  
  .rdrDateDisplayItem input{
      cursor: pointer;
      height: 2.5em;
      line-height: 2.5em;
      border: 0px;
      background: transparent;
      width: 100%;
      color: #849095;
    }
  
  .rdrDateDisplayItemActive{
    border-color: currentColor;
  }
  
  .rdrDateDisplayItemActive input{
      color: #7d888d
    }
  
  .rdrMonthAndYearWrapper {
    -webkit-box-align: center;
            align-items: center;
    height: 60px;
    padding-top: 10px;
  }
  
  .rdrMonthAndYearPickers{
    font-weight: 600;
  }
  
  .rdrMonthAndYearPickers select{
      -moz-appearance: none;
           appearance: none;
      -webkit-appearance: none;
      border: 0;
      background: transparent;
      padding: 10px 30px 10px 10px;
      border-radius: 4px;
      outline: 0;
      color: #3e484f;
      background: url("data:image/svg+xml;utf8,<svg width=%279px%27 height=%276px%27 viewBox=%270 0 9 6%27 version=%271.1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27><g id=%27Artboard%27 stroke=%27none%27 stroke-width=%271%27 fill=%27none%27 fill-rule=%27evenodd%27 transform=%27translate%28-636.000000, -171.000000%29%27 fill-opacity=%270.368716033%27><g id=%27input%27 transform=%27translate%28172.000000, 37.000000%29%27 fill=%27%230E242F%27 fill-rule=%27nonzero%27><g id=%27Group-9%27 transform=%27translate%28323.000000, 127.000000%29%27><path d=%27M142.280245,7.23952813 C141.987305,6.92353472 141.512432,6.92361662 141.219585,7.23971106 C140.926739,7.5558055 140.926815,8.06821394 141.219755,8.38420735 L145.498801,13 L149.780245,8.38162071 C150.073185,8.0656273 150.073261,7.55321886 149.780415,7.23712442 C149.487568,6.92102998 149.012695,6.92094808 148.719755,7.23694149 L145.498801,10.7113732 L142.280245,7.23952813 Z%27 id=%27arrow%27></path></g></g></g></svg>") no-repeat;
      background-position: right 8px center;
      cursor: pointer;
      text-align: center
    }
  
  .rdrMonthAndYearPickers select:hover{
        background-color: rgba(0,0,0,0.07);
      }
  
  .rdrMonthPicker, .rdrYearPicker{
    margin: 0 5px
  }
  
  .rdrNextPrevButton {
    display: block;
    width: 24px;
    height: 24px;
    margin: 0 0.833em;
    padding: 0;
    border: 0;
    border-radius: 5px;
    background: #EFF2F7
  }
  
  .rdrNextPrevButton:hover{
      background: #E1E7F0;
    }
  
  .rdrNextPrevButton i {
      display: block;
      width: 0;
      height: 0;
      padding: 0;
      text-align: center;
      border-style: solid;
      margin: auto;
      -webkit-transform: translate(-3px, 0px);
              transform: translate(-3px, 0px);
    }
  
  .rdrPprevButton i {
      border-width: 4px 6px 4px 4px;
      border-color: transparent rgb(52, 73, 94) transparent transparent;
      -webkit-transform: translate(-3px, 0px);
              transform: translate(-3px, 0px);
    }
  
  .rdrNextButton i {
      margin: 0 0 0 7px;
      border-width: 4px 4px 4px 6px;
      border-color: transparent transparent transparent rgb(52, 73, 94);
      -webkit-transform: translate(3px, 0px);
              transform: translate(3px, 0px);
    }
  
  .rdrWeekDays {
    padding: 0 0.833em;
  }
  
  .rdrMonth{
    padding: 0 0.833em 1.666em 0.833em;
  }
  
  .rdrMonth .rdrWeekDays {
      padding: 0;
    }
  
  .rdrMonths.rdrMonthsVertical .rdrMonth:first-child .rdrMonthName{
    display: none;
  }
  
  .rdrWeekDay {
    font-weight: 400;
    line-height: 2.667em;
    color: rgb(132, 144, 149);
  }
  
  .rdrDay {
    background: transparent;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    border: 0;
    padding: 0;
    line-height: 3.000em;
    height: 3.000em;
    text-align: center;
    color: #1d2429
  }
  
  .rdrDay:focus {
      outline: 0;
    }
  
  .rdrDayNumber {
    outline: 0;
    font-weight: 300;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    top: 5px;
    bottom: 5px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-pack: center;
            justify-content: center;
  }
  
  .rdrDayToday .rdrDayNumber span{
    font-weight: 500
  }
  
  .rdrDayToday .rdrDayNumber span:after{
      content: '';
      position: absolute;
      bottom: 4px;
      left: 50%;
      -webkit-transform: translate(-50%, 0);
              transform: translate(-50%, 0);
      width: 18px;
      height: 2px;
      border-radius: 2px;
      background: #3d91ff;
    }
  
  .rdrDayToday:not(.rdrDayPassive) .rdrInRange ~ .rdrDayNumber span:after,.rdrDayToday:not(.rdrDayPassive) .rdrStartEdge ~ .rdrDayNumber span:after,.rdrDayToday:not(.rdrDayPassive) .rdrEndEdge ~ .rdrDayNumber span:after,.rdrDayToday:not(.rdrDayPassive) .rdrSelected ~ .rdrDayNumber span:after{
        background: #fff;
      }
  
  .rdrDay:not(.rdrDayPassive) .rdrInRange ~ .rdrDayNumber span,.rdrDay:not(.rdrDayPassive) .rdrStartEdge ~ .rdrDayNumber span,.rdrDay:not(.rdrDayPassive) .rdrEndEdge ~ .rdrDayNumber span,.rdrDay:not(.rdrDayPassive) .rdrSelected ~ .rdrDayNumber span{
            color: rgba(255, 255, 255, 0.85);
          }
  
  .rdrSelected, .rdrInRange, .rdrStartEdge, .rdrEndEdge{
    background: currentColor;
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    bottom: 5px;
  }
  
  .rdrSelected{
    left: 2px;
    right: 2px;
  }
  
  .rdrInRange{}
  
  .rdrStartEdge{
    border-top-left-radius: 1.042em;
    border-bottom-left-radius: 1.042em;
    left: 2px;
  }
  
  .rdrEndEdge{
    border-top-right-radius: 1.042em;
    border-bottom-right-radius: 1.042em;
    right: 2px;
  }
  
  .rdrSelected{
    border-radius: 1.042em;
  }
  
  .rdrDayStartOfMonth .rdrInRange, .rdrDayStartOfMonth .rdrEndEdge, .rdrDayStartOfWeek .rdrInRange, .rdrDayStartOfWeek .rdrEndEdge{
      border-top-left-radius: 1.042em;
      border-bottom-left-radius: 1.042em;
      left: 2px;
    }
  
  .rdrDayEndOfMonth .rdrInRange,  .rdrDayEndOfMonth .rdrStartEdge,  .rdrDayEndOfWeek .rdrInRange,  .rdrDayEndOfWeek .rdrStartEdge{
      border-top-right-radius: 1.042em;
      border-bottom-right-radius: 1.042em;
      right: 2px;
    }
  
  .rdrDayStartOfMonth .rdrDayInPreview, .rdrDayStartOfMonth .rdrDayEndPreview, .rdrDayStartOfWeek .rdrDayInPreview, .rdrDayStartOfWeek .rdrDayEndPreview{
      border-top-left-radius: 1.333em;
      border-bottom-left-radius: 1.333em;
      border-left-width: 1px;
      left: 0px;
    }
  
  .rdrDayEndOfMonth .rdrDayInPreview, .rdrDayEndOfMonth .rdrDayStartPreview, .rdrDayEndOfWeek .rdrDayInPreview, .rdrDayEndOfWeek .rdrDayStartPreview{
     border-top-right-radius: 1.333em;
     border-bottom-right-radius: 1.333em;
     border-right-width: 1px;
     right: 0px;
   }
  
  .rdrDayStartPreview, .rdrDayInPreview, .rdrDayEndPreview{
    background: rgba(255, 255, 255, 0.09);
    position: absolute;
    top: 3px;
    left: 0px;
    right: 0px;
    bottom: 3px;
    pointer-events: none;
    border: 0px solid currentColor;
    z-index: 1;
  }
  
  .rdrDayStartPreview{
    border-top-width: 1px;
    border-left-width: 1px;
    border-bottom-width: 1px;
    border-top-left-radius: 1.333em;
    border-bottom-left-radius: 1.333em;
    left: 0px;
  }
  
  .rdrDayInPreview{
    border-top-width: 1px;
    border-bottom-width: 1px;
  }
  
  .rdrDayEndPreview{
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-top-right-radius: 1.333em;
    border-bottom-right-radius: 1.333em;
    right: 2px;
    right: 0px;
  }
  
  .rdrDefinedRangesWrapper{
    font-size: 12px;
    width: 226px;
    border-right: solid 1px #eff2f7;
    background: #fff;
  }
  
  .rdrDefinedRangesWrapper .rdrStaticRangeSelected{
      color: currentColor;
      font-weight: 600;
    }
  
  .rdrStaticRange{
    border: 0;
    cursor: pointer;
    display: block;
    outline: 0;
    border-bottom: 1px solid #eff2f7;
    padding: 0;
    background: #fff
  }
  
  .rdrStaticRange:hover .rdrStaticRangeLabel,.rdrStaticRange:focus .rdrStaticRangeLabel{
        background: #eff2f7;
      }
  
  .rdrStaticRangeLabel{
    display: block;
    outline: 0;
    line-height: 18px;
    padding: 10px 20px;
    text-align: left;
  }
  
  .rdrInputRanges{
    padding: 10px 0;
  }
  
  .rdrInputRange{
    -webkit-box-align: center;
            align-items: center;
    padding: 5px 20px;
  }
  
  .rdrInputRangeInput{
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 4px;
    text-align: center;
    border: solid 1px rgb(222, 231, 235);
    margin-right: 10px;
    color: rgb(108, 118, 122)
  }
  
  .rdrInputRangeInput:focus, .rdrInputRangeInput:hover{
      border-color: rgb(180, 191, 196);
      outline: 0;
      color: #333;
    }
  
  .rdrCalendarWrapper:not(.rdrDateRangeWrapper) .rdrDayHovered .rdrDayNumber:after{
    content: '';
    border: 1px solid currentColor;
    border-radius: 1.333em;
    position: absolute;
    top: -2px;
    bottom: -2px;
    left: 0px;
    right: 0px;
    background: transparent;
  }
  
  .rdrDayPassive{
    pointer-events: none;
  }
  
  .rdrDayPassive .rdrDayNumber span{
      color: #d5dce0;
    }
  
  .rdrDayPassive .rdrInRange, .rdrDayPassive .rdrStartEdge, .rdrDayPassive .rdrEndEdge, .rdrDayPassive .rdrSelected, .rdrDayPassive .rdrDayStartPreview, .rdrDayPassive .rdrDayInPreview, .rdrDayPassive .rdrDayEndPreview{
      display: none;
    }
  
  .rdrDayDisabled {
    background-color: rgb(248, 248, 248);
  }
  
  .rdrDayDisabled .rdrDayNumber span{
      color: #aeb9bf;
    }
  
  .rdrDayDisabled .rdrInRange, .rdrDayDisabled .rdrStartEdge, .rdrDayDisabled .rdrEndEdge, .rdrDayDisabled .rdrSelected, .rdrDayDisabled .rdrDayStartPreview, .rdrDayDisabled .rdrDayInPreview, .rdrDayDisabled .rdrDayEndPreview{
      -webkit-filter: grayscale(100%) opacity(60%);
              filter: grayscale(100%) opacity(60%);
    }
  
  .rdrMonthName{
    text-align: left;
    font-weight: 600;
    color: #849095;
    padding: 0.833em;
  }
  
.rdw-option-wrapper{border:1px solid #f1f1f1;padding:5px;min-width:25px;height:20px;border-radius:2px;margin:0 4px;display:flex;justify-content:center;align-items:center;cursor:pointer;background:#fff;text-transform:capitalize}.rdw-option-wrapper:hover{box-shadow:1px 1px 0px #bfbdbd}.rdw-option-wrapper:active{box-shadow:1px 1px 0px #bfbdbd inset}.rdw-option-active{box-shadow:1px 1px 0px #bfbdbd inset}.rdw-option-disabled{opacity:.3;cursor:default}.rdw-dropdown-wrapper{height:30px;background:#fff;cursor:pointer;border:1px solid #f1f1f1;border-radius:2px;margin:0 3px;text-transform:capitalize;background:#fff}.rdw-dropdown-wrapper:focus{outline:none}.rdw-dropdown-wrapper:hover{box-shadow:1px 1px 0px #bfbdbd;background-color:#fff}.rdw-dropdown-wrapper:active{box-shadow:1px 1px 0px #bfbdbd inset}.rdw-dropdown-carettoopen{height:0px;width:0px;position:absolute;top:35%;right:10%;border-top:6px solid #000;border-left:5px solid rgba(0,0,0,0);border-right:5px solid rgba(0,0,0,0)}.rdw-dropdown-carettoclose{height:0px;width:0px;position:absolute;top:35%;right:10%;border-bottom:6px solid #000;border-left:5px solid rgba(0,0,0,0);border-right:5px solid rgba(0,0,0,0)}.rdw-dropdown-selectedtext{display:flex;position:relative;height:100%;align-items:center;padding:0 5px}.rdw-dropdown-optionwrapper{z-index:100;position:relative;border:1px solid #f1f1f1;width:98%;background:#fff;border-radius:2px;margin:0;padding:0;max-height:250px;overflow-y:scroll}.rdw-dropdown-optionwrapper:hover{box-shadow:1px 1px 0px #bfbdbd;background-color:#fff}.rdw-dropdownoption-default{min-height:25px;display:flex;align-items:center;padding:0 5px}.rdw-dropdownoption-highlighted{background:#f1f1f1}.rdw-dropdownoption-active{background:#f5f5f5}.rdw-dropdownoption-disabled{opacity:.3;cursor:default}.rdw-inline-wrapper{display:flex;align-items:center;margin-bottom:6px;flex-wrap:wrap}.rdw-inline-dropdown{width:50px}.rdw-inline-dropdownoption{height:40px;display:flex;justify-content:center}.rdw-block-wrapper{display:flex;align-items:center;margin-bottom:6px;flex-wrap:wrap}.rdw-block-dropdown{width:110px}.rdw-fontsize-wrapper{display:flex;align-items:center;margin-bottom:6px;flex-wrap:wrap}.rdw-fontsize-dropdown{min-width:40px}.rdw-fontsize-option{display:flex;justify-content:center}.rdw-fontfamily-wrapper{display:flex;align-items:center;margin-bottom:6px;flex-wrap:wrap}.rdw-fontfamily-dropdown{width:115px}.rdw-fontfamily-placeholder{white-space:nowrap;max-width:90px;overflow:hidden;text-overflow:ellipsis}.rdw-fontfamily-optionwrapper{width:140px}.rdw-list-wrapper{display:flex;align-items:center;margin-bottom:6px;flex-wrap:wrap}.rdw-list-dropdown{width:50px;z-index:90}.rdw-list-dropdownOption{height:40px;display:flex;justify-content:center}.rdw-text-align-wrapper{display:flex;align-items:center;margin-bottom:6px;flex-wrap:wrap}.rdw-text-align-dropdown{width:50px;z-index:90}.rdw-text-align-dropdownOption{height:40px;display:flex;justify-content:center}.rdw-right-aligned-block{text-align:right}.rdw-left-aligned-block{text-align:left !important}.rdw-center-aligned-block{text-align:center !important}.rdw-justify-aligned-block{text-align:justify !important}.rdw-right-aligned-block>div{display:inline-block}.rdw-left-aligned-block>div{display:inline-block}.rdw-center-aligned-block>div{display:inline-block}.rdw-justify-aligned-block>div{display:inline-block}.rdw-colorpicker-wrapper{display:flex;align-items:center;margin-bottom:6px;position:relative;flex-wrap:wrap}.rdw-colorpicker-modal{position:absolute;top:35px;left:5px;display:flex;flex-direction:column;width:175px;height:175px;border:1px solid #f1f1f1;padding:15px;border-radius:2px;z-index:100;background:#fff;box-shadow:3px 3px 5px #bfbdbd}.rdw-colorpicker-modal-header{display:flex;padding-bottom:5px}.rdw-colorpicker-modal-style-label{font-size:15px;width:50%;text-align:center;cursor:pointer;padding:0 10px 5px}.rdw-colorpicker-modal-style-label-active{border-bottom:2px solid #0a66b7}.rdw-colorpicker-modal-options{margin:5px auto;display:flex;width:100%;height:100%;flex-wrap:wrap;overflow:scroll}.rdw-colorpicker-cube{width:22px;height:22px;border:1px solid #f1f1f1}.rdw-colorpicker-option{margin:3px;padding:0;min-height:20px;border:none;width:22px;height:22px;min-width:22px;box-shadow:1px 2px 1px #bfbdbd inset}.rdw-colorpicker-option:hover{box-shadow:1px 2px 1px #bfbdbd}.rdw-colorpicker-option:active{box-shadow:-1px -2px 1px #bfbdbd}.rdw-colorpicker-option-active{box-shadow:0px 0px 2px 2px #bfbdbd}.rdw-link-wrapper{display:flex;align-items:center;margin-bottom:6px;position:relative;flex-wrap:wrap}.rdw-link-dropdown{width:50px}.rdw-link-dropdownOption{height:40px;display:flex;justify-content:center}.rdw-link-dropdownPlaceholder{margin-left:8px}.rdw-link-modal{position:absolute;top:35px;left:5px;display:flex;flex-direction:column;width:235px;height:205px;border:1px solid #f1f1f1;padding:15px;border-radius:2px;z-index:100;background:#fff;box-shadow:3px 3px 5px #bfbdbd}.rdw-link-modal-label{font-size:15px}.rdw-link-modal-input{margin-top:5px;border-radius:2px;border:1px solid #f1f1f1;height:25px;margin-bottom:15px;padding:0 5px}.rdw-link-modal-input:focus{outline:none}.rdw-link-modal-buttonsection{margin:0 auto}.rdw-link-modal-target-option{margin-bottom:20px}.rdw-link-modal-target-option>span{margin-left:5px}.rdw-link-modal-btn{margin-left:10px;width:75px;height:30px;border:1px solid #f1f1f1;border-radius:2px;cursor:pointer;background:#fff;text-transform:capitalize}.rdw-link-modal-btn:hover{box-shadow:1px 1px 0px #bfbdbd}.rdw-link-modal-btn:active{box-shadow:1px 1px 0px #bfbdbd inset}.rdw-link-modal-btn:focus{outline:none !important}.rdw-link-modal-btn:disabled{background:#ece9e9}.rdw-link-dropdownoption{height:40px;display:flex;justify-content:center}.rdw-history-dropdown{width:50px}.rdw-embedded-wrapper{display:flex;align-items:center;margin-bottom:6px;position:relative;flex-wrap:wrap}.rdw-embedded-modal{position:absolute;top:35px;left:5px;display:flex;flex-direction:column;width:235px;height:180px;border:1px solid #f1f1f1;padding:15px;border-radius:2px;z-index:100;background:#fff;justify-content:space-between;box-shadow:3px 3px 5px #bfbdbd}.rdw-embedded-modal-header{font-size:15px;display:flex}.rdw-embedded-modal-header-option{width:50%;cursor:pointer;display:flex;justify-content:center;align-items:center;flex-direction:column}.rdw-embedded-modal-header-label{width:95px;border:1px solid #f1f1f1;margin-top:5px;background:#6eb8d4;border-bottom:2px solid #0a66b7}.rdw-embedded-modal-link-section{display:flex;flex-direction:column}.rdw-embedded-modal-link-input{width:88%;height:35px;margin:10px 0;border:1px solid #f1f1f1;border-radius:2px;font-size:15px;padding:0 5px}.rdw-embedded-modal-link-input-wrapper{display:flex;align-items:center}.rdw-embedded-modal-link-input:focus{outline:none}.rdw-embedded-modal-btn-section{display:flex;justify-content:center}.rdw-embedded-modal-btn{margin:0 3px;width:75px;height:30px;border:1px solid #f1f1f1;border-radius:2px;cursor:pointer;background:#fff;text-transform:capitalize}.rdw-embedded-modal-btn:hover{box-shadow:1px 1px 0px #bfbdbd}.rdw-embedded-modal-btn:active{box-shadow:1px 1px 0px #bfbdbd inset}.rdw-embedded-modal-btn:focus{outline:none !important}.rdw-embedded-modal-btn:disabled{background:#ece9e9}.rdw-embedded-modal-size{align-items:center;display:flex;margin:8px 0;justify-content:space-between}.rdw-embedded-modal-size-input{width:80%;height:20px;border:1px solid #f1f1f1;border-radius:2px;font-size:12px}.rdw-embedded-modal-size-input:focus{outline:none}.rdw-emoji-wrapper{display:flex;align-items:center;margin-bottom:6px;position:relative;flex-wrap:wrap}.rdw-emoji-modal{overflow:auto;position:absolute;top:35px;left:5px;display:flex;flex-wrap:wrap;width:235px;height:180px;border:1px solid #f1f1f1;padding:15px;border-radius:2px;z-index:100;background:#fff;box-shadow:3px 3px 5px #bfbdbd}.rdw-emoji-icon{margin:2.5px;height:24px;width:24px;cursor:pointer;font-size:22px;display:flex;justify-content:center;align-items:center}.rdw-spinner{display:flex;align-items:center;justify-content:center;height:100%;width:100%}.rdw-spinner>div{width:12px;height:12px;background-color:#333;border-radius:100%;display:inline-block;-webkit-animation:sk-bouncedelay 1.4s infinite ease-in-out both;animation:sk-bouncedelay 1.4s infinite ease-in-out both}.rdw-spinner .rdw-bounce1{-webkit-animation-delay:-0.32s;animation-delay:-0.32s}.rdw-spinner .rdw-bounce2{-webkit-animation-delay:-0.16s;animation-delay:-0.16s}@-webkit-keyframes sk-bouncedelay{0%,80%,100%{-webkit-transform:scale(0)}40%{-webkit-transform:scale(1)}}@keyframes sk-bouncedelay{0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1);transform:scale(1)}}.rdw-image-wrapper{display:flex;align-items:center;margin-bottom:6px;position:relative;flex-wrap:wrap}.rdw-image-modal{position:absolute;top:35px;left:5px;display:flex;flex-direction:column;width:235px;border:1px solid #f1f1f1;padding:15px;border-radius:2px;z-index:100;background:#fff;box-shadow:3px 3px 5px #bfbdbd}.rdw-image-modal-header{font-size:15px;margin:10px 0;display:flex}.rdw-image-modal-header-option{width:50%;cursor:pointer;display:flex;justify-content:center;align-items:center;flex-direction:column}.rdw-image-modal-header-label{width:80px;background:#f1f1f1;border:1px solid #f1f1f1;margin-top:5px}.rdw-image-modal-header-label-highlighted{background:#6eb8d4;border-bottom:2px solid #0a66b7}.rdw-image-modal-upload-option{width:100%;color:gray;cursor:pointer;display:flex;border:none;font-size:15px;align-items:center;justify-content:center;background-color:#f1f1f1;outline:2px dashed gray;outline-offset:-10px;margin:10px 0;padding:9px 0}.rdw-image-modal-upload-option-highlighted{outline:2px dashed #0a66b7}.rdw-image-modal-upload-option-label{cursor:pointer;height:100%;width:100%;display:flex;justify-content:center;align-items:center;padding:15px}.rdw-image-modal-upload-option-label span{padding:0 20px}.rdw-image-modal-upload-option-image-preview{max-width:100%;max-height:200px}.rdw-image-modal-upload-option-input{width:.1px;height:.1px;opacity:0;overflow:hidden;position:absolute;z-index:-1}.rdw-image-modal-url-section{display:flex;align-items:center}.rdw-image-modal-url-input{width:90%;height:35px;margin:15px 0 12px;border:1px solid #f1f1f1;border-radius:2px;font-size:15px;padding:0 5px}.rdw-image-modal-btn-section{margin:10px auto 0}.rdw-image-modal-url-input:focus{outline:none}.rdw-image-modal-btn{margin:0 5px;width:75px;height:30px;border:1px solid #f1f1f1;border-radius:2px;cursor:pointer;background:#fff;text-transform:capitalize}.rdw-image-modal-btn:hover{box-shadow:1px 1px 0px #bfbdbd}.rdw-image-modal-btn:active{box-shadow:1px 1px 0px #bfbdbd inset}.rdw-image-modal-btn:focus{outline:none !important}.rdw-image-modal-btn:disabled{background:#ece9e9}.rdw-image-modal-spinner{position:absolute;top:-3px;left:0;width:100%;height:100%;opacity:.5}.rdw-image-modal-alt-input{width:70%;height:20px;border:1px solid #f1f1f1;border-radius:2px;font-size:12px;margin-left:5px}.rdw-image-modal-alt-input:focus{outline:none}.rdw-image-modal-alt-lbl{font-size:12px}.rdw-image-modal-size{align-items:center;display:flex;margin:8px 0;justify-content:space-between}.rdw-image-modal-size-input{width:40%;height:20px;border:1px solid #f1f1f1;border-radius:2px;font-size:12px}.rdw-image-modal-size-input:focus{outline:none}.rdw-image-mandatory-sign{color:red;margin-left:3px;margin-right:3px}.rdw-remove-wrapper{display:flex;align-items:center;margin-bottom:6px;position:relative;flex-wrap:wrap}.rdw-history-wrapper{display:flex;align-items:center;margin-bottom:6px;flex-wrap:wrap}.rdw-history-dropdownoption{height:40px;display:flex;justify-content:center}.rdw-history-dropdown{width:50px}.rdw-link-decorator-wrapper{position:relative}.rdw-link-decorator-icon{position:absolute;left:40%;top:0;cursor:pointer;background-color:#fff}.rdw-mention-link{text-decoration:none;color:#1236ff;background-color:#f0fbff;padding:1px 2px;border-radius:2px}.rdw-suggestion-wrapper{position:relative}.rdw-suggestion-dropdown{position:absolute;display:flex;flex-direction:column;border:1px solid #f1f1f1;min-width:100px;max-height:150px;overflow:auto;background:#fff;z-index:100}.rdw-suggestion-option{padding:7px 5px;border-bottom:1px solid #f1f1f1}.rdw-suggestion-option-active{background-color:#f1f1f1}.rdw-hashtag-link{text-decoration:none;color:#1236ff;background-color:#f0fbff;padding:1px 2px;border-radius:2px}.rdw-image-alignment-options-popup{position:absolute;background:#fff;display:flex;padding:5px 2px;border-radius:2px;border:1px solid #f1f1f1;width:105px;cursor:pointer;z-index:100}.rdw-alignment-option-left{justify-content:flex-start}.rdw-image-alignment-option{height:15px;width:15px;min-width:15px}.rdw-image-alignment{position:relative}.rdw-image-imagewrapper{position:relative}.rdw-image-center{display:flex;justify-content:center}.rdw-image-left{display:flex}.rdw-image-right{display:flex;justify-content:flex-end}.rdw-image-alignment-options-popup-right{right:0}.rdw-editor-main{height:100%;overflow:auto;box-sizing:border-box}.rdw-editor-toolbar{padding:6px 5px 0;border-radius:2px;border:1px solid #f1f1f1;display:flex;justify-content:flex-start;background:#fff;flex-wrap:wrap;font-size:15px;margin-bottom:5px;user-select:none}.public-DraftStyleDefault-block{margin:1em 0}.rdw-editor-wrapper:focus{outline:none}.rdw-editor-wrapper{box-sizing:content-box}.rdw-editor-main blockquote{border-left:5px solid #f1f1f1;padding-left:5px}.rdw-editor-main pre{background:#f1f1f1;border-radius:3px;padding:1px 10px}.DraftEditor-editorContainer,.DraftEditor-root,.public-DraftEditor-content{height:inherit;text-align:initial}.public-DraftEditor-content[contenteditable=true]{-webkit-user-modify:read-write-plaintext-only}.DraftEditor-root{position:relative}.DraftEditor-editorContainer{background-color:hsla(0,0%,100%,0);border-left:.1px solid rgba(0,0,0,0);position:relative;z-index:1}.public-DraftEditor-block{position:relative}.DraftEditor-alignLeft .public-DraftStyleDefault-block{text-align:left}.DraftEditor-alignLeft .public-DraftEditorPlaceholder-root{left:0;text-align:left}.DraftEditor-alignCenter .public-DraftStyleDefault-block{text-align:center}.DraftEditor-alignCenter .public-DraftEditorPlaceholder-root{margin:0 auto;text-align:center;width:100%}.DraftEditor-alignRight .public-DraftStyleDefault-block{text-align:right}.DraftEditor-alignRight .public-DraftEditorPlaceholder-root{right:0;text-align:right}.public-DraftEditorPlaceholder-root{color:#9197a3;position:absolute;z-index:0}.public-DraftEditorPlaceholder-hasFocus{color:#bdc1c9}.DraftEditorPlaceholder-hidden{display:none}.public-DraftStyleDefault-block{position:relative;white-space:pre-wrap}.public-DraftStyleDefault-ltr{direction:ltr;text-align:left}.public-DraftStyleDefault-rtl{direction:rtl;text-align:right}.public-DraftStyleDefault-listLTR{direction:ltr}.public-DraftStyleDefault-listRTL{direction:rtl}.public-DraftStyleDefault-ol,.public-DraftStyleDefault-ul{margin:16px 0;padding:0}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listLTR{margin-left:1.5em}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listRTL{margin-right:1.5em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listLTR{margin-left:3em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listRTL{margin-right:3em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listLTR{margin-left:4.5em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listRTL{margin-right:4.5em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listLTR{margin-left:6em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listRTL{margin-right:6em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listLTR{margin-left:7.5em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listRTL{margin-right:7.5em}.public-DraftStyleDefault-unorderedListItem{list-style-type:square;position:relative}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth0{list-style-type:disc}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth1{list-style-type:circle}.public-DraftStyleDefault-orderedListItem{list-style-type:none;position:relative}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listLTR:before{left:-36px;position:absolute;text-align:right;width:30px}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listRTL:before{position:absolute;right:-36px;text-align:left;width:30px}.public-DraftStyleDefault-orderedListItem:before{content:counter(ol0) ". ";counter-increment:ol0}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth1:before{content:counter(ol1) ". ";counter-increment:ol1}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth2:before{content:counter(ol2) ". ";counter-increment:ol2}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth3:before{content:counter(ol3) ". ";counter-increment:ol3}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth4:before{content:counter(ol4) ". ";counter-increment:ol4}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-reset{counter-reset:ol0}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-reset{counter-reset:ol1}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-reset{counter-reset:ol2}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-reset{counter-reset:ol3}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-reset{counter-reset:ol4}body{padding-right:0 !important}#root{height:100%}*{font-family:"Roboto",sans-serif}.vertical--tabs{border-right:1px solid #ddd}.vertical--tabs_wrapper{flex-grow:1;display:flex}.MuiBreadcrumbs-li a{text-decoration:none;color:inherit}.navlink-card{text-decoration:none}.navlink-card.disabled{cursor:default;color:rgba(0,0,0,.26) !important}.navlink-card .MuiPaper-root:hover{box-shadow:0px 2px 3px -1px rgba(0,0,0,.2),0px 1px 3px 0px rgba(0,0,0,.14),0px 1px 4px 0px rgba(0,0,0,.12)}.disabled-card{cursor:default;color:rgba(0,0,0,.26) !important}.disabled-card h1,.disabled-card h2,.disabled-card h3,.disabled-card h4,.disabled-card h5,.disabled-card h6,.disabled-card p,.disabled-card div{color:rgba(0,0,0,.26) !important}.avatar_badge{background:#000;color:#fff;padding:5px;border-radius:50%;font-size:9px}.loading--button-wrapper{position:relative}.loading--button-wrapper .loading--button-progress{position:absolute;top:50%;left:50%;margin-top:-12px;margin-left:-12px}.marginBottom--1em{margin-bottom:1em}.marginBottom--none{margin-bottom:0 !important}.full--width{width:100%}.half--width{width:50%}.centerContent .row{float:left;display:block;width:100%}.timeline{font-size:14px;font-variant:tabular-nums;line-height:1.5;color:rgba(0,0,0,.65);-webkit-box-sizing:border-box;box-sizing:border-box;list-style:none;margin:0;padding:0}.timeline .timeline-item{position:relative;padding:0 0 20px;list-style:none;margin:0;font-size:14px}.timeline .timeline-item .timeline-item-tail{position:absolute;left:4px;top:.75em;height:100%;border-left:2px solid #e8e8e8}.timeline .timeline-item .timeline-item-content{margin:0 0 0 18px;position:relative;top:-6px}.timeline .timeline-item .timeline-item-head{position:absolute;width:10px;height:10px;background-color:#fff;border-radius:100px;border:2px solid rgba(0,0,0,0)}.timeline .timeline-item .timeline-item-head.green{border-color:#52c41a;color:#52c41a}.timeline .timeline-item .timeline-item-head.red{border-color:#e74c3c;color:#e74c3c}.centered{text-align:center}.sidebar--loading-overlay{position:absolute;top:-17px;bottom:0;left:0;right:0;background:hsla(0,0%,100%,.7);display:-ms-flexbox;display:-webkit-flex;display:flex;-ms-flex-align:center;-webkit-align-items:center;-webkit-box-align:center;align-items:center;justify-content:center}.player-map-table{border:1px solid #000}.player-map-table tr td{width:20px;height:20px;border:1px solid #ddd}.layoutSideBar{-webkit-transition:all .2s;transition:all .2s;position:relative;background:#fff;min-width:0;flex:0 0 400px;max-width:400px;min-width:400px;width:400px}@media(max-width: 768px){.layoutSideBar{flex:0 0 200px;max-width:200px;min-width:200px;width:200px}}.layout{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex:auto;-ms-flex:auto;flex:auto;background:#f0f2f5;min-height:0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.active-cell{background:#40a9ff !important;border:1px solid #40a9ff !important}.active-cell-overlap{background:#ffae42;border:1px solid #ffae42}.available-cell{background:#55b53e;border:1px solid #55b53e;cursor:pointer}.unavailable-cell{background:#c18e8e;border:1px solid #c18e8e;cursor:not-allowed}.button{background:#0565d4;border:none;border-radius:27px;color:#fff;cursor:pointer;padding:.7em 3em;text-decoration:none;text-align:center;height:54px;-webkit-tap-highlight-color:rgba(0,0,0,0);outline:none;-webkit-transition:background-color .2s linear;-ms-transition:background-color .2s linear;transition:background-color .2s linear}.button:hover{background:#095ab9}.rc-notification{-webkit-box-sizing:border-box;box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:14px;font-variant:tabular-nums;line-height:1.5;list-style:none;-webkit-font-feature-settings:"tnum";font-feature-settings:"tnum";position:fixed;top:16px;left:0;z-index:101000;width:100%;pointer-events:none;top:45px !important;left:0 !important}.rc-notification-fade-enter{opacity:0;animation-duration:.3s;animation-fill-mode:both;animation-timing-function:cubic-bezier(0.55, 0, 0.55, 0.2);animation-play-state:paused}.rc-notification-fade-leave{animation-duration:.3s;animation-fill-mode:both;animation-timing-function:cubic-bezier(0.55, 0, 0.55, 0.2);animation-play-state:paused}.rc-notification-fade-enter-active{animation-name:rcNotificationFadeIn;animation-play-state:running}.rc-notification-fade-leave-active{animation-name:rcDialogFadeOut;animation-play-state:running}@keyframes rcNotificationFadeIn{0%{opacity:0}100%{opacity:1}}@keyframes rcDialogFadeOut{0%{opacity:1}100%{opacity:0}}.rc-notification-notice{padding:8px;text-align:center}.rc-notification-notice-content{display:inline-block;padding:10px 16px;background:#fff;border-radius:4px;-webkit-box-shadow:0 4px 12px rgba(0,0,0,.15);box-shadow:0 4px 12px rgba(0,0,0,.15);pointer-events:all}.largeContainer{width:calc(100% - 290px);margin:0 145px}.largeContainer .largeContainerInner{padding:2em 0}.menuTrigger{font-size:18px;line-height:64px;padding:0 24px;cursor:pointer;transition:color .3s}.menuTrigger:hover{color:#1890ff}.layoutHeader{background:#fff;position:fixed;width:100%;padding:0;border-bottom:1px solid #dbdbdb}.ant-menu-inline-collapsed .menuIcon{width:35px;margin-left:-10px !important}.menuIcon{width:30px;margin:0 !important;-webkit-transition:width 1s ease-in-out;-moz-transition:width 1s ease-in-out;-o-transition:width 1s ease-in-out;transition:width 1s ease-in-out}.menuIcon img{width:100%;height:auto}.selectBundleEnvWrapper{text-align:center}.selectBundleEnvWrapper .ant-radio-group{position:relative;top:50%;transform:translateY(-50%)}.changeApplicationMenuItem{margin:0 !important;height:63px !important;line-height:63px !important}.changeApplicationMenuItem span{color:#fff}.bundleDescriptionSelect{color:#ddd;padding-left:5px}.contentMarginTop{margin-top:3em}.textavatarsymbols{padding-top:.3em !important}h4 a{text-decoration:none !important}.headerHeading{font-size:30px;font-weight:300;margin:0;padding:0;margin-left:11px;line-height:38px;font-family:"Monospaced Number","Chinese Quote",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","Helvetica Neue",Helvetica,Arial,sans-serif}.headerHeading.small{font-size:20px;font-weight:500;color:rgba(0,0,0,.85)}.ant-alert.large-alert{padding:24px 42px}.ant-alert .anticon{top:27.5px;left:16px}.ant-menu-submenu-open .ant-menu-submenu-title{background:#198fff;color:#fff}.ant-menu-submenu-open .ant-menu-submenu-title .ant-menu-submenu-arrow::before,.ant-menu-submenu-open .ant-menu-submenu-title .ant-menu-submenu-arrow::after{background:#fff !important}.infinite-container{overflow:auto;max-height:500px}.loading-container{position:absolute;bottom:40px;width:100%;text-align:center}.centeredLoader{text-align:center;margin-bottom:20px;padding:30px 50px;margin:20px 0}.item___Read{cursor:pointer;background:#cde6f7 !important}.item___Read time,.item___Read p{color:#000 !important}.item___Answered{cursor:pointer}.item___Answered::before{content:"\a";width:10px;height:10px;border-radius:50%;background:#1890ff;display:inline-block;margin:0 10px}.statistic{margin:1em 0;text-transform:uppercase;display:inline-block}.statistic .value{font-size:2em;line-height:1em;text-align:center}.statistic .value.text{font-size:2em;font-weight:bold}.statistic .value img{max-height:.8em;vertical-align:baseline}.statistic .label{display:block;font-size:1em;text-align:center;color:#bdbdbd;font-weight:500}.codeWrapper{background:#eff0f1;padding:10px}.paginationWrapper{margin-top:1em;text-align:right}.timelineMethod{color:#1890ff}.statistic+.statistic{margin-left:1.5em}.statistic.horizontal .value,.statistic.horizontal .label{display:inline;vertical-align:middle}.statistic-group{margin:1em 0}.statistic-group .statistic{display:inline-block}.statistic-group.horizontal .statistic{display:block}.statistic-group.horizontal .statistic .value,.statistic-group.horizontal .statistic .label{display:inline;vertical-align:middle}.statistic-group.horizontal .statistic+.statistic{margin-left:0}.statistic.pull-left{margin-right:1em}.statistic.pull-right{margin-left:1em}.statistic.mini .value{font-size:1em;font-weight:bold}.statistic.tiny .value{font-size:2em}.statistic.small .value{font-size:3em !important}.statistic.large .value{font-size:5em}.statistic.huge .value{font-size:6em}.ant-list-item{background:#fff}.feedback-message-title{float:left;width:100%}.feedback-message-title .author{font-size:14px;color:#000;text-decoration:none;font-weight:600;display:inline-block}.feedback-message-title time{font-size:12px;color:#bdbaba;display:inline-block;margin-left:10px}.feedback-message-message{float:left;width:100%;font-size:14px;margin-top:10px;color:#c8c8c8}.simpleList{padding:0}.simpleList li{list-style-type:none}.cardsWrapper .card:first-child{margin-left:0px}.cardsWrapper .card:last-child{margin-right:0px}.card{position:relative;display:inline-block;width:172px;height:115px;margin:10px;border-radius:4px;background:#fff;border:1px solid #e4e4e4;margin-top:0px}.card.active{border:1px solid #198fff}.card__inner{margin:13px;position:relative;height:calc(100% - 26px)}.cleanUl{list-style-type:none;padding:0}.simple-table{border-collapse:collapse;width:100%}.simple-table td,.simple-table th{border:1px solid #000;padding:3px}.simple-table th{text-align:center}.simple-table tr.stripe-bg{background-color:#f3f3f3}.simple-table tr.highest-price{background-color:#f5dcb4 !important}.noPaddingCardContent .ant-card-body{padding:0 !important;max-height:1000px;overflow-y:auto}.sortableTable tr.drop-over-downward td{border-bottom:2px dashed #1890ff}.sortableTable tr.drop-over-upward td{border-top:2px dashed #1890ff}.ant-tabs-nav{width:100%}.add-button-group{color:#096dd9;cursor:pointer;text-transform:uppercase;font-size:12px;font-weight:500}.add-button-group:hover{color:#40a9ff}.add-button-group.bordered{border:1px solid #096dd9;border-radius:15px;padding:6px 20px}.add-button-group.bordered:hover{border:1px solid #40a9ff}.card-container>.ant-tabs-card>.ant-tabs-content{height:100%;margin-top:-17px}.card-container>.ant-tabs-card>.ant-tabs-content>.ant-tabs-tabpane{background:#fff;padding:24px 32px;overflow:auto;border:1px solid #e8e8e8;border-top:none}.card-container>.ant-tabs-card>.ant-tabs-bar{border-color:#fff}.card-container>.ant-tabs-card>.ant-tabs-bar .ant-tabs-tab{border-color:rgba(0,0,0,0);background:rgba(0,0,0,0)}.card-container>.ant-tabs-card>.ant-tabs-bar .ant-tabs-tab-active{border-color:#fff;background:#fff;border:1px solid #e8e8e8;border-bottom:none}.gray-label label{color:#b5b5b5;font-size:12px}.inner-card{padding:15px 0px}.card-container>.ant-tabs-card>.ant-tabs-content{margin-top:-16px}.card-container>.ant-tabs-card>.ant-tabs-content>.ant-tabs-tabpane{background:#fff;padding:30px 40px;border:none}.card-container>.ant-tabs-card>.ant-tabs-bar{border-color:#fff}.card-container>.ant-tabs-card>.ant-tabs-bar .ant-tabs-tab{border-color:rgba(0,0,0,0);background:rgba(0,0,0,0)}.card-container>.ant-tabs-card>.ant-tabs-bar .ant-tabs-tab-active{border-color:#fff;background:#fff}.player-ant-card{border:none !important;background:rgba(0,0,0,0) !important}.player-ant-card .ant-tabs-nav{background:#fff}.player-ant-card .ant-tabs-bar{margin:0px !important}.submit-text-button{color:#1890ff;text-decoration:underline;cursor:pointer}.panel{border:1px solid #d9d9d9;background-color:#fff;position:relative;margin-bottom:16px}.panelInner{padding:20px 24px 20px 24px;min-height:48px;transition:min-height 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms}.ant-table-content{background:#fff !important}.upload-list-inline .ant-upload-list-item{float:left;width:200px;margin-right:8px}.upload-list-inline .ant-upload-animate-enter{animation-name:uploadAnimateInlineIn}.upload-list-inline .ant-upload-animate-leave{animation-name:uploadAnimateInlineOut}.avatar-uploader>.ant-upload{width:128px;height:100px}.category-wrapper h2{margin-left:10px}.category-wrapper .category-content{margin-bottom:15px;margin:0 10px 20px 10px}.countdown .countdown-col{margin-right:5px}.inventory--wrapper{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;margin-top:5;float:left;width:100%}.inventory--item{position:relative;background:#fff;border-radius:5px;margin-bottom:10px;width:calc(20% - 8px)}.inventory--item:nth-child(5n){margin-right:0px}.inventory--item .inventory--item-image{float:left;margin:2px}.inventory--item .inventory--item-description{float:left;padding-top:10px}.inventory--item-checkbox{position:absolute}.edit--field-unactive{background-color:rgba(0,0,0,0);border-radius:4px;padding:0 11px;text-align:left;outline:0;height:32px;width:90px;font-size:14px;line-height:2;display:inline-block;border:1px solid rgba(0,0,0,0)}.edit--field-unactive:hover{border:1px solid #d9d9d9}.ant-card-head{background:#f9f9f9}.banner-wrapper{width:350px}.banner-wrapper img{width:100%;height:auto}.back--button{font-size:15px;cursor:pointer;color:#c7c7c7}.animated-avatar-small{animation:playXSmall .3s steps(4) infinite,playYSmall 1.2s steps(4) infinite;width:32px;height:32px;border:none;background-size:127px 126px !important;display:inline-block}@keyframes playXSmall{from{background-position-x:0px}to{background-position-x:-127px}}@keyframes playYSmall{from{background-position-y:0px}to{background-position-y:-126px}}.animated-avatar{animation:playX .3s steps(4) infinite,playY 1.2s steps(4) infinite;width:50px;height:50px;border:none;background-size:200px 199px !important}.MuiAppBar-root{box-shadow:none !important}.MuiButton-containedPrimary{color:#fff !important}@keyframes playX{from{background-position-x:0px}to{background-position-x:-200px}}@keyframes playY{from{background-position-y:0px}to{background-position-y:-199px}}.animated-avatar-large{animation:playXLarge .3s steps(4) infinite,playYLarge 1.2s steps(4) infinite;width:70px;height:70px;border:none;background-size:285px 280px !important}@keyframes playXLarge{from{background-position-x:0px}to{background-position-x:-285px}}@keyframes playYLarge{from{background-position-y:0px}to{background-position-y:-280px}}.ant-checkbox-group-item{width:30% !important}.header-background{background:#2196f3 !important;color:#fff !important}.fluid-columns{column-count:2;column-gap:1em}.fluid-columns .item{display:inline-block;margin:0 0 1em;width:100%}.bundle-breadcrumbs{font-size:17px !important;line-height:37px !important}.bundle-breadcrumbs ol{height:37px}.bundle-breadcrumbs ol li{font-size:17px !important}.logic-edit-form .MuiPaper-root .MuiPaper-root{border-left:1px solid #303030;border-right:1px solid #303030}.logic-edit-form .MuiPaper-root .MuiPaper-root.Mui-expanded{border-top:1px solid #303030;border-bottom:1px solid #303030}.logic-edit-form .MuiPaper-root .MuiPaper-root:first-child{border-top:1px solid #303030}.logic-edit-form .MuiPaper-root .MuiPaper-root:last-child{border-bottom:1px solid #303030}.inline-edit-input{font-size:.8125rem !important;height:35px !important;background:rgba(0,0,0,0) !important;border-radius:5px}.inline-edit-input:before{content:unset !important}.inline-edit-input:after{content:unset !important}.inline-edit-input:hover{background:#ddd !important}.inline-edit-input input{padding:10px 12px 10px !important}.warning-banner{background-color:#ffae42 !important;box-shadow:none !important;width:100% !important;margin:0 20px !important;max-width:calc(100% - 40px) !important;color:#000 !important}.ant-menu-submenu-popup{z-index:99999999 !important}.icon-link{color:#000;display:inline-block}.icon-link svg{font-size:16px}.icon-link:hover{color:#000}.MuiButton-root{color:rgba(0,0,0,.87);padding:6px 16px;font-size:.875rem;min-width:64px;box-sizing:border-box;transition:background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;font-family:"Roboto","Helvetica","Arial",sans-serif;font-weight:500;line-height:1.75;border-radius:4px;letter-spacing:.02857em;text-transform:uppercase}.MuiButton-text{padding:6px 8px !important}.loading--wrapper{position:relative;display:inline-block;width:100%;min-height:60px}.loading--wrapper .loading--icon{position:absolute;top:0;right:0;left:0;bottom:0;text-align:center;align-items:center;display:flex;justify-content:center;z-index:99999}.no-items-placeholder{width:100%;text-align:center;padding:30px 10px}.no-items-placeholder svg{font-size:40px;margin-bottom:10px}.margin-normal{margin-top:16px;margin-bottom:8px}.dailyJobs--list{margin-top:1em;margin-bottom:1em}.dailyJobs--list .dailyJobs--item{margin-bottom:1.2em}.simple-input{text-align:center;border:1px solid #ddd;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.view-all-button{color:#000;text-decoration:none}.party--wrapper{padding:5px;float:left;margin:5px 20px;margin-left:0}.party--wrapper h3{margin-bottom:0}.party--wrapper .party--item{border:1px solid #ababab;padding:5px;float:left;margin:5px 0}.user--item{float:left;margin:1em .5em;width:300px}.user--item span{float:left;clear:both}.tournament--generator-basic{margin-bottom:2em}.loading-button-wrapper{position:relative}.loading-button-wrapper .button-progress{position:absolute;top:50%;left:50%;margin-top:-12px;margin-left:-12px}.ant-table-body table tr{line-height:3em}.ant-table-thead th{text-align:left;padding-bottom:1em}.table--progress{text-align:center;height:80px;padding:20px}.anomalies--list_table{max-width:400px}.anomalies--list_table .anomalies--list_item{float:left;width:100%;padding:10px 20px;margin-bottom:1em;border-bottom:1px solid #ddd}.anomalies--list_table .anomalies--list_item:last-child{margin-bottom:0;border-bottom:none}.anomalies--list_table .anomalies--list_item .anomalies--list_item--metadata{margin-top:1em;width:400px;float:left}.anomalies--list_table .anomalies--list_item .anomalies--list_item--metadata .anomalies--list_item--metadata_item{float:left;width:100%;margin-bottom:1em}.anomalies--list_table .anomalies--list_item .anomalies--list_item--metadata .anomalies--list_item--metadata_item .metadata_item_title{font-size:14px;font-weight:300;color:#cac9d0;float:left;width:100%}.anomalies--list_table .anomalies--list_item .anomalies--list_item--metadata .anomalies--list_item--metadata_item .metadata_item_value{font-size:16px;color:#000;font-weight:400;float:left;width:100%;padding-top:5px}.chip--padding{margin-left:.5em}.extra-small-chip{height:19px !important;font-size:10px !important}.row-end-border{border-bottom:4px solid #ddd !important}.no-config{background-color:#e74c3c !important}.table--header-padding{padding:10px}.white-background-dialog{z-index:99999999999999 !important}.center--content{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;align-items:center;justify-content:center}.alertText{font-weight:500}.alertText.success{color:#27ae60}.alertText.error{color:#e74c3c}.fakeScreen{background-color:#151515;box-sizing:border-box;width:100%;margin:0 auto;padding:20px}.fakeScreen .line{position:relative;text-align:left;font-size:1.25em;font-family:monospace;white-space:normal;color:#fff;margin-top:0}.fakeScreen .line.have-error{color:#e74c3c;font-weight:700}.fakeScreen .line span{font-size:1em;font-family:monospace;white-space:normal}.wrapperClassName.rdw-editor-wrapper{border:1px solid #c4c4c4 !important}.wrapperClassName .public-DraftStyleDefault-ltr{padding:0 15px}.unit-icons{display:inline-block;position:relative;width:64px;height:64px}.unit-icons .level{position:absolute;top:10px;left:8px;font-size:10px;color:#000;text-align:center;width:13px;height:14px}.unit-icons .amount{position:absolute;left:2px;right:2px;bottom:-3px;color:#fff;font-weight:500;text-align:center;background:rgba(0,0,0,.5);font-size:12px;padding:1px 0;border-bottom-right-radius:6px;border-bottom-left-radius:9px}.unit-icons img{max-width:100%}.sidePaper{flex:1 0 auto;top:0;left:0;right:auto;height:100%;display:flex;outline:0;z-index:1200;position:fixed;overflow-y:auto;flex-direction:column;-webkit-overflow-scrolling:touch;background:#fff;min-width:263px}.sidePaper.dark{color:#bfbfbf !important;background:#303030}.sidePaper.dark .menu-item .MuiTypography-root,.sidePaper.dark .menu-item .MuiIcon-root{color:#bfbfbf !important}.first-purchase-in-list{background:#e8f4fd}.sidePaper .MuiListItem-root{padding-top:4px;padding-bottom:4px}.sidePaper .menu-item .MuiTypography-root{font-size:14px}.sidePaper .MuiListItemIcon-root{min-width:40px}.MuiTableBody-root .MuiTableRow-root:last-child .MuiTableCell-root{border-bottom:none}.json-editor table input{padding:2.5px 6px}.json-editor table .MuiTableCell-root{padding:10px 6px}.json-editor .MuiFormControl-root{margin-bottom:10px !important;margin-top:10px !important}.appBar-user{display:flex;align-items:center;padding:0px 7px;cursor:pointer}.appBar-user:hover{background-color:rgba(0,0,0,.04)}.appBar-user span{margin-left:5px}.sidebar-headingWrapper{margin-left:20px;margin-right:20px;height:67px;display:flex;align-items:center;justify-content:left}.user-messages{display:flex;flex-direction:row;margin-bottom:2em}.user-messages .activeMessage-wrapper{width:80%;margin-left:1em}.user-messages .activeMessage-wrapper .activeMessage{padding:25px 20px;background:#006f9e;background:linear-gradient(180deg, rgb(0, 111, 158) 0%, rgb(0, 103, 144) 100%);border-radius:9px}.user-messages .activeMessage-wrapper .activeMessage .message-header{display:flex;flex-direction:row}.user-messages .activeMessage-wrapper .activeMessage .message-header .header-wrapper{width:90%}.user-messages .activeMessage-wrapper .activeMessage .message-header .header-wrapper h3{font-size:14px;margin:0}.user-messages .activeMessage-wrapper .activeMessage .message-header .header-wrapper .date{font-size:9px;color:#7aabbf}.user-messages .activeMessage-wrapper .activeMessage .message-header .tags{text-align:right;width:10%}.user-messages .activeMessage-wrapper .activeMessage .message-header{border-bottom:1px solid #409fc7;padding-bottom:15px;margin-bottom:20px}.user-messages .activeMessage-wrapper .activeMessage .rewards{margin-top:1em}.user-messages .leftColumn{width:20%}.user-messages .leftColumn .messagesList{height:600px}.user-messages .leftColumn .messagesList .message{width:95%;padding:6px 10px;background:#006f9e;background:linear-gradient(180deg, rgb(0, 111, 158) 0%, rgb(0, 103, 144) 100%);border-radius:9px;color:#fff;position:relative;margin-bottom:1em;display:flex;flex-direction:row;cursor:pointer;border:2px solid rgba(0,0,0,0)}.user-messages .leftColumn .messagesList .message.active{background:#207a9e;border:2px solid #fff}.user-messages .leftColumn .messagesList .message .message-inner{display:flex;flex-direction:column;margin-left:10px}.user-messages .leftColumn .messagesList .message .avatar .avatar-wrapper{width:50px}.user-messages .leftColumn .messagesList .message .avatar .avatar-wrapper img{width:100%;height:auto}.user-messages .leftColumn .messagesList .message .avatar .avatar-wrapper .real-user{word-break:break-all;display:flex;flex-direction:column}.user-messages .leftColumn .messagesList .message .avatar .avatar-wrapper .real-user .avatar{text-align:center}.user-messages .leftColumn .messagesList .message .avatar .avatar-wrapper .real-user .username{font-size:9px;text-align:center;padding-top:5px}.user-messages .leftColumn .messagesList .message h3{font-size:14px;margin:0}.user-messages .leftColumn .messagesList .message .date{font-size:9px;color:#7aabbf}.user-messages .leftColumn .messagesList .message:last-child{margin-bottom:0}.chat-history{height:600px;max-height:600px}.chat-history .chat-item{margin-bottom:1em;display:flex;flex-direction:row;flex-wrap:wrap;width:100%}.chat-history .chat-item:last-child{margin-bottom:0}.chat-history .chat-item .user{width:18%}.chat-history .chat-item .user .user--wrapper{display:flex;flex-direction:column;flex-basis:100%;flex:1;align-items:center;justify-content:center}.chat-history .chat-item .user .user--wrapper .username{font-size:11px;text-align:center;padding-top:5px}.chat-history .chat-item .message{padding:6px 10px;background:#fefefe;border-radius:5px;color:#000;width:82%;position:relative}.chat-history .chat-item .message .date{font-size:8px;color:#b3b3b3;text-align:right;position:absolute;bottom:2px;right:7px}.chat-history .chat-item:not(.message) .message{text-align:center;background:#004c6b;color:#3dd8fc;font-size:12px;width:100%}.sidebarAvatar{background:#2196f3 !important;width:25px !important;height:25px !important;font-size:.7rem !important;margin-right:10px !important}.sidebar-userWrapper{display:flex;align-items:center;padding:10px 15px;width:100%;border-radius:12px;background-color:rgba(145,158,171,.12)}.react-customscroll:hover .react-customscroll-scrollbar{visibility:visible}.react-customscroll-scrollbar{right:2px;visibility:hidden;z-index:1}.react-customscroll-frame{padding-right:0 !important}.react-customscroll-scrollbar-area{background-color:rgba(0,0,0,0) !important}.react-customscroll-scrollbar{background:rgba(174,174,174,.4) !important}.stats-root{width:100%;overflow-x:auto}@keyframes loadingAnimation{0%{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-ms-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes loadingAnimationCircle{0%{stroke-dasharray:1px,200px;stroke-dashoffset:0}0%{stroke-dasharray:100px,200px;stroke-dashoffset:-15px}100%{stroke-dasharray:100px,200px;stroke-dashoffset:-125px}}.loader-standalone{display:inline-block;color:#1976d2;-webkit-animation:loadingAnimation 1.4s linear infinite;animation:loadingAnimation 1.4s linear infinite;width:40px;height:40px;margin:2px}.progress-circle-standalone{stroke:#1976d2;stroke-dasharray:80px,200px;stroke-dashoffset:0;-webkit-animation:loadingAnimationCircle 1.4s ease-in-out infinite;animation:loadingAnimationCircle 1.4s ease-in-out infinite}.MuiCardHeader-root.small-header .MuiCardHeader-title{font-size:1rem;font-weight:500}.small-select .MuiOutlinedInput-input{padding:10.5px 14px}.MuiAccordionSummary-content .MuiGrid-root:nth-child(2) .MuiGrid-container{flex-direction:row-reverse}.with-select .MuiInputLabel-root{top:-6px}.control-label-full{display:inline-flex;align-items:center;vertical-align:middle;-webkit-tap-highlight-color:rgba(0,0,0,0);flex-direction:row-reverse;margin-left:0px !important;margin-right:0px !important;width:100%;justify-content:space-between}.player-page--wrapper .offline-badge .MuiBadge-badge{z-index:51}.league_shield__outer_wrapper.small{width:25px;height:25px}.league_shield__outer_wrapper.small .league_shield__inner_wrapper{width:25px;height:25px;background-size:200px 104px !important}.league_shield__outer_wrapper.small.animated .league_shield__inner_wrapper{animation:smallLeagueShieldSpriteX .7s steps(8) infinite,smallLeagueShieldSpriteY 2.8s steps(4) infinite}.league_shield__outer_wrapper.medium{width:50px;height:50px}.league_shield__outer_wrapper.medium .league_shield__inner_wrapper{width:50px;height:50px;background-size:400px 204px !important}.league_shield__outer_wrapper.medium.animated .league_shield__inner_wrapper{animation:mediumLeagueShieldSpriteX .7s steps(8) infinite,mediumLeagueShieldSpriteY 2.8s steps(4) infinite}.league_shield__outer_wrapper.large{width:80px;height:80px}.league_shield__outer_wrapper.large .league_shield__inner_wrapper{width:80px;height:80px;background-size:651px 319px !important}.league_shield__outer_wrapper.large.animated .league_shield__inner_wrapper{animation:largeLeagueShieldSpriteX .3s steps(8) infinite,largeLeagueShieldSpriteY 1.2s steps(4) infinite}.league_shield__outer_wrapper.animated .league_shield__inner_wrapper{background-repeat:no-repeat}.league_shield__outer_wrapper.animated .league_shield__inner_wrapper img{display:none}.league_shield__outer_wrapper .league_shield__inner_wrapper{position:relative;border:none}.league_shield__outer_wrapper .league_shield__inner_wrapper img{width:100%;height:auto}.league_shield__outer_wrapper span{font-size:10px;text-align:center;color:#b9b2a2;padding-top:4px;padding-bottom:4px}.avatars-list--item img{width:90px}.avatars-list--item.disabled{position:relative}.avatars-list--item.disabled img{opacity:.5}.avatars-list--item.disabled span{opacity:.5}.avatars-list--item.disabled:hover::after{content:"Unlock";position:absolute;top:23%;left:126%;z-index:9999;cursor:pointer;font-size:.8125rem;line-height:1.75;letter-spacing:.02857em;text-transform:uppercase;min-width:64px;padding:4px 10px;border-radius:4px;-webkit-transition:background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;color:#fff;background-color:#2196f3;box-shadow:0px 3px 1px -2px rgba(0,0,0,.2),0px 2px 2px 0px rgba(0,0,0,.14),0px 1px 5px 0px rgba(0,0,0,.12);box-shadow:none}.avatars-list--item .animated-avatar{width:90px;height:90px;background-size:360px 359px !important;animation:playX90 .3s steps(4) infinite,playY90 1.2s steps(4) infinite}@keyframes playX90{from{background-position-x:0px}to{background-position-x:-360px}}@keyframes playY90{from{background-position-y:0px}to{background-position-y:-359px}}.MuiAppBar-root{box-shadow:none !important}.MuiButton-containedPrimary{color:#fff !important}@keyframes smallLeagueShieldSpriteX{from{background-position-x:0px}to{background-position-x:-200px}}@keyframes smallLeagueShieldSpriteY{from{background-position-y:0px}to{background-position-y:-104px}}@keyframes mediumLeagueShieldSpriteX{from{background-position-x:0px}to{background-position-x:-400px}}@keyframes mediumLeagueShieldSpriteY{from{background-position-y:0px}to{background-position-y:-204px}}@keyframes largeLeagueShieldSpriteX{from{background-position-x:0px}to{background-position-x:-651px}}@keyframes largeLeagueShieldSpriteY{from{background-position-y:0px}to{background-position-y:-319px}}.avatar_wrapper_inner{position:relative;display:inline-block;width:60px;height:60px;z-index:50}.avatar_wrapper_inner.small{width:35px;height:35px}.avatar_wrapper_inner.small .status-circle{height:5px;min-width:5px;box-shadow:#fff 0px 0px 0px 2px}.avatar_wrapper_inner .status-circle{display:flex;flex-flow:row wrap;-webkit-box-pack:center;place-content:center;-webkit-box-align:center;align-items:center;position:absolute;box-sizing:border-box;font-size:.75rem;min-width:10px;line-height:1;padding:0px;height:10px;border-radius:50%;transition:transform 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;bottom:14%;right:14%;transform:scale(1) translate(50%, 50%);transform-origin:100% 100%;z-index:51;box-shadow:#fff 0px 0px 0px 4px}.avatar_wrapper_inner .status-circle::after{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:50%;border:1px solid currentColor;content:""}.avatar_wrapper_inner .status-circle.online{background-color:#44b700;color:#44b700}.avatar_wrapper_inner .status-circle.online::after{animation:ripple 1.2s infinite ease-in-out}.avatar_wrapper_inner .status-circle.offline{background-color:gray;color:gray}.avatar_wrapper_inner .avatar_frame_wrapper,.avatar_wrapper_inner .avatar_wrapper{position:absolute;left:0;right:0;top:0;bottom:0}.avatar_wrapper_inner .avatar_frame_wrapper img,.avatar_wrapper_inner .avatar_wrapper img{width:100%;height:auto}.avatar_wrapper_inner .avatar_frame_wrapper{z-index:20}.avatar_wrapper_inner .avatar_frame_wrapper img{width:70px}.avatar_wrapper_inner .avatar_wrapper{z-index:18;left:25%;bottom:auto;top:25%}.avatar_wrapper_inner .avatar_wrapper img{width:40px;border-radius:50%}.avatar_wrapper_inner .avatar_wrapper.without_frame{left:0;right:0;top:0;bottom:0}.avatar_wrapper_inner .avatar_wrapper.without_frame img{width:60px}@keyframes ripple{0%{transform:scale(0.8);opacity:1}100%{transform:scale(2.4);opacity:0}}.coatOfArms_wrapper{position:relative;display:inline-block;width:50px;height:50px}.coatOfArms_wrapper.small{width:30px;height:30px}.coatOfArms_wrapper.small .shield_wrapper{left:6%;right:5%;bottom:10%;top:4%}.coatOfArms_wrapper.small .emblem_wrapper{left:22%;right:17%;top:19%}.coatOfArms_wrapper.large{width:150px;height:150px}.coatOfArms_wrapper.large .shield_wrapper{left:1%;right:3%;bottom:7%}.coatOfArms_wrapper.large .emblem_wrapper{left:17%;right:18%;bottom:28%;top:13%}.coatOfArms_wrapper .shield_wrapper,.coatOfArms_wrapper .emblem_wrapper,.coatOfArms_wrapper .border_wrapper{position:absolute;left:0;right:0;top:0;bottom:0}.coatOfArms_wrapper .shield_wrapper img,.coatOfArms_wrapper .emblem_wrapper img,.coatOfArms_wrapper .border_wrapper img{width:100%;height:auto}.coatOfArms_wrapper .border_wrapper{z-index:18}.coatOfArms_wrapper .emblem_wrapper{z-index:20;left:19%;right:11%;bottom:auto;top:13%}.coatOfArms_wrapper .emblem_wrapper img{width:90%}.coatOfArms_wrapper .shield_wrapper{z-index:19;left:6%;right:3%;bottom:7%}.coatOfArms_wrapper .shield_wrapper img{width:95%;height:100%}.userTable-cell{max-width:100px;word-break:break-word}.googleLogin--wrapper button{box-shadow:none !important;border:1px solid #d4dbe8 !important}.MuiOutlinedInput-root .notranslate:empty{display:none}#internal-error{position:relative;height:100vh}#internal-error .internal-error{position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}.internal-error{max-width:920px;width:100%;line-height:1.4;text-align:center;padding-left:15px;padding-right:15px}.internal-error .internal-error-500{position:absolute;height:100px;top:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);z-index:-1}.internal-error .internal-error-500 h1{color:#ececec;font-weight:900;font-size:276px;margin:0px;position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}.internal-error h2{font-size:46px;color:#000;font-weight:900;text-transform:uppercase;margin:0px}.internal-error p{font-size:16px;font-weight:400;margin-top:15px}@media only screen and (max-width: 480px){.internal-error .internal-error-500 h1{font-size:162px}.internal-error h2{font-size:26px}}.min-table-size{min-width:700px}.root{width:100%;margin-top:24px;overflow-x:auto}.error-stack{max-height:350px;overflow:auto;margin-bottom:2em;word-break:break-all;padding:10px}.contentPadding{margin-top:24px;padding-left:160px;padding-right:160px;padding-bottom:80px}.contentPadding-withFilters{flex-grow:1;margin-left:350px !important;margin-right:60px !important;height:100%}.page-filters{position:fixed !important;left:263px !important;top:65px !important;bottom:0 !important;width:300px !important;padding:15px !important;background:#3c3c3c !important;border-radius:0 !important}.contentPadding-full{padding-left:40px;padding-right:40px}.layoutContent{flex-grow:1;padding-top:50px;margin-left:250px !important;height:100%}.contentLoading{text-align:center;margin-top:24px;padding-left:160px;padding-right:160px;padding-bottom:80px}.authorizationContainer{background:#fff;border:1px solid #dee1e6;width:700px;height:auto;border-radius:5px;position:absolute;left:50%;top:50%;transform:translate(-50%, -50%);margin:0;padding:0}.authorizationContainer .authorizationContainerInner{padding:60px 80px;text-align:center}.authorizationContainer h4{font-weight:300;margin-top:0}.authorizationContainer h2{font-size:26px}.authorizationContainer .authorizationFormWrapper form{width:100%}.authorizationContainer .authorizationFormWrapper .inputRow label{font-weight:600;padding-bottom:1em;text-align:left;color:#d4d7df;display:block}.authorizationContainer .authorizationFormWrapper .inputRow{margin-top:1.6em}.authorizationContainer .authorizationFormWrapper .inputFields{margin-bottom:2em}.authorizationContainer .authorizationFormWrapper input{width:calc(100% - 30px);border:1px solid #d7d7d7;padding:13px 15px;outline:none;font-size:16px;width:100%;border-radius:3px}.authorizationContainer .authorizationFormWrapper input::placeholder{color:#d7d7d7;opacity:1}.authorizationContainer .authorizationFormWrapper input:-ms-input-placeholder{color:#d7d7d7}.authorizationContainer .authorizationFormWrapper input::-ms-input-placeholder{color:#d7d7d7}.authorizationContainer .authorizationFormWrapper .loading-button-wrapper .pb-button span{font-size:15px;color:#fff}.authorizationContainer .authorizationFormWrapper .loading-button-wrapper .pb-container .pb-button{border-radius:3px}.authorizationContainer .authorizationFormWrapper .loading-button-wrapper .pb-container.loading .pb-button{border-radius:27px}.error-alert{padding:15px;margin-bottom:20px;border:1px solid rgba(0,0,0,0);border-radius:4px;color:#fff;background-color:#cb3434;margin-top:1em}.applicationSelectHeading,.pageHeading{padding:0}.applicationSelectHeading h1,.pageHeading h1{margin:60px 0;font-size:35px;color:#726f6d}.applicationSelectHeading h1 span,.pageHeading h1 span{color:#d4d4d4;font-size:27px}.applicationSelectHeading .newApplicationWrapper,.pageHeading .newApplicationWrapper{text-align:right}.applicationSelectHeading .newApplicationWrapper .headerItem,.pageHeading .newApplicationWrapper .headerItem{display:inline-block;margin-left:30px;position:relative;vertical-align:bottom;height:100%}.applicationSelectHeading .newApplicationWrapper .headerItem.smallGutter,.pageHeading .newApplicationWrapper .headerItem.smallGutter{margin-left:10px}.applicationSelectHeading .newApplicationWrapper .headerItem.accessList .accessLabel,.pageHeading .newApplicationWrapper .headerItem.accessList .accessLabel{height:31px;float:left;line-height:28px;margin-right:9px;color:#cbcccd}.applicationSelectHeading .newApplicationWrapper .headerItem .headerItemLabel,.pageHeading .newApplicationWrapper .headerItem .headerItemLabel{position:absolute;top:-20px;font-size:12px;font-weight:500;color:#757575}.applicationSelectHeading .newApplicationWrapper .headerItem:first-child,.pageHeading .newApplicationWrapper .headerItem:first-child{margin-left:0}.applicationSelectHeading .newApplicationWrapper .buttonWrapper,.pageHeading .newApplicationWrapper .buttonWrapper{width:200px}.pageHeading h1{margin:0;font-size:30px;line-height:65px;font-weight:300}.pageHeading button{width:100%}.applicationsList .application{cursor:pointer;margin-bottom:20px}.applicationsList .application .applicationInnerWrapper{background:#fff;border:1px solid #dee1e6;overflow:hidden;position:relative;border-radius:4px;-webkit-transition:border .2s linear;-ms-transition:border .2s linear;transition:border .2s linear}.applicationsList .application .applicationInnerWrapper:hover{border:1px solid #0565d4}.applicationsList .application .applicationInnerWrapper .applicationHeadingContainer{background-repeat:no-repeat;background-color:#fff;background-position:bottom center;position:relative;height:125px}.applicationsList .application .applicationInnerWrapper .applicationHeadingContainer::before{content:"";display:block;height:100%;position:absolute;top:0;left:0;width:100%;background-color:rgba(0,0,0,.75)}.applicationsList .application .applicationInnerWrapper .applicationHeadingContainer .applicationHeadingContent{z-index:9999;position:absolute;left:0;right:0;bottom:0;top:0}.applicationsList .application .applicationInnerWrapper .applicationHeadingContainer .applicationHeadingContent .logo,.applicationsList .application .applicationInnerWrapper .applicationHeadingContainer .applicationHeadingContent .applicationName{position:absolute;top:50%;left:40px;transform:translateY(-50%)}.applicationsList .application .applicationInnerWrapper .applicationHeadingContainer .applicationHeadingContent .logo img,.applicationsList .application .applicationInnerWrapper .applicationHeadingContainer .applicationHeadingContent .applicationName img{max-height:70px}.applicationsList .application .applicationInnerWrapper .applicationHeadingContainer .applicationHeadingContent .applicationName{left:200px;color:#fff;font-size:13px}.applicationsList .application .applicationInnerWrapper .serverQuickStats{padding-left:40px}.applicationsList .application .applicationInnerWrapper .serverQuickStats ul{padding:0;margin:20px 0;list-style-type:none}.applicationsList .application .applicationInnerWrapper .serverQuickStats ul li{display:inline-block;margin-right:30px;color:#9ba0a1}.applicationsList .application .applicationInnerWrapper .serverQuickStats ul li .value{font-weight:900;color:#767c7e}.menu{position:fixed;bottom:0;left:0;height:100%;list-style-type:none;margin:0;padding:0;z-index:10;box-shadow:0 0 20px rgba(0,0,0,.1);background:#fff}.menu li{position:relative;display:flex;justify-content:center;align-items:center}.menu li a{display:inline-block;padding:1.2em 1.4em;text-align:center;width:100%;color:#c1c7d0;transition:color .2s ease-in-out;text-decoration:none}.menu li a:hover{color:#07f}.menu li a.active::after{content:"";position:absolute;right:-9px;top:40%;width:0;height:0}.menu li a .icon{font-size:34px;display:block}.menu li a .title{display:block;font-size:11px;text-decoration:none;margin-top:2px}.menu li a .nav-text{display:none}.menu li img{width:40px;height:auto}.logout-button{width:100%;position:absolute !important;bottom:0}.active-application{background:#f2f2f2;border-bottom:1px solid #ddd}.active-application a{color:#6f6f6f}.active-application a:hover{color:#6f6f6f}.player-page--wrapper{padding:0 20px}.player-page--wrapper .header--wrapper{padding:0 24px;padding-top:1em}.player-page--wrapper .player-avatar{float:left;margin-right:10px}.player-page--wrapper .online-badge .MuiBadge-badge{background-color:#6ab04c;z-index:51}.player-page--wrapper .offline-badge .MuiBadge-badge{background-color:#f50057;z-index:51}.player-page--wrapper .player-online-status{float:left;float:left;margin-top:9px;margin-left:15px}.player-page--wrapper .player-online-status .MuiChip-root{font-weight:500;text-transform:uppercase;color:#fff}.player-page--wrapper .player-username{float:left}.player-page--wrapper .player-username h3{margin-bottom:0;margin-top:20px;font-size:20px;margin-left:10px}.player-page--wrapper .header--buttons{display:flex;justify-content:end;align-items:center}.player-page--wrapper .tabs-switch{margin:2em 0 0 0}.filesFolder,.filesMedia{background:#fff;color:#666;border:1px solid #e2e7ea;margin-top:16px;margin-right:20px;display:inline-block;position:relative;vertical-align:top;width:calc(12.5% - 20px);padding:.5em 0;cursor:pointer;-webkit-transition:background 200ms linear;-ms-transition:background 200ms linear;transition:background 200ms linear}.filesFolder:hover,.filesMedia:hover{background:#e2e7ea}.filesFolder .typeIcon,.filesMedia .typeIcon{-webkit-flex:0 0 auto;flex:0 0 auto;background:rgba(0,0,0,0);-webkit-border-radius:0;border-radius:0;height:24px;padding:0 16px 0 16px;float:left;position:relative}.filesFolder .mediaTitle,.filesMedia .mediaTitle{overflow:hidden;position:relative;-webkit-align-items:center;align-items:center;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex:1 1 auto;flex:1 1 auto;background-color:rgba(0,0,0,0);-webkit-border-radius:0;border-radius:0;height:100%;color:rgba(0,0,0,.72);font-weight:500;font-size:13px;height:24px;max-width:60%}.filesMedia .typeIcon{padding:4px 16px 0 16px}.filemanager{width:100%;position:relative;margin-bottom:3em;float:left}.filemanager .rootSectionHeading{font-weight:300;font-size:15px}.filemanager .rootSectionHeading.margin{margin-top:2em}.filesWrapper,.folderWrapper{float:left;width:100%}.filesWrapper{margin-top:.5em}.files-table{width:100%;border-collapse:separate;border-spacing:0 .5em}.files-table.no-margin{margin-top:0}.files-table thead tr th{color:#afafaf;padding-bottom:.5em}.files-table tbody tr.row-heading{border:none;box-shadow:none;background:rgba(0,0,0,0)}.files-table tbody tr.row-heading:hover{background-color:rgba(0,0,0,0)}.files-table tbody tr.row-heading td:last-child{width:50px;text-align:left}.files-table tbody tr{border:1px solid rgba(220,225,228,.5);box-shadow:rgba(220,220,220,.5) 0px 1px 3px 0px;background:#fff;color:#2c3e50;-moz-transition:all .2s ease-in;-o-transition:all .2s ease-in;-webkit-transition:all .2s ease-in;transition:all .2s ease-in}.files-table tbody tr:hover{background-color:#dceef8}.files-table tbody tr td:nth-child(1){width:50px;text-align:center}.files-table tbody tr td:last-child{width:120px;text-align:center}.files-table tbody tr td:last-child .fa{cursor:pointer;font-size:20px;font-weight:100}.files-table tbody tr td{padding:.5em 0;font-size:12px}.files-table tbody tr td:not(.objectActions) a{text-decoration:none;width:100%;float:left;line-height:33px}.files-table tbody tr td:not(.objectActions) a:hover{text-decoration:underline}.filemanager-history{width:calc(20% - 2em);margin-left:2em;position:relative;margin-bottom:3em;float:left;-webkit-transition:width .4s ease-in-out;-moz-transition:width .4s ease-in-out;-o-transition:width .4s ease-in-out;transition:width .4s ease-in-out}.filemanager-history.closed{width:calc(3% - 1em);margin-left:1em}.filemanager-history .sidebarLabel{width:auto;float:left;border-bottom:2px solid #4f9ee3;padding-bottom:4px}@media all and (max-width: 965px){.filemanager{margin:30px auto 0;padding:1px}}.filemanager .breadcrumbs{color:#515151;font-size:17px;font-weight:700;line-height:35px}.filemanager .breadcrumbs a:link,.breadcrumbs a:visited{color:#cbcbcb;text-decoration:none;font-weight:500}.filemanager .breadcrumbs a:hover{text-decoration:underline}.filemanager .breadcrumbs .arrow{color:#cbcbcb;font-size:19px;font-weight:700;margin:0 11px;font-weight:500}.filemanager .search{position:absolute;padding-right:30px;cursor:pointer;right:0;font-size:17px;color:#fff;display:block;width:40px;height:40px}.filemanager .search:before{content:"";position:absolute;margin-top:12px;width:10px;height:11px;border-radius:50%;border:2px solid #fff;right:8px}.filemanager .search:after{content:"";width:3px;height:10px;background-color:#fff;border-radius:2px;position:absolute;top:23px;right:6px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.filemanager .search input[type=search]{border-radius:2px;color:#4d535e;background-color:#fff;width:250px;height:44px;margin-left:-215px;padding-left:20px;text-decoration-color:#4d535e;font-size:16px;font-weight:400;line-height:20px;display:none;outline:none;border:none;padding-right:10px;-webkit-appearance:none}::-webkit-input-placeholder{color:#4d535e}:-moz-placeholder{color:#4d535e;opacity:1}::-moz-placeholder{color:#4d535e;opacity:1}:-ms-input-placeholder{color:#4d535e}.filemanager .data{margin-top:15px;z-index:-3}.json_editor_buttons{margin-bottom:10px;text-align:right;float:right;width:100%;border-bottom:1px solid #f0f0f0;padding-bottom:7px}.json_editor_buttons .fileName{float:left}.json_editor_buttons .fileName h2{line-height:45px;height:42px}.json_editor{position:absolute;top:0;left:0;right:0;bottom:0;z-index:99999;background:#f7f7f7;border:none}#file_editor_wrapper{float:left;width:100%}@keyframes zoomIn{from{opacity:0;transform:scale3d(0.3, 0.3, 0.3)}50%{opacity:1}}.zoomIn{animation-name:zoomIn}@keyframes zoomOut{from{opacity:1}50%{opacity:0;transform:scale3d(0.3, 0.3, 0.3)}to{opacity:0}}.zoomOut{animation-name:zoomOut}.filemanager .data li{border-radius:3px;background-color:#373743;width:307px;height:118px;list-style-type:none;margin:10px;display:inline-block;position:relative;overflow:hidden;padding:.3em;z-index:1;cursor:pointer;box-sizing:border-box;transition:.3s background-color}.filemanager .data li:hover{background-color:#42424e}.filemanager .data li a{position:absolute;top:0;left:0;width:100%;height:100%}.filemanager .data li .name{color:#fff;font-size:15px;font-weight:700;line-height:20px;width:150px;white-space:nowrap;display:inline-block;position:absolute;overflow:hidden;text-overflow:ellipsis;top:40px}.filemanager .data li .details{color:#b6c1c9;font-size:13px;font-weight:400;width:55px;height:10px;top:64px;white-space:nowrap;position:absolute;display:inline-block}.filemanager .nothingfound{background-color:#373743;width:23em;height:21em;margin:0 auto;display:none;font-family:Arial;-webkit-animation:showSlowlyElement 700ms;animation:showSlowlyElement 700ms}.filemanager .nothingfound .nofiles{margin:30px auto;top:3em;border-radius:50%;position:relative;background-color:#d72f6e;width:11em;height:11em;line-height:11.4em}.filemanager .nothingfound .nofiles:after{content:"×";position:absolute;color:#fff;font-size:14em;margin-right:.092em;right:0}.filemanager .nothingfound span{margin:0 auto auto 6.8em;color:#fff;font-size:16px;font-weight:700;line-height:20px;height:13px;position:relative;top:2em}@media all and (max-width: 965px){.filemanager .data li{width:100%;margin:5px 0}}@-webkit-keyframes showSlowlyElement{100%{transform:scale(1);opacity:1}0%{transform:scale(1.2);opacity:0}}@keyframes showSlowlyElement{100%{transform:scale(1);opacity:1}0%{transform:scale(1.2);opacity:0}}.icon{font-size:8px}.icon.folder{display:inline-block;background-color:rgba(0,0,0,0);overflow:hidden}.icon.folder:before{content:"";float:left;background-color:#7ba1ad;width:1.5em;height:.45em;margin-left:.07em;margin-bottom:-0.07em;border-top-left-radius:.1em;border-top-right-radius:.1em;box-shadow:1.25em .25em 0 0em #7ba1ad}.icon.folder:after{content:"";float:left;clear:left;background-color:#a0d4e4;width:3em;height:2.25em;border-radius:.1em}.icon.folder.assets:before{background-color:#2980b9}.icon.folder.assets:after{background-color:#1571ab}.icon.folder.full:before{height:.55em}.icon.folder.full:after{height:2.15em;box-shadow:0 -0.12em 0 0 #fff}.icon.file.small{width:12px;height:16px}.icon.file{font-family:Arial,Tahoma,sans-serif;font-weight:300;display:inline-block;width:24px;height:32px;background:#018fef;position:relative;border-radius:2px;text-align:left;-webkit-font-smoothing:antialiased;width:17px;height:25px;border-radius:2px;background:#d24726}.icon.file:first-line{font-size:13px;font-weight:700}.icon.file:after{display:block;position:absolute;font-size:10px;color:#fff;text-transform:lowercase;padding:2px;white-space:nowrap;overflow:hidden;content:"";border-bottom:2px solid hsla(0,0%,100%,.45);width:auto;left:2px;right:2px;bottom:3px}.icon.file:before{display:block;content:"";position:absolute;top:0;right:0;width:0;height:0;border-style:solid;border-color:#fff #fff hsla(0,0%,100%,.35) hsla(0,0%,100%,.35);border-bottom-left-radius:1px;border-width:3px}.icon.file.small:before{border-color:#eff9ff #eff9ff hsla(0,0%,100%,.35) hsla(0,0%,100%,.35)}.icon.file.f-avi,.icon.file.f-flv,.icon.file.f-mkv,.icon.file.f-mov,.icon.file.f-mpeg,.icon.file.f-mpg,.icon.file.f-mp4,.icon.file.f-m4v,.icon.file.f-wmv{box-shadow:1.74em -2.1em 0 0 #7e70ee inset}.icon.file.f-avi:after,.icon.file.f-flv:after,.icon.file.f-mkv:after,.icon.file.f-mov:after,.icon.file.f-mpeg:after,.icon.file.f-mpg:after,.icon.file.f-mp4:after,.icon.file.f-m4v:after,.icon.file.f-wmv:after{border-bottom-color:#5649c1}.icon.file.f-mp2,.icon.file.f-mp3,.icon.file.f-m3u,.icon.file.f-wma,.icon.file.f-xls,.icon.file.f-xlsx{box-shadow:1.74em -2.1em 0 0 #5bab6e inset}.icon.file.f-mp2:after,.icon.file.f-mp3:after,.icon.file.f-m3u:after,.icon.file.f-wma:after,.icon.file.f-xls:after,.icon.file.f-xlsx:after{border-bottom-color:#448353}.icon.file.f-doc,.icon.file.f-docx,.icon.file.f-psd{box-shadow:1.74em -2.1em 0 0 #03689b inset}.icon.file.f-doc:after,.icon.file.f-docx:after,.icon.file.f-psd:after{border-bottom-color:#2980b9}.icon.file.f-gif,.icon.file.f-jpg,.icon.file.f-jpeg,.icon.file.f-pdf,.icon.file.f-png{box-shadow:1.74em -2.1em 0 0 #e15955 inset}.icon.file.f-gif:after,.icon.file.f-jpg:after,.icon.file.f-jpeg:after,.icon.file.f-pdf:after,.icon.file.f-png:after{border-bottom-color:#c6393f}.icon.file.f-deb,.icon.file.f-dmg,.icon.file.f-gz,.icon.file.f-rar,.icon.file.f-zip,.icon.file.f-7z{box-shadow:1.74em -2.1em 0 0 #867c75 inset}.icon.file.f-deb:after,.icon.file.f-dmg:after,.icon.file.f-gz:after,.icon.file.f-rar:after,.icon.file.f-zip:after,.icon.file.f-7z:after{border-bottom-color:#685f58}.icon.file.f-html,.icon.file.f-rtf,.icon.file.f-xml,.icon.file.f-xhtml{box-shadow:1.74em -2.1em 0 0 #a94bb7 inset}.icon.file.f-html:after,.icon.file.f-rtf:after,.icon.file.f-xml:after,.icon.file.f-xhtml:after{border-bottom-color:#d65de8}.icon.file.f-js{box-shadow:1.74em -2.1em 0 0 #d0c54d inset}.icon.file.f-js:after{border-bottom-color:#a69f4e}.icon.file.f-css,.icon.file.f-saas,.icon.file.f-scss{box-shadow:1.74em -2.1em 0 0 #44afa6 inset}.icon.file.f-css:after,.icon.file.f-saas:after,.icon.file.f-scss:after{border-bottom-color:#30837c}footer{width:770px;font:normal 16px Arial,Helvetica,sans-serif;padding:15px 35px;position:fixed;bottom:0;left:50%;margin-left:-420px;background-color:#1f1f1f;background-image:linear-gradient(to bottom, #1f1f1f, #101010);border-radius:2px 2px 0 0;box-shadow:0 -1px 4px rgba(0,0,0,.4);z-index:1}footer a.tz{font-weight:normal;font-size:16px !important;text-decoration:none !important;display:block;margin-right:300px;text-overflow:ellipsis;white-space:nowrap;color:#bfbfbf !important;z-index:1}footer a.tz:before{content:"";background:url("http://cdn.tutorialzine.com/misc/enhance/v2_footer_bg.png") no-repeat 0 -53px;width:138px;height:20px;display:inline-block;position:relative;bottom:-3px}footer .close{position:absolute;cursor:pointer;width:8px;height:8px;background:url("http://cdn.tutorialzine.com/misc/enhance/v2_footer_bg.png") no-repeat 0 0px;top:10px;right:10px;z-index:3}footer #tzine-actions{position:absolute;top:8px;width:500px;right:50%;margin-right:-650px;text-align:right;z-index:2}footer #tzine-actions iframe{display:inline-block;height:21px;width:95px;position:relative;float:left;margin-top:11px}@media(max-width: 1024px){#bsaHolder,footer{display:none}}.fileUpload{position:relative;overflow:hidden;width:100%;height:40px;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;text-align:center;display:inline-flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;background-color:#4f9ee3;background-image:none;float:right;width:110px;font-size:12px;color:#fff;border-radius:5px}.fileUpload-message i.fa{float:left;width:100%;margin-bottom:3px;font-size:36px}.fileUpload input.upload{position:absolute;top:0;right:0;margin:0;padding:0;font-size:20px;cursor:pointer;opacity:0;filter:alpha(opacity=0);width:100%;height:40px}.fileUpload .preview_image_file img{max-height:140px}.fileUpload .preview_image_file .overlay{display:none;background-color:rgba(0,0,0,.7);position:absolute;left:0px;top:0px;right:0px;bottom:0px}.fileUpload .preview_image_file .overlay span.selected-message{color:#fff;line-height:140px;font-family:"Roboto","Helvetica Neue","Helvetica","Arial"}.fileUpload:hover .preview_image_file .overlay{display:block}.fileUpload .preview_image_file .overlay .remove-image,.fileUpload .preview_image_file .overlay .remove-image-local{position:absolute;top:48px;right:37%;cursor:pointer;font-family:"Roboto","Helvetica Neue","Helvetica","Arial";font-size:11px;padding:6px 12px;font-weight:bold;color:#fff !important;transition:all .15s linear;border:none;background:#e53935;font-size:18px}.fileUpload .preview_image_file .overlay .remove-image i,.fileUpload .preview_image_file .overlay .remove-image-local i{margin-top:4px;margin-right:5px}.progress{float:right;width:300px;margin-right:42px;position:relative;border:1px solid #ddd;padding:1px;border-radius:3px;display:none}.bar{background-color:#27ae60;width:0%;height:20px;border-radius:3px}.percent{position:absolute;display:inline-block;top:3px;left:48%}.edit-object{position:relative}.context-menu{width:120px;position:absolute;z-index:999999;box-shadow:0 1px 7px rgba(0,0,0,.18);background-color:#fff;border:1px solid #ddd;border-radius:4px;top:41px;right:12px;animation-duration:.5s;animation-fill-mode:both;transform:translate3d(0, -10%, 0);-webkit-transition:visibility .2s,transform .2s ease-in-out,opacity .2s ease-in-out;-o-transition:visibility .2s,transform .2s ease-in-out,opacity .2s ease-in-out;transition:visibility .2s,transform .2s ease-in-out,opacity .2s ease-in-out;opacity:.001;visibility:hidden}.context-menu.show{visibility:visible;transform:translate3d(0, 0%, 0);pointer-events:auto;opacity:.999}.context-menu:before{position:absolute;content:"";display:block;border:10px solid rgba(0,0,0,0);pointer-events:none;top:-21px;border-bottom-color:#ddd;right:12px}.context-menu:after{position:absolute;content:"";display:block;border:10px solid rgba(0,0,0,0);pointer-events:none;top:-19px;border-bottom-color:#fff;right:12px}.context-menu ul li{width:100%;float:left;text-align:left}.context-menu ul li:first-child{-webkit-border-top-left-radius:4px;-webkit-border-top-right-radius:4px;-moz-border-radius-topleft:4px;-moz-border-radius-topright:4px;border-top-left-radius:4px;border-top-right-radius:4px}.context-menu ul li:last-child{-webkit-border-bottom-right-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomright:4px;-moz-border-radius-bottomleft:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.context-menu ul li:hover{background:#f5f9ff}.context-menu ul li a{text-decoration:none !important;padding-left:9px !important;width:calc(100% - 9px) !important}.context-menu ul li a.red{color:#e74c3c}@keyframes fadeInDownV2{from{opacity:0;transform:translate3d(0, -15%, 0)}to{opacity:1;transform:none}}@keyframes fadeOutUpV2{from{opacity:1}to{opacity:0;transform:translate3d(0, -15%, 0)}}.ConfirmModal{display:none}.ConfirmModal .message{color:#fff;float:left;line-height:31px;width:auto}.ConfirmModal .buttons{float:right}.Button--cancel--small:hover{background-color:hsla(0,0%,100%,.2) !important}.history-content{width:100%;text-align:center;float:left;color:#666;border:1px solid #e2e7ea;background:#fff;margin-top:1.3em}.history-content .warning-label{margin-top:2em}.history-list{width:100%}.history-list li{width:100%;text-align:left;float:left;padding:1.1em 1em;-moz-transition:all .2s ease-in;-o-transition:all .2s ease-in;-webkit-transition:all .2s ease-in;transition:all .2s ease-in;-vendor-animation-duration:.5s;-vendor-animation-delay:0s}.history-list li:hover{background-color:#dceef8}.history-list li.active{background-color:#eff9ff}.history-list li .list-header{float:left;width:100%}.history-list li .list-header .bg-brand{font-size:.8rem;border-width:1px;border-style:solid;border-radius:99px;width:1.8rem;height:1.8rem;background-color:#fff;float:left}.history-list li .list-header .list-header-inner{float:left;margin-left:1em}.history-list li .list-header .list-header-inner .title{float:left;width:100%;color:#72757a;font-size:12px}.history-list li .list-header .list-header-inner .date{font-size:11px;color:#b3b3b3;margin:0;padding:0}.history-list li .details{float:left;width:100%;font-size:11px;margin-top:12px}.history-list li .details .icon{margin-left:16px;float:left}.history-list li .details .text{margin-left:14px;float:left;height:16px;line-height:16px;font-size:10px}.history-list li .details .text.deleted{text-decoration:line-through}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.label-success{background-color:#5cb85c}.label-danger{background-color:#d9534f}.label-warning{background-color:#f0ad4e}.buttons-group{float:right;width:auto}.buttons-group.hidden-sidebar .button:first-child{display:none}.buttons-group.hidden-sidebar .button:last-child{-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.buttons-group .button{cursor:pointer;float:left;min-height:1em;outline:0;border:none;vertical-align:baseline;background:#e0e1e2 none;color:rgba(0,0,0,.6);padding:.48571429em 1em .48571429em;text-transform:none;text-shadow:none;font-weight:700;line-height:1em;font-style:normal;text-align:center;text-decoration:none;box-shadow:0 0 0 1px rgba(0,0,0,0) inset,0 0 0 0 rgba(34,36,38,.15) inset;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-transition:opacity .1s ease,background-color .1s ease,color .1s ease,box-shadow .1s ease,background .1s ease;transition:opacity .1s ease,background-color .1s ease,color .1s ease,box-shadow .1s ease,background .1s ease;will-change:"";-webkit-tap-highlight-color:rgba(0,0,0,0)}.buttons-group .button:hover{background:#bfbfbf none}.buttons-group .button:first-child{-webkit-border-top-left-radius:5px;-webkit-border-bottom-left-radius:5px;-moz-border-radius-topleft:5px;-moz-border-radius-bottomleft:5px;border-top-left-radius:5px;border-bottom-left-radius:5px;border-right:1px solid #bdbdbd}.buttons-group .button:last-child{-webkit-border-top-right-radius:5px;-webkit-border-bottom-right-radius:5px;-moz-border-radius-topright:5px;-moz-border-radius-bottomright:5px;border-top-right-radius:5px;border-bottom-right-radius:5px}div.jsoneditor .jsoneditor-search input{height:auto;border:inherit}div.jsoneditor .jsoneditor-search input:focus{border:none !important;box-shadow:none !important}div.jsoneditor table{border-collapse:collapse;width:auto}div.jsoneditor td,div.jsoneditor th{padding:0;display:table-cell;text-align:left;vertical-align:inherit;border-radius:inherit}div.jsoneditor-field,div.jsoneditor-value,div.jsoneditor-readonly{border:1px solid rgba(0,0,0,0);min-height:16px;min-width:32px;padding:2px;margin:1px;word-wrap:break-word;float:left}div.jsoneditor-field p,div.jsoneditor-value p{margin:0}div.jsoneditor-value{word-break:break-word}div.jsoneditor-readonly{min-width:16px;color:gray}div.jsoneditor-empty{border-color:#d3d3d3;border-style:dashed;border-radius:2px}div.jsoneditor-field.jsoneditor-empty::after,div.jsoneditor-value.jsoneditor-empty::after{pointer-events:none;color:#d3d3d3;font-size:8pt}div.jsoneditor-field.jsoneditor-empty::after{content:"field"}div.jsoneditor-value.jsoneditor-empty::after{content:"value"}div.jsoneditor-value.jsoneditor-url,a.jsoneditor-value.jsoneditor-url{color:green;text-decoration:underline}a.jsoneditor-value.jsoneditor-url{display:inline-block;padding:2px;margin:2px}a.jsoneditor-value.jsoneditor-url:hover,a.jsoneditor-value.jsoneditor-url:focus{color:#ee422e}div.jsoneditor td.jsoneditor-separator{padding:3px 0;vertical-align:top;color:gray}div.jsoneditor-field[contenteditable=true]:focus,div.jsoneditor-field[contenteditable=true]:hover,div.jsoneditor-value[contenteditable=true]:focus,div.jsoneditor-value[contenteditable=true]:hover,div.jsoneditor-field.jsoneditor-highlight,div.jsoneditor-value.jsoneditor-highlight{background-color:#ffffab;border:1px solid #ff0;border-radius:2px}div.jsoneditor-field.jsoneditor-highlight-active,div.jsoneditor-field.jsoneditor-highlight-active:focus,div.jsoneditor-field.jsoneditor-highlight-active:hover,div.jsoneditor-value.jsoneditor-highlight-active,div.jsoneditor-value.jsoneditor-highlight-active:focus,div.jsoneditor-value.jsoneditor-highlight-active:hover{background-color:#fe0;border:1px solid #ffc700;border-radius:2px}div.jsoneditor-value.jsoneditor-string{color:green}div.jsoneditor-value.jsoneditor-object,div.jsoneditor-value.jsoneditor-array{min-width:16px;color:gray}div.jsoneditor-value.jsoneditor-number{color:#ee422e}div.jsoneditor-value.jsoneditor-boolean{color:#ff8c00}div.jsoneditor-value.jsoneditor-null{color:#004ed0}div.jsoneditor-value.jsoneditor-invalid{color:#000}div.jsoneditor-tree button{width:24px;height:24px;padding:0;margin:0;border:none;cursor:pointer;background:rgba(0,0,0,0) url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"216\" height=\"144\"><path fill=\"#1aae1c%22%20d=%22M4%204h16v16H4z%22/%3E%3Cpath%20fill=%22#ec3f29%22%20fill-opacity=%22.941%22%20d=%22M28%204h16v16H28z%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20d=%22M52%204h16v16H52zM172%204h16v16h-16zM196%204h16v16h-16z%22/%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M7%2011h10v2H7z%22/%3E%3Cpath%20d=%22M11%207h2v10h-2z%22/%3E%3C/g%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M31.757%2014.828l7.071-7.07%201.415%201.414-7.071%207.07z%22/%3E%3Cpath%20d=%22M31.757%209.172l1.415-1.415%207.07%207.071-1.414%201.415z%22/%3E%3C/g%3E%3Cpath%20fill=%22#fff%22%20d=%22M55%207h7v7h-7z%22/%3E%3Cpath%20fill=%22#fff%22%20stroke=%22#4c4c4c%22%20stroke-width=%222%22%20d=%22M58%2010h7v7h-7z%22/%3E%3Cpath%20fill=%22#fff%22%20d=%22M58%2010h7v7h-7z%22/%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M198%2011h8v2h-8zM198%207h12v2h-12zM198%2015h4v2h-4z%22/%3E%3C/g%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M174%2013h8v-2h-8zM174%2017h12v-2h-12zM174%209h4V7h-4z%22/%3E%3C/g%3E%3Cpath%20fill=%22#4c4c4c%22%20d=%22M76%204h16v16H76z%22/%3E%3Cpath%20d=%22M85.104%206.016l-.015%201.406c3.027-.24.33%203.65%202.484%204.578-2.187%201.094.492%204.907-2.453%204.578L85.105%2018c5.708.56%201.032-5.1%204.703-5.265v-1.407c-3.613-.027%201.119-5.707-4.703-5.312zM82.781%205.998l.016%201.407c-3.027-.24-.33%203.65-2.485%204.578%202.187%201.094-.491%204.907%202.454%204.578l.015%201.422c-5.708.559-1.032-5.1-4.703-5.266v-1.406c3.613-.027-1.119-5.707%204.703-5.313z%22%20fill=%22#fff%22%20stroke=%22#fff%22%20stroke-width=%22.2%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20d=%22M100%204h16v16h-16z%22/%3E%3Cpath%20d=%22M103.719%205.672V18.39h3.031v-1.532h-1.344V7.234h1.375V5.672zM112.219%205.672v12.719h-3.032V16.86h1.344V7.235h-1.375V5.672z%22%20fill=%22#fff%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20d=%22M124%204h16v16h-16z%22/%3E%3Cpath%20d=%22M126.282%2017.603h1.79l1.141-2.864h5.654l1.149%202.864h1.765l-4.787-11.161h-1.919z%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M129.727%2013.479l4.609.01-2.305-5.55zM148%204h16v16h-16z%22%20fill=%22#4c4c4c%22/%3E%3Cpath%20d=%22M156.477%205.892v2.18l.46%202.398h1.829l.398-2.399v-2.18zM152.516%205.89v2.18l.46%202.399h1.829l.398-2.399V5.89z%22%20fill=%22#fff%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M4%2028h16v16H4zM28%2028h16v16H28zM52%2028h16v16H52zM172%2028h16v16h-16zM196%2028h16v16h-16z%22/%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M7%2035h10v2H7z%22/%3E%3Cpath%20d=%22M11%2031h2v10h-2z%22/%3E%3C/g%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M31.757%2038.828l7.071-7.07%201.415%201.414-7.071%207.07z%22/%3E%3Cpath%20d=%22M31.757%2033.172l1.415-1.415%207.07%207.071-1.414%201.415z%22/%3E%3C/g%3E%3Cpath%20fill=%22#fff%22%20d=%22M55%2031h7v7h-7z%22/%3E%3Cpath%20fill=%22#fff%22%20stroke=%22#d3d3d3%22%20stroke-width=%222%22%20d=%22M58%2034h7v7h-7z%22/%3E%3Cpath%20fill=%22#fff%22%20d=%22M58%2034h7v7h-7z%22/%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M198%2035h8v2h-8zM198%2031h12v2h-12zM198%2039h4v2h-4z%22/%3E%3C/g%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M174%2037h8v-2h-8zM174%2041h12v-2h-12zM174%2033h4v-2h-4z%22/%3E%3C/g%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M76%2028h16v16H76z%22/%3E%3Cpath%20d=%22M85.104%2030.016l-.015%201.406c3.027-.24.33%203.65%202.484%204.578-2.187%201.094.492%204.907-2.453%204.578L85.105%2042c5.708.559%201.032-5.1%204.703-5.266v-1.406c-3.613-.027%201.119-5.707-4.703-5.312zM82.781%2029.998l.016%201.407c-3.027-.24-.33%203.65-2.485%204.578%202.187%201.093-.491%204.907%202.454%204.578l.015%201.422c-5.708.559-1.032-5.1-4.703-5.266v-1.406c3.613-.027-1.119-5.707%204.703-5.313z%22%20fill=%22#fff%22%20stroke=%22#fff%22%20stroke-width=%22.2%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M100%2028h16v16h-16z%22/%3E%3Cpath%20d=%22M103.719%2029.672V42.39h3.031v-1.532h-1.344v-9.625h1.375v-1.562zM112.219%2029.672V42.39h-3.032v-1.532h1.344v-9.625h-1.375v-1.562z%22%20fill=%22#fff%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M124%2028h16v16h-16z%22/%3E%3Cpath%20d=%22M126.282%2041.603h1.79l1.141-2.864h5.654l1.149%202.864h1.765l-4.787-11.161h-1.919z%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M129.727%2037.479l4.609.01-2.305-5.55zM148%2028h16v16h-16z%22%20fill=%22#d3d3d3%22/%3E%3Cpath%20d=%22M156.477%2029.892v2.18l.46%202.398h1.829l.398-2.399v-2.18zM152.516%2029.89v2.18l.46%202.399h1.829l.398-2.399v-2.18z%22%20fill=%22#fff%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M54%2064h12v2H54zM80%2052h3v3h-3zM85%2052h3v3h-3zM80%2058h3v3h-3zM85%2058h3v3h-3zM80%2064h3v3h-3zM85%2064h3v3h-3z%22/%3E%3Ccircle%20cx=%22110.061%22%20cy=%2257.939%22%20r=%224.744%22%20fill=%22none%22%20stroke=%22#4c4c4c%22%20stroke-width=%222%22%20stroke-linecap=%22round%22%20stroke-linejoin=%22round%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M104.966%2059.997l2.99%202.99-4.528%204.53-2.991-2.991z%22/%3E%3Cpath%20d=%22M125%2056l13.77.095L132%2064zM149%2064l13.77-.095L156%2056z%22%20fill=%22#4c4c4c%22%20fill-rule=%22evenodd%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M54%2053h12v2H54z%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M56%2053v13h-2V53zM66%2053v13h-2V53z%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M54%2057h12v1H54z%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M54%2088h12v2H54zM80%2076h3v3h-3zM85%2076h3v3h-3zM80%2082h3v3h-3zM85%2082h3v3h-3zM80%2088h3v3h-3zM85%2088h3v3h-3z%22/%3E%3Ccircle%20r=%224.744%22%20cy=%2281.939%22%20cx=%22110.061%22%20fill=%22none%22%20stroke=%22#d3d3d3%22%20stroke-width=%222%22%20stroke-linecap=%22round%22%20stroke-linejoin=%22round%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M104.965%2083.997l2.991%202.99-4.529%204.53-2.991-2.991z%22/%3E%3Cpath%20d=%22M125%2080l13.77.095L132%2088zM149%2088l13.77-.095L156%2080z%22%20fill=%22#d3d3d3%22%20fill-rule=%22evenodd%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M54%2077h12v2H54z%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M56%2077v13h-2V77zM66%2077v13h-2V77z%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M54%2081h12v1H54z%22/%3E%3Cpath%20fill=%22#fff%22%20fill-opacity=%22.8%22%20d=%22M76%20101h16v2H76zM76%20105h16v2H76zM76%20109h9v2h-9zM76%20125h12v2H76zM76%20137h10v2H76zM82%20129h10v2H82zM82%20133h9v2h-9z%22/%3E%3Cpath%20style=%22line-height:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;block-progression:tb;isolation:auto;mix-blend-mode:normal%22%20d=%22M36.398%20100.025a8.228%208.228%200%200%200-1.265.062%207.861%207.861%200%200%200-4.508%202.227L29%20100.599l-2.324%207.713%207.826-1.906-1.805-1.906a5.026%205.026%200%200%201%205.985-.721%204.915%204.915%200%200%201%202.308%205.55%204.988%204.988%200%200%201-4.83%203.696v3.074c3.55%200%206.71-2.411%207.65-5.941.94-3.53-.618-7.274-3.71-9.07a7.839%207.839%200%200%200-3.702-1.063zM59.723%2099.963a7.834%207.834%200%200%200-3.702%201.062c-3.092%201.797-4.65%205.54-3.71%209.07.94%203.53%204.097%205.942%207.648%205.942v-3.074a4.988%204.988%200%200%201-4.83-3.695%204.915%204.915%200%200%201%202.309-5.551%205.029%205.029%200%200%201%205.986.72l-1.807%201.907%207.828%201.906-2.324-7.713-1.627%201.717a7.856%207.856%200%200%200-4.506-2.229%207.754%207.754%200%200%200-1.265-.062z%22%20color=%22#000%22%20font-weight=%22400%22%20font-family=%22sans-serif%22%20white-space=%22normal%22%20overflow=%22visible%22%20opacity=%22.8%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M10.5%20100v2H8l4%205%204-5h-2.5v-2h-3z%22%20opacity=%22.8%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M4.985%20108.015l14.03-.03M4.985%20132.015l14.03-.03%22%20opacity=%22.8%22%20fill=%22none%22%20stroke=%22#fff%22%20stroke-width=%221.966%22%20stroke-linecap=%22square%22/%3E%3Cpath%20style=%22line-height:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;block-progression:tb;isolation:auto;mix-blend-mode:normal%22%20d=%22M36.398%20123.963a8.228%208.228%200%200%200-1.265.062%207.861%207.861%200%200%200-4.508%202.226L29%20124.538l-2.324%207.713%207.826-1.907-1.805-1.906a5.026%205.026%200%200%201%205.985-.72%204.915%204.915%200%200%201%202.308%205.55%204.988%204.988%200%200%201-4.83%203.695v3.075c3.55%200%206.71-2.41%207.65-5.94.94-3.53-.618-7.275-3.71-9.072a7.84%207.84%200%200%200-3.702-1.063zM59.723%20123.963a7.835%207.835%200%200%200-3.702%201.062c-3.092%201.797-4.65%205.543-3.71%209.073.94%203.53%204.097%205.94%207.648%205.94v-3.075a4.988%204.988%200%200%201-4.83-3.695%204.915%204.915%200%200%201%202.309-5.551%205.029%205.029%200%200%201%205.986.72l-1.807%201.907%207.828%201.906-2.324-7.713-1.627%201.717a7.856%207.856%200%200%200-4.506-2.229%207.754%207.754%200%200%200-1.265-.062z%22%20color=%22#000%22%20font-weight=%22400%22%20font-family=%22sans-serif%22%20white-space=%22normal%22%20overflow=%22visible%22%20opacity=%22.4%22%20fill=%22#4d4d4d%22/%3E%3Cpath%20d=%22M10.5%20116v-2H8l4-5%204%205h-2.5v2h-3zM10.5%20129v-2H8l4-5%204%205h-2.5v2h-3zM10.5%20135v2H8l4%205%204-5h-2.5v-2h-3z%22%20opacity=%22.8%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M16.667%2060.073l-3.833%202.214L9%2064.5v-8.854l3.834%202.214zM31.5%2060.073l3.834%202.214%203.833%202.213v-8.854l-3.833%202.214zM11.934%2088.455l-2.213-3.834-2.214-3.833h8.854l-2.213%203.833zM35.927%2079.333l-2.214%203.833L31.5%2087h8.854l-2.214-3.834z%22%20fill=%22#4d4d4d%22%20fill-opacity=%22.902%22/%3E%3Cpath%20d=%22M171.826%2065.174h16.348L180%2051.826z%22%20fill=%22#fbb917%22%20fill-rule=%22evenodd%22%20stroke=%22#fbb917%22%20stroke-width=%221.652%22%20stroke-linejoin=%22round%22/%3E%3Cpath%20d=%22M179%2055v6h2v-6M179%2062v2h2v-2%22%20fill=%22#fff%22%20fill-rule=%22evenodd%22/%3E%3Cpath%20d=%22M99.994%20113.022l2.006%201.962%207-6.956%203%20.972%202-1%201-2v-3l-3%203-3-3%203-3h-3l-2%201-1%202%20.994%203.022z%22%20fill=%22#fff%22%20fill-opacity=%22.8%22%20fill-rule=%22evenodd%22%20stroke=%22#fff%22%20stroke-linejoin=%22round%22%20stroke-opacity=%22.8%22/%3E%3C/svg%3E")}div.jsoneditor-mode-view tr.jsoneditor-expandable td.jsoneditor-tree,div.jsoneditor-mode-form tr.jsoneditor-expandable td.jsoneditor-tree{cursor:pointer}div.jsoneditor-tree button.jsoneditor-collapsed{background-position:0 -48px}div.jsoneditor-tree button.jsoneditor-expanded{background-position:0 -72px}div.jsoneditor-tree button.jsoneditor-contextmenu{background-position:-48px -72px}div.jsoneditor-tree button.jsoneditor-contextmenu:hover,div.jsoneditor-tree button.jsoneditor-contextmenu:focus,div.jsoneditor-tree button.jsoneditor-contextmenu.jsoneditor-selected,tr.jsoneditor-selected.jsoneditor-first button.jsoneditor-contextmenu{background-position:-48px -48px}div.jsoneditor-tree *:focus{outline:none}div.jsoneditor-tree button:focus{background-color:#f5f5f5;outline:#e5e5e5 solid 1px}div.jsoneditor-tree button.jsoneditor-invisible{visibility:hidden;background:none}div.jsoneditor{color:#1a1a1a;border:none;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;height:100%;position:relative;padding:0;line-height:100%;margin-bottom:2em}div.jsoneditor-tree table.jsoneditor-tree{border-collapse:collapse;border-spacing:0;width:100%;margin:0}div.jsoneditor-outer.has-nav-bar{margin:-61px 0 0 0;padding:61px 0 0 0}div.jsoneditor-outer.has-status-bar{margin:-35px 0 -26px 0;padding:35px 0 26px 0}textarea.jsoneditor-text,.ace-jsoneditor{min-height:150px}div.jsoneditor-tree{width:100%;height:100%;position:relative;overflow:hidden;background:#fff}textarea.jsoneditor-text{width:100%;height:100%;margin:0;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;outline-width:0;border:none;background-color:#fff;resize:none}tr.jsoneditor-highlight,tr.jsoneditor-selected{background-color:#d3d3d3}tr.jsoneditor-selected button.jsoneditor-dragarea,tr.jsoneditor-selected button.jsoneditor-contextmenu{visibility:hidden}tr.jsoneditor-selected.jsoneditor-first button.jsoneditor-dragarea,tr.jsoneditor-selected.jsoneditor-first button.jsoneditor-contextmenu{visibility:visible}div.jsoneditor-tree button.jsoneditor-dragarea{background:url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"216\" height=\"144\"><path fill=\"#1aae1c%22%20d=%22M4%204h16v16H4z%22/%3E%3Cpath%20fill=%22#ec3f29%22%20fill-opacity=%22.941%22%20d=%22M28%204h16v16H28z%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20d=%22M52%204h16v16H52zM172%204h16v16h-16zM196%204h16v16h-16z%22/%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M7%2011h10v2H7z%22/%3E%3Cpath%20d=%22M11%207h2v10h-2z%22/%3E%3C/g%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M31.757%2014.828l7.071-7.07%201.415%201.414-7.071%207.07z%22/%3E%3Cpath%20d=%22M31.757%209.172l1.415-1.415%207.07%207.071-1.414%201.415z%22/%3E%3C/g%3E%3Cpath%20fill=%22#fff%22%20d=%22M55%207h7v7h-7z%22/%3E%3Cpath%20fill=%22#fff%22%20stroke=%22#4c4c4c%22%20stroke-width=%222%22%20d=%22M58%2010h7v7h-7z%22/%3E%3Cpath%20fill=%22#fff%22%20d=%22M58%2010h7v7h-7z%22/%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M198%2011h8v2h-8zM198%207h12v2h-12zM198%2015h4v2h-4z%22/%3E%3C/g%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M174%2013h8v-2h-8zM174%2017h12v-2h-12zM174%209h4V7h-4z%22/%3E%3C/g%3E%3Cpath%20fill=%22#4c4c4c%22%20d=%22M76%204h16v16H76z%22/%3E%3Cpath%20d=%22M85.104%206.016l-.015%201.406c3.027-.24.33%203.65%202.484%204.578-2.187%201.094.492%204.907-2.453%204.578L85.105%2018c5.708.56%201.032-5.1%204.703-5.265v-1.407c-3.613-.027%201.119-5.707-4.703-5.312zM82.781%205.998l.016%201.407c-3.027-.24-.33%203.65-2.485%204.578%202.187%201.094-.491%204.907%202.454%204.578l.015%201.422c-5.708.559-1.032-5.1-4.703-5.266v-1.406c3.613-.027-1.119-5.707%204.703-5.313z%22%20fill=%22#fff%22%20stroke=%22#fff%22%20stroke-width=%22.2%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20d=%22M100%204h16v16h-16z%22/%3E%3Cpath%20d=%22M103.719%205.672V18.39h3.031v-1.532h-1.344V7.234h1.375V5.672zM112.219%205.672v12.719h-3.032V16.86h1.344V7.235h-1.375V5.672z%22%20fill=%22#fff%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20d=%22M124%204h16v16h-16z%22/%3E%3Cpath%20d=%22M126.282%2017.603h1.79l1.141-2.864h5.654l1.149%202.864h1.765l-4.787-11.161h-1.919z%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M129.727%2013.479l4.609.01-2.305-5.55zM148%204h16v16h-16z%22%20fill=%22#4c4c4c%22/%3E%3Cpath%20d=%22M156.477%205.892v2.18l.46%202.398h1.829l.398-2.399v-2.18zM152.516%205.89v2.18l.46%202.399h1.829l.398-2.399V5.89z%22%20fill=%22#fff%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M4%2028h16v16H4zM28%2028h16v16H28zM52%2028h16v16H52zM172%2028h16v16h-16zM196%2028h16v16h-16z%22/%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M7%2035h10v2H7z%22/%3E%3Cpath%20d=%22M11%2031h2v10h-2z%22/%3E%3C/g%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M31.757%2038.828l7.071-7.07%201.415%201.414-7.071%207.07z%22/%3E%3Cpath%20d=%22M31.757%2033.172l1.415-1.415%207.07%207.071-1.414%201.415z%22/%3E%3C/g%3E%3Cpath%20fill=%22#fff%22%20d=%22M55%2031h7v7h-7z%22/%3E%3Cpath%20fill=%22#fff%22%20stroke=%22#d3d3d3%22%20stroke-width=%222%22%20d=%22M58%2034h7v7h-7z%22/%3E%3Cpath%20fill=%22#fff%22%20d=%22M58%2034h7v7h-7z%22/%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M198%2035h8v2h-8zM198%2031h12v2h-12zM198%2039h4v2h-4z%22/%3E%3C/g%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M174%2037h8v-2h-8zM174%2041h12v-2h-12zM174%2033h4v-2h-4z%22/%3E%3C/g%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M76%2028h16v16H76z%22/%3E%3Cpath%20d=%22M85.104%2030.016l-.015%201.406c3.027-.24.33%203.65%202.484%204.578-2.187%201.094.492%204.907-2.453%204.578L85.105%2042c5.708.559%201.032-5.1%204.703-5.266v-1.406c-3.613-.027%201.119-5.707-4.703-5.312zM82.781%2029.998l.016%201.407c-3.027-.24-.33%203.65-2.485%204.578%202.187%201.093-.491%204.907%202.454%204.578l.015%201.422c-5.708.559-1.032-5.1-4.703-5.266v-1.406c3.613-.027-1.119-5.707%204.703-5.313z%22%20fill=%22#fff%22%20stroke=%22#fff%22%20stroke-width=%22.2%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M100%2028h16v16h-16z%22/%3E%3Cpath%20d=%22M103.719%2029.672V42.39h3.031v-1.532h-1.344v-9.625h1.375v-1.562zM112.219%2029.672V42.39h-3.032v-1.532h1.344v-9.625h-1.375v-1.562z%22%20fill=%22#fff%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M124%2028h16v16h-16z%22/%3E%3Cpath%20d=%22M126.282%2041.603h1.79l1.141-2.864h5.654l1.149%202.864h1.765l-4.787-11.161h-1.919z%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M129.727%2037.479l4.609.01-2.305-5.55zM148%2028h16v16h-16z%22%20fill=%22#d3d3d3%22/%3E%3Cpath%20d=%22M156.477%2029.892v2.18l.46%202.398h1.829l.398-2.399v-2.18zM152.516%2029.89v2.18l.46%202.399h1.829l.398-2.399v-2.18z%22%20fill=%22#fff%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M54%2064h12v2H54zM80%2052h3v3h-3zM85%2052h3v3h-3zM80%2058h3v3h-3zM85%2058h3v3h-3zM80%2064h3v3h-3zM85%2064h3v3h-3z%22/%3E%3Ccircle%20cx=%22110.061%22%20cy=%2257.939%22%20r=%224.744%22%20fill=%22none%22%20stroke=%22#4c4c4c%22%20stroke-width=%222%22%20stroke-linecap=%22round%22%20stroke-linejoin=%22round%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M104.966%2059.997l2.99%202.99-4.528%204.53-2.991-2.991z%22/%3E%3Cpath%20d=%22M125%2056l13.77.095L132%2064zM149%2064l13.77-.095L156%2056z%22%20fill=%22#4c4c4c%22%20fill-rule=%22evenodd%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M54%2053h12v2H54z%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M56%2053v13h-2V53zM66%2053v13h-2V53z%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M54%2057h12v1H54z%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M54%2088h12v2H54zM80%2076h3v3h-3zM85%2076h3v3h-3zM80%2082h3v3h-3zM85%2082h3v3h-3zM80%2088h3v3h-3zM85%2088h3v3h-3z%22/%3E%3Ccircle%20r=%224.744%22%20cy=%2281.939%22%20cx=%22110.061%22%20fill=%22none%22%20stroke=%22#d3d3d3%22%20stroke-width=%222%22%20stroke-linecap=%22round%22%20stroke-linejoin=%22round%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M104.965%2083.997l2.991%202.99-4.529%204.53-2.991-2.991z%22/%3E%3Cpath%20d=%22M125%2080l13.77.095L132%2088zM149%2088l13.77-.095L156%2080z%22%20fill=%22#d3d3d3%22%20fill-rule=%22evenodd%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M54%2077h12v2H54z%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M56%2077v13h-2V77zM66%2077v13h-2V77z%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M54%2081h12v1H54z%22/%3E%3Cpath%20fill=%22#fff%22%20fill-opacity=%22.8%22%20d=%22M76%20101h16v2H76zM76%20105h16v2H76zM76%20109h9v2h-9zM76%20125h12v2H76zM76%20137h10v2H76zM82%20129h10v2H82zM82%20133h9v2h-9z%22/%3E%3Cpath%20style=%22line-height:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;block-progression:tb;isolation:auto;mix-blend-mode:normal%22%20d=%22M36.398%20100.025a8.228%208.228%200%200%200-1.265.062%207.861%207.861%200%200%200-4.508%202.227L29%20100.599l-2.324%207.713%207.826-1.906-1.805-1.906a5.026%205.026%200%200%201%205.985-.721%204.915%204.915%200%200%201%202.308%205.55%204.988%204.988%200%200%201-4.83%203.696v3.074c3.55%200%206.71-2.411%207.65-5.941.94-3.53-.618-7.274-3.71-9.07a7.839%207.839%200%200%200-3.702-1.063zM59.723%2099.963a7.834%207.834%200%200%200-3.702%201.062c-3.092%201.797-4.65%205.54-3.71%209.07.94%203.53%204.097%205.942%207.648%205.942v-3.074a4.988%204.988%200%200%201-4.83-3.695%204.915%204.915%200%200%201%202.309-5.551%205.029%205.029%200%200%201%205.986.72l-1.807%201.907%207.828%201.906-2.324-7.713-1.627%201.717a7.856%207.856%200%200%200-4.506-2.229%207.754%207.754%200%200%200-1.265-.062z%22%20color=%22#000%22%20font-weight=%22400%22%20font-family=%22sans-serif%22%20white-space=%22normal%22%20overflow=%22visible%22%20opacity=%22.8%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M10.5%20100v2H8l4%205%204-5h-2.5v-2h-3z%22%20opacity=%22.8%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M4.985%20108.015l14.03-.03M4.985%20132.015l14.03-.03%22%20opacity=%22.8%22%20fill=%22none%22%20stroke=%22#fff%22%20stroke-width=%221.966%22%20stroke-linecap=%22square%22/%3E%3Cpath%20style=%22line-height:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;block-progression:tb;isolation:auto;mix-blend-mode:normal%22%20d=%22M36.398%20123.963a8.228%208.228%200%200%200-1.265.062%207.861%207.861%200%200%200-4.508%202.226L29%20124.538l-2.324%207.713%207.826-1.907-1.805-1.906a5.026%205.026%200%200%201%205.985-.72%204.915%204.915%200%200%201%202.308%205.55%204.988%204.988%200%200%201-4.83%203.695v3.075c3.55%200%206.71-2.41%207.65-5.94.94-3.53-.618-7.275-3.71-9.072a7.84%207.84%200%200%200-3.702-1.063zM59.723%20123.963a7.835%207.835%200%200%200-3.702%201.062c-3.092%201.797-4.65%205.543-3.71%209.073.94%203.53%204.097%205.94%207.648%205.94v-3.075a4.988%204.988%200%200%201-4.83-3.695%204.915%204.915%200%200%201%202.309-5.551%205.029%205.029%200%200%201%205.986.72l-1.807%201.907%207.828%201.906-2.324-7.713-1.627%201.717a7.856%207.856%200%200%200-4.506-2.229%207.754%207.754%200%200%200-1.265-.062z%22%20color=%22#000%22%20font-weight=%22400%22%20font-family=%22sans-serif%22%20white-space=%22normal%22%20overflow=%22visible%22%20opacity=%22.4%22%20fill=%22#4d4d4d%22/%3E%3Cpath%20d=%22M10.5%20116v-2H8l4-5%204%205h-2.5v2h-3zM10.5%20129v-2H8l4-5%204%205h-2.5v2h-3zM10.5%20135v2H8l4%205%204-5h-2.5v-2h-3z%22%20opacity=%22.8%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M16.667%2060.073l-3.833%202.214L9%2064.5v-8.854l3.834%202.214zM31.5%2060.073l3.834%202.214%203.833%202.213v-8.854l-3.833%202.214zM11.934%2088.455l-2.213-3.834-2.214-3.833h8.854l-2.213%203.833zM35.927%2079.333l-2.214%203.833L31.5%2087h8.854l-2.214-3.834z%22%20fill=%22#4d4d4d%22%20fill-opacity=%22.902%22/%3E%3Cpath%20d=%22M171.826%2065.174h16.348L180%2051.826z%22%20fill=%22#fbb917%22%20fill-rule=%22evenodd%22%20stroke=%22#fbb917%22%20stroke-width=%221.652%22%20stroke-linejoin=%22round%22/%3E%3Cpath%20d=%22M179%2055v6h2v-6M179%2062v2h2v-2%22%20fill=%22#fff%22%20fill-rule=%22evenodd%22/%3E%3Cpath%20d=%22M99.994%20113.022l2.006%201.962%207-6.956%203%20.972%202-1%201-2v-3l-3%203-3-3%203-3h-3l-2%201-1%202%20.994%203.022z%22%20fill=%22#fff%22%20fill-opacity=%22.8%22%20fill-rule=%22evenodd%22%20stroke=%22#fff%22%20stroke-linejoin=%22round%22%20stroke-opacity=%22.8%22/%3E%3C/svg%3E") -72px -72px;cursor:move}div.jsoneditor-tree button.jsoneditor-dragarea:hover,div.jsoneditor-tree button.jsoneditor-dragarea:focus,tr.jsoneditor-selected.jsoneditor-first button.jsoneditor-dragarea{background-position:-72px -48px}div.jsoneditor tr,div.jsoneditor th,div.jsoneditor td{padding:0;margin:0}div.jsoneditor td{vertical-align:top}div.jsoneditor td.jsoneditor-tree{vertical-align:top}div.jsoneditor-field,div.jsoneditor-value,div.jsoneditor td,div.jsoneditor th,div.jsoneditor textarea,.jsoneditor-schema-error{font-family:droid sans mono,consolas,monospace,courier new,courier,sans-serif;font-size:10pt;color:#1a1a1a}.jsoneditor-schema-error{cursor:default;display:inline-block;height:24px;line-height:24px;position:relative;text-align:center;width:24px}div.jsoneditor-tree .jsoneditor-schema-error{width:24px;height:24px;padding:0;margin:0 4px 0 0;background:url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"216\" height=\"144\"><path fill=\"#1aae1c%22%20d=%22M4%204h16v16H4z%22/%3E%3Cpath%20fill=%22#ec3f29%22%20fill-opacity=%22.941%22%20d=%22M28%204h16v16H28z%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20d=%22M52%204h16v16H52zM172%204h16v16h-16zM196%204h16v16h-16z%22/%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M7%2011h10v2H7z%22/%3E%3Cpath%20d=%22M11%207h2v10h-2z%22/%3E%3C/g%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M31.757%2014.828l7.071-7.07%201.415%201.414-7.071%207.07z%22/%3E%3Cpath%20d=%22M31.757%209.172l1.415-1.415%207.07%207.071-1.414%201.415z%22/%3E%3C/g%3E%3Cpath%20fill=%22#fff%22%20d=%22M55%207h7v7h-7z%22/%3E%3Cpath%20fill=%22#fff%22%20stroke=%22#4c4c4c%22%20stroke-width=%222%22%20d=%22M58%2010h7v7h-7z%22/%3E%3Cpath%20fill=%22#fff%22%20d=%22M58%2010h7v7h-7z%22/%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M198%2011h8v2h-8zM198%207h12v2h-12zM198%2015h4v2h-4z%22/%3E%3C/g%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M174%2013h8v-2h-8zM174%2017h12v-2h-12zM174%209h4V7h-4z%22/%3E%3C/g%3E%3Cpath%20fill=%22#4c4c4c%22%20d=%22M76%204h16v16H76z%22/%3E%3Cpath%20d=%22M85.104%206.016l-.015%201.406c3.027-.24.33%203.65%202.484%204.578-2.187%201.094.492%204.907-2.453%204.578L85.105%2018c5.708.56%201.032-5.1%204.703-5.265v-1.407c-3.613-.027%201.119-5.707-4.703-5.312zM82.781%205.998l.016%201.407c-3.027-.24-.33%203.65-2.485%204.578%202.187%201.094-.491%204.907%202.454%204.578l.015%201.422c-5.708.559-1.032-5.1-4.703-5.266v-1.406c3.613-.027-1.119-5.707%204.703-5.313z%22%20fill=%22#fff%22%20stroke=%22#fff%22%20stroke-width=%22.2%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20d=%22M100%204h16v16h-16z%22/%3E%3Cpath%20d=%22M103.719%205.672V18.39h3.031v-1.532h-1.344V7.234h1.375V5.672zM112.219%205.672v12.719h-3.032V16.86h1.344V7.235h-1.375V5.672z%22%20fill=%22#fff%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20d=%22M124%204h16v16h-16z%22/%3E%3Cpath%20d=%22M126.282%2017.603h1.79l1.141-2.864h5.654l1.149%202.864h1.765l-4.787-11.161h-1.919z%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M129.727%2013.479l4.609.01-2.305-5.55zM148%204h16v16h-16z%22%20fill=%22#4c4c4c%22/%3E%3Cpath%20d=%22M156.477%205.892v2.18l.46%202.398h1.829l.398-2.399v-2.18zM152.516%205.89v2.18l.46%202.399h1.829l.398-2.399V5.89z%22%20fill=%22#fff%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M4%2028h16v16H4zM28%2028h16v16H28zM52%2028h16v16H52zM172%2028h16v16h-16zM196%2028h16v16h-16z%22/%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M7%2035h10v2H7z%22/%3E%3Cpath%20d=%22M11%2031h2v10h-2z%22/%3E%3C/g%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M31.757%2038.828l7.071-7.07%201.415%201.414-7.071%207.07z%22/%3E%3Cpath%20d=%22M31.757%2033.172l1.415-1.415%207.07%207.071-1.414%201.415z%22/%3E%3C/g%3E%3Cpath%20fill=%22#fff%22%20d=%22M55%2031h7v7h-7z%22/%3E%3Cpath%20fill=%22#fff%22%20stroke=%22#d3d3d3%22%20stroke-width=%222%22%20d=%22M58%2034h7v7h-7z%22/%3E%3Cpath%20fill=%22#fff%22%20d=%22M58%2034h7v7h-7z%22/%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M198%2035h8v2h-8zM198%2031h12v2h-12zM198%2039h4v2h-4z%22/%3E%3C/g%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M174%2037h8v-2h-8zM174%2041h12v-2h-12zM174%2033h4v-2h-4z%22/%3E%3C/g%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M76%2028h16v16H76z%22/%3E%3Cpath%20d=%22M85.104%2030.016l-.015%201.406c3.027-.24.33%203.65%202.484%204.578-2.187%201.094.492%204.907-2.453%204.578L85.105%2042c5.708.559%201.032-5.1%204.703-5.266v-1.406c-3.613-.027%201.119-5.707-4.703-5.312zM82.781%2029.998l.016%201.407c-3.027-.24-.33%203.65-2.485%204.578%202.187%201.093-.491%204.907%202.454%204.578l.015%201.422c-5.708.559-1.032-5.1-4.703-5.266v-1.406c3.613-.027-1.119-5.707%204.703-5.313z%22%20fill=%22#fff%22%20stroke=%22#fff%22%20stroke-width=%22.2%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M100%2028h16v16h-16z%22/%3E%3Cpath%20d=%22M103.719%2029.672V42.39h3.031v-1.532h-1.344v-9.625h1.375v-1.562zM112.219%2029.672V42.39h-3.032v-1.532h1.344v-9.625h-1.375v-1.562z%22%20fill=%22#fff%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M124%2028h16v16h-16z%22/%3E%3Cpath%20d=%22M126.282%2041.603h1.79l1.141-2.864h5.654l1.149%202.864h1.765l-4.787-11.161h-1.919z%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M129.727%2037.479l4.609.01-2.305-5.55zM148%2028h16v16h-16z%22%20fill=%22#d3d3d3%22/%3E%3Cpath%20d=%22M156.477%2029.892v2.18l.46%202.398h1.829l.398-2.399v-2.18zM152.516%2029.89v2.18l.46%202.399h1.829l.398-2.399v-2.18z%22%20fill=%22#fff%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M54%2064h12v2H54zM80%2052h3v3h-3zM85%2052h3v3h-3zM80%2058h3v3h-3zM85%2058h3v3h-3zM80%2064h3v3h-3zM85%2064h3v3h-3z%22/%3E%3Ccircle%20cx=%22110.061%22%20cy=%2257.939%22%20r=%224.744%22%20fill=%22none%22%20stroke=%22#4c4c4c%22%20stroke-width=%222%22%20stroke-linecap=%22round%22%20stroke-linejoin=%22round%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M104.966%2059.997l2.99%202.99-4.528%204.53-2.991-2.991z%22/%3E%3Cpath%20d=%22M125%2056l13.77.095L132%2064zM149%2064l13.77-.095L156%2056z%22%20fill=%22#4c4c4c%22%20fill-rule=%22evenodd%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M54%2053h12v2H54z%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M56%2053v13h-2V53zM66%2053v13h-2V53z%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M54%2057h12v1H54z%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M54%2088h12v2H54zM80%2076h3v3h-3zM85%2076h3v3h-3zM80%2082h3v3h-3zM85%2082h3v3h-3zM80%2088h3v3h-3zM85%2088h3v3h-3z%22/%3E%3Ccircle%20r=%224.744%22%20cy=%2281.939%22%20cx=%22110.061%22%20fill=%22none%22%20stroke=%22#d3d3d3%22%20stroke-width=%222%22%20stroke-linecap=%22round%22%20stroke-linejoin=%22round%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M104.965%2083.997l2.991%202.99-4.529%204.53-2.991-2.991z%22/%3E%3Cpath%20d=%22M125%2080l13.77.095L132%2088zM149%2088l13.77-.095L156%2080z%22%20fill=%22#d3d3d3%22%20fill-rule=%22evenodd%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M54%2077h12v2H54z%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M56%2077v13h-2V77zM66%2077v13h-2V77z%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M54%2081h12v1H54z%22/%3E%3Cpath%20fill=%22#fff%22%20fill-opacity=%22.8%22%20d=%22M76%20101h16v2H76zM76%20105h16v2H76zM76%20109h9v2h-9zM76%20125h12v2H76zM76%20137h10v2H76zM82%20129h10v2H82zM82%20133h9v2h-9z%22/%3E%3Cpath%20style=%22line-height:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;block-progression:tb;isolation:auto;mix-blend-mode:normal%22%20d=%22M36.398%20100.025a8.228%208.228%200%200%200-1.265.062%207.861%207.861%200%200%200-4.508%202.227L29%20100.599l-2.324%207.713%207.826-1.906-1.805-1.906a5.026%205.026%200%200%201%205.985-.721%204.915%204.915%200%200%201%202.308%205.55%204.988%204.988%200%200%201-4.83%203.696v3.074c3.55%200%206.71-2.411%207.65-5.941.94-3.53-.618-7.274-3.71-9.07a7.839%207.839%200%200%200-3.702-1.063zM59.723%2099.963a7.834%207.834%200%200%200-3.702%201.062c-3.092%201.797-4.65%205.54-3.71%209.07.94%203.53%204.097%205.942%207.648%205.942v-3.074a4.988%204.988%200%200%201-4.83-3.695%204.915%204.915%200%200%201%202.309-5.551%205.029%205.029%200%200%201%205.986.72l-1.807%201.907%207.828%201.906-2.324-7.713-1.627%201.717a7.856%207.856%200%200%200-4.506-2.229%207.754%207.754%200%200%200-1.265-.062z%22%20color=%22#000%22%20font-weight=%22400%22%20font-family=%22sans-serif%22%20white-space=%22normal%22%20overflow=%22visible%22%20opacity=%22.8%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M10.5%20100v2H8l4%205%204-5h-2.5v-2h-3z%22%20opacity=%22.8%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M4.985%20108.015l14.03-.03M4.985%20132.015l14.03-.03%22%20opacity=%22.8%22%20fill=%22none%22%20stroke=%22#fff%22%20stroke-width=%221.966%22%20stroke-linecap=%22square%22/%3E%3Cpath%20style=%22line-height:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;block-progression:tb;isolation:auto;mix-blend-mode:normal%22%20d=%22M36.398%20123.963a8.228%208.228%200%200%200-1.265.062%207.861%207.861%200%200%200-4.508%202.226L29%20124.538l-2.324%207.713%207.826-1.907-1.805-1.906a5.026%205.026%200%200%201%205.985-.72%204.915%204.915%200%200%201%202.308%205.55%204.988%204.988%200%200%201-4.83%203.695v3.075c3.55%200%206.71-2.41%207.65-5.94.94-3.53-.618-7.275-3.71-9.072a7.84%207.84%200%200%200-3.702-1.063zM59.723%20123.963a7.835%207.835%200%200%200-3.702%201.062c-3.092%201.797-4.65%205.543-3.71%209.073.94%203.53%204.097%205.94%207.648%205.94v-3.075a4.988%204.988%200%200%201-4.83-3.695%204.915%204.915%200%200%201%202.309-5.551%205.029%205.029%200%200%201%205.986.72l-1.807%201.907%207.828%201.906-2.324-7.713-1.627%201.717a7.856%207.856%200%200%200-4.506-2.229%207.754%207.754%200%200%200-1.265-.062z%22%20color=%22#000%22%20font-weight=%22400%22%20font-family=%22sans-serif%22%20white-space=%22normal%22%20overflow=%22visible%22%20opacity=%22.4%22%20fill=%22#4d4d4d%22/%3E%3Cpath%20d=%22M10.5%20116v-2H8l4-5%204%205h-2.5v2h-3zM10.5%20129v-2H8l4-5%204%205h-2.5v2h-3zM10.5%20135v2H8l4%205%204-5h-2.5v-2h-3z%22%20opacity=%22.8%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M16.667%2060.073l-3.833%202.214L9%2064.5v-8.854l3.834%202.214zM31.5%2060.073l3.834%202.214%203.833%202.213v-8.854l-3.833%202.214zM11.934%2088.455l-2.213-3.834-2.214-3.833h8.854l-2.213%203.833zM35.927%2079.333l-2.214%203.833L31.5%2087h8.854l-2.214-3.834z%22%20fill=%22#4d4d4d%22%20fill-opacity=%22.902%22/%3E%3Cpath%20d=%22M171.826%2065.174h16.348L180%2051.826z%22%20fill=%22#fbb917%22%20fill-rule=%22evenodd%22%20stroke=%22#fbb917%22%20stroke-width=%221.652%22%20stroke-linejoin=%22round%22/%3E%3Cpath%20d=%22M179%2055v6h2v-6M179%2062v2h2v-2%22%20fill=%22#fff%22%20fill-rule=%22evenodd%22/%3E%3Cpath%20d=%22M99.994%20113.022l2.006%201.962%207-6.956%203%20.972%202-1%201-2v-3l-3%203-3-3%203-3h-3l-2%201-1%202%20.994%203.022z%22%20fill=%22#fff%22%20fill-opacity=%22.8%22%20fill-rule=%22evenodd%22%20stroke=%22#fff%22%20stroke-linejoin=%22round%22%20stroke-opacity=%22.8%22/%3E%3C/svg%3E") -168px -48px}.jsoneditor-schema-error .jsoneditor-popover{background-color:#4c4c4c;border-radius:3px;box-shadow:0 0 5px rgba(0,0,0,.4);color:#fff;display:none;padding:7px 10px;position:absolute;width:200px;z-index:4}.jsoneditor-schema-error .jsoneditor-popover.jsoneditor-above{bottom:32px;left:-98px}.jsoneditor-schema-error .jsoneditor-popover.jsoneditor-below{top:32px;left:-98px}.jsoneditor-schema-error .jsoneditor-popover.jsoneditor-left{top:-7px;right:32px}.jsoneditor-schema-error .jsoneditor-popover.jsoneditor-right{top:-7px;left:32px}.jsoneditor-schema-error .jsoneditor-popover:before{border-right:7px solid rgba(0,0,0,0);border-left:7px solid rgba(0,0,0,0);content:"";display:block;left:50%;margin-left:-7px;position:absolute}.jsoneditor-schema-error .jsoneditor-popover.jsoneditor-above:before{border-top:7px solid #4c4c4c;bottom:-7px}.jsoneditor-schema-error .jsoneditor-popover.jsoneditor-below:before{border-bottom:7px solid #4c4c4c;top:-7px}.jsoneditor-schema-error .jsoneditor-popover.jsoneditor-left:before{border-left:7px solid #4c4c4c;border-top:7px solid rgba(0,0,0,0);border-bottom:7px solid rgba(0,0,0,0);content:"";top:19px;right:-14px;left:inherit;margin-left:inherit;margin-top:-7px;position:absolute}.jsoneditor-schema-error .jsoneditor-popover.jsoneditor-right:before{border-right:7px solid #4c4c4c;border-top:7px solid rgba(0,0,0,0);border-bottom:7px solid rgba(0,0,0,0);content:"";top:19px;left:-14px;margin-left:inherit;margin-top:-7px;position:absolute}.jsoneditor-schema-error:hover .jsoneditor-popover,.jsoneditor-schema-error:focus .jsoneditor-popover{display:block;-webkit-animation:fade-in .3s linear 1,move-up .3s linear 1;-moz-animation:fade-in .3s linear 1,move-up .3s linear 1;-ms-animation:fade-in .3s linear 1,move-up .3s linear 1}@-webkit-keyframes fade-in{from{opacity:0}to{opacity:1}}@-moz-keyframes fade-in{from{opacity:0}to{opacity:1}}@-ms-keyframes fade-in{from{opacity:0}to{opacity:1}}.jsoneditor .jsoneditor-text-errors{width:100%;border-collapse:collapse;background-color:#ffef8b;border-top:1px solid gold}.jsoneditor .jsoneditor-text-errors td{padding:3px 6px;vertical-align:middle}.jsoneditor-text-errors .jsoneditor-schema-error{border:none;width:24px;height:24px;padding:0;margin:0 4px 0 0;background:url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"216\" height=\"144\"><path fill=\"#1aae1c%22%20d=%22M4%204h16v16H4z%22/%3E%3Cpath%20fill=%22#ec3f29%22%20fill-opacity=%22.941%22%20d=%22M28%204h16v16H28z%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20d=%22M52%204h16v16H52zM172%204h16v16h-16zM196%204h16v16h-16z%22/%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M7%2011h10v2H7z%22/%3E%3Cpath%20d=%22M11%207h2v10h-2z%22/%3E%3C/g%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M31.757%2014.828l7.071-7.07%201.415%201.414-7.071%207.07z%22/%3E%3Cpath%20d=%22M31.757%209.172l1.415-1.415%207.07%207.071-1.414%201.415z%22/%3E%3C/g%3E%3Cpath%20fill=%22#fff%22%20d=%22M55%207h7v7h-7z%22/%3E%3Cpath%20fill=%22#fff%22%20stroke=%22#4c4c4c%22%20stroke-width=%222%22%20d=%22M58%2010h7v7h-7z%22/%3E%3Cpath%20fill=%22#fff%22%20d=%22M58%2010h7v7h-7z%22/%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M198%2011h8v2h-8zM198%207h12v2h-12zM198%2015h4v2h-4z%22/%3E%3C/g%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M174%2013h8v-2h-8zM174%2017h12v-2h-12zM174%209h4V7h-4z%22/%3E%3C/g%3E%3Cpath%20fill=%22#4c4c4c%22%20d=%22M76%204h16v16H76z%22/%3E%3Cpath%20d=%22M85.104%206.016l-.015%201.406c3.027-.24.33%203.65%202.484%204.578-2.187%201.094.492%204.907-2.453%204.578L85.105%2018c5.708.56%201.032-5.1%204.703-5.265v-1.407c-3.613-.027%201.119-5.707-4.703-5.312zM82.781%205.998l.016%201.407c-3.027-.24-.33%203.65-2.485%204.578%202.187%201.094-.491%204.907%202.454%204.578l.015%201.422c-5.708.559-1.032-5.1-4.703-5.266v-1.406c3.613-.027-1.119-5.707%204.703-5.313z%22%20fill=%22#fff%22%20stroke=%22#fff%22%20stroke-width=%22.2%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20d=%22M100%204h16v16h-16z%22/%3E%3Cpath%20d=%22M103.719%205.672V18.39h3.031v-1.532h-1.344V7.234h1.375V5.672zM112.219%205.672v12.719h-3.032V16.86h1.344V7.235h-1.375V5.672z%22%20fill=%22#fff%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20d=%22M124%204h16v16h-16z%22/%3E%3Cpath%20d=%22M126.282%2017.603h1.79l1.141-2.864h5.654l1.149%202.864h1.765l-4.787-11.161h-1.919z%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M129.727%2013.479l4.609.01-2.305-5.55zM148%204h16v16h-16z%22%20fill=%22#4c4c4c%22/%3E%3Cpath%20d=%22M156.477%205.892v2.18l.46%202.398h1.829l.398-2.399v-2.18zM152.516%205.89v2.18l.46%202.399h1.829l.398-2.399V5.89z%22%20fill=%22#fff%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M4%2028h16v16H4zM28%2028h16v16H28zM52%2028h16v16H52zM172%2028h16v16h-16zM196%2028h16v16h-16z%22/%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M7%2035h10v2H7z%22/%3E%3Cpath%20d=%22M11%2031h2v10h-2z%22/%3E%3C/g%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M31.757%2038.828l7.071-7.07%201.415%201.414-7.071%207.07z%22/%3E%3Cpath%20d=%22M31.757%2033.172l1.415-1.415%207.07%207.071-1.414%201.415z%22/%3E%3C/g%3E%3Cpath%20fill=%22#fff%22%20d=%22M55%2031h7v7h-7z%22/%3E%3Cpath%20fill=%22#fff%22%20stroke=%22#d3d3d3%22%20stroke-width=%222%22%20d=%22M58%2034h7v7h-7z%22/%3E%3Cpath%20fill=%22#fff%22%20d=%22M58%2034h7v7h-7z%22/%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M198%2035h8v2h-8zM198%2031h12v2h-12zM198%2039h4v2h-4z%22/%3E%3C/g%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M174%2037h8v-2h-8zM174%2041h12v-2h-12zM174%2033h4v-2h-4z%22/%3E%3C/g%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M76%2028h16v16H76z%22/%3E%3Cpath%20d=%22M85.104%2030.016l-.015%201.406c3.027-.24.33%203.65%202.484%204.578-2.187%201.094.492%204.907-2.453%204.578L85.105%2042c5.708.559%201.032-5.1%204.703-5.266v-1.406c-3.613-.027%201.119-5.707-4.703-5.312zM82.781%2029.998l.016%201.407c-3.027-.24-.33%203.65-2.485%204.578%202.187%201.093-.491%204.907%202.454%204.578l.015%201.422c-5.708.559-1.032-5.1-4.703-5.266v-1.406c3.613-.027-1.119-5.707%204.703-5.313z%22%20fill=%22#fff%22%20stroke=%22#fff%22%20stroke-width=%22.2%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M100%2028h16v16h-16z%22/%3E%3Cpath%20d=%22M103.719%2029.672V42.39h3.031v-1.532h-1.344v-9.625h1.375v-1.562zM112.219%2029.672V42.39h-3.032v-1.532h1.344v-9.625h-1.375v-1.562z%22%20fill=%22#fff%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M124%2028h16v16h-16z%22/%3E%3Cpath%20d=%22M126.282%2041.603h1.79l1.141-2.864h5.654l1.149%202.864h1.765l-4.787-11.161h-1.919z%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M129.727%2037.479l4.609.01-2.305-5.55zM148%2028h16v16h-16z%22%20fill=%22#d3d3d3%22/%3E%3Cpath%20d=%22M156.477%2029.892v2.18l.46%202.398h1.829l.398-2.399v-2.18zM152.516%2029.89v2.18l.46%202.399h1.829l.398-2.399v-2.18z%22%20fill=%22#fff%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M54%2064h12v2H54zM80%2052h3v3h-3zM85%2052h3v3h-3zM80%2058h3v3h-3zM85%2058h3v3h-3zM80%2064h3v3h-3zM85%2064h3v3h-3z%22/%3E%3Ccircle%20cx=%22110.061%22%20cy=%2257.939%22%20r=%224.744%22%20fill=%22none%22%20stroke=%22#4c4c4c%22%20stroke-width=%222%22%20stroke-linecap=%22round%22%20stroke-linejoin=%22round%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M104.966%2059.997l2.99%202.99-4.528%204.53-2.991-2.991z%22/%3E%3Cpath%20d=%22M125%2056l13.77.095L132%2064zM149%2064l13.77-.095L156%2056z%22%20fill=%22#4c4c4c%22%20fill-rule=%22evenodd%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M54%2053h12v2H54z%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M56%2053v13h-2V53zM66%2053v13h-2V53z%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M54%2057h12v1H54z%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M54%2088h12v2H54zM80%2076h3v3h-3zM85%2076h3v3h-3zM80%2082h3v3h-3zM85%2082h3v3h-3zM80%2088h3v3h-3zM85%2088h3v3h-3z%22/%3E%3Ccircle%20r=%224.744%22%20cy=%2281.939%22%20cx=%22110.061%22%20fill=%22none%22%20stroke=%22#d3d3d3%22%20stroke-width=%222%22%20stroke-linecap=%22round%22%20stroke-linejoin=%22round%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M104.965%2083.997l2.991%202.99-4.529%204.53-2.991-2.991z%22/%3E%3Cpath%20d=%22M125%2080l13.77.095L132%2088zM149%2088l13.77-.095L156%2080z%22%20fill=%22#d3d3d3%22%20fill-rule=%22evenodd%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M54%2077h12v2H54z%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M56%2077v13h-2V77zM66%2077v13h-2V77z%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M54%2081h12v1H54z%22/%3E%3Cpath%20fill=%22#fff%22%20fill-opacity=%22.8%22%20d=%22M76%20101h16v2H76zM76%20105h16v2H76zM76%20109h9v2h-9zM76%20125h12v2H76zM76%20137h10v2H76zM82%20129h10v2H82zM82%20133h9v2h-9z%22/%3E%3Cpath%20style=%22line-height:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;block-progression:tb;isolation:auto;mix-blend-mode:normal%22%20d=%22M36.398%20100.025a8.228%208.228%200%200%200-1.265.062%207.861%207.861%200%200%200-4.508%202.227L29%20100.599l-2.324%207.713%207.826-1.906-1.805-1.906a5.026%205.026%200%200%201%205.985-.721%204.915%204.915%200%200%201%202.308%205.55%204.988%204.988%200%200%201-4.83%203.696v3.074c3.55%200%206.71-2.411%207.65-5.941.94-3.53-.618-7.274-3.71-9.07a7.839%207.839%200%200%200-3.702-1.063zM59.723%2099.963a7.834%207.834%200%200%200-3.702%201.062c-3.092%201.797-4.65%205.54-3.71%209.07.94%203.53%204.097%205.942%207.648%205.942v-3.074a4.988%204.988%200%200%201-4.83-3.695%204.915%204.915%200%200%201%202.309-5.551%205.029%205.029%200%200%201%205.986.72l-1.807%201.907%207.828%201.906-2.324-7.713-1.627%201.717a7.856%207.856%200%200%200-4.506-2.229%207.754%207.754%200%200%200-1.265-.062z%22%20color=%22#000%22%20font-weight=%22400%22%20font-family=%22sans-serif%22%20white-space=%22normal%22%20overflow=%22visible%22%20opacity=%22.8%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M10.5%20100v2H8l4%205%204-5h-2.5v-2h-3z%22%20opacity=%22.8%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M4.985%20108.015l14.03-.03M4.985%20132.015l14.03-.03%22%20opacity=%22.8%22%20fill=%22none%22%20stroke=%22#fff%22%20stroke-width=%221.966%22%20stroke-linecap=%22square%22/%3E%3Cpath%20style=%22line-height:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;block-progression:tb;isolation:auto;mix-blend-mode:normal%22%20d=%22M36.398%20123.963a8.228%208.228%200%200%200-1.265.062%207.861%207.861%200%200%200-4.508%202.226L29%20124.538l-2.324%207.713%207.826-1.907-1.805-1.906a5.026%205.026%200%200%201%205.985-.72%204.915%204.915%200%200%201%202.308%205.55%204.988%204.988%200%200%201-4.83%203.695v3.075c3.55%200%206.71-2.41%207.65-5.94.94-3.53-.618-7.275-3.71-9.072a7.84%207.84%200%200%200-3.702-1.063zM59.723%20123.963a7.835%207.835%200%200%200-3.702%201.062c-3.092%201.797-4.65%205.543-3.71%209.073.94%203.53%204.097%205.94%207.648%205.94v-3.075a4.988%204.988%200%200%201-4.83-3.695%204.915%204.915%200%200%201%202.309-5.551%205.029%205.029%200%200%201%205.986.72l-1.807%201.907%207.828%201.906-2.324-7.713-1.627%201.717a7.856%207.856%200%200%200-4.506-2.229%207.754%207.754%200%200%200-1.265-.062z%22%20color=%22#000%22%20font-weight=%22400%22%20font-family=%22sans-serif%22%20white-space=%22normal%22%20overflow=%22visible%22%20opacity=%22.4%22%20fill=%22#4d4d4d%22/%3E%3Cpath%20d=%22M10.5%20116v-2H8l4-5%204%205h-2.5v2h-3zM10.5%20129v-2H8l4-5%204%205h-2.5v2h-3zM10.5%20135v2H8l4%205%204-5h-2.5v-2h-3z%22%20opacity=%22.8%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M16.667%2060.073l-3.833%202.214L9%2064.5v-8.854l3.834%202.214zM31.5%2060.073l3.834%202.214%203.833%202.213v-8.854l-3.833%202.214zM11.934%2088.455l-2.213-3.834-2.214-3.833h8.854l-2.213%203.833zM35.927%2079.333l-2.214%203.833L31.5%2087h8.854l-2.214-3.834z%22%20fill=%22#4d4d4d%22%20fill-opacity=%22.902%22/%3E%3Cpath%20d=%22M171.826%2065.174h16.348L180%2051.826z%22%20fill=%22#fbb917%22%20fill-rule=%22evenodd%22%20stroke=%22#fbb917%22%20stroke-width=%221.652%22%20stroke-linejoin=%22round%22/%3E%3Cpath%20d=%22M179%2055v6h2v-6M179%2062v2h2v-2%22%20fill=%22#fff%22%20fill-rule=%22evenodd%22/%3E%3Cpath%20d=%22M99.994%20113.022l2.006%201.962%207-6.956%203%20.972%202-1%201-2v-3l-3%203-3-3%203-3h-3l-2%201-1%202%20.994%203.022z%22%20fill=%22#fff%22%20fill-opacity=%22.8%22%20fill-rule=%22evenodd%22%20stroke=%22#fff%22%20stroke-linejoin=%22round%22%20stroke-opacity=%22.8%22/%3E%3C/svg%3E") -168px -48px}div.jsoneditor-contextmenu-root{position:relative;width:0;height:0}div.jsoneditor-contextmenu{position:absolute;box-sizing:content-box;z-index:99999}div.jsoneditor-contextmenu ul,div.jsoneditor-contextmenu li{box-sizing:content-box;position:relative}div.jsoneditor-contextmenu ul{position:relative;left:0;top:0;width:128px;background:#fff;border:1px solid #d3d3d3;box-shadow:2px 2px 12px rgba(128,128,128,.3);list-style:none;margin:0;padding:0}div.jsoneditor-contextmenu ul li button{position:relative;padding:0 4px 0 0;margin:0;width:128px;height:auto;border:none;cursor:pointer;color:#4d4d4d;background:rgba(0,0,0,0);font-size:10pt;font-family:arial,sans-serif;box-sizing:border-box;text-align:left}div.jsoneditor-contextmenu ul li button::-moz-focus-inner{padding:0;border:0}div.jsoneditor-contextmenu ul li button:hover,div.jsoneditor-contextmenu ul li button:focus{color:#1a1a1a;background-color:#f5f5f5;outline:none}div.jsoneditor-contextmenu ul li button.jsoneditor-default{width:96px}div.jsoneditor-contextmenu ul li button.jsoneditor-expand{float:right;width:32px;height:24px;border-left:1px solid #e5e5e5}div.jsoneditor-contextmenu div.jsoneditor-icon{position:absolute;top:0;left:0;width:24px;height:24px;border:none;padding:0;margin:0;background-image:url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"216\" height=\"144\"><path fill=\"#1aae1c%22%20d=%22M4%204h16v16H4z%22/%3E%3Cpath%20fill=%22#ec3f29%22%20fill-opacity=%22.941%22%20d=%22M28%204h16v16H28z%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20d=%22M52%204h16v16H52zM172%204h16v16h-16zM196%204h16v16h-16z%22/%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M7%2011h10v2H7z%22/%3E%3Cpath%20d=%22M11%207h2v10h-2z%22/%3E%3C/g%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M31.757%2014.828l7.071-7.07%201.415%201.414-7.071%207.07z%22/%3E%3Cpath%20d=%22M31.757%209.172l1.415-1.415%207.07%207.071-1.414%201.415z%22/%3E%3C/g%3E%3Cpath%20fill=%22#fff%22%20d=%22M55%207h7v7h-7z%22/%3E%3Cpath%20fill=%22#fff%22%20stroke=%22#4c4c4c%22%20stroke-width=%222%22%20d=%22M58%2010h7v7h-7z%22/%3E%3Cpath%20fill=%22#fff%22%20d=%22M58%2010h7v7h-7z%22/%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M198%2011h8v2h-8zM198%207h12v2h-12zM198%2015h4v2h-4z%22/%3E%3C/g%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M174%2013h8v-2h-8zM174%2017h12v-2h-12zM174%209h4V7h-4z%22/%3E%3C/g%3E%3Cpath%20fill=%22#4c4c4c%22%20d=%22M76%204h16v16H76z%22/%3E%3Cpath%20d=%22M85.104%206.016l-.015%201.406c3.027-.24.33%203.65%202.484%204.578-2.187%201.094.492%204.907-2.453%204.578L85.105%2018c5.708.56%201.032-5.1%204.703-5.265v-1.407c-3.613-.027%201.119-5.707-4.703-5.312zM82.781%205.998l.016%201.407c-3.027-.24-.33%203.65-2.485%204.578%202.187%201.094-.491%204.907%202.454%204.578l.015%201.422c-5.708.559-1.032-5.1-4.703-5.266v-1.406c3.613-.027-1.119-5.707%204.703-5.313z%22%20fill=%22#fff%22%20stroke=%22#fff%22%20stroke-width=%22.2%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20d=%22M100%204h16v16h-16z%22/%3E%3Cpath%20d=%22M103.719%205.672V18.39h3.031v-1.532h-1.344V7.234h1.375V5.672zM112.219%205.672v12.719h-3.032V16.86h1.344V7.235h-1.375V5.672z%22%20fill=%22#fff%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20d=%22M124%204h16v16h-16z%22/%3E%3Cpath%20d=%22M126.282%2017.603h1.79l1.141-2.864h5.654l1.149%202.864h1.765l-4.787-11.161h-1.919z%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M129.727%2013.479l4.609.01-2.305-5.55zM148%204h16v16h-16z%22%20fill=%22#4c4c4c%22/%3E%3Cpath%20d=%22M156.477%205.892v2.18l.46%202.398h1.829l.398-2.399v-2.18zM152.516%205.89v2.18l.46%202.399h1.829l.398-2.399V5.89z%22%20fill=%22#fff%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M4%2028h16v16H4zM28%2028h16v16H28zM52%2028h16v16H52zM172%2028h16v16h-16zM196%2028h16v16h-16z%22/%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M7%2035h10v2H7z%22/%3E%3Cpath%20d=%22M11%2031h2v10h-2z%22/%3E%3C/g%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M31.757%2038.828l7.071-7.07%201.415%201.414-7.071%207.07z%22/%3E%3Cpath%20d=%22M31.757%2033.172l1.415-1.415%207.07%207.071-1.414%201.415z%22/%3E%3C/g%3E%3Cpath%20fill=%22#fff%22%20d=%22M55%2031h7v7h-7z%22/%3E%3Cpath%20fill=%22#fff%22%20stroke=%22#d3d3d3%22%20stroke-width=%222%22%20d=%22M58%2034h7v7h-7z%22/%3E%3Cpath%20fill=%22#fff%22%20d=%22M58%2034h7v7h-7z%22/%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M198%2035h8v2h-8zM198%2031h12v2h-12zM198%2039h4v2h-4z%22/%3E%3C/g%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M174%2037h8v-2h-8zM174%2041h12v-2h-12zM174%2033h4v-2h-4z%22/%3E%3C/g%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M76%2028h16v16H76z%22/%3E%3Cpath%20d=%22M85.104%2030.016l-.015%201.406c3.027-.24.33%203.65%202.484%204.578-2.187%201.094.492%204.907-2.453%204.578L85.105%2042c5.708.559%201.032-5.1%204.703-5.266v-1.406c-3.613-.027%201.119-5.707-4.703-5.312zM82.781%2029.998l.016%201.407c-3.027-.24-.33%203.65-2.485%204.578%202.187%201.093-.491%204.907%202.454%204.578l.015%201.422c-5.708.559-1.032-5.1-4.703-5.266v-1.406c3.613-.027-1.119-5.707%204.703-5.313z%22%20fill=%22#fff%22%20stroke=%22#fff%22%20stroke-width=%22.2%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M100%2028h16v16h-16z%22/%3E%3Cpath%20d=%22M103.719%2029.672V42.39h3.031v-1.532h-1.344v-9.625h1.375v-1.562zM112.219%2029.672V42.39h-3.032v-1.532h1.344v-9.625h-1.375v-1.562z%22%20fill=%22#fff%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M124%2028h16v16h-16z%22/%3E%3Cpath%20d=%22M126.282%2041.603h1.79l1.141-2.864h5.654l1.149%202.864h1.765l-4.787-11.161h-1.919z%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M129.727%2037.479l4.609.01-2.305-5.55zM148%2028h16v16h-16z%22%20fill=%22#d3d3d3%22/%3E%3Cpath%20d=%22M156.477%2029.892v2.18l.46%202.398h1.829l.398-2.399v-2.18zM152.516%2029.89v2.18l.46%202.399h1.829l.398-2.399v-2.18z%22%20fill=%22#fff%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M54%2064h12v2H54zM80%2052h3v3h-3zM85%2052h3v3h-3zM80%2058h3v3h-3zM85%2058h3v3h-3zM80%2064h3v3h-3zM85%2064h3v3h-3z%22/%3E%3Ccircle%20cx=%22110.061%22%20cy=%2257.939%22%20r=%224.744%22%20fill=%22none%22%20stroke=%22#4c4c4c%22%20stroke-width=%222%22%20stroke-linecap=%22round%22%20stroke-linejoin=%22round%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M104.966%2059.997l2.99%202.99-4.528%204.53-2.991-2.991z%22/%3E%3Cpath%20d=%22M125%2056l13.77.095L132%2064zM149%2064l13.77-.095L156%2056z%22%20fill=%22#4c4c4c%22%20fill-rule=%22evenodd%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M54%2053h12v2H54z%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M56%2053v13h-2V53zM66%2053v13h-2V53z%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M54%2057h12v1H54z%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M54%2088h12v2H54zM80%2076h3v3h-3zM85%2076h3v3h-3zM80%2082h3v3h-3zM85%2082h3v3h-3zM80%2088h3v3h-3zM85%2088h3v3h-3z%22/%3E%3Ccircle%20r=%224.744%22%20cy=%2281.939%22%20cx=%22110.061%22%20fill=%22none%22%20stroke=%22#d3d3d3%22%20stroke-width=%222%22%20stroke-linecap=%22round%22%20stroke-linejoin=%22round%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M104.965%2083.997l2.991%202.99-4.529%204.53-2.991-2.991z%22/%3E%3Cpath%20d=%22M125%2080l13.77.095L132%2088zM149%2088l13.77-.095L156%2080z%22%20fill=%22#d3d3d3%22%20fill-rule=%22evenodd%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M54%2077h12v2H54z%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M56%2077v13h-2V77zM66%2077v13h-2V77z%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M54%2081h12v1H54z%22/%3E%3Cpath%20fill=%22#fff%22%20fill-opacity=%22.8%22%20d=%22M76%20101h16v2H76zM76%20105h16v2H76zM76%20109h9v2h-9zM76%20125h12v2H76zM76%20137h10v2H76zM82%20129h10v2H82zM82%20133h9v2h-9z%22/%3E%3Cpath%20style=%22line-height:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;block-progression:tb;isolation:auto;mix-blend-mode:normal%22%20d=%22M36.398%20100.025a8.228%208.228%200%200%200-1.265.062%207.861%207.861%200%200%200-4.508%202.227L29%20100.599l-2.324%207.713%207.826-1.906-1.805-1.906a5.026%205.026%200%200%201%205.985-.721%204.915%204.915%200%200%201%202.308%205.55%204.988%204.988%200%200%201-4.83%203.696v3.074c3.55%200%206.71-2.411%207.65-5.941.94-3.53-.618-7.274-3.71-9.07a7.839%207.839%200%200%200-3.702-1.063zM59.723%2099.963a7.834%207.834%200%200%200-3.702%201.062c-3.092%201.797-4.65%205.54-3.71%209.07.94%203.53%204.097%205.942%207.648%205.942v-3.074a4.988%204.988%200%200%201-4.83-3.695%204.915%204.915%200%200%201%202.309-5.551%205.029%205.029%200%200%201%205.986.72l-1.807%201.907%207.828%201.906-2.324-7.713-1.627%201.717a7.856%207.856%200%200%200-4.506-2.229%207.754%207.754%200%200%200-1.265-.062z%22%20color=%22#000%22%20font-weight=%22400%22%20font-family=%22sans-serif%22%20white-space=%22normal%22%20overflow=%22visible%22%20opacity=%22.8%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M10.5%20100v2H8l4%205%204-5h-2.5v-2h-3z%22%20opacity=%22.8%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M4.985%20108.015l14.03-.03M4.985%20132.015l14.03-.03%22%20opacity=%22.8%22%20fill=%22none%22%20stroke=%22#fff%22%20stroke-width=%221.966%22%20stroke-linecap=%22square%22/%3E%3Cpath%20style=%22line-height:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;block-progression:tb;isolation:auto;mix-blend-mode:normal%22%20d=%22M36.398%20123.963a8.228%208.228%200%200%200-1.265.062%207.861%207.861%200%200%200-4.508%202.226L29%20124.538l-2.324%207.713%207.826-1.907-1.805-1.906a5.026%205.026%200%200%201%205.985-.72%204.915%204.915%200%200%201%202.308%205.55%204.988%204.988%200%200%201-4.83%203.695v3.075c3.55%200%206.71-2.41%207.65-5.94.94-3.53-.618-7.275-3.71-9.072a7.84%207.84%200%200%200-3.702-1.063zM59.723%20123.963a7.835%207.835%200%200%200-3.702%201.062c-3.092%201.797-4.65%205.543-3.71%209.073.94%203.53%204.097%205.94%207.648%205.94v-3.075a4.988%204.988%200%200%201-4.83-3.695%204.915%204.915%200%200%201%202.309-5.551%205.029%205.029%200%200%201%205.986.72l-1.807%201.907%207.828%201.906-2.324-7.713-1.627%201.717a7.856%207.856%200%200%200-4.506-2.229%207.754%207.754%200%200%200-1.265-.062z%22%20color=%22#000%22%20font-weight=%22400%22%20font-family=%22sans-serif%22%20white-space=%22normal%22%20overflow=%22visible%22%20opacity=%22.4%22%20fill=%22#4d4d4d%22/%3E%3Cpath%20d=%22M10.5%20116v-2H8l4-5%204%205h-2.5v2h-3zM10.5%20129v-2H8l4-5%204%205h-2.5v2h-3zM10.5%20135v2H8l4%205%204-5h-2.5v-2h-3z%22%20opacity=%22.8%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M16.667%2060.073l-3.833%202.214L9%2064.5v-8.854l3.834%202.214zM31.5%2060.073l3.834%202.214%203.833%202.213v-8.854l-3.833%202.214zM11.934%2088.455l-2.213-3.834-2.214-3.833h8.854l-2.213%203.833zM35.927%2079.333l-2.214%203.833L31.5%2087h8.854l-2.214-3.834z%22%20fill=%22#4d4d4d%22%20fill-opacity=%22.902%22/%3E%3Cpath%20d=%22M171.826%2065.174h16.348L180%2051.826z%22%20fill=%22#fbb917%22%20fill-rule=%22evenodd%22%20stroke=%22#fbb917%22%20stroke-width=%221.652%22%20stroke-linejoin=%22round%22/%3E%3Cpath%20d=%22M179%2055v6h2v-6M179%2062v2h2v-2%22%20fill=%22#fff%22%20fill-rule=%22evenodd%22/%3E%3Cpath%20d=%22M99.994%20113.022l2.006%201.962%207-6.956%203%20.972%202-1%201-2v-3l-3%203-3-3%203-3h-3l-2%201-1%202%20.994%203.022z%22%20fill=%22#fff%22%20fill-opacity=%22.8%22%20fill-rule=%22evenodd%22%20stroke=%22#fff%22%20stroke-linejoin=%22round%22%20stroke-opacity=%22.8%22/%3E%3C/svg%3E")}div.jsoneditor-contextmenu ul li ul div.jsoneditor-icon{margin-left:24px}div.jsoneditor-contextmenu div.jsoneditor-text{padding:4px 0 4px 24px;word-wrap:break-word}div.jsoneditor-contextmenu div.jsoneditor-text.jsoneditor-right-margin{padding-right:24px}div.jsoneditor-contextmenu ul li button div.jsoneditor-expand{position:absolute;top:0;right:0;width:24px;height:24px;padding:0;margin:0 4px 0 0;background:url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"216\" height=\"144\"><path fill=\"#1aae1c%22%20d=%22M4%204h16v16H4z%22/%3E%3Cpath%20fill=%22#ec3f29%22%20fill-opacity=%22.941%22%20d=%22M28%204h16v16H28z%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20d=%22M52%204h16v16H52zM172%204h16v16h-16zM196%204h16v16h-16z%22/%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M7%2011h10v2H7z%22/%3E%3Cpath%20d=%22M11%207h2v10h-2z%22/%3E%3C/g%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M31.757%2014.828l7.071-7.07%201.415%201.414-7.071%207.07z%22/%3E%3Cpath%20d=%22M31.757%209.172l1.415-1.415%207.07%207.071-1.414%201.415z%22/%3E%3C/g%3E%3Cpath%20fill=%22#fff%22%20d=%22M55%207h7v7h-7z%22/%3E%3Cpath%20fill=%22#fff%22%20stroke=%22#4c4c4c%22%20stroke-width=%222%22%20d=%22M58%2010h7v7h-7z%22/%3E%3Cpath%20fill=%22#fff%22%20d=%22M58%2010h7v7h-7z%22/%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M198%2011h8v2h-8zM198%207h12v2h-12zM198%2015h4v2h-4z%22/%3E%3C/g%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M174%2013h8v-2h-8zM174%2017h12v-2h-12zM174%209h4V7h-4z%22/%3E%3C/g%3E%3Cpath%20fill=%22#4c4c4c%22%20d=%22M76%204h16v16H76z%22/%3E%3Cpath%20d=%22M85.104%206.016l-.015%201.406c3.027-.24.33%203.65%202.484%204.578-2.187%201.094.492%204.907-2.453%204.578L85.105%2018c5.708.56%201.032-5.1%204.703-5.265v-1.407c-3.613-.027%201.119-5.707-4.703-5.312zM82.781%205.998l.016%201.407c-3.027-.24-.33%203.65-2.485%204.578%202.187%201.094-.491%204.907%202.454%204.578l.015%201.422c-5.708.559-1.032-5.1-4.703-5.266v-1.406c3.613-.027-1.119-5.707%204.703-5.313z%22%20fill=%22#fff%22%20stroke=%22#fff%22%20stroke-width=%22.2%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20d=%22M100%204h16v16h-16z%22/%3E%3Cpath%20d=%22M103.719%205.672V18.39h3.031v-1.532h-1.344V7.234h1.375V5.672zM112.219%205.672v12.719h-3.032V16.86h1.344V7.235h-1.375V5.672z%22%20fill=%22#fff%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20d=%22M124%204h16v16h-16z%22/%3E%3Cpath%20d=%22M126.282%2017.603h1.79l1.141-2.864h5.654l1.149%202.864h1.765l-4.787-11.161h-1.919z%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M129.727%2013.479l4.609.01-2.305-5.55zM148%204h16v16h-16z%22%20fill=%22#4c4c4c%22/%3E%3Cpath%20d=%22M156.477%205.892v2.18l.46%202.398h1.829l.398-2.399v-2.18zM152.516%205.89v2.18l.46%202.399h1.829l.398-2.399V5.89z%22%20fill=%22#fff%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M4%2028h16v16H4zM28%2028h16v16H28zM52%2028h16v16H52zM172%2028h16v16h-16zM196%2028h16v16h-16z%22/%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M7%2035h10v2H7z%22/%3E%3Cpath%20d=%22M11%2031h2v10h-2z%22/%3E%3C/g%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M31.757%2038.828l7.071-7.07%201.415%201.414-7.071%207.07z%22/%3E%3Cpath%20d=%22M31.757%2033.172l1.415-1.415%207.07%207.071-1.414%201.415z%22/%3E%3C/g%3E%3Cpath%20fill=%22#fff%22%20d=%22M55%2031h7v7h-7z%22/%3E%3Cpath%20fill=%22#fff%22%20stroke=%22#d3d3d3%22%20stroke-width=%222%22%20d=%22M58%2034h7v7h-7z%22/%3E%3Cpath%20fill=%22#fff%22%20d=%22M58%2034h7v7h-7z%22/%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M198%2035h8v2h-8zM198%2031h12v2h-12zM198%2039h4v2h-4z%22/%3E%3C/g%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M174%2037h8v-2h-8zM174%2041h12v-2h-12zM174%2033h4v-2h-4z%22/%3E%3C/g%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M76%2028h16v16H76z%22/%3E%3Cpath%20d=%22M85.104%2030.016l-.015%201.406c3.027-.24.33%203.65%202.484%204.578-2.187%201.094.492%204.907-2.453%204.578L85.105%2042c5.708.559%201.032-5.1%204.703-5.266v-1.406c-3.613-.027%201.119-5.707-4.703-5.312zM82.781%2029.998l.016%201.407c-3.027-.24-.33%203.65-2.485%204.578%202.187%201.093-.491%204.907%202.454%204.578l.015%201.422c-5.708.559-1.032-5.1-4.703-5.266v-1.406c3.613-.027-1.119-5.707%204.703-5.313z%22%20fill=%22#fff%22%20stroke=%22#fff%22%20stroke-width=%22.2%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M100%2028h16v16h-16z%22/%3E%3Cpath%20d=%22M103.719%2029.672V42.39h3.031v-1.532h-1.344v-9.625h1.375v-1.562zM112.219%2029.672V42.39h-3.032v-1.532h1.344v-9.625h-1.375v-1.562z%22%20fill=%22#fff%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M124%2028h16v16h-16z%22/%3E%3Cpath%20d=%22M126.282%2041.603h1.79l1.141-2.864h5.654l1.149%202.864h1.765l-4.787-11.161h-1.919z%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M129.727%2037.479l4.609.01-2.305-5.55zM148%2028h16v16h-16z%22%20fill=%22#d3d3d3%22/%3E%3Cpath%20d=%22M156.477%2029.892v2.18l.46%202.398h1.829l.398-2.399v-2.18zM152.516%2029.89v2.18l.46%202.399h1.829l.398-2.399v-2.18z%22%20fill=%22#fff%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M54%2064h12v2H54zM80%2052h3v3h-3zM85%2052h3v3h-3zM80%2058h3v3h-3zM85%2058h3v3h-3zM80%2064h3v3h-3zM85%2064h3v3h-3z%22/%3E%3Ccircle%20cx=%22110.061%22%20cy=%2257.939%22%20r=%224.744%22%20fill=%22none%22%20stroke=%22#4c4c4c%22%20stroke-width=%222%22%20stroke-linecap=%22round%22%20stroke-linejoin=%22round%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M104.966%2059.997l2.99%202.99-4.528%204.53-2.991-2.991z%22/%3E%3Cpath%20d=%22M125%2056l13.77.095L132%2064zM149%2064l13.77-.095L156%2056z%22%20fill=%22#4c4c4c%22%20fill-rule=%22evenodd%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M54%2053h12v2H54z%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M56%2053v13h-2V53zM66%2053v13h-2V53z%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M54%2057h12v1H54z%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M54%2088h12v2H54zM80%2076h3v3h-3zM85%2076h3v3h-3zM80%2082h3v3h-3zM85%2082h3v3h-3zM80%2088h3v3h-3zM85%2088h3v3h-3z%22/%3E%3Ccircle%20r=%224.744%22%20cy=%2281.939%22%20cx=%22110.061%22%20fill=%22none%22%20stroke=%22#d3d3d3%22%20stroke-width=%222%22%20stroke-linecap=%22round%22%20stroke-linejoin=%22round%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M104.965%2083.997l2.991%202.99-4.529%204.53-2.991-2.991z%22/%3E%3Cpath%20d=%22M125%2080l13.77.095L132%2088zM149%2088l13.77-.095L156%2080z%22%20fill=%22#d3d3d3%22%20fill-rule=%22evenodd%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M54%2077h12v2H54z%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M56%2077v13h-2V77zM66%2077v13h-2V77z%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M54%2081h12v1H54z%22/%3E%3Cpath%20fill=%22#fff%22%20fill-opacity=%22.8%22%20d=%22M76%20101h16v2H76zM76%20105h16v2H76zM76%20109h9v2h-9zM76%20125h12v2H76zM76%20137h10v2H76zM82%20129h10v2H82zM82%20133h9v2h-9z%22/%3E%3Cpath%20style=%22line-height:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;block-progression:tb;isolation:auto;mix-blend-mode:normal%22%20d=%22M36.398%20100.025a8.228%208.228%200%200%200-1.265.062%207.861%207.861%200%200%200-4.508%202.227L29%20100.599l-2.324%207.713%207.826-1.906-1.805-1.906a5.026%205.026%200%200%201%205.985-.721%204.915%204.915%200%200%201%202.308%205.55%204.988%204.988%200%200%201-4.83%203.696v3.074c3.55%200%206.71-2.411%207.65-5.941.94-3.53-.618-7.274-3.71-9.07a7.839%207.839%200%200%200-3.702-1.063zM59.723%2099.963a7.834%207.834%200%200%200-3.702%201.062c-3.092%201.797-4.65%205.54-3.71%209.07.94%203.53%204.097%205.942%207.648%205.942v-3.074a4.988%204.988%200%200%201-4.83-3.695%204.915%204.915%200%200%201%202.309-5.551%205.029%205.029%200%200%201%205.986.72l-1.807%201.907%207.828%201.906-2.324-7.713-1.627%201.717a7.856%207.856%200%200%200-4.506-2.229%207.754%207.754%200%200%200-1.265-.062z%22%20color=%22#000%22%20font-weight=%22400%22%20font-family=%22sans-serif%22%20white-space=%22normal%22%20overflow=%22visible%22%20opacity=%22.8%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M10.5%20100v2H8l4%205%204-5h-2.5v-2h-3z%22%20opacity=%22.8%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M4.985%20108.015l14.03-.03M4.985%20132.015l14.03-.03%22%20opacity=%22.8%22%20fill=%22none%22%20stroke=%22#fff%22%20stroke-width=%221.966%22%20stroke-linecap=%22square%22/%3E%3Cpath%20style=%22line-height:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;block-progression:tb;isolation:auto;mix-blend-mode:normal%22%20d=%22M36.398%20123.963a8.228%208.228%200%200%200-1.265.062%207.861%207.861%200%200%200-4.508%202.226L29%20124.538l-2.324%207.713%207.826-1.907-1.805-1.906a5.026%205.026%200%200%201%205.985-.72%204.915%204.915%200%200%201%202.308%205.55%204.988%204.988%200%200%201-4.83%203.695v3.075c3.55%200%206.71-2.41%207.65-5.94.94-3.53-.618-7.275-3.71-9.072a7.84%207.84%200%200%200-3.702-1.063zM59.723%20123.963a7.835%207.835%200%200%200-3.702%201.062c-3.092%201.797-4.65%205.543-3.71%209.073.94%203.53%204.097%205.94%207.648%205.94v-3.075a4.988%204.988%200%200%201-4.83-3.695%204.915%204.915%200%200%201%202.309-5.551%205.029%205.029%200%200%201%205.986.72l-1.807%201.907%207.828%201.906-2.324-7.713-1.627%201.717a7.856%207.856%200%200%200-4.506-2.229%207.754%207.754%200%200%200-1.265-.062z%22%20color=%22#000%22%20font-weight=%22400%22%20font-family=%22sans-serif%22%20white-space=%22normal%22%20overflow=%22visible%22%20opacity=%22.4%22%20fill=%22#4d4d4d%22/%3E%3Cpath%20d=%22M10.5%20116v-2H8l4-5%204%205h-2.5v2h-3zM10.5%20129v-2H8l4-5%204%205h-2.5v2h-3zM10.5%20135v2H8l4%205%204-5h-2.5v-2h-3z%22%20opacity=%22.8%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M16.667%2060.073l-3.833%202.214L9%2064.5v-8.854l3.834%202.214zM31.5%2060.073l3.834%202.214%203.833%202.213v-8.854l-3.833%202.214zM11.934%2088.455l-2.213-3.834-2.214-3.833h8.854l-2.213%203.833zM35.927%2079.333l-2.214%203.833L31.5%2087h8.854l-2.214-3.834z%22%20fill=%22#4d4d4d%22%20fill-opacity=%22.902%22/%3E%3Cpath%20d=%22M171.826%2065.174h16.348L180%2051.826z%22%20fill=%22#fbb917%22%20fill-rule=%22evenodd%22%20stroke=%22#fbb917%22%20stroke-width=%221.652%22%20stroke-linejoin=%22round%22/%3E%3Cpath%20d=%22M179%2055v6h2v-6M179%2062v2h2v-2%22%20fill=%22#fff%22%20fill-rule=%22evenodd%22/%3E%3Cpath%20d=%22M99.994%20113.022l2.006%201.962%207-6.956%203%20.972%202-1%201-2v-3l-3%203-3-3%203-3h-3l-2%201-1%202%20.994%203.022z%22%20fill=%22#fff%22%20fill-opacity=%22.8%22%20fill-rule=%22evenodd%22%20stroke=%22#fff%22%20stroke-linejoin=%22round%22%20stroke-opacity=%22.8%22/%3E%3C/svg%3E") 0 -72px;opacity:.4}div.jsoneditor-contextmenu ul li button:hover div.jsoneditor-expand,div.jsoneditor-contextmenu ul li button:focus div.jsoneditor-expand,div.jsoneditor-contextmenu ul li.jsoneditor-selected div.jsoneditor-expand,div.jsoneditor-contextmenu ul li button.jsoneditor-expand:hover div.jsoneditor-expand,div.jsoneditor-contextmenu ul li button.jsoneditor-expand:focus div.jsoneditor-expand{opacity:1}div.jsoneditor-contextmenu div.jsoneditor-separator{height:0;border-top:1px solid #e5e5e5;padding-top:5px;margin-top:5px}div.jsoneditor-contextmenu button.jsoneditor-remove>div.jsoneditor-icon{background-position:-24px -24px}div.jsoneditor-contextmenu button.jsoneditor-remove:hover>div.jsoneditor-icon,div.jsoneditor-contextmenu button.jsoneditor-remove:focus>div.jsoneditor-icon{background-position:-24px 0}div.jsoneditor-contextmenu button.jsoneditor-append>div.jsoneditor-icon{background-position:0 -24px}div.jsoneditor-contextmenu button.jsoneditor-append:hover>div.jsoneditor-icon,div.jsoneditor-contextmenu button.jsoneditor-append:focus>div.jsoneditor-icon{background-position:0 0}div.jsoneditor-contextmenu button.jsoneditor-insert>div.jsoneditor-icon{background-position:0 -24px}div.jsoneditor-contextmenu button.jsoneditor-insert:hover>div.jsoneditor-icon,div.jsoneditor-contextmenu button.jsoneditor-insert:focus>div.jsoneditor-icon{background-position:0 0}div.jsoneditor-contextmenu button.jsoneditor-duplicate>div.jsoneditor-icon{background-position:-48px -24px}div.jsoneditor-contextmenu button.jsoneditor-duplicate:hover>div.jsoneditor-icon,div.jsoneditor-contextmenu button.jsoneditor-duplicate:focus>div.jsoneditor-icon{background-position:-48px 0}div.jsoneditor-contextmenu button.jsoneditor-sort-asc>div.jsoneditor-icon{background-position:-168px -24px}div.jsoneditor-contextmenu button.jsoneditor-sort-asc:hover>div.jsoneditor-icon,div.jsoneditor-contextmenu button.jsoneditor-sort-asc:focus>div.jsoneditor-icon{background-position:-168px 0}div.jsoneditor-contextmenu button.jsoneditor-sort-desc>div.jsoneditor-icon{background-position:-192px -24px}div.jsoneditor-contextmenu button.jsoneditor-sort-desc:hover>div.jsoneditor-icon,div.jsoneditor-contextmenu button.jsoneditor-sort-desc:focus>div.jsoneditor-icon{background-position:-192px 0}div.jsoneditor-contextmenu ul li button.jsoneditor-selected,div.jsoneditor-contextmenu ul li button.jsoneditor-selected:hover,div.jsoneditor-contextmenu ul li button.jsoneditor-selected:focus{color:#fff;background-color:#ee422e}div.jsoneditor-contextmenu ul li{overflow:hidden}div.jsoneditor-contextmenu ul li ul{display:none;position:relative;left:-10px;top:0;border:none;box-shadow:inset 0 0 10px rgba(128,128,128,.5);padding:0 10px;-webkit-transition:all .3s ease-out;-moz-transition:all .3s ease-out;-o-transition:all .3s ease-out;transition:all .3s ease-out}div.jsoneditor-contextmenu ul li ul li button{padding-left:24px;animation:all ease-in-out 1s}div.jsoneditor-contextmenu ul li ul li button:hover,div.jsoneditor-contextmenu ul li ul li button:focus{background-color:#f5f5f5}div.jsoneditor-contextmenu button.jsoneditor-type-string>div.jsoneditor-icon{background-position:-144px -24px}div.jsoneditor-contextmenu button.jsoneditor-type-string:hover>div.jsoneditor-icon,div.jsoneditor-contextmenu button.jsoneditor-type-string:focus>div.jsoneditor-icon,div.jsoneditor-contextmenu button.jsoneditor-type-string.jsoneditor-selected>div.jsoneditor-icon{background-position:-144px 0}div.jsoneditor-contextmenu button.jsoneditor-type-auto>div.jsoneditor-icon{background-position:-120px -24px}div.jsoneditor-contextmenu button.jsoneditor-type-auto:hover>div.jsoneditor-icon,div.jsoneditor-contextmenu button.jsoneditor-type-auto:focus>div.jsoneditor-icon,div.jsoneditor-contextmenu button.jsoneditor-type-auto.jsoneditor-selected>div.jsoneditor-icon{background-position:-120px 0}div.jsoneditor-contextmenu button.jsoneditor-type-object>div.jsoneditor-icon{background-position:-72px -24px}div.jsoneditor-contextmenu button.jsoneditor-type-object:hover>div.jsoneditor-icon,div.jsoneditor-contextmenu button.jsoneditor-type-object:focus>div.jsoneditor-icon,div.jsoneditor-contextmenu button.jsoneditor-type-object.jsoneditor-selected>div.jsoneditor-icon{background-position:-72px 0}div.jsoneditor-contextmenu button.jsoneditor-type-array>div.jsoneditor-icon{background-position:-96px -24px}div.jsoneditor-contextmenu button.jsoneditor-type-array:hover>div.jsoneditor-icon,div.jsoneditor-contextmenu button.jsoneditor-type-array:focus>div.jsoneditor-icon,div.jsoneditor-contextmenu button.jsoneditor-type-array.jsoneditor-selected>div.jsoneditor-icon{background-position:-96px 0}div.jsoneditor-contextmenu button.jsoneditor-type-modes>div.jsoneditor-icon{background-image:none;width:6px}div.jsoneditor-menu{width:100%;height:35px;padding:2px;margin:0;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;color:#fff;background-color:#3883fa;border-bottom:1px solid #3883fa;display:none}div.jsoneditor-menu>button,div.jsoneditor-menu>div.jsoneditor-modes>button{width:26px;height:26px;margin:2px;padding:0;border-radius:2px;border:1px solid rgba(0,0,0,0);background:rgba(0,0,0,0) url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"216\" height=\"144\"><path fill=\"#1aae1c%22%20d=%22M4%204h16v16H4z%22/%3E%3Cpath%20fill=%22#ec3f29%22%20fill-opacity=%22.941%22%20d=%22M28%204h16v16H28z%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20d=%22M52%204h16v16H52zM172%204h16v16h-16zM196%204h16v16h-16z%22/%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M7%2011h10v2H7z%22/%3E%3Cpath%20d=%22M11%207h2v10h-2z%22/%3E%3C/g%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M31.757%2014.828l7.071-7.07%201.415%201.414-7.071%207.07z%22/%3E%3Cpath%20d=%22M31.757%209.172l1.415-1.415%207.07%207.071-1.414%201.415z%22/%3E%3C/g%3E%3Cpath%20fill=%22#fff%22%20d=%22M55%207h7v7h-7z%22/%3E%3Cpath%20fill=%22#fff%22%20stroke=%22#4c4c4c%22%20stroke-width=%222%22%20d=%22M58%2010h7v7h-7z%22/%3E%3Cpath%20fill=%22#fff%22%20d=%22M58%2010h7v7h-7z%22/%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M198%2011h8v2h-8zM198%207h12v2h-12zM198%2015h4v2h-4z%22/%3E%3C/g%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M174%2013h8v-2h-8zM174%2017h12v-2h-12zM174%209h4V7h-4z%22/%3E%3C/g%3E%3Cpath%20fill=%22#4c4c4c%22%20d=%22M76%204h16v16H76z%22/%3E%3Cpath%20d=%22M85.104%206.016l-.015%201.406c3.027-.24.33%203.65%202.484%204.578-2.187%201.094.492%204.907-2.453%204.578L85.105%2018c5.708.56%201.032-5.1%204.703-5.265v-1.407c-3.613-.027%201.119-5.707-4.703-5.312zM82.781%205.998l.016%201.407c-3.027-.24-.33%203.65-2.485%204.578%202.187%201.094-.491%204.907%202.454%204.578l.015%201.422c-5.708.559-1.032-5.1-4.703-5.266v-1.406c3.613-.027-1.119-5.707%204.703-5.313z%22%20fill=%22#fff%22%20stroke=%22#fff%22%20stroke-width=%22.2%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20d=%22M100%204h16v16h-16z%22/%3E%3Cpath%20d=%22M103.719%205.672V18.39h3.031v-1.532h-1.344V7.234h1.375V5.672zM112.219%205.672v12.719h-3.032V16.86h1.344V7.235h-1.375V5.672z%22%20fill=%22#fff%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20d=%22M124%204h16v16h-16z%22/%3E%3Cpath%20d=%22M126.282%2017.603h1.79l1.141-2.864h5.654l1.149%202.864h1.765l-4.787-11.161h-1.919z%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M129.727%2013.479l4.609.01-2.305-5.55zM148%204h16v16h-16z%22%20fill=%22#4c4c4c%22/%3E%3Cpath%20d=%22M156.477%205.892v2.18l.46%202.398h1.829l.398-2.399v-2.18zM152.516%205.89v2.18l.46%202.399h1.829l.398-2.399V5.89z%22%20fill=%22#fff%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M4%2028h16v16H4zM28%2028h16v16H28zM52%2028h16v16H52zM172%2028h16v16h-16zM196%2028h16v16h-16z%22/%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M7%2035h10v2H7z%22/%3E%3Cpath%20d=%22M11%2031h2v10h-2z%22/%3E%3C/g%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M31.757%2038.828l7.071-7.07%201.415%201.414-7.071%207.07z%22/%3E%3Cpath%20d=%22M31.757%2033.172l1.415-1.415%207.07%207.071-1.414%201.415z%22/%3E%3C/g%3E%3Cpath%20fill=%22#fff%22%20d=%22M55%2031h7v7h-7z%22/%3E%3Cpath%20fill=%22#fff%22%20stroke=%22#d3d3d3%22%20stroke-width=%222%22%20d=%22M58%2034h7v7h-7z%22/%3E%3Cpath%20fill=%22#fff%22%20d=%22M58%2034h7v7h-7z%22/%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M198%2035h8v2h-8zM198%2031h12v2h-12zM198%2039h4v2h-4z%22/%3E%3C/g%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M174%2037h8v-2h-8zM174%2041h12v-2h-12zM174%2033h4v-2h-4z%22/%3E%3C/g%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M76%2028h16v16H76z%22/%3E%3Cpath%20d=%22M85.104%2030.016l-.015%201.406c3.027-.24.33%203.65%202.484%204.578-2.187%201.094.492%204.907-2.453%204.578L85.105%2042c5.708.559%201.032-5.1%204.703-5.266v-1.406c-3.613-.027%201.119-5.707-4.703-5.312zM82.781%2029.998l.016%201.407c-3.027-.24-.33%203.65-2.485%204.578%202.187%201.093-.491%204.907%202.454%204.578l.015%201.422c-5.708.559-1.032-5.1-4.703-5.266v-1.406c3.613-.027-1.119-5.707%204.703-5.313z%22%20fill=%22#fff%22%20stroke=%22#fff%22%20stroke-width=%22.2%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M100%2028h16v16h-16z%22/%3E%3Cpath%20d=%22M103.719%2029.672V42.39h3.031v-1.532h-1.344v-9.625h1.375v-1.562zM112.219%2029.672V42.39h-3.032v-1.532h1.344v-9.625h-1.375v-1.562z%22%20fill=%22#fff%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M124%2028h16v16h-16z%22/%3E%3Cpath%20d=%22M126.282%2041.603h1.79l1.141-2.864h5.654l1.149%202.864h1.765l-4.787-11.161h-1.919z%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M129.727%2037.479l4.609.01-2.305-5.55zM148%2028h16v16h-16z%22%20fill=%22#d3d3d3%22/%3E%3Cpath%20d=%22M156.477%2029.892v2.18l.46%202.398h1.829l.398-2.399v-2.18zM152.516%2029.89v2.18l.46%202.399h1.829l.398-2.399v-2.18z%22%20fill=%22#fff%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M54%2064h12v2H54zM80%2052h3v3h-3zM85%2052h3v3h-3zM80%2058h3v3h-3zM85%2058h3v3h-3zM80%2064h3v3h-3zM85%2064h3v3h-3z%22/%3E%3Ccircle%20cx=%22110.061%22%20cy=%2257.939%22%20r=%224.744%22%20fill=%22none%22%20stroke=%22#4c4c4c%22%20stroke-width=%222%22%20stroke-linecap=%22round%22%20stroke-linejoin=%22round%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M104.966%2059.997l2.99%202.99-4.528%204.53-2.991-2.991z%22/%3E%3Cpath%20d=%22M125%2056l13.77.095L132%2064zM149%2064l13.77-.095L156%2056z%22%20fill=%22#4c4c4c%22%20fill-rule=%22evenodd%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M54%2053h12v2H54z%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M56%2053v13h-2V53zM66%2053v13h-2V53z%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M54%2057h12v1H54z%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M54%2088h12v2H54zM80%2076h3v3h-3zM85%2076h3v3h-3zM80%2082h3v3h-3zM85%2082h3v3h-3zM80%2088h3v3h-3zM85%2088h3v3h-3z%22/%3E%3Ccircle%20r=%224.744%22%20cy=%2281.939%22%20cx=%22110.061%22%20fill=%22none%22%20stroke=%22#d3d3d3%22%20stroke-width=%222%22%20stroke-linecap=%22round%22%20stroke-linejoin=%22round%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M104.965%2083.997l2.991%202.99-4.529%204.53-2.991-2.991z%22/%3E%3Cpath%20d=%22M125%2080l13.77.095L132%2088zM149%2088l13.77-.095L156%2080z%22%20fill=%22#d3d3d3%22%20fill-rule=%22evenodd%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M54%2077h12v2H54z%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M56%2077v13h-2V77zM66%2077v13h-2V77z%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M54%2081h12v1H54z%22/%3E%3Cpath%20fill=%22#fff%22%20fill-opacity=%22.8%22%20d=%22M76%20101h16v2H76zM76%20105h16v2H76zM76%20109h9v2h-9zM76%20125h12v2H76zM76%20137h10v2H76zM82%20129h10v2H82zM82%20133h9v2h-9z%22/%3E%3Cpath%20style=%22line-height:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;block-progression:tb;isolation:auto;mix-blend-mode:normal%22%20d=%22M36.398%20100.025a8.228%208.228%200%200%200-1.265.062%207.861%207.861%200%200%200-4.508%202.227L29%20100.599l-2.324%207.713%207.826-1.906-1.805-1.906a5.026%205.026%200%200%201%205.985-.721%204.915%204.915%200%200%201%202.308%205.55%204.988%204.988%200%200%201-4.83%203.696v3.074c3.55%200%206.71-2.411%207.65-5.941.94-3.53-.618-7.274-3.71-9.07a7.839%207.839%200%200%200-3.702-1.063zM59.723%2099.963a7.834%207.834%200%200%200-3.702%201.062c-3.092%201.797-4.65%205.54-3.71%209.07.94%203.53%204.097%205.942%207.648%205.942v-3.074a4.988%204.988%200%200%201-4.83-3.695%204.915%204.915%200%200%201%202.309-5.551%205.029%205.029%200%200%201%205.986.72l-1.807%201.907%207.828%201.906-2.324-7.713-1.627%201.717a7.856%207.856%200%200%200-4.506-2.229%207.754%207.754%200%200%200-1.265-.062z%22%20color=%22#000%22%20font-weight=%22400%22%20font-family=%22sans-serif%22%20white-space=%22normal%22%20overflow=%22visible%22%20opacity=%22.8%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M10.5%20100v2H8l4%205%204-5h-2.5v-2h-3z%22%20opacity=%22.8%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M4.985%20108.015l14.03-.03M4.985%20132.015l14.03-.03%22%20opacity=%22.8%22%20fill=%22none%22%20stroke=%22#fff%22%20stroke-width=%221.966%22%20stroke-linecap=%22square%22/%3E%3Cpath%20style=%22line-height:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;block-progression:tb;isolation:auto;mix-blend-mode:normal%22%20d=%22M36.398%20123.963a8.228%208.228%200%200%200-1.265.062%207.861%207.861%200%200%200-4.508%202.226L29%20124.538l-2.324%207.713%207.826-1.907-1.805-1.906a5.026%205.026%200%200%201%205.985-.72%204.915%204.915%200%200%201%202.308%205.55%204.988%204.988%200%200%201-4.83%203.695v3.075c3.55%200%206.71-2.41%207.65-5.94.94-3.53-.618-7.275-3.71-9.072a7.84%207.84%200%200%200-3.702-1.063zM59.723%20123.963a7.835%207.835%200%200%200-3.702%201.062c-3.092%201.797-4.65%205.543-3.71%209.073.94%203.53%204.097%205.94%207.648%205.94v-3.075a4.988%204.988%200%200%201-4.83-3.695%204.915%204.915%200%200%201%202.309-5.551%205.029%205.029%200%200%201%205.986.72l-1.807%201.907%207.828%201.906-2.324-7.713-1.627%201.717a7.856%207.856%200%200%200-4.506-2.229%207.754%207.754%200%200%200-1.265-.062z%22%20color=%22#000%22%20font-weight=%22400%22%20font-family=%22sans-serif%22%20white-space=%22normal%22%20overflow=%22visible%22%20opacity=%22.4%22%20fill=%22#4d4d4d%22/%3E%3Cpath%20d=%22M10.5%20116v-2H8l4-5%204%205h-2.5v2h-3zM10.5%20129v-2H8l4-5%204%205h-2.5v2h-3zM10.5%20135v2H8l4%205%204-5h-2.5v-2h-3z%22%20opacity=%22.8%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M16.667%2060.073l-3.833%202.214L9%2064.5v-8.854l3.834%202.214zM31.5%2060.073l3.834%202.214%203.833%202.213v-8.854l-3.833%202.214zM11.934%2088.455l-2.213-3.834-2.214-3.833h8.854l-2.213%203.833zM35.927%2079.333l-2.214%203.833L31.5%2087h8.854l-2.214-3.834z%22%20fill=%22#4d4d4d%22%20fill-opacity=%22.902%22/%3E%3Cpath%20d=%22M171.826%2065.174h16.348L180%2051.826z%22%20fill=%22#fbb917%22%20fill-rule=%22evenodd%22%20stroke=%22#fbb917%22%20stroke-width=%221.652%22%20stroke-linejoin=%22round%22/%3E%3Cpath%20d=%22M179%2055v6h2v-6M179%2062v2h2v-2%22%20fill=%22#fff%22%20fill-rule=%22evenodd%22/%3E%3Cpath%20d=%22M99.994%20113.022l2.006%201.962%207-6.956%203%20.972%202-1%201-2v-3l-3%203-3-3%203-3h-3l-2%201-1%202%20.994%203.022z%22%20fill=%22#fff%22%20fill-opacity=%22.8%22%20fill-rule=%22evenodd%22%20stroke=%22#fff%22%20stroke-linejoin=%22round%22%20stroke-opacity=%22.8%22/%3E%3C/svg%3E");color:#fff;opacity:.8;font-family:arial,sans-serif;font-size:10pt;float:left}div.jsoneditor-menu>button:hover,div.jsoneditor-menu>div.jsoneditor-modes>button:hover{background-color:hsla(0,0%,100%,.2);border:1px solid hsla(0,0%,100%,.4)}div.jsoneditor-menu>button:focus,div.jsoneditor-menu>button:active,div.jsoneditor-menu>div.jsoneditor-modes>button:focus,div.jsoneditor-menu>div.jsoneditor-modes>button:active{background-color:hsla(0,0%,100%,.3)}div.jsoneditor-menu>button:disabled,div.jsoneditor-menu>div.jsoneditor-modes>button:disabled{opacity:.5}div.jsoneditor-menu>button.jsoneditor-collapse-all{background-position:0 -96px}div.jsoneditor-menu>button.jsoneditor-expand-all{background-position:0 -120px}div.jsoneditor-menu>button.jsoneditor-undo{background-position:-24px -96px}div.jsoneditor-menu>button.jsoneditor-undo:disabled{background-position:-24px -120px}div.jsoneditor-menu>button.jsoneditor-redo{background-position:-48px -96px}div.jsoneditor-menu>button.jsoneditor-redo:disabled{background-position:-48px -120px}div.jsoneditor-menu>button.jsoneditor-compact{background-position:-72px -96px}div.jsoneditor-menu>button.jsoneditor-format{background-position:-72px -120px}div.jsoneditor-menu>button.jsoneditor-repair{background-position:-96px -96px}div.jsoneditor-menu>div.jsoneditor-modes{display:inline-block;float:left}div.jsoneditor-menu>div.jsoneditor-modes>button{background-image:none;width:auto;padding-left:6px;padding-right:6px}div.jsoneditor-menu>button.jsoneditor-separator,div.jsoneditor-menu>div.jsoneditor-modes>button.jsoneditor-separator{margin-left:10px}div.jsoneditor-menu a{font-family:arial,sans-serif;font-size:10pt;color:#fff;opacity:.8;vertical-align:middle}div.jsoneditor-menu a:hover{opacity:1}div.jsoneditor-menu a.jsoneditor-poweredBy{font-size:8pt;position:absolute;right:0;top:0;padding:10px}table.jsoneditor-search input,table.jsoneditor-search div.jsoneditor-results{font-family:arial,sans-serif;font-size:10pt;color:#1a1a1a;background:rgba(0,0,0,0)}table.jsoneditor-search div.jsoneditor-results{color:#fff;padding-right:5px;line-height:24px}table.jsoneditor-search{position:absolute;right:4px;top:4px;border-collapse:collapse;border-spacing:0}table.jsoneditor-search div.jsoneditor-frame{border:1px solid rgba(0,0,0,0);background-color:#fff;padding:0 2px;margin:0}table.jsoneditor-search div.jsoneditor-frame table{border-collapse:collapse}table.jsoneditor-search input{width:120px;border:none;outline:none;margin:1px;line-height:20px}table.jsoneditor-search button{width:16px;height:24px;padding:0;margin:0;border:none;background:url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"216\" height=\"144\"><path fill=\"#1aae1c%22%20d=%22M4%204h16v16H4z%22/%3E%3Cpath%20fill=%22#ec3f29%22%20fill-opacity=%22.941%22%20d=%22M28%204h16v16H28z%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20d=%22M52%204h16v16H52zM172%204h16v16h-16zM196%204h16v16h-16z%22/%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M7%2011h10v2H7z%22/%3E%3Cpath%20d=%22M11%207h2v10h-2z%22/%3E%3C/g%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M31.757%2014.828l7.071-7.07%201.415%201.414-7.071%207.07z%22/%3E%3Cpath%20d=%22M31.757%209.172l1.415-1.415%207.07%207.071-1.414%201.415z%22/%3E%3C/g%3E%3Cpath%20fill=%22#fff%22%20d=%22M55%207h7v7h-7z%22/%3E%3Cpath%20fill=%22#fff%22%20stroke=%22#4c4c4c%22%20stroke-width=%222%22%20d=%22M58%2010h7v7h-7z%22/%3E%3Cpath%20fill=%22#fff%22%20d=%22M58%2010h7v7h-7z%22/%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M198%2011h8v2h-8zM198%207h12v2h-12zM198%2015h4v2h-4z%22/%3E%3C/g%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M174%2013h8v-2h-8zM174%2017h12v-2h-12zM174%209h4V7h-4z%22/%3E%3C/g%3E%3Cpath%20fill=%22#4c4c4c%22%20d=%22M76%204h16v16H76z%22/%3E%3Cpath%20d=%22M85.104%206.016l-.015%201.406c3.027-.24.33%203.65%202.484%204.578-2.187%201.094.492%204.907-2.453%204.578L85.105%2018c5.708.56%201.032-5.1%204.703-5.265v-1.407c-3.613-.027%201.119-5.707-4.703-5.312zM82.781%205.998l.016%201.407c-3.027-.24-.33%203.65-2.485%204.578%202.187%201.094-.491%204.907%202.454%204.578l.015%201.422c-5.708.559-1.032-5.1-4.703-5.266v-1.406c3.613-.027-1.119-5.707%204.703-5.313z%22%20fill=%22#fff%22%20stroke=%22#fff%22%20stroke-width=%22.2%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20d=%22M100%204h16v16h-16z%22/%3E%3Cpath%20d=%22M103.719%205.672V18.39h3.031v-1.532h-1.344V7.234h1.375V5.672zM112.219%205.672v12.719h-3.032V16.86h1.344V7.235h-1.375V5.672z%22%20fill=%22#fff%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20d=%22M124%204h16v16h-16z%22/%3E%3Cpath%20d=%22M126.282%2017.603h1.79l1.141-2.864h5.654l1.149%202.864h1.765l-4.787-11.161h-1.919z%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M129.727%2013.479l4.609.01-2.305-5.55zM148%204h16v16h-16z%22%20fill=%22#4c4c4c%22/%3E%3Cpath%20d=%22M156.477%205.892v2.18l.46%202.398h1.829l.398-2.399v-2.18zM152.516%205.89v2.18l.46%202.399h1.829l.398-2.399V5.89z%22%20fill=%22#fff%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M4%2028h16v16H4zM28%2028h16v16H28zM52%2028h16v16H52zM172%2028h16v16h-16zM196%2028h16v16h-16z%22/%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M7%2035h10v2H7z%22/%3E%3Cpath%20d=%22M11%2031h2v10h-2z%22/%3E%3C/g%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M31.757%2038.828l7.071-7.07%201.415%201.414-7.071%207.07z%22/%3E%3Cpath%20d=%22M31.757%2033.172l1.415-1.415%207.07%207.071-1.414%201.415z%22/%3E%3C/g%3E%3Cpath%20fill=%22#fff%22%20d=%22M55%2031h7v7h-7z%22/%3E%3Cpath%20fill=%22#fff%22%20stroke=%22#d3d3d3%22%20stroke-width=%222%22%20d=%22M58%2034h7v7h-7z%22/%3E%3Cpath%20fill=%22#fff%22%20d=%22M58%2034h7v7h-7z%22/%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M198%2035h8v2h-8zM198%2031h12v2h-12zM198%2039h4v2h-4z%22/%3E%3C/g%3E%3Cg%20fill=%22#fff%22%3E%3Cpath%20d=%22M174%2037h8v-2h-8zM174%2041h12v-2h-12zM174%2033h4v-2h-4z%22/%3E%3C/g%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M76%2028h16v16H76z%22/%3E%3Cpath%20d=%22M85.104%2030.016l-.015%201.406c3.027-.24.33%203.65%202.484%204.578-2.187%201.094.492%204.907-2.453%204.578L85.105%2042c5.708.559%201.032-5.1%204.703-5.266v-1.406c-3.613-.027%201.119-5.707-4.703-5.312zM82.781%2029.998l.016%201.407c-3.027-.24-.33%203.65-2.485%204.578%202.187%201.093-.491%204.907%202.454%204.578l.015%201.422c-5.708.559-1.032-5.1-4.703-5.266v-1.406c3.613-.027-1.119-5.707%204.703-5.313z%22%20fill=%22#fff%22%20stroke=%22#fff%22%20stroke-width=%22.2%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M100%2028h16v16h-16z%22/%3E%3Cpath%20d=%22M103.719%2029.672V42.39h3.031v-1.532h-1.344v-9.625h1.375v-1.562zM112.219%2029.672V42.39h-3.032v-1.532h1.344v-9.625h-1.375v-1.562z%22%20fill=%22#fff%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M124%2028h16v16h-16z%22/%3E%3Cpath%20d=%22M126.282%2041.603h1.79l1.141-2.864h5.654l1.149%202.864h1.765l-4.787-11.161h-1.919z%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M129.727%2037.479l4.609.01-2.305-5.55zM148%2028h16v16h-16z%22%20fill=%22#d3d3d3%22/%3E%3Cpath%20d=%22M156.477%2029.892v2.18l.46%202.398h1.829l.398-2.399v-2.18zM152.516%2029.89v2.18l.46%202.399h1.829l.398-2.399v-2.18z%22%20fill=%22#fff%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M54%2064h12v2H54zM80%2052h3v3h-3zM85%2052h3v3h-3zM80%2058h3v3h-3zM85%2058h3v3h-3zM80%2064h3v3h-3zM85%2064h3v3h-3z%22/%3E%3Ccircle%20cx=%22110.061%22%20cy=%2257.939%22%20r=%224.744%22%20fill=%22none%22%20stroke=%22#4c4c4c%22%20stroke-width=%222%22%20stroke-linecap=%22round%22%20stroke-linejoin=%22round%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M104.966%2059.997l2.99%202.99-4.528%204.53-2.991-2.991z%22/%3E%3Cpath%20d=%22M125%2056l13.77.095L132%2064zM149%2064l13.77-.095L156%2056z%22%20fill=%22#4c4c4c%22%20fill-rule=%22evenodd%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M54%2053h12v2H54z%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M56%2053v13h-2V53zM66%2053v13h-2V53z%22/%3E%3Cpath%20fill=%22#4c4c4c%22%20fill-opacity=%22.984%22%20d=%22M54%2057h12v1H54z%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M54%2088h12v2H54zM80%2076h3v3h-3zM85%2076h3v3h-3zM80%2082h3v3h-3zM85%2082h3v3h-3zM80%2088h3v3h-3zM85%2088h3v3h-3z%22/%3E%3Ccircle%20r=%224.744%22%20cy=%2281.939%22%20cx=%22110.061%22%20fill=%22none%22%20stroke=%22#d3d3d3%22%20stroke-width=%222%22%20stroke-linecap=%22round%22%20stroke-linejoin=%22round%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M104.965%2083.997l2.991%202.99-4.529%204.53-2.991-2.991z%22/%3E%3Cpath%20d=%22M125%2080l13.77.095L132%2088zM149%2088l13.77-.095L156%2080z%22%20fill=%22#d3d3d3%22%20fill-rule=%22evenodd%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M54%2077h12v2H54z%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M56%2077v13h-2V77zM66%2077v13h-2V77z%22/%3E%3Cpath%20fill=%22#d3d3d3%22%20d=%22M54%2081h12v1H54z%22/%3E%3Cpath%20fill=%22#fff%22%20fill-opacity=%22.8%22%20d=%22M76%20101h16v2H76zM76%20105h16v2H76zM76%20109h9v2h-9zM76%20125h12v2H76zM76%20137h10v2H76zM82%20129h10v2H82zM82%20133h9v2h-9z%22/%3E%3Cpath%20style=%22line-height:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;block-progression:tb;isolation:auto;mix-blend-mode:normal%22%20d=%22M36.398%20100.025a8.228%208.228%200%200%200-1.265.062%207.861%207.861%200%200%200-4.508%202.227L29%20100.599l-2.324%207.713%207.826-1.906-1.805-1.906a5.026%205.026%200%200%201%205.985-.721%204.915%204.915%200%200%201%202.308%205.55%204.988%204.988%200%200%201-4.83%203.696v3.074c3.55%200%206.71-2.411%207.65-5.941.94-3.53-.618-7.274-3.71-9.07a7.839%207.839%200%200%200-3.702-1.063zM59.723%2099.963a7.834%207.834%200%200%200-3.702%201.062c-3.092%201.797-4.65%205.54-3.71%209.07.94%203.53%204.097%205.942%207.648%205.942v-3.074a4.988%204.988%200%200%201-4.83-3.695%204.915%204.915%200%200%201%202.309-5.551%205.029%205.029%200%200%201%205.986.72l-1.807%201.907%207.828%201.906-2.324-7.713-1.627%201.717a7.856%207.856%200%200%200-4.506-2.229%207.754%207.754%200%200%200-1.265-.062z%22%20color=%22#000%22%20font-weight=%22400%22%20font-family=%22sans-serif%22%20white-space=%22normal%22%20overflow=%22visible%22%20opacity=%22.8%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M10.5%20100v2H8l4%205%204-5h-2.5v-2h-3z%22%20opacity=%22.8%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M4.985%20108.015l14.03-.03M4.985%20132.015l14.03-.03%22%20opacity=%22.8%22%20fill=%22none%22%20stroke=%22#fff%22%20stroke-width=%221.966%22%20stroke-linecap=%22square%22/%3E%3Cpath%20style=%22line-height:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;block-progression:tb;isolation:auto;mix-blend-mode:normal%22%20d=%22M36.398%20123.963a8.228%208.228%200%200%200-1.265.062%207.861%207.861%200%200%200-4.508%202.226L29%20124.538l-2.324%207.713%207.826-1.907-1.805-1.906a5.026%205.026%200%200%201%205.985-.72%204.915%204.915%200%200%201%202.308%205.55%204.988%204.988%200%200%201-4.83%203.695v3.075c3.55%200%206.71-2.41%207.65-5.94.94-3.53-.618-7.275-3.71-9.072a7.84%207.84%200%200%200-3.702-1.063zM59.723%20123.963a7.835%207.835%200%200%200-3.702%201.062c-3.092%201.797-4.65%205.543-3.71%209.073.94%203.53%204.097%205.94%207.648%205.94v-3.075a4.988%204.988%200%200%201-4.83-3.695%204.915%204.915%200%200%201%202.309-5.551%205.029%205.029%200%200%201%205.986.72l-1.807%201.907%207.828%201.906-2.324-7.713-1.627%201.717a7.856%207.856%200%200%200-4.506-2.229%207.754%207.754%200%200%200-1.265-.062z%22%20color=%22#000%22%20font-weight=%22400%22%20font-family=%22sans-serif%22%20white-space=%22normal%22%20overflow=%22visible%22%20opacity=%22.4%22%20fill=%22#4d4d4d%22/%3E%3Cpath%20d=%22M10.5%20116v-2H8l4-5%204%205h-2.5v2h-3zM10.5%20129v-2H8l4-5%204%205h-2.5v2h-3zM10.5%20135v2H8l4%205%204-5h-2.5v-2h-3z%22%20opacity=%22.8%22%20fill=%22#fff%22/%3E%3Cpath%20d=%22M16.667%2060.073l-3.833%202.214L9%2064.5v-8.854l3.834%202.214zM31.5%2060.073l3.834%202.214%203.833%202.213v-8.854l-3.833%202.214zM11.934%2088.455l-2.213-3.834-2.214-3.833h8.854l-2.213%203.833zM35.927%2079.333l-2.214%203.833L31.5%2087h8.854l-2.214-3.834z%22%20fill=%22#4d4d4d%22%20fill-opacity=%22.902%22/%3E%3Cpath%20d=%22M171.826%2065.174h16.348L180%2051.826z%22%20fill=%22#fbb917%22%20fill-rule=%22evenodd%22%20stroke=%22#fbb917%22%20stroke-width=%221.652%22%20stroke-linejoin=%22round%22/%3E%3Cpath%20d=%22M179%2055v6h2v-6M179%2062v2h2v-2%22%20fill=%22#fff%22%20fill-rule=%22evenodd%22/%3E%3Cpath%20d=%22M99.994%20113.022l2.006%201.962%207-6.956%203%20.972%202-1%201-2v-3l-3%203-3-3%203-3h-3l-2%201-1%202%20.994%203.022z%22%20fill=%22#fff%22%20fill-opacity=%22.8%22%20fill-rule=%22evenodd%22%20stroke=%22#fff%22%20stroke-linejoin=%22round%22%20stroke-opacity=%22.8%22/%3E%3C/svg%3E");vertical-align:top}table.jsoneditor-search button:hover{background-color:rgba(0,0,0,0)}table.jsoneditor-search button.jsoneditor-refresh{width:18px;background-position:-99px -73px}table.jsoneditor-search button.jsoneditor-next{cursor:pointer;background-position:-124px -73px}table.jsoneditor-search button.jsoneditor-next:hover{background-position:-124px -49px}table.jsoneditor-search button.jsoneditor-previous{cursor:pointer;background-position:-148px -73px;margin-right:2px}table.jsoneditor-search button.jsoneditor-previous:hover{background-position:-148px -49px}div.jsoneditor div.autocomplete.dropdown{position:absolute;background:#fff;box-shadow:2px 2px 12px rgba(128,128,128,.3);border:1px solid #d3d3d3;z-index:100;overflow-x:hidden;overflow-y:auto;cursor:default;margin:0;padding-left:2pt;padding-right:5pt;text-align:left;outline:0;font-family:droid sans mono,consolas,monospace,courier new,courier,sans-serif;font-size:10pt}div.jsoneditor div.autocomplete.dropdown .item{color:#333}div.jsoneditor div.autocomplete.dropdown .item.hover{background-color:#ddd}div.jsoneditor div.autocomplete.hint{color:#aaa;top:4px;left:4px}div.jsoneditor-treepath{padding:0 5px;overflow:hidden}div.jsoneditor-treepath div.jsoneditor-contextmenu-root{position:absolute;left:0}div.jsoneditor-treepath span.jsoneditor-treepath-element{margin:1px;font-family:arial,sans-serif;font-size:10pt}div.jsoneditor-treepath span.jsoneditor-treepath-seperator{margin:2px;font-size:9pt;font-family:arial,sans-serif}div.jsoneditor-treepath span.jsoneditor-treepath-element:hover,div.jsoneditor-treepath span.jsoneditor-treepath-seperator:hover{cursor:pointer;text-decoration:underline}div.jsoneditor-statusbar{line-height:26px;height:26px;margin-top:-26px;color:gray;background-color:#ebebeb;border-top:1px solid #d3d3d3;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:10pt}div.jsoneditor-statusbar>.jsoneditor-curserinfo-label{margin:0 2px 0 4px}div.jsoneditor-statusbar>.jsoneditor-curserinfo-val{margin-right:12px}div.jsoneditor-statusbar>.jsoneditor-curserinfo-count{margin-left:4px}div.jsoneditor-navigation-bar{width:100%;height:26px;line-height:26px;padding:0;margin:0;border-bottom:1px solid #d3d3d3;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;color:gray;background-color:#ebebeb;font-size:10pt}div.jsoneditor-navigation-bar.nav-bar-empty:after{content:"Select a node ...";color:rgba(104,104,91,.56);position:absolute;margin-left:5px}.fileUploadWrapper{position:relative;float:left;width:100%;margin-top:2em;margin-bottom:1em}.filepicker{font-family:sans-serif}div.filepicker{text-align:center;padding:5px;background-color:#fafafa;border-radius:5px;min-height:60px;border:2px dashed #e3e3e3}.filepicker-file-icon{position:relative;display:inline-block;margin:1.5em 0 2.5em 0;padding-left:45px;color:#000}.filepicker-file-icon::before{position:absolute;top:-7px;left:0;width:29px;height:34px;content:"";border:solid 2px #7f7f7f;border-radius:2px}.filepicker-file-icon::after{font-size:11px;line-height:1.3;position:absolute;top:9px;left:-4px;padding:0 2px;content:"file";content:attr(data-filetype);text-align:right;letter-spacing:1px;text-transform:uppercase;color:#fff;background-color:#000}.filepicker-file-icon .fileCorner{position:absolute;top:-7px;left:22px;width:0;height:0;border-width:11px 0 0 11px;border-style:solid;border-color:#fff rgba(0,0,0,0) rgba(0,0,0,0) #920035}.bundleCard h4{margin:0;font-size:19px;cursor:pointer;width:auto;display:inline-block}.bundleCard .date{color:#c1c1c1;font-size:12px;text-align:right;padding-top:8px}.filesCard h4{margin:0;font-size:14px;line-height:30px;cursor:pointer;width:auto;display:inline-block;font-weight:500;color:#1890ff;overflow:hidden;height:24px}.filesCard h4 .anticon{padding-right:5px}.filesCard .date{color:#c1c1c1;font-size:12px;text-align:right;padding-top:8px}.bundleCounter{display:inline-block;font-size:17px;color:#c5c5c5;padding-left:10px}.bundleQuickStats label{font-weight:600;font-size:16px;color:#8e9aa4;margin-bottom:5px;display:inline-block}.bundleQuickStats .value{font-size:13px;font-weight:normal;color:#8e9aa4}.clean--list{list-style-type:none;margin:0;padding:0}.clean--list li{margin:0}.serverLoadingWrap{text-align:center;height:80px}.serverSelectAvatar{background-color:#1976d2 !important;color:#fff !important}.serverSelectIcon{font-size:18px !important;padding-top:3px}.userSelect--remember-device{margin-top:1em !important}.userSelect--remember-device .MuiFormLabel-root{font-size:12px}.userSelect--remember-device .MuiCheckbox-root{width:38px !important}.serverAddFormWrapper{width:100%;padding:0 3em 1em 2em}.serverAddFormWrapper .actions--buttons{margin-top:1em;margin-bottom:1em;text-align:right}.serverAddFormWrapper .actions--buttons button{margin-left:1em}.progress-button--wrapper{position:relative;display:inline-block}.progress-button--wrapper .MuiCircularProgress-root{position:absolute;top:50%;left:50%;margin-top:-12px;margin-left:-12px}.terminal--action-bar{position:fixed;bottom:0;right:0;background:#fff;padding:0px 20px 15px 20px;width:350px;top:60px;border-left:1px solid rgba(0,0,0,.12);z-index:2}.terminal--action-bar .terminal--action-bar__method-field{float:left;clear:both;margin-bottom:2em;width:100%}.terminal--action-bar .terminal--action-bar__method-field .MuiFormControl-root{width:100%}.terminal--action-bar .terminal--action-bar__payload-field{float:left;clear:both;margin-bottom:2em;width:100%}.terminal--action-bar .terminal--action-bar__payload-field .MuiFormControl-root{width:100%}.terminal--action-bar .terminal--action-bar__submit{float:left;clear:both;width:100%;text-align:right}.terminal--logs{background:#fff;margin-top:-14px;padding-top:1em;width:calc(100% - 350px);float:left;padding-bottom:2em;min-height:calc(100vh - 66px)}.terminal--logs.full-width{width:100%}.terminal--logs .terminal--logs_header{position:fixed;background:#fff;width:100%;top:65px;padding-top:15px;z-index:1;border-bottom:1px solid #ddd}.terminal--logs .terminal--logs_header .terminal--logs_header-left{float:left;padding:.5em 1em}.terminal--logs .terminal--logs_header .terminal--logs_header-right{float:right;padding:.5em 1em}.terminal--logs .terminal--logs__list{padding:0 !important;margin-top:4em}.terminal--logs .terminal--logs__list .terminal--logs__list-item:nth-child(2n){background-color:#fdfdfd}.terminal--logs .terminal--logs__list .terminal--logs__list-item{float:left;width:100%;padding:10px 20px;border-top:1px solid #ddd}.terminal--logs .terminal--logs__list .terminal--logs__list-item:first-child{border-top:none}.terminal--logs .terminal--logs__list .terminal--logs__list-item .terminal--logs__list-item--header{float:left;width:100%}.terminal--logs .terminal--logs__list .terminal--logs__list-item .terminal--logs__list-item--header .terminal--logs__list-item--header__item{display:inline-block}.terminal--logs .terminal--logs__list .terminal--logs__list-item .terminal--logs__list-item--header .terminal--logs__list-item--header_left{float:left;width:30%}.terminal--logs .terminal--logs__list .terminal--logs__list-item .terminal--logs__list-item--header .terminal--logs__list-item--header_right{float:right;width:70%;text-align:right}.terminal--logs .terminal--logs__list .terminal--logs__list-item .terminal--logs__list-item--header .terminal--logs_event{font-size:16px;font-weight:600;line-height:2em;padding:0px 10px;display:inline-block;-webkit-border-radius:20px;-moz-border-radius:20px;border-radius:20px;background-color:#f3f5f9}.terminal--logs .terminal--logs__list .terminal--logs__list-item .terminal--logs__list-item--header .terminal--logs_event.success{color:#27ae60}.terminal--logs .terminal--logs__list .terminal--logs__list-item .terminal--logs__list-item--header .terminal--logs_event.error{color:#c0392b}.terminal--logs .terminal--logs__list .terminal--logs__list-item .terminal--logs__list-item--header .terminal--logs_event .MuiSvgIcon-root{width:15px;height:15px;margin-right:5px}.terminal--logs .terminal--logs__list .terminal--logs__list-item .terminal--logs__list-item--header .terminal--logs_actions .terminal--logs_actions_item{margin-left:.5em;display:inline-block}.terminal--logs .terminal--logs__list .terminal--logs__list-item .terminal--logs__list-item--header .terminal--logs_actions .terminal--logs_actions_item .small__button{border:1px solid #ddd;background:#fff;text-transform:none;font-size:12px;font-weight:300}.terminal--logs .terminal--logs__list .terminal--logs__list-item .terminal--logs__list-item--header .terminal--logs_date{font-weight:100;padding-left:.5em}.terminal--logs .terminal--logs__list .terminal--logs__list-item .terminal--logs__list-item--body{font-family:"Source Code Pro",monospace !important;white-space:normal;word-break:break-all;padding-top:3em;color:#8d9598}.formatted-json .string{color:green}.formatted-json .number{color:#ff8c00}.formatted-json .boolean{color:blue}.formatted-json .null{color:#f0f}.formatted-json .key{color:red}.terminal--emit-form{margin-bottom:1em;width:100%;overflow:hidden;padding-top:1em}.terminal--actions{margin-top:1em;text-align:right}.terminal--actions .terminal--actions__row{float:left;width:100%;margin-bottom:1em}.terminal__remember-wrapper{margin-left:1.5em;margin-bottom:1em}.emitted--response{padding-left:.5em}.emitted--response .MuiSvgIcon-root{font-size:14px}.date--picker-input{display:flex;align-items:center;cursor:pointer;width:auto;float:right}.date--picker-input span{font-size:16px;padding-left:10px}.user-analytics--header_right{float:right;width:50%;position:relative;text-align:right}.user-analytics--header_left{float:left;width:50%;position:relative}.patchNotes-list .sectionItem_wrapper{float:left;margin-top:10px;width:100%}.patchNotes-list .sectionItem_wrapper .sectionItem{display:flex;flex-wrap:wrap}.patchNotes-list .sectionItem_wrapper .sectionItem .input{flex-basis:90%}.patchNotes-list .sectionItem_wrapper .sectionItem .actions{flex-basis:10%;align-items:center}.patchNotes-list .sectionItem_wrapper .sectionItems{float:left;width:100%;margin-bottom:10px;border-left:1px solid #ddd}.patchNotes-list .sectionItem_wrapper .items-new-button{margin-left:15px}.patchNotes-list .section-new-button{margin-top:10px}
.loadingIndicator{text-align:center;margin:2em 0}.loadingIndicator.verticalCenter{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);-webkit-transform:translate(-50%, -50%)}.loadingIndicator .initText{display:block;margin-top:.6em;color:#4aa0fd;font-weight:500;font-size:16px}
.bundleHeading .bundleTitle h2{width:auto;display:inline-block;margin-left:10px}.bundleHeading .bundleTitle a{font-size:20px;color:rgba(0,0,0,.65);transition:all .3s ease;-webkit-transition:all .3s ease;-moz-transition:all .3s ease;-o-transition:all .3s ease;-ms-transition:all .3s ease}.bundleHeading .bundleTitle a span{padding-left:4px}.bundleHeading .currentBundle{font-size:17px;color:#e8e8e8;transition:all .3s ease;-webkit-transition:all .3s ease;-moz-transition:all .3s ease;-o-transition:all .3s ease;-ms-transition:all .3s ease}.bundleHeading.show .bundleTitle a{font-size:11px}.bundleHeading.show .currentBundle{font-size:11px}.bundleContentBreadcrumbs{font-family:"Monospaced Number","Chinese Quote",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","Helvetica Neue",Helvetica,Arial,sans-serif;width:100%}.bundleContentBreadcrumbs .ant-breadcrumb{font-size:20px;font-weight:300}.bundleContentBreadcrumbs .ant-breadcrumb-link{font-size:20px}.bundleContentBreadcrumbs .ant-breadcrumb-link .anticon{font-size:16px}.bundleContentBreadcrumbs .ant-breadcrumb-link svg{width:85px}.bundleContentBreadcrumbs .ant-breadcrumb-link a{color:#dadada;font-weight:normal;text-decoration:none !important;font-weight:300}.bundleContentBreadcrumbs .ant-breadcrumb-link a:hover{color:#1890ff}.bundleContentBreadcrumbs .ant-breadcrumb-separator{font-size:18px;margin:0 8px;color:#dadada}.filesList .ant-col-lg-1,.filesList .ant-col-lg-2,.filesList .ant-col-lg-3,.filesList .ant-col-lg-4,.filesList .ant-col-lg-5,.filesList .ant-col-lg-6,.filesList .ant-col-lg-7,.filesList .ant-col-lg-8,.filesList .ant-col-lg-9,.filesList .ant-col-lg-10,.filesList .ant-col-lg-11,.filesList .ant-col-lg-12,.filesList .ant-col-lg-13,.filesList .ant-col-lg-14,.filesList .ant-col-lg-15,.filesList .ant-col-lg-16,.filesList .ant-col-lg-17,.filesList .ant-col-lg-18,.filesList .ant-col-lg-19,.filesList .ant-col-lg-20,.filesList .ant-col-lg-21,.filesList .ant-col-lg-22,.filesList .ant-col-lg-23,.filesList .ant-col-lg-24{margin-bottom:1em}

/*# sourceMappingURL=main.77b9da69fb0dff7040e2.css.map*/