.modalWrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999; }
  .modalWrapper .underlay {
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer; }
  .modalWrapper .modal {
    background: #fff;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    margin: auto;
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    border-radius: 4px;
    max-width: 90%;
    z-index: 2;
    -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
            box-shadow: 0 0 25px rgba(0, 0, 0, 0.8); }
  .modalWrapper .modal-title {
    font-size: 35px;
    text-align: center;
    padding: 10px;
    font-weight: 900; }
  .modalWrapper .modal-body {
    padding: 15px; }
  .modalWrapper .modal-closer {
    position: absolute;
    right: 10px;
    top: 7px;
    z-index: 10; }
    .modalWrapper .modal-closer a {
      display: inline-block;
      font-size: 25px;
      color: #000;
      cursor: pointer; }

.modal-header {
  padding: 15px;
  color: #fff;
  text-align: center;
  position: relative;
  font-size: 20px;
  font-weight: 300; }

.couponCopier {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 15px 0; }

#coupon {
  display: inline-block;
  border: 2px dashed #454545;
  margin: 0 15px 0 0;
  padding: 5px; }

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both; }

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

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

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

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.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;
      -ms-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;
      -ms-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: none;
            transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
            transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
            transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
            transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
            transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
            transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    -webkit-transform: none;
            transform: none; } }
@keyframes wobble {
  from {
    -webkit-transform: none;
            transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
            transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
            transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
            transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
            transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
            transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    -webkit-transform: none;
            transform: none; } }

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

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
            transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
            transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
            transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
            transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
            transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
            transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
            transform: skewX(0.39062deg) skewY(0.39062deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
            transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
            transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
            transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
            transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
            transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
            transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
            transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
            transform: skewX(0.39062deg) skewY(0.39062deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
            transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

.jello {
  -webkit-animation-name: jello;
          animation-name: jello;
  -webkit-transform-origin: center;
      -ms-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-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: none;
            transform: none; } }

@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: none;
            transform: none; } }

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

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.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: none;
            transform: none; } }

@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: none;
            transform: none; } }

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

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.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: none;
            transform: none; } }

@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: none;
            transform: none; } }

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

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.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-name: bounceOut;
          animation-name: bounceOut; }

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0); } }

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0); } }

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

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

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

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

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

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

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

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0); } }

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0); } }

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

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

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
            transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
            transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(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-name: flipOutX;
          animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
            transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
            transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

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

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
            transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
            transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
            transform: skewX(-5deg);
    opacity: 1; }
  to {
    -webkit-transform: none;
            transform: none;
    opacity: 1; } }

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
            transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
            transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
            transform: skewX(-5deg);
    opacity: 1; }
  to {
    -webkit-transform: none;
            transform: none;
    opacity: 1; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
            transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out; }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
            transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
            transform: translate3d(0, 700px, 0);
    opacity: 0; } }

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
            transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out; }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
            transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
            transform: translate3d(0, 700px, 0);
    opacity: 0; } }

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

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
            transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }
@keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
            transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ng-sortable css file */
.as-sortable-item, .as-sortable-placeholder {
  display: block; }

.as-sortable-item {
  -ms-touch-action: none;
  touch-action: none;
  -webkit-touch-callout: none; }

.as-sortable-item-handle {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -moz-grab; }

.as-sortable-drag {
  position: absolute;
  pointer-events: none;
  z-index: 9999; }

.as-sortable-hidden {
  display: none !important; }

.as-sortable-un-selectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.bootstrap {
  /*!
   * Bootstrap v4.0.0-beta (https://getbootstrap.com)
   * Copyright 2011-2017 The Bootstrap Authors
   * Copyright 2011-2017 Twitter, Inc.
   * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
   */ }
  @media print {
    .bootstrap *, .bootstrap ::after, .bootstrap ::before {
      text-shadow: none !important;
      -webkit-box-shadow: none !important;
              box-shadow: none !important; }
    .bootstrap a, .bootstrap a:visited {
      text-decoration: underline; }
    .bootstrap abbr[title]::after {
      content: " (" attr(title) ")"; }
    .bootstrap pre {
      white-space: pre-wrap !important; }
    .bootstrap blockquote, .bootstrap pre {
      border: 1px solid #999;
      page-break-inside: avoid; }
    .bootstrap thead {
      display: table-header-group; }
    .bootstrap img, .bootstrap tr {
      page-break-inside: avoid; }
    .bootstrap h2, .bootstrap h3, .bootstrap p {
      orphans: 3;
      widows: 3; }
    .bootstrap h2, .bootstrap h3 {
      page-break-after: avoid; }
    .bootstrap .navbar {
      display: none; }
    .bootstrap .badge {
      border: 1px solid #000; }
    .bootstrap .table {
      border-collapse: collapse !important; }
    .bootstrap .table td, .bootstrap .table th {
      background-color: #fff !important; }
    .bootstrap .table-bordered td, .bootstrap .table-bordered th {
      border: 1px solid #ddd !important; } }
  .bootstrap html {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent; }
  .bootstrap *, .bootstrap ::after, .bootstrap ::before {
    -webkit-box-sizing: inherit;
            box-sizing: inherit; }

@-ms-viewport {
  .bootstrap {
    width: device-width; } }
  .bootstrap article, .bootstrap aside, .bootstrap dialog, .bootstrap figcaption, .bootstrap figure, .bootstrap footer, .bootstrap header, .bootstrap hgroup, .bootstrap main, .bootstrap nav, .bootstrap section {
    display: block; }
  .bootstrap body {
    margin: 0;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff; }
  .bootstrap [tabindex="-1"]:focus {
    outline: 0 !important; }
  .bootstrap hr {
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    height: 0;
    overflow: visible; }
  .bootstrap h1, .bootstrap h2, .bootstrap h3, .bootstrap h4, .bootstrap h5, .bootstrap h6 {
    margin-top: 0;
    margin-bottom: .5rem; }
  .bootstrap p {
    margin-top: 0;
    margin-bottom: 1rem; }
  .bootstrap abbr[data-original-title], .bootstrap abbr[title] {
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0; }
  .bootstrap address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit; }
  .bootstrap dl, .bootstrap ol, .bootstrap ul {
    margin-top: 0;
    margin-bottom: 1rem; }
  .bootstrap ol ol, .bootstrap ol ul, .bootstrap ul ol, .bootstrap ul ul {
    margin-bottom: 0; }
  .bootstrap dt {
    font-weight: 700; }
  .bootstrap dd {
    margin-bottom: .5rem;
    margin-left: 0; }
  .bootstrap blockquote {
    margin: 0 0 1rem; }
  .bootstrap dfn {
    font-style: italic; }
  .bootstrap b, .bootstrap strong {
    font-weight: bolder; }
  .bootstrap small {
    font-size: 80%; }
  .bootstrap sub, .bootstrap sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline; }
  .bootstrap sub {
    bottom: -.25em; }
  .bootstrap sup {
    top: -.5em; }
  .bootstrap a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects; }
  .bootstrap a:hover {
    color: #0056b3;
    text-decoration: underline; }
  .bootstrap a:not([href]):not([tabindex]) {
    color: inherit;
    text-decoration: none; }
  .bootstrap a:not([href]):not([tabindex]):focus, .bootstrap a:not([href]):not([tabindex]):hover {
    color: inherit;
    text-decoration: none; }
  .bootstrap a:not([href]):not([tabindex]):focus {
    outline: 0; }
  .bootstrap code, .bootstrap kbd, .bootstrap pre, .bootstrap samp {
    font-family: monospace,monospace;
    font-size: 1em; }
  .bootstrap pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto; }
  .bootstrap figure {
    margin: 0 0 1rem; }
  .bootstrap img {
    vertical-align: middle;
    border-style: none; }
  .bootstrap svg:not(:root) {
    overflow: hidden; }
  .bootstrap [role=button], .bootstrap a, .bootstrap area, .bootstrap button, .bootstrap input, .bootstrap label, .bootstrap select, .bootstrap summary, .bootstrap textarea {
    -ms-touch-action: manipulation;
    touch-action: manipulation; }
  .bootstrap table {
    border-collapse: collapse; }
  .bootstrap caption {
    padding-top: .75rem;
    padding-bottom: .75rem;
    color: #868e96;
    text-align: left;
    caption-side: bottom; }
  .bootstrap th {
    text-align: left; }
  .bootstrap label {
    display: inline-block;
    margin-bottom: .5rem; }
  .bootstrap button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color; }
  .bootstrap button, .bootstrap input, .bootstrap optgroup, .bootstrap select, .bootstrap textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit; }
  .bootstrap button, .bootstrap input {
    overflow: visible; }
  .bootstrap button, .bootstrap select {
    text-transform: none; }
  .bootstrap [type=reset], .bootstrap [type=submit], .bootstrap button, .bootstrap html [type=button] {
    -webkit-appearance: button; }
  .bootstrap [type=button]::-moz-focus-inner, .bootstrap [type=reset]::-moz-focus-inner, .bootstrap [type=submit]::-moz-focus-inner, .bootstrap button::-moz-focus-inner {
    padding: 0;
    border-style: none; }
  .bootstrap input[type=checkbox], .bootstrap input[type=radio] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0; }
  .bootstrap input[type=date], .bootstrap input[type=datetime-local], .bootstrap input[type=month], .bootstrap input[type=time] {
    -webkit-appearance: listbox; }
  .bootstrap textarea {
    overflow: auto;
    resize: vertical; }
  .bootstrap fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0; }
  .bootstrap legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: .5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal; }
  .bootstrap progress {
    vertical-align: baseline; }
  .bootstrap [type=number]::-webkit-inner-spin-button, .bootstrap [type=number]::-webkit-outer-spin-button {
    height: auto; }
  .bootstrap [type=search] {
    outline-offset: -2px;
    -webkit-appearance: none; }
  .bootstrap [type=search]::-webkit-search-cancel-button, .bootstrap [type=search]::-webkit-search-decoration {
    -webkit-appearance: none; }
  .bootstrap ::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button; }
  .bootstrap output {
    display: inline-block; }
  .bootstrap summary {
    display: list-item; }
  .bootstrap template {
    display: none; }
  .bootstrap [hidden] {
    display: none !important; }
  .bootstrap .h1, .bootstrap .h2, .bootstrap .h3, .bootstrap .h4, .bootstrap .h5, .bootstrap .h6, .bootstrap h1, .bootstrap h2, .bootstrap h3, .bootstrap h4, .bootstrap h5, .bootstrap h6 {
    margin-bottom: .5rem;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: inherit; }
  .bootstrap .h1, .bootstrap h1 {
    font-size: 2.5rem; }
  .bootstrap .h2, .bootstrap h2 {
    font-size: 2rem; }
  .bootstrap .h3, .bootstrap h3 {
    font-size: 1.75rem; }
  .bootstrap .h4, .bootstrap h4 {
    font-size: 1.5rem; }
  .bootstrap .h5, .bootstrap h5 {
    font-size: 1.25rem; }
  .bootstrap .h6, .bootstrap h6 {
    font-size: 1rem; }
  .bootstrap .lead {
    font-size: 1.25rem;
    font-weight: 300; }
  .bootstrap .display-1 {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1.1; }
  .bootstrap .display-2 {
    font-size: 5.5rem;
    font-weight: 300;
    line-height: 1.1; }
  .bootstrap .display-3 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.1; }
  .bootstrap .display-4 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1; }
  .bootstrap hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1); }
  .bootstrap .small, .bootstrap small {
    font-size: 80%;
    font-weight: 400; }
  .bootstrap .mark, .bootstrap mark {
    padding: .2em;
    background-color: #fcf8e3; }
  .bootstrap .list-unstyled {
    padding-left: 0;
    list-style: none; }
  .bootstrap .list-inline {
    padding-left: 0;
    list-style: none; }
  .bootstrap .list-inline-item {
    display: inline-block; }
  .bootstrap .list-inline-item:not(:last-child) {
    margin-right: 5px; }
  .bootstrap .initialism {
    font-size: 90%;
    text-transform: uppercase; }
  .bootstrap .blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem; }
  .bootstrap .blockquote-footer {
    display: block;
    font-size: 80%;
    color: #868e96; }
  .bootstrap .blockquote-footer::before {
    content: "\2014 \00A0"; }
  .bootstrap .img-fluid {
    max-width: 100%;
    height: auto; }
  .bootstrap .img-thumbnail {
    padding: .25rem;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: .25rem;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    max-width: 100%;
    height: auto; }
  .bootstrap .figure {
    display: inline-block; }
  .bootstrap .figure-img {
    margin-bottom: .5rem;
    line-height: 1; }
  .bootstrap .figure-caption {
    font-size: 90%;
    color: #868e96; }
  .bootstrap code, .bootstrap kbd, .bootstrap pre, .bootstrap samp {
    font-family: Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace; }
  .bootstrap code {
    padding: .2rem .4rem;
    font-size: 90%;
    color: #bd4147;
    background-color: #f8f9fa;
    border-radius: .25rem; }
  .bootstrap a > code {
    padding: 0;
    color: inherit;
    background-color: inherit; }
  .bootstrap kbd {
    padding: .2rem .4rem;
    font-size: 90%;
    color: #fff;
    background-color: #212529;
    border-radius: .2rem; }
  .bootstrap kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: 700; }
  .bootstrap pre {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 90%;
    color: #212529; }
  .bootstrap pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
    border-radius: 0; }
  .bootstrap .pre-scrollable {
    max-height: 340px;
    overflow-y: scroll; }
  .bootstrap .container {
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
    width: 100%; }
  @media (min-width: 576px) {
    .bootstrap .container {
      max-width: 540px; } }
  @media (min-width: 768px) {
    .bootstrap .container {
      max-width: 720px; } }
  @media (min-width: 992px) {
    .bootstrap .container {
      max-width: 960px; } }
  @media (min-width: 1200px) {
    .bootstrap .container {
      max-width: 1140px; } }
  .bootstrap .container-fluid {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
    width: 100%; }
  .bootstrap .row {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px; }
  .bootstrap .no-gutters {
    margin-right: 0;
    margin-left: 0; }
  .bootstrap .no-gutters > .col, .bootstrap .no-gutters > [class*=col-] {
    padding-right: 0;
    padding-left: 0; }
  .bootstrap .col, .bootstrap .col-1, .bootstrap .col-10, .bootstrap .col-11, .bootstrap .col-12, .bootstrap .col-2, .bootstrap .col-3, .bootstrap .col-4, .bootstrap .col-5, .bootstrap .col-6, .bootstrap .col-7, .bootstrap .col-8, .bootstrap .col-9, .bootstrap .col-auto, .bootstrap .col-lg, .bootstrap .col-lg-1, .bootstrap .col-lg-10, .bootstrap .col-lg-11, .bootstrap .col-lg-12, .bootstrap .col-lg-2, .bootstrap .col-lg-3, .bootstrap .col-lg-4, .bootstrap .col-lg-5, .bootstrap .col-lg-6, .bootstrap .col-lg-7, .bootstrap .col-lg-8, .bootstrap .col-lg-9, .bootstrap .col-lg-auto, .bootstrap .col-md, .bootstrap .col-md-1, .bootstrap .col-md-10, .bootstrap .col-md-11, .bootstrap .col-md-12, .bootstrap .col-md-2, .bootstrap .col-md-3, .bootstrap .col-md-4, .bootstrap .col-md-5, .bootstrap .col-md-6, .bootstrap .col-md-7, .bootstrap .col-md-8, .bootstrap .col-md-9, .bootstrap .col-md-auto, .bootstrap .col-sm, .bootstrap .col-sm-1, .bootstrap .col-sm-10, .bootstrap .col-sm-11, .bootstrap .col-sm-12, .bootstrap .col-sm-2, .bootstrap .col-sm-3, .bootstrap .col-sm-4, .bootstrap .col-sm-5, .bootstrap .col-sm-6, .bootstrap .col-sm-7, .bootstrap .col-sm-8, .bootstrap .col-sm-9, .bootstrap .col-sm-auto, .bootstrap .col-xl, .bootstrap .col-xl-1, .bootstrap .col-xl-10, .bootstrap .col-xl-11, .bootstrap .col-xl-12, .bootstrap .col-xl-2, .bootstrap .col-xl-3, .bootstrap .col-xl-4, .bootstrap .col-xl-5, .bootstrap .col-xl-6, .bootstrap .col-xl-7, .bootstrap .col-xl-8, .bootstrap .col-xl-9, .bootstrap .col-xl-auto {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px; }
  .bootstrap .col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
            flex-grow: 1;
    max-width: 100%; }
  .bootstrap .col-auto {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
            flex: 0 0 auto;
    width: auto;
    max-width: none; }
  .bootstrap .col-1 {
    -ms-flex: 0 0 8.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 8.333333%;
    max-width: 8.333333%; }
  .bootstrap .col-2 {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 16.666667%;
    max-width: 16.666667%; }
  .bootstrap .col-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%; }
  .bootstrap .col-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 33.333333%;
    max-width: 33.333333%; }
  .bootstrap .col-5 {
    -ms-flex: 0 0 41.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 41.666667%;
    max-width: 41.666667%; }
  .bootstrap .col-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 50%; }
  .bootstrap .col-7 {
    -ms-flex: 0 0 58.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 58.333333%;
    max-width: 58.333333%; }
  .bootstrap .col-8 {
    -ms-flex: 0 0 66.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 66.666667%;
    max-width: 66.666667%; }
  .bootstrap .col-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
            flex: 0 0 75%;
    max-width: 75%; }
  .bootstrap .col-10 {
    -ms-flex: 0 0 83.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 83.333333%;
    max-width: 83.333333%; }
  .bootstrap .col-11 {
    -ms-flex: 0 0 91.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 91.666667%;
    max-width: 91.666667%; }
  .bootstrap .col-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
            flex: 0 0 100%;
    max-width: 100%; }
  .bootstrap .order-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
            order: 1; }
  .bootstrap .order-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
            order: 2; }
  .bootstrap .order-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
            order: 3; }
  .bootstrap .order-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
            order: 4; }
  .bootstrap .order-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
            order: 5; }
  .bootstrap .order-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
            order: 6; }
  .bootstrap .order-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
            order: 7; }
  .bootstrap .order-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
            order: 8; }
  .bootstrap .order-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
            order: 9; }
  .bootstrap .order-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
            order: 10; }
  .bootstrap .order-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
            order: 11; }
  .bootstrap .order-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
            order: 12; }
  @media (min-width: 576px) {
    .bootstrap .col-sm {
      -ms-flex-preferred-size: 0;
      flex-basis: 0;
      -ms-flex-positive: 1;
      -webkit-box-flex: 1;
              flex-grow: 1;
      max-width: 100%; }
    .bootstrap .col-sm-auto {
      -ms-flex: 0 0 auto;
      -webkit-box-flex: 0;
              flex: 0 0 auto;
      width: auto;
      max-width: none; }
    .bootstrap .col-sm-1 {
      -ms-flex: 0 0 8.333333%;
      -webkit-box-flex: 0;
              flex: 0 0 8.333333%;
      max-width: 8.333333%; }
    .bootstrap .col-sm-2 {
      -ms-flex: 0 0 16.666667%;
      -webkit-box-flex: 0;
              flex: 0 0 16.666667%;
      max-width: 16.666667%; }
    .bootstrap .col-sm-3 {
      -ms-flex: 0 0 25%;
      -webkit-box-flex: 0;
              flex: 0 0 25%;
      max-width: 25%; }
    .bootstrap .col-sm-4 {
      -ms-flex: 0 0 33.333333%;
      -webkit-box-flex: 0;
              flex: 0 0 33.333333%;
      max-width: 33.333333%; }
    .bootstrap .col-sm-5 {
      -ms-flex: 0 0 41.666667%;
      -webkit-box-flex: 0;
              flex: 0 0 41.666667%;
      max-width: 41.666667%; }
    .bootstrap .col-sm-6 {
      -ms-flex: 0 0 50%;
      -webkit-box-flex: 0;
              flex: 0 0 50%;
      max-width: 50%; }
    .bootstrap .col-sm-7 {
      -ms-flex: 0 0 58.333333%;
      -webkit-box-flex: 0;
              flex: 0 0 58.333333%;
      max-width: 58.333333%; }
    .bootstrap .col-sm-8 {
      -ms-flex: 0 0 66.666667%;
      -webkit-box-flex: 0;
              flex: 0 0 66.666667%;
      max-width: 66.666667%; }
    .bootstrap .col-sm-9 {
      -ms-flex: 0 0 75%;
      -webkit-box-flex: 0;
              flex: 0 0 75%;
      max-width: 75%; }
    .bootstrap .col-sm-10 {
      -ms-flex: 0 0 83.333333%;
      -webkit-box-flex: 0;
              flex: 0 0 83.333333%;
      max-width: 83.333333%; }
    .bootstrap .col-sm-11 {
      -ms-flex: 0 0 91.666667%;
      -webkit-box-flex: 0;
              flex: 0 0 91.666667%;
      max-width: 91.666667%; }
    .bootstrap .col-sm-12 {
      -ms-flex: 0 0 100%;
      -webkit-box-flex: 0;
              flex: 0 0 100%;
      max-width: 100%; }
    .bootstrap .order-sm-1 {
      -ms-flex-order: 1;
      -webkit-box-ordinal-group: 2;
              order: 1; }
    .bootstrap .order-sm-2 {
      -ms-flex-order: 2;
      -webkit-box-ordinal-group: 3;
              order: 2; }
    .bootstrap .order-sm-3 {
      -ms-flex-order: 3;
      -webkit-box-ordinal-group: 4;
              order: 3; }
    .bootstrap .order-sm-4 {
      -ms-flex-order: 4;
      -webkit-box-ordinal-group: 5;
              order: 4; }
    .bootstrap .order-sm-5 {
      -ms-flex-order: 5;
      -webkit-box-ordinal-group: 6;
              order: 5; }
    .bootstrap .order-sm-6 {
      -ms-flex-order: 6;
      -webkit-box-ordinal-group: 7;
              order: 6; }
    .bootstrap .order-sm-7 {
      -ms-flex-order: 7;
      -webkit-box-ordinal-group: 8;
              order: 7; }
    .bootstrap .order-sm-8 {
      -ms-flex-order: 8;
      -webkit-box-ordinal-group: 9;
              order: 8; }
    .bootstrap .order-sm-9 {
      -ms-flex-order: 9;
      -webkit-box-ordinal-group: 10;
              order: 9; }
    .bootstrap .order-sm-10 {
      -ms-flex-order: 10;
      -webkit-box-ordinal-group: 11;
              order: 10; }
    .bootstrap .order-sm-11 {
      -ms-flex-order: 11;
      -webkit-box-ordinal-group: 12;
              order: 11; }
    .bootstrap .order-sm-12 {
      -ms-flex-order: 12;
      -webkit-box-ordinal-group: 13;
              order: 12; } }
  @media (min-width: 768px) {
    .bootstrap .col-md {
      -ms-flex-preferred-size: 0;
      flex-basis: 0;
      -ms-flex-positive: 1;
      -webkit-box-flex: 1;
              flex-grow: 1;
      max-width: 100%; }
    .bootstrap .col-md-auto {
      -ms-flex: 0 0 auto;
      -webkit-box-flex: 0;
              flex: 0 0 auto;
      width: auto;
      max-width: none; }
    .bootstrap .col-md-1 {
      -ms-flex: 0 0 8.333333%;
      -webkit-box-flex: 0;
              flex: 0 0 8.333333%;
      max-width: 8.333333%; }
    .bootstrap .col-md-2 {
      -ms-flex: 0 0 16.666667%;
      -webkit-box-flex: 0;
              flex: 0 0 16.666667%;
      max-width: 16.666667%; }
    .bootstrap .col-md-3 {
      -ms-flex: 0 0 25%;
      -webkit-box-flex: 0;
              flex: 0 0 25%;
      max-width: 25%; }
    .bootstrap .col-md-4 {
      -ms-flex: 0 0 33.333333%;
      -webkit-box-flex: 0;
              flex: 0 0 33.333333%;
      max-width: 33.333333%; }
    .bootstrap .col-md-5 {
      -ms-flex: 0 0 41.666667%;
      -webkit-box-flex: 0;
              flex: 0 0 41.666667%;
      max-width: 41.666667%; }
    .bootstrap .col-md-6 {
      -ms-flex: 0 0 50%;
      -webkit-box-flex: 0;
              flex: 0 0 50%;
      max-width: 50%; }
    .bootstrap .col-md-7 {
      -ms-flex: 0 0 58.333333%;
      -webkit-box-flex: 0;
              flex: 0 0 58.333333%;
      max-width: 58.333333%; }
    .bootstrap .col-md-8 {
      -ms-flex: 0 0 66.666667%;
      -webkit-box-flex: 0;
              flex: 0 0 66.666667%;
      max-width: 66.666667%; }
    .bootstrap .col-md-9 {
      -ms-flex: 0 0 75%;
      -webkit-box-flex: 0;
              flex: 0 0 75%;
      max-width: 75%; }
    .bootstrap .col-md-10 {
      -ms-flex: 0 0 83.333333%;
      -webkit-box-flex: 0;
              flex: 0 0 83.333333%;
      max-width: 83.333333%; }
    .bootstrap .col-md-11 {
      -ms-flex: 0 0 91.666667%;
      -webkit-box-flex: 0;
              flex: 0 0 91.666667%;
      max-width: 91.666667%; }
    .bootstrap .col-md-12 {
      -ms-flex: 0 0 100%;
      -webkit-box-flex: 0;
              flex: 0 0 100%;
      max-width: 100%; }
    .bootstrap .order-md-1 {
      -ms-flex-order: 1;
      -webkit-box-ordinal-group: 2;
              order: 1; }
    .bootstrap .order-md-2 {
      -ms-flex-order: 2;
      -webkit-box-ordinal-group: 3;
              order: 2; }
    .bootstrap .order-md-3 {
      -ms-flex-order: 3;
      -webkit-box-ordinal-group: 4;
              order: 3; }
    .bootstrap .order-md-4 {
      -ms-flex-order: 4;
      -webkit-box-ordinal-group: 5;
              order: 4; }
    .bootstrap .order-md-5 {
      -ms-flex-order: 5;
      -webkit-box-ordinal-group: 6;
              order: 5; }
    .bootstrap .order-md-6 {
      -ms-flex-order: 6;
      -webkit-box-ordinal-group: 7;
              order: 6; }
    .bootstrap .order-md-7 {
      -ms-flex-order: 7;
      -webkit-box-ordinal-group: 8;
              order: 7; }
    .bootstrap .order-md-8 {
      -ms-flex-order: 8;
      -webkit-box-ordinal-group: 9;
              order: 8; }
    .bootstrap .order-md-9 {
      -ms-flex-order: 9;
      -webkit-box-ordinal-group: 10;
              order: 9; }
    .bootstrap .order-md-10 {
      -ms-flex-order: 10;
      -webkit-box-ordinal-group: 11;
              order: 10; }
    .bootstrap .order-md-11 {
      -ms-flex-order: 11;
      -webkit-box-ordinal-group: 12;
              order: 11; }
    .bootstrap .order-md-12 {
      -ms-flex-order: 12;
      -webkit-box-ordinal-group: 13;
              order: 12; } }
  @media (min-width: 992px) {
    .bootstrap .col-lg {
      -ms-flex-preferred-size: 0;
      flex-basis: 0;
      -ms-flex-positive: 1;
      -webkit-box-flex: 1;
              flex-grow: 1;
      max-width: 100%; }
    .bootstrap .col-lg-auto {
      -ms-flex: 0 0 auto;
      -webkit-box-flex: 0;
              flex: 0 0 auto;
      width: auto;
      max-width: none; }
    .bootstrap .col-lg-1 {
      -ms-flex: 0 0 8.333333%;
      -webkit-box-flex: 0;
              flex: 0 0 8.333333%;
      max-width: 8.333333%; }
    .bootstrap .col-lg-2 {
      -ms-flex: 0 0 16.666667%;
      -webkit-box-flex: 0;
              flex: 0 0 16.666667%;
      max-width: 16.666667%; }
    .bootstrap .col-lg-3 {
      -ms-flex: 0 0 25%;
      -webkit-box-flex: 0;
              flex: 0 0 25%;
      max-width: 25%; }
    .bootstrap .col-lg-4 {
      -ms-flex: 0 0 33.333333%;
      -webkit-box-flex: 0;
              flex: 0 0 33.333333%;
      max-width: 33.333333%; }
    .bootstrap .col-lg-5 {
      -ms-flex: 0 0 41.666667%;
      -webkit-box-flex: 0;
              flex: 0 0 41.666667%;
      max-width: 41.666667%; }
    .bootstrap .col-lg-6 {
      -ms-flex: 0 0 50%;
      -webkit-box-flex: 0;
              flex: 0 0 50%;
      max-width: 50%; }
    .bootstrap .col-lg-7 {
      -ms-flex: 0 0 58.333333%;
      -webkit-box-flex: 0;
              flex: 0 0 58.333333%;
      max-width: 58.333333%; }
    .bootstrap .col-lg-8 {
      -ms-flex: 0 0 66.666667%;
      -webkit-box-flex: 0;
              flex: 0 0 66.666667%;
      max-width: 66.666667%; }
    .bootstrap .col-lg-9 {
      -ms-flex: 0 0 75%;
      -webkit-box-flex: 0;
              flex: 0 0 75%;
      max-width: 75%; }
    .bootstrap .col-lg-10 {
      -ms-flex: 0 0 83.333333%;
      -webkit-box-flex: 0;
              flex: 0 0 83.333333%;
      max-width: 83.333333%; }
    .bootstrap .col-lg-11 {
      -ms-flex: 0 0 91.666667%;
      -webkit-box-flex: 0;
              flex: 0 0 91.666667%;
      max-width: 91.666667%; }
    .bootstrap .col-lg-12 {
      -ms-flex: 0 0 100%;
      -webkit-box-flex: 0;
              flex: 0 0 100%;
      max-width: 100%; }
    .bootstrap .order-lg-1 {
      -ms-flex-order: 1;
      -webkit-box-ordinal-group: 2;
              order: 1; }
    .bootstrap .order-lg-2 {
      -ms-flex-order: 2;
      -webkit-box-ordinal-group: 3;
              order: 2; }
    .bootstrap .order-lg-3 {
      -ms-flex-order: 3;
      -webkit-box-ordinal-group: 4;
              order: 3; }
    .bootstrap .order-lg-4 {
      -ms-flex-order: 4;
      -webkit-box-ordinal-group: 5;
              order: 4; }
    .bootstrap .order-lg-5 {
      -ms-flex-order: 5;
      -webkit-box-ordinal-group: 6;
              order: 5; }
    .bootstrap .order-lg-6 {
      -ms-flex-order: 6;
      -webkit-box-ordinal-group: 7;
              order: 6; }
    .bootstrap .order-lg-7 {
      -ms-flex-order: 7;
      -webkit-box-ordinal-group: 8;
              order: 7; }
    .bootstrap .order-lg-8 {
      -ms-flex-order: 8;
      -webkit-box-ordinal-group: 9;
              order: 8; }
    .bootstrap .order-lg-9 {
      -ms-flex-order: 9;
      -webkit-box-ordinal-group: 10;
              order: 9; }
    .bootstrap .order-lg-10 {
      -ms-flex-order: 10;
      -webkit-box-ordinal-group: 11;
              order: 10; }
    .bootstrap .order-lg-11 {
      -ms-flex-order: 11;
      -webkit-box-ordinal-group: 12;
              order: 11; }
    .bootstrap .order-lg-12 {
      -ms-flex-order: 12;
      -webkit-box-ordinal-group: 13;
              order: 12; } }
  @media (min-width: 1200px) {
    .bootstrap .col-xl {
      -ms-flex-preferred-size: 0;
      flex-basis: 0;
      -ms-flex-positive: 1;
      -webkit-box-flex: 1;
              flex-grow: 1;
      max-width: 100%; }
    .bootstrap .col-xl-auto {
      -ms-flex: 0 0 auto;
      -webkit-box-flex: 0;
              flex: 0 0 auto;
      width: auto;
      max-width: none; }
    .bootstrap .col-xl-1 {
      -ms-flex: 0 0 8.333333%;
      -webkit-box-flex: 0;
              flex: 0 0 8.333333%;
      max-width: 8.333333%; }
    .bootstrap .col-xl-2 {
      -ms-flex: 0 0 16.666667%;
      -webkit-box-flex: 0;
              flex: 0 0 16.666667%;
      max-width: 16.666667%; }
    .bootstrap .col-xl-3 {
      -ms-flex: 0 0 25%;
      -webkit-box-flex: 0;
              flex: 0 0 25%;
      max-width: 25%; }
    .bootstrap .col-xl-4 {
      -ms-flex: 0 0 33.333333%;
      -webkit-box-flex: 0;
              flex: 0 0 33.333333%;
      max-width: 33.333333%; }
    .bootstrap .col-xl-5 {
      -ms-flex: 0 0 41.666667%;
      -webkit-box-flex: 0;
              flex: 0 0 41.666667%;
      max-width: 41.666667%; }
    .bootstrap .col-xl-6 {
      -ms-flex: 0 0 50%;
      -webkit-box-flex: 0;
              flex: 0 0 50%;
      max-width: 50%; }
    .bootstrap .col-xl-7 {
      -ms-flex: 0 0 58.333333%;
      -webkit-box-flex: 0;
              flex: 0 0 58.333333%;
      max-width: 58.333333%; }
    .bootstrap .col-xl-8 {
      -ms-flex: 0 0 66.666667%;
      -webkit-box-flex: 0;
              flex: 0 0 66.666667%;
      max-width: 66.666667%; }
    .bootstrap .col-xl-9 {
      -ms-flex: 0 0 75%;
      -webkit-box-flex: 0;
              flex: 0 0 75%;
      max-width: 75%; }
    .bootstrap .col-xl-10 {
      -ms-flex: 0 0 83.333333%;
      -webkit-box-flex: 0;
              flex: 0 0 83.333333%;
      max-width: 83.333333%; }
    .bootstrap .col-xl-11 {
      -ms-flex: 0 0 91.666667%;
      -webkit-box-flex: 0;
              flex: 0 0 91.666667%;
      max-width: 91.666667%; }
    .bootstrap .col-xl-12 {
      -ms-flex: 0 0 100%;
      -webkit-box-flex: 0;
              flex: 0 0 100%;
      max-width: 100%; }
    .bootstrap .order-xl-1 {
      -ms-flex-order: 1;
      -webkit-box-ordinal-group: 2;
              order: 1; }
    .bootstrap .order-xl-2 {
      -ms-flex-order: 2;
      -webkit-box-ordinal-group: 3;
              order: 2; }
    .bootstrap .order-xl-3 {
      -ms-flex-order: 3;
      -webkit-box-ordinal-group: 4;
              order: 3; }
    .bootstrap .order-xl-4 {
      -ms-flex-order: 4;
      -webkit-box-ordinal-group: 5;
              order: 4; }
    .bootstrap .order-xl-5 {
      -ms-flex-order: 5;
      -webkit-box-ordinal-group: 6;
              order: 5; }
    .bootstrap .order-xl-6 {
      -ms-flex-order: 6;
      -webkit-box-ordinal-group: 7;
              order: 6; }
    .bootstrap .order-xl-7 {
      -ms-flex-order: 7;
      -webkit-box-ordinal-group: 8;
              order: 7; }
    .bootstrap .order-xl-8 {
      -ms-flex-order: 8;
      -webkit-box-ordinal-group: 9;
              order: 8; }
    .bootstrap .order-xl-9 {
      -ms-flex-order: 9;
      -webkit-box-ordinal-group: 10;
              order: 9; }
    .bootstrap .order-xl-10 {
      -ms-flex-order: 10;
      -webkit-box-ordinal-group: 11;
              order: 10; }
    .bootstrap .order-xl-11 {
      -ms-flex-order: 11;
      -webkit-box-ordinal-group: 12;
              order: 11; }
    .bootstrap .order-xl-12 {
      -ms-flex-order: 12;
      -webkit-box-ordinal-group: 13;
              order: 12; } }
  .bootstrap .table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent; }
  .bootstrap .table td, .bootstrap .table th {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid #e9ecef; }
  .bootstrap .table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #e9ecef; }
  .bootstrap .table tbody + tbody {
    border-top: 2px solid #e9ecef; }
  .bootstrap .table .table {
    background-color: #fff; }
  .bootstrap .table-sm td, .bootstrap .table-sm th {
    padding: .3rem; }
  .bootstrap .table-bordered {
    border: 1px solid #e9ecef; }
  .bootstrap .table-bordered td, .bootstrap .table-bordered th {
    border: 1px solid #e9ecef; }
  .bootstrap .table-bordered thead td, .bootstrap .table-bordered thead th {
    border-bottom-width: 2px; }
  .bootstrap .table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05); }
  .bootstrap .table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.075); }
  .bootstrap .table-primary, .bootstrap .table-primary > td, .bootstrap .table-primary > th {
    background-color: #b8daff; }
  .bootstrap .table-hover .table-primary:hover {
    background-color: #9fcdff; }
  .bootstrap .table-hover .table-primary:hover > td, .bootstrap .table-hover .table-primary:hover > th {
    background-color: #9fcdff; }
  .bootstrap .table-secondary, .bootstrap .table-secondary > td, .bootstrap .table-secondary > th {
    background-color: #dddfe2; }
  .bootstrap .table-hover .table-secondary:hover {
    background-color: #cfd2d6; }
  .bootstrap .table-hover .table-secondary:hover > td, .bootstrap .table-hover .table-secondary:hover > th {
    background-color: #cfd2d6; }
  .bootstrap .table-success, .bootstrap .table-success > td, .bootstrap .table-success > th {
    background-color: #c3e6cb; }
  .bootstrap .table-hover .table-success:hover {
    background-color: #b1dfbb; }
  .bootstrap .table-hover .table-success:hover > td, .bootstrap .table-hover .table-success:hover > th {
    background-color: #b1dfbb; }
  .bootstrap .table-info, .bootstrap .table-info > td, .bootstrap .table-info > th {
    background-color: #bee5eb; }
  .bootstrap .table-hover .table-info:hover {
    background-color: #abdde5; }
  .bootstrap .table-hover .table-info:hover > td, .bootstrap .table-hover .table-info:hover > th {
    background-color: #abdde5; }
  .bootstrap .table-warning, .bootstrap .table-warning > td, .bootstrap .table-warning > th {
    background-color: #ffeeba; }
  .bootstrap .table-hover .table-warning:hover {
    background-color: #ffe8a1; }
  .bootstrap .table-hover .table-warning:hover > td, .bootstrap .table-hover .table-warning:hover > th {
    background-color: #ffe8a1; }
  .bootstrap .table-danger, .bootstrap .table-danger > td, .bootstrap .table-danger > th {
    background-color: #f5c6cb; }
  .bootstrap .table-hover .table-danger:hover {
    background-color: #f1b0b7; }
  .bootstrap .table-hover .table-danger:hover > td, .bootstrap .table-hover .table-danger:hover > th {
    background-color: #f1b0b7; }
  .bootstrap .table-light, .bootstrap .table-light > td, .bootstrap .table-light > th {
    background-color: #fdfdfe; }
  .bootstrap .table-hover .table-light:hover {
    background-color: #ececf6; }
  .bootstrap .table-hover .table-light:hover > td, .bootstrap .table-hover .table-light:hover > th {
    background-color: #ececf6; }
  .bootstrap .table-dark, .bootstrap .table-dark > td, .bootstrap .table-dark > th {
    background-color: #c6c8ca; }
  .bootstrap .table-hover .table-dark:hover {
    background-color: #b9bbbe; }
  .bootstrap .table-hover .table-dark:hover > td, .bootstrap .table-hover .table-dark:hover > th {
    background-color: #b9bbbe; }
  .bootstrap .table-active, .bootstrap .table-active > td, .bootstrap .table-active > th {
    background-color: rgba(0, 0, 0, 0.075); }
  .bootstrap .table-hover .table-active:hover {
    background-color: rgba(0, 0, 0, 0.075); }
  .bootstrap .table-hover .table-active:hover > td, .bootstrap .table-hover .table-active:hover > th {
    background-color: rgba(0, 0, 0, 0.075); }
  .bootstrap .thead-inverse th {
    color: #fff;
    background-color: #212529; }
  .bootstrap .thead-default th {
    color: #495057;
    background-color: #e9ecef; }
  .bootstrap .table-inverse {
    color: #fff;
    background-color: #212529; }
  .bootstrap .table-inverse td, .bootstrap .table-inverse th, .bootstrap .table-inverse thead th {
    border-color: #32383e; }
  .bootstrap .table-inverse.table-bordered {
    border: 0; }
  .bootstrap .table-inverse.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.05); }
  .bootstrap .table-inverse.table-hover tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.075); }
  @media (max-width: 991px) {
    .bootstrap .table-responsive {
      display: block;
      width: 100%;
      overflow-x: auto;
      -ms-overflow-style: -ms-autohiding-scrollbar; }
    .bootstrap .table-responsive.table-bordered {
      border: 0; } }
  .bootstrap .form-control {
    display: block;
    width: 100%;
    padding: .5rem .75rem;
    font-size: 1rem;
    line-height: 1.25;
    color: #495057;
    background-color: #fff;
    background-image: none;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: .25rem;
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s; }
  .bootstrap .form-control::-ms-expand {
    background-color: transparent;
    border: 0; }
  .bootstrap .form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0; }
  .bootstrap .form-control::-webkit-input-placeholder {
    color: #868e96;
    opacity: 1; }
  .bootstrap .form-control:-ms-input-placeholder {
    color: #868e96;
    opacity: 1; }
  .bootstrap .form-control::-ms-input-placeholder {
    color: #868e96;
    opacity: 1; }
  .bootstrap .form-control::placeholder {
    color: #868e96;
    opacity: 1; }
  .bootstrap .form-control:disabled, .bootstrap .form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1; }
  .bootstrap select.form-control:not([size]):not([multiple]) {
    height: calc(2.25rem + 2px); }
  .bootstrap select.form-control:focus::-ms-value {
    color: #495057;
    background-color: #fff; }
  .bootstrap .form-control-file, .bootstrap .form-control-range {
    display: block; }
  .bootstrap .col-form-label {
    padding-top: calc(.5rem - 1px * 2);
    padding-bottom: calc(.5rem - 1px * 2);
    margin-bottom: 0; }
  .bootstrap .col-form-label-lg {
    padding-top: calc(.5rem - 1px * 2);
    padding-bottom: calc(.5rem - 1px * 2);
    font-size: 1.25rem; }
  .bootstrap .col-form-label-sm {
    padding-top: calc(.25rem - 1px * 2);
    padding-bottom: calc(.25rem - 1px * 2);
    font-size: .875rem; }
  .bootstrap .col-form-legend {
    padding-top: .5rem;
    padding-bottom: .5rem;
    margin-bottom: 0;
    font-size: 1rem; }
  .bootstrap .form-control-plaintext {
    padding-top: .5rem;
    padding-bottom: .5rem;
    margin-bottom: 0;
    line-height: 1.25;
    border: solid transparent;
    border-width: 1px 0; }
  .bootstrap .form-control-plaintext.form-control-lg, .bootstrap .form-control-plaintext.form-control-sm, .bootstrap .input-group-lg > .form-control-plaintext.form-control, .bootstrap .input-group-lg > .form-control-plaintext.input-group-addon, .bootstrap .input-group-lg > .input-group-btn > .form-control-plaintext.btn, .bootstrap .input-group-sm > .form-control-plaintext.form-control, .bootstrap .input-group-sm > .form-control-plaintext.input-group-addon, .bootstrap .input-group-sm > .input-group-btn > .form-control-plaintext.btn {
    padding-right: 0;
    padding-left: 0; }
  .bootstrap .form-control-sm, .bootstrap .input-group-sm > .form-control, .bootstrap .input-group-sm > .input-group-addon, .bootstrap .input-group-sm > .input-group-btn > .btn {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem; }
  .bootstrap .input-group-sm > .input-group-btn > select.btn:not([size]):not([multiple]), .bootstrap .input-group-sm > select.form-control:not([size]):not([multiple]), .bootstrap .input-group-sm > select.input-group-addon:not([size]):not([multiple]), .bootstrap select.form-control-sm:not([size]):not([multiple]) {
    height: calc(1.8125rem + 2px); }
  .bootstrap .form-control-lg, .bootstrap .input-group-lg > .form-control, .bootstrap .input-group-lg > .input-group-addon, .bootstrap .input-group-lg > .input-group-btn > .btn {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem; }
  .bootstrap .input-group-lg > .input-group-btn > select.btn:not([size]):not([multiple]), .bootstrap .input-group-lg > select.form-control:not([size]):not([multiple]), .bootstrap .input-group-lg > select.input-group-addon:not([size]):not([multiple]), .bootstrap select.form-control-lg:not([size]):not([multiple]) {
    height: calc(2.3125rem + 2px); }
  .bootstrap .form-group {
    margin-bottom: 1rem; }
  .bootstrap .form-text {
    display: block;
    margin-top: .25rem; }
  .bootstrap .form-row {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px; }
  .bootstrap .form-row > .col, .bootstrap .form-row > [class*=col-] {
    padding-right: 5px;
    padding-left: 5px; }
  .bootstrap .form-check {
    position: relative;
    display: block;
    margin-bottom: .5rem; }
  .bootstrap .form-check.disabled .form-check-label {
    color: #868e96; }
  .bootstrap .form-check-label {
    padding-left: 1.25rem;
    margin-bottom: 0; }
  .bootstrap .form-check-input {
    position: absolute;
    margin-top: .25rem;
    margin-left: -1.25rem; }
  .bootstrap .form-check-input:only-child {
    position: static; }
  .bootstrap .form-check-inline {
    display: inline-block; }
  .bootstrap .form-check-inline .form-check-label {
    vertical-align: middle; }
  .bootstrap .form-check-inline + .form-check-inline {
    margin-left: .75rem; }
  .bootstrap .invalid-feedback {
    display: none;
    margin-top: .25rem;
    font-size: .875rem;
    color: #dc3545; }
  .bootstrap .invalid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    width: 250px;
    padding: .5rem;
    margin-top: .1rem;
    font-size: .875rem;
    line-height: 1;
    color: #fff;
    background-color: rgba(220, 53, 69, 0.8);
    border-radius: .2rem; }
  .bootstrap .custom-select.is-valid, .bootstrap .form-control.is-valid, .bootstrap .was-validated .custom-select:valid, .bootstrap .was-validated .form-control:valid {
    border-color: #28a745; }
  .bootstrap .custom-select.is-valid:focus, .bootstrap .form-control.is-valid:focus, .bootstrap .was-validated .custom-select:valid:focus, .bootstrap .was-validated .form-control:valid:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
            box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }
  .bootstrap .custom-select.is-valid ~ .invalid-feedback, .bootstrap .custom-select.is-valid ~ .invalid-tooltip, .bootstrap .form-control.is-valid ~ .invalid-feedback, .bootstrap .form-control.is-valid ~ .invalid-tooltip, .bootstrap .was-validated .custom-select:valid ~ .invalid-feedback, .bootstrap .was-validated .custom-select:valid ~ .invalid-tooltip, .bootstrap .was-validated .form-control:valid ~ .invalid-feedback, .bootstrap .was-validated .form-control:valid ~ .invalid-tooltip {
    display: block; }
  .bootstrap .form-check-input.is-valid + .form-check-label, .bootstrap .was-validated .form-check-input:valid + .form-check-label {
    color: #28a745; }
  .bootstrap .custom-control-input.is-valid ~ .custom-control-indicator, .bootstrap .was-validated .custom-control-input:valid ~ .custom-control-indicator {
    background-color: rgba(40, 167, 69, 0.25); }
  .bootstrap .custom-control-input.is-valid ~ .custom-control-description, .bootstrap .was-validated .custom-control-input:valid ~ .custom-control-description {
    color: #28a745; }
  .bootstrap .custom-file-input.is-valid ~ .custom-file-control, .bootstrap .was-validated .custom-file-input:valid ~ .custom-file-control {
    border-color: #28a745; }
  .bootstrap .custom-file-input.is-valid ~ .custom-file-control::before, .bootstrap .was-validated .custom-file-input:valid ~ .custom-file-control::before {
    border-color: inherit; }
  .bootstrap .custom-file-input.is-valid:focus, .bootstrap .was-validated .custom-file-input:valid:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
            box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }
  .bootstrap .custom-select.is-invalid, .bootstrap .form-control.is-invalid, .bootstrap .was-validated .custom-select:invalid, .bootstrap .was-validated .form-control:invalid {
    border-color: #dc3545; }
  .bootstrap .custom-select.is-invalid:focus, .bootstrap .form-control.is-invalid:focus, .bootstrap .was-validated .custom-select:invalid:focus, .bootstrap .was-validated .form-control:invalid:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
            box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }
  .bootstrap .custom-select.is-invalid ~ .invalid-feedback, .bootstrap .custom-select.is-invalid ~ .invalid-tooltip, .bootstrap .form-control.is-invalid ~ .invalid-feedback, .bootstrap .form-control.is-invalid ~ .invalid-tooltip, .bootstrap .was-validated .custom-select:invalid ~ .invalid-feedback, .bootstrap .was-validated .custom-select:invalid ~ .invalid-tooltip, .bootstrap .was-validated .form-control:invalid ~ .invalid-feedback, .bootstrap .was-validated .form-control:invalid ~ .invalid-tooltip {
    display: block; }
  .bootstrap .form-check-input.is-invalid + .form-check-label, .bootstrap .was-validated .form-check-input:invalid + .form-check-label {
    color: #dc3545; }
  .bootstrap .custom-control-input.is-invalid ~ .custom-control-indicator, .bootstrap .was-validated .custom-control-input:invalid ~ .custom-control-indicator {
    background-color: rgba(220, 53, 69, 0.25); }
  .bootstrap .custom-control-input.is-invalid ~ .custom-control-description, .bootstrap .was-validated .custom-control-input:invalid ~ .custom-control-description {
    color: #dc3545; }
  .bootstrap .custom-file-input.is-invalid ~ .custom-file-control, .bootstrap .was-validated .custom-file-input:invalid ~ .custom-file-control {
    border-color: #dc3545; }
  .bootstrap .custom-file-input.is-invalid ~ .custom-file-control::before, .bootstrap .was-validated .custom-file-input:invalid ~ .custom-file-control::before {
    border-color: inherit; }
  .bootstrap .custom-file-input.is-invalid:focus, .bootstrap .was-validated .custom-file-input:invalid:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
            box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }
  .bootstrap .form-inline {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-flow: row wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row wrap;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center; }
  .bootstrap .form-inline .form-check {
    width: 100%; }
  @media (min-width: 576px) {
    .bootstrap .form-inline label {
      display: -ms-flexbox;
      display: -webkit-box;
      display: flex;
      -ms-flex-align: center;
      -webkit-box-align: center;
              align-items: center;
      -ms-flex-pack: center;
      -webkit-box-pack: center;
              justify-content: center;
      margin-bottom: 0; }
    .bootstrap .form-inline .form-group {
      display: -ms-flexbox;
      display: -webkit-box;
      display: flex;
      -ms-flex: 0 0 auto;
      -webkit-box-flex: 0;
              flex: 0 0 auto;
      -ms-flex-flow: row wrap;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
              flex-flow: row wrap;
      -ms-flex-align: center;
      -webkit-box-align: center;
              align-items: center;
      margin-bottom: 0; }
    .bootstrap .form-inline .form-control {
      display: inline-block;
      width: auto;
      vertical-align: middle; }
    .bootstrap .form-inline .form-control-plaintext {
      display: inline-block; }
    .bootstrap .form-inline .input-group {
      width: auto; }
    .bootstrap .form-inline .form-control-label {
      margin-bottom: 0;
      vertical-align: middle; }
    .bootstrap .form-inline .form-check {
      display: -ms-flexbox;
      display: -webkit-box;
      display: flex;
      -ms-flex-align: center;
      -webkit-box-align: center;
              align-items: center;
      -ms-flex-pack: center;
      -webkit-box-pack: center;
              justify-content: center;
      width: auto;
      margin-top: 0;
      margin-bottom: 0; }
    .bootstrap .form-inline .form-check-label {
      padding-left: 0; }
    .bootstrap .form-inline .form-check-input {
      position: relative;
      margin-top: 0;
      margin-right: .25rem;
      margin-left: 0; }
    .bootstrap .form-inline .custom-control {
      display: -ms-flexbox;
      display: -webkit-box;
      display: flex;
      -ms-flex-align: center;
      -webkit-box-align: center;
              align-items: center;
      -ms-flex-pack: center;
      -webkit-box-pack: center;
              justify-content: center;
      padding-left: 0; }
    .bootstrap .form-inline .custom-control-indicator {
      position: static;
      display: inline-block;
      margin-right: .25rem;
      vertical-align: text-bottom; }
    .bootstrap .form-inline .has-feedback .form-control-feedback {
      top: 0; } }
  .bootstrap .btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .5rem .75rem;
    font-size: 1rem;
    line-height: 1.25;
    border-radius: .25rem;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out; }
  .bootstrap .btn:focus, .bootstrap .btn:hover {
    text-decoration: none; }
  .bootstrap .btn.focus, .bootstrap .btn:focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
            box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25); }
  .bootstrap .btn.disabled, .bootstrap .btn:disabled {
    opacity: .65; }
  .bootstrap .btn.active, .bootstrap .btn:active {
    background-image: none; }
  .bootstrap a.btn.disabled, .bootstrap fieldset[disabled] a.btn {
    pointer-events: none; }
  .bootstrap .btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff; }
  .bootstrap .btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc; }
  .bootstrap .btn-primary.focus, .bootstrap .btn-primary:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5);
            box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5); }
  .bootstrap .btn-primary.disabled, .bootstrap .btn-primary:disabled {
    background-color: #007bff;
    border-color: #007bff; }
  .bootstrap .btn-primary.active, .bootstrap .btn-primary:active, .bootstrap .show > .btn-primary.dropdown-toggle {
    background-color: #0069d9;
    background-image: none;
    border-color: #0062cc; }
  .bootstrap .btn-secondary {
    color: #fff;
    background-color: #868e96;
    border-color: #868e96; }
  .bootstrap .btn-secondary:hover {
    color: #fff;
    background-color: #727b84;
    border-color: #6c757d; }
  .bootstrap .btn-secondary.focus, .bootstrap .btn-secondary:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(134, 142, 150, 0.5);
            box-shadow: 0 0 0 3px rgba(134, 142, 150, 0.5); }
  .bootstrap .btn-secondary.disabled, .bootstrap .btn-secondary:disabled {
    background-color: #868e96;
    border-color: #868e96; }
  .bootstrap .btn-secondary.active, .bootstrap .btn-secondary:active, .bootstrap .show > .btn-secondary.dropdown-toggle {
    background-color: #727b84;
    background-image: none;
    border-color: #6c757d; }
  .bootstrap .btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745; }
  .bootstrap .btn-success:hover {
    color: #fff;
    background-color: #218838;
    border-color: #1e7e34; }
  .bootstrap .btn-success.focus, .bootstrap .btn-success:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.5);
            box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.5); }
  .bootstrap .btn-success.disabled, .bootstrap .btn-success:disabled {
    background-color: #28a745;
    border-color: #28a745; }
  .bootstrap .btn-success.active, .bootstrap .btn-success:active, .bootstrap .show > .btn-success.dropdown-toggle {
    background-color: #218838;
    background-image: none;
    border-color: #1e7e34; }
  .bootstrap .btn-info {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8; }
  .bootstrap .btn-info:hover {
    color: #fff;
    background-color: #138496;
    border-color: #117a8b; }
  .bootstrap .btn-info.focus, .bootstrap .btn-info:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.5);
            box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.5); }
  .bootstrap .btn-info.disabled, .bootstrap .btn-info:disabled {
    background-color: #17a2b8;
    border-color: #17a2b8; }
  .bootstrap .btn-info.active, .bootstrap .btn-info:active, .bootstrap .show > .btn-info.dropdown-toggle {
    background-color: #138496;
    background-image: none;
    border-color: #117a8b; }
  .bootstrap .btn-warning {
    color: #111;
    background-color: #ffc107;
    border-color: #ffc107; }
  .bootstrap .btn-warning:hover {
    color: #111;
    background-color: #e0a800;
    border-color: #d39e00; }
  .bootstrap .btn-warning.focus, .bootstrap .btn-warning:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.5);
            box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.5); }
  .bootstrap .btn-warning.disabled, .bootstrap .btn-warning:disabled {
    background-color: #ffc107;
    border-color: #ffc107; }
  .bootstrap .btn-warning.active, .bootstrap .btn-warning:active, .bootstrap .show > .btn-warning.dropdown-toggle {
    background-color: #e0a800;
    background-image: none;
    border-color: #d39e00; }
  .bootstrap .btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545; }
  .bootstrap .btn-danger:hover {
    color: #fff;
    background-color: #c82333;
    border-color: #bd2130; }
  .bootstrap .btn-danger.focus, .bootstrap .btn-danger:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.5);
            box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.5); }
  .bootstrap .btn-danger.disabled, .bootstrap .btn-danger:disabled {
    background-color: #dc3545;
    border-color: #dc3545; }
  .bootstrap .btn-danger.active, .bootstrap .btn-danger:active, .bootstrap .show > .btn-danger.dropdown-toggle {
    background-color: #c82333;
    background-image: none;
    border-color: #bd2130; }
  .bootstrap .btn-light {
    color: #111;
    background-color: #f8f9fa;
    border-color: #f8f9fa; }
  .bootstrap .btn-light:hover {
    color: #111;
    background-color: #e2e6ea;
    border-color: #dae0e5; }
  .bootstrap .btn-light.focus, .bootstrap .btn-light:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(248, 249, 250, 0.5);
            box-shadow: 0 0 0 3px rgba(248, 249, 250, 0.5); }
  .bootstrap .btn-light.disabled, .bootstrap .btn-light:disabled {
    background-color: #f8f9fa;
    border-color: #f8f9fa; }
  .bootstrap .btn-light.active, .bootstrap .btn-light:active, .bootstrap .show > .btn-light.dropdown-toggle {
    background-color: #e2e6ea;
    background-image: none;
    border-color: #dae0e5; }
  .bootstrap .btn-dark {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40; }
  .bootstrap .btn-dark:hover {
    color: #fff;
    background-color: #23272b;
    border-color: #1d2124; }
  .bootstrap .btn-dark.focus, .bootstrap .btn-dark:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(52, 58, 64, 0.5);
            box-shadow: 0 0 0 3px rgba(52, 58, 64, 0.5); }
  .bootstrap .btn-dark.disabled, .bootstrap .btn-dark:disabled {
    background-color: #343a40;
    border-color: #343a40; }
  .bootstrap .btn-dark.active, .bootstrap .btn-dark:active, .bootstrap .show > .btn-dark.dropdown-toggle {
    background-color: #23272b;
    background-image: none;
    border-color: #1d2124; }
  .bootstrap .btn-outline-primary {
    color: #007bff;
    background-color: transparent;
    background-image: none;
    border-color: #007bff; }
  .bootstrap .btn-outline-primary:hover {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff; }
  .bootstrap .btn-outline-primary.focus, .bootstrap .btn-outline-primary:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5);
            box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5); }
  .bootstrap .btn-outline-primary.disabled, .bootstrap .btn-outline-primary:disabled {
    color: #007bff;
    background-color: transparent; }
  .bootstrap .btn-outline-primary.active, .bootstrap .btn-outline-primary:active, .bootstrap .show > .btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff; }
  .bootstrap .btn-outline-secondary {
    color: #868e96;
    background-color: transparent;
    background-image: none;
    border-color: #868e96; }
  .bootstrap .btn-outline-secondary:hover {
    color: #fff;
    background-color: #868e96;
    border-color: #868e96; }
  .bootstrap .btn-outline-secondary.focus, .bootstrap .btn-outline-secondary:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(134, 142, 150, 0.5);
            box-shadow: 0 0 0 3px rgba(134, 142, 150, 0.5); }
  .bootstrap .btn-outline-secondary.disabled, .bootstrap .btn-outline-secondary:disabled {
    color: #868e96;
    background-color: transparent; }
  .bootstrap .btn-outline-secondary.active, .bootstrap .btn-outline-secondary:active, .bootstrap .show > .btn-outline-secondary.dropdown-toggle {
    color: #fff;
    background-color: #868e96;
    border-color: #868e96; }
  .bootstrap .btn-outline-success {
    color: #28a745;
    background-color: transparent;
    background-image: none;
    border-color: #28a745; }
  .bootstrap .btn-outline-success:hover {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745; }
  .bootstrap .btn-outline-success.focus, .bootstrap .btn-outline-success:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.5);
            box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.5); }
  .bootstrap .btn-outline-success.disabled, .bootstrap .btn-outline-success:disabled {
    color: #28a745;
    background-color: transparent; }
  .bootstrap .btn-outline-success.active, .bootstrap .btn-outline-success:active, .bootstrap .show > .btn-outline-success.dropdown-toggle {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745; }
  .bootstrap .btn-outline-info {
    color: #17a2b8;
    background-color: transparent;
    background-image: none;
    border-color: #17a2b8; }
  .bootstrap .btn-outline-info:hover {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8; }
  .bootstrap .btn-outline-info.focus, .bootstrap .btn-outline-info:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.5);
            box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.5); }
  .bootstrap .btn-outline-info.disabled, .bootstrap .btn-outline-info:disabled {
    color: #17a2b8;
    background-color: transparent; }
  .bootstrap .btn-outline-info.active, .bootstrap .btn-outline-info:active, .bootstrap .show > .btn-outline-info.dropdown-toggle {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8; }
  .bootstrap .btn-outline-warning {
    color: #ffc107;
    background-color: transparent;
    background-image: none;
    border-color: #ffc107; }
  .bootstrap .btn-outline-warning:hover {
    color: #fff;
    background-color: #ffc107;
    border-color: #ffc107; }
  .bootstrap .btn-outline-warning.focus, .bootstrap .btn-outline-warning:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.5);
            box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.5); }
  .bootstrap .btn-outline-warning.disabled, .bootstrap .btn-outline-warning:disabled {
    color: #ffc107;
    background-color: transparent; }
  .bootstrap .btn-outline-warning.active, .bootstrap .btn-outline-warning:active, .bootstrap .show > .btn-outline-warning.dropdown-toggle {
    color: #fff;
    background-color: #ffc107;
    border-color: #ffc107; }
  .bootstrap .btn-outline-danger {
    color: #dc3545;
    background-color: transparent;
    background-image: none;
    border-color: #dc3545; }
  .bootstrap .btn-outline-danger:hover {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545; }
  .bootstrap .btn-outline-danger.focus, .bootstrap .btn-outline-danger:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.5);
            box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.5); }
  .bootstrap .btn-outline-danger.disabled, .bootstrap .btn-outline-danger:disabled {
    color: #dc3545;
    background-color: transparent; }
  .bootstrap .btn-outline-danger.active, .bootstrap .btn-outline-danger:active, .bootstrap .show > .btn-outline-danger.dropdown-toggle {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545; }
  .bootstrap .btn-outline-light {
    color: #f8f9fa;
    background-color: transparent;
    background-image: none;
    border-color: #f8f9fa; }
  .bootstrap .btn-outline-light:hover {
    color: #fff;
    background-color: #f8f9fa;
    border-color: #f8f9fa; }
  .bootstrap .btn-outline-light.focus, .bootstrap .btn-outline-light:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(248, 249, 250, 0.5);
            box-shadow: 0 0 0 3px rgba(248, 249, 250, 0.5); }
  .bootstrap .btn-outline-light.disabled, .bootstrap .btn-outline-light:disabled {
    color: #f8f9fa;
    background-color: transparent; }
  .bootstrap .btn-outline-light.active, .bootstrap .btn-outline-light:active, .bootstrap .show > .btn-outline-light.dropdown-toggle {
    color: #fff;
    background-color: #f8f9fa;
    border-color: #f8f9fa; }
  .bootstrap .btn-outline-dark {
    color: #343a40;
    background-color: transparent;
    background-image: none;
    border-color: #343a40; }
  .bootstrap .btn-outline-dark:hover {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40; }
  .bootstrap .btn-outline-dark.focus, .bootstrap .btn-outline-dark:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(52, 58, 64, 0.5);
            box-shadow: 0 0 0 3px rgba(52, 58, 64, 0.5); }
  .bootstrap .btn-outline-dark.disabled, .bootstrap .btn-outline-dark:disabled {
    color: #343a40;
    background-color: transparent; }
  .bootstrap .btn-outline-dark.active, .bootstrap .btn-outline-dark:active, .bootstrap .show > .btn-outline-dark.dropdown-toggle {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40; }
  .bootstrap .btn-link {
    font-weight: 400;
    color: #007bff;
    border-radius: 0; }
  .bootstrap .btn-link, .bootstrap .btn-link.active, .bootstrap .btn-link:active, .bootstrap .btn-link:disabled {
    background-color: transparent; }
  .bootstrap .btn-link, .bootstrap .btn-link:active, .bootstrap .btn-link:focus {
    border-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none; }
  .bootstrap .btn-link:hover {
    border-color: transparent; }
  .bootstrap .btn-link:focus, .bootstrap .btn-link:hover {
    color: #0056b3;
    text-decoration: underline;
    background-color: transparent; }
  .bootstrap .btn-link:disabled {
    color: #868e96; }
  .bootstrap .btn-link:disabled:focus, .bootstrap .btn-link:disabled:hover {
    text-decoration: none; }
  .bootstrap .btn-group-lg > .btn, .bootstrap .btn-lg {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem; }
  .bootstrap .btn-group-sm > .btn, .bootstrap .btn-sm {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem; }
  .bootstrap .btn-block {
    display: block;
    width: 100%; }
  .bootstrap .btn-block + .btn-block {
    margin-top: .5rem; }
  .bootstrap input[type=button].btn-block, .bootstrap input[type=reset].btn-block, .bootstrap input[type=submit].btn-block {
    width: 100%; }
  .bootstrap .fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    transition: opacity .15s linear; }
  .bootstrap .fade.show {
    opacity: 1; }
  .bootstrap .collapse {
    display: none; }
  .bootstrap .collapse.show {
    display: block; }
  .bootstrap tr.collapse.show {
    display: table-row; }
  .bootstrap tbody.collapse.show {
    display: table-row-group; }
  .bootstrap .collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition: height .35s ease;
    transition: height .35s ease; }
  .bootstrap .dropdown, .bootstrap .dropup {
    position: relative; }
  .bootstrap .dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-left: .3em solid transparent; }
  .bootstrap .dropdown-toggle:empty::after {
    margin-left: 0; }
  .bootstrap .dropup .dropdown-menu {
    margin-top: 0;
    margin-bottom: .125rem; }
  .bootstrap .dropup .dropdown-toggle::after {
    border-top: 0;
    border-bottom: .3em solid; }
  .bootstrap .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: .25rem; }
  .bootstrap .dropdown-divider {
    height: 0;
    margin: .5rem 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef; }
  .bootstrap .dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background: 0 0;
    border: 0; }
  .bootstrap .dropdown-item:focus, .bootstrap .dropdown-item:hover {
    color: #16181b;
    text-decoration: none;
    background-color: #f8f9fa; }
  .bootstrap .dropdown-item.active, .bootstrap .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #007bff; }
  .bootstrap .dropdown-item.disabled, .bootstrap .dropdown-item:disabled {
    color: #868e96;
    background-color: transparent; }
  .bootstrap .show > a {
    outline: 0; }
  .bootstrap .dropdown-menu.show {
    display: block; }
  .bootstrap .dropdown-header {
    display: block;
    padding: .5rem 1.5rem;
    margin-bottom: 0;
    font-size: .875rem;
    color: #868e96;
    white-space: nowrap; }
  .bootstrap .btn-group, .bootstrap .btn-group-vertical {
    position: relative;
    display: -ms-inline-flexbox;
    display: -webkit-inline-box;
    display: inline-flex;
    vertical-align: middle; }
  .bootstrap .btn-group-vertical > .btn, .bootstrap .btn-group > .btn {
    position: relative;
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
            flex: 0 1 auto;
    margin-bottom: 0; }
  .bootstrap .btn-group-vertical > .btn:hover, .bootstrap .btn-group > .btn:hover {
    z-index: 2; }
  .bootstrap .btn-group-vertical > .btn.active, .bootstrap .btn-group-vertical > .btn:active, .bootstrap .btn-group-vertical > .btn:focus, .bootstrap .btn-group > .btn.active, .bootstrap .btn-group > .btn:active, .bootstrap .btn-group > .btn:focus {
    z-index: 2; }
  .bootstrap .btn-group .btn + .btn, .bootstrap .btn-group .btn + .btn-group, .bootstrap .btn-group .btn-group + .btn, .bootstrap .btn-group .btn-group + .btn-group, .bootstrap .btn-group-vertical .btn + .btn, .bootstrap .btn-group-vertical .btn + .btn-group, .bootstrap .btn-group-vertical .btn-group + .btn, .bootstrap .btn-group-vertical .btn-group + .btn-group {
    margin-left: -1px; }
  .bootstrap .btn-toolbar {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
            justify-content: flex-start; }
  .bootstrap .btn-toolbar .input-group {
    width: auto; }
  .bootstrap .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0; }
  .bootstrap .btn-group > .btn:first-child {
    margin-left: 0; }
  .bootstrap .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
  .bootstrap .btn-group > .btn:last-child:not(:first-child), .bootstrap .btn-group > .dropdown-toggle:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
  .bootstrap .btn-group > .btn-group {
    float: left; }
  .bootstrap .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
    border-radius: 0; }
  .bootstrap .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, .bootstrap .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
  .bootstrap .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
  .bootstrap .btn + .dropdown-toggle-split {
    padding-right: .5625rem;
    padding-left: .5625rem; }
  .bootstrap .btn + .dropdown-toggle-split::after {
    margin-left: 0; }
  .bootstrap .btn-group-sm > .btn + .dropdown-toggle-split, .bootstrap .btn-sm + .dropdown-toggle-split {
    padding-right: .375rem;
    padding-left: .375rem; }
  .bootstrap .btn-group-lg > .btn + .dropdown-toggle-split, .bootstrap .btn-lg + .dropdown-toggle-split {
    padding-right: .75rem;
    padding-left: .75rem; }
  .bootstrap .btn-group-vertical {
    display: -ms-inline-flexbox;
    display: -webkit-inline-box;
    display: inline-flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -ms-flex-align: start;
    -webkit-box-align: start;
            align-items: flex-start;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center; }
  .bootstrap .btn-group-vertical .btn, .bootstrap .btn-group-vertical .btn-group {
    width: 100%; }
  .bootstrap .btn-group-vertical > .btn + .btn, .bootstrap .btn-group-vertical > .btn + .btn-group, .bootstrap .btn-group-vertical > .btn-group + .btn, .bootstrap .btn-group-vertical > .btn-group + .btn-group {
    margin-top: -1px;
    margin-left: 0; }
  .bootstrap .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
    border-radius: 0; }
  .bootstrap .btn-group-vertical > .btn:first-child:not(:last-child) {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; }
  .bootstrap .btn-group-vertical > .btn:last-child:not(:first-child) {
    border-top-left-radius: 0;
    border-top-right-radius: 0; }
  .bootstrap .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
    border-radius: 0; }
  .bootstrap .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .bootstrap .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; }
  .bootstrap .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0; }
  .bootstrap [data-toggle=buttons] > .btn input[type=checkbox], .bootstrap [data-toggle=buttons] > .btn input[type=radio], .bootstrap [data-toggle=buttons] > .btn-group > .btn input[type=checkbox], .bootstrap [data-toggle=buttons] > .btn-group > .btn input[type=radio] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none; }
  .bootstrap .input-group {
    position: relative;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    width: 100%; }
  .bootstrap .input-group .form-control {
    position: relative;
    z-index: 2;
    -ms-flex: 1 1 auto;
    -webkit-box-flex: 1;
            flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0; }
  .bootstrap .input-group .form-control:active, .bootstrap .input-group .form-control:focus, .bootstrap .input-group .form-control:hover {
    z-index: 3; }
  .bootstrap .input-group .form-control, .bootstrap .input-group-addon, .bootstrap .input-group-btn {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center; }
  .bootstrap .input-group .form-control:not(:first-child):not(:last-child), .bootstrap .input-group-addon:not(:first-child):not(:last-child), .bootstrap .input-group-btn:not(:first-child):not(:last-child) {
    border-radius: 0; }
  .bootstrap .input-group-addon, .bootstrap .input-group-btn {
    white-space: nowrap;
    vertical-align: middle; }
  .bootstrap .input-group-addon {
    padding: .5rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.25;
    color: #495057;
    text-align: center;
    background-color: #e9ecef;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: .25rem; }
  .bootstrap .input-group-addon.form-control-sm, .bootstrap .input-group-sm > .input-group-addon, .bootstrap .input-group-sm > .input-group-btn > .input-group-addon.btn {
    padding: .25rem .5rem;
    font-size: .875rem;
    border-radius: .2rem; }
  .bootstrap .input-group-addon.form-control-lg, .bootstrap .input-group-lg > .input-group-addon, .bootstrap .input-group-lg > .input-group-btn > .input-group-addon.btn {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    border-radius: .3rem; }
  .bootstrap .input-group-addon input[type=checkbox], .bootstrap .input-group-addon input[type=radio] {
    margin-top: 0; }
  .bootstrap .input-group .form-control:not(:last-child), .bootstrap .input-group-addon:not(:last-child), .bootstrap .input-group-btn:not(:first-child) > .btn-group:not(:last-child) > .btn, .bootstrap .input-group-btn:not(:first-child) > .btn:not(:last-child):not(.dropdown-toggle), .bootstrap .input-group-btn:not(:last-child) > .btn, .bootstrap .input-group-btn:not(:last-child) > .btn-group > .btn, .bootstrap .input-group-btn:not(:last-child) > .dropdown-toggle {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
  .bootstrap .input-group-addon:not(:last-child) {
    border-right: 0; }
  .bootstrap .input-group .form-control:not(:first-child), .bootstrap .input-group-addon:not(:first-child), .bootstrap .input-group-btn:not(:first-child) > .btn, .bootstrap .input-group-btn:not(:first-child) > .btn-group > .btn, .bootstrap .input-group-btn:not(:first-child) > .dropdown-toggle, .bootstrap .input-group-btn:not(:last-child) > .btn-group:not(:first-child) > .btn, .bootstrap .input-group-btn:not(:last-child) > .btn:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
  .bootstrap .form-control + .input-group-addon:not(:first-child) {
    border-left: 0; }
  .bootstrap .input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap; }
  .bootstrap .input-group-btn > .btn {
    position: relative; }
  .bootstrap .input-group-btn > .btn + .btn {
    margin-left: -1px; }
  .bootstrap .input-group-btn > .btn:active, .bootstrap .input-group-btn > .btn:focus, .bootstrap .input-group-btn > .btn:hover {
    z-index: 3; }
  .bootstrap .input-group-btn:not(:last-child) > .btn, .bootstrap .input-group-btn:not(:last-child) > .btn-group {
    margin-right: -1px; }
  .bootstrap .input-group-btn:not(:first-child) > .btn, .bootstrap .input-group-btn:not(:first-child) > .btn-group {
    z-index: 2;
    margin-left: -1px; }
  .bootstrap .input-group-btn:not(:first-child) > .btn-group:active, .bootstrap .input-group-btn:not(:first-child) > .btn-group:focus, .bootstrap .input-group-btn:not(:first-child) > .btn-group:hover, .bootstrap .input-group-btn:not(:first-child) > .btn:active, .bootstrap .input-group-btn:not(:first-child) > .btn:focus, .bootstrap .input-group-btn:not(:first-child) > .btn:hover {
    z-index: 3; }
  .bootstrap .custom-control {
    position: relative;
    display: -ms-inline-flexbox;
    display: -webkit-inline-box;
    display: inline-flex;
    min-height: 1.5rem;
    padding-left: 1.5rem;
    margin-right: 1rem; }
  .bootstrap .custom-control-input {
    position: absolute;
    z-index: -1;
    opacity: 0; }
  .bootstrap .custom-control-input:checked ~ .custom-control-indicator {
    color: #fff;
    background-color: #007bff; }
  .bootstrap .custom-control-input:focus ~ .custom-control-indicator {
    -webkit-box-shadow: 0 0 0 1px #fff,0 0 0 3px #007bff;
            box-shadow: 0 0 0 1px #fff,0 0 0 3px #007bff; }
  .bootstrap .custom-control-input:active ~ .custom-control-indicator {
    color: #fff;
    background-color: #b3d7ff; }
  .bootstrap .custom-control-input:disabled ~ .custom-control-indicator {
    background-color: #e9ecef; }
  .bootstrap .custom-control-input:disabled ~ .custom-control-description {
    color: #868e96; }
  .bootstrap .custom-control-indicator {
    position: absolute;
    top: .25rem;
    left: 0;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #ddd;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%; }
  .bootstrap .custom-checkbox .custom-control-indicator {
    border-radius: .25rem; }
  .bootstrap .custom-checkbox .custom-control-input:checked ~ .custom-control-indicator {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E"); }
  .bootstrap .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-indicator {
    background-color: #007bff;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E"); }
  .bootstrap .custom-radio .custom-control-indicator {
    border-radius: 50%; }
  .bootstrap .custom-radio .custom-control-input:checked ~ .custom-control-indicator {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E"); }
  .bootstrap .custom-controls-stacked {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column; }
  .bootstrap .custom-controls-stacked .custom-control {
    margin-bottom: .25rem; }
  .bootstrap .custom-controls-stacked .custom-control + .custom-control {
    margin-left: 0; }
  .bootstrap .custom-select {
    display: inline-block;
    max-width: 100%;
    height: calc(2.25rem + 2px);
    padding: .375rem 1.75rem .375rem .75rem;
    line-height: 1.25;
    color: #495057;
    vertical-align: middle;
    background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
    background-size: 8px 10px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: .25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; }
  .bootstrap .custom-select:focus {
    border-color: #80bdff;
    outline: 0; }
  .bootstrap .custom-select:focus::-ms-value {
    color: #495057;
    background-color: #fff; }
  .bootstrap .custom-select:disabled {
    color: #868e96;
    background-color: #e9ecef; }
  .bootstrap .custom-select::-ms-expand {
    opacity: 0; }
  .bootstrap .custom-select-sm {
    height: calc(1.8125rem + 2px);
    padding-top: .375rem;
    padding-bottom: .375rem;
    font-size: 75%; }
  .bootstrap .custom-file {
    position: relative;
    display: inline-block;
    max-width: 100%;
    height: 2.5rem;
    margin-bottom: 0; }
  .bootstrap .custom-file-input {
    min-width: 14rem;
    max-width: 100%;
    height: 2.5rem;
    margin: 0;
    opacity: 0; }
  .bootstrap .custom-file-control {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 5;
    height: 2.5rem;
    padding: .5rem 1rem;
    line-height: 1.5;
    color: #495057;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: .25rem; }
  .bootstrap .custom-file-control:lang(en):empty::after {
    content: "Choose file..."; }
  .bootstrap .custom-file-control::before {
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    z-index: 6;
    display: block;
    height: 2.5rem;
    padding: .5rem 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #e9ecef;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0 .25rem .25rem 0; }
  .bootstrap .custom-file-control:lang(en)::before {
    content: "Browse"; }
  .bootstrap .nav {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none; }
  .bootstrap .nav-link {
    display: block;
    padding: .5rem 1rem; }
  .bootstrap .nav-link:focus, .bootstrap .nav-link:hover {
    text-decoration: none; }
  .bootstrap .nav-link.disabled {
    color: #868e96; }
  .bootstrap .nav-tabs {
    border-bottom: 1px solid #ddd; }
  .bootstrap .nav-tabs .nav-item {
    margin-bottom: -1px; }
  .bootstrap .nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem; }
  .bootstrap .nav-tabs .nav-link:focus, .bootstrap .nav-tabs .nav-link:hover {
    border-color: #e9ecef #e9ecef #ddd; }
  .bootstrap .nav-tabs .nav-link.disabled {
    color: #868e96;
    background-color: transparent;
    border-color: transparent; }
  .bootstrap .nav-tabs .nav-item.show .nav-link, .bootstrap .nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-color: #ddd #ddd #fff; }
  .bootstrap .nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0; }
  .bootstrap .nav-pills .nav-link {
    border-radius: .25rem; }
  .bootstrap .nav-pills .nav-link.active, .bootstrap .show > .nav-pills .nav-link {
    color: #fff;
    background-color: #007bff; }
  .bootstrap .nav-fill .nav-item {
    -ms-flex: 1 1 auto;
    -webkit-box-flex: 1;
            flex: 1 1 auto;
    text-align: center; }
  .bootstrap .nav-justified .nav-item {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
            flex-grow: 1;
    text-align: center; }
  .bootstrap .tab-content > .tab-pane {
    display: none; }
  .bootstrap .tab-content > .active {
    display: block; }
  .bootstrap .navbar {
    position: relative;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
            justify-content: space-between;
    padding: .5rem 1rem; }
  .bootstrap .navbar > .container, .bootstrap .navbar > .container-fluid {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
            justify-content: space-between; }
  .bootstrap .navbar-brand {
    display: inline-block;
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap; }
  .bootstrap .navbar-brand:focus, .bootstrap .navbar-brand:hover {
    text-decoration: none; }
  .bootstrap .navbar-nav {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none; }
  .bootstrap .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0; }
  .bootstrap .navbar-nav .dropdown-menu {
    position: static;
    float: none; }
  .bootstrap .navbar-text {
    display: inline-block;
    padding-top: .5rem;
    padding-bottom: .5rem; }
  .bootstrap .navbar-collapse {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center; }
  .bootstrap .navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background: 0 0;
    border: 1px solid transparent;
    border-radius: .25rem; }
  .bootstrap .navbar-toggler:focus, .bootstrap .navbar-toggler:hover {
    text-decoration: none; }
  .bootstrap .navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    background-size: 100% 100%; }
  @media (max-width: 575px) {
    .bootstrap .navbar-expand-sm > .container, .bootstrap .navbar-expand-sm > .container-fluid {
      padding-right: 0;
      padding-left: 0; } }
  @media (min-width: 576px) {
    .bootstrap .navbar-expand-sm {
      -ms-flex-direction: row;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
      -ms-flex-pack: start;
      -webkit-box-pack: start;
              justify-content: flex-start; }
    .bootstrap .navbar-expand-sm .navbar-nav {
      -ms-flex-direction: row;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
              flex-direction: row; }
    .bootstrap .navbar-expand-sm .navbar-nav .dropdown-menu {
      position: absolute; }
    .bootstrap .navbar-expand-sm .navbar-nav .dropdown-menu-right {
      right: 0;
      left: auto; }
    .bootstrap .navbar-expand-sm .navbar-nav .nav-link {
      padding-right: .5rem;
      padding-left: .5rem; }
    .bootstrap .navbar-expand-sm > .container, .bootstrap .navbar-expand-sm > .container-fluid {
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap; }
    .bootstrap .navbar-expand-sm .navbar-collapse {
      display: -ms-flexbox !important;
      display: -webkit-box !important;
      display: flex !important; }
    .bootstrap .navbar-expand-sm .navbar-toggler {
      display: none; } }
  @media (max-width: 767px) {
    .bootstrap .navbar-expand-md > .container, .bootstrap .navbar-expand-md > .container-fluid {
      padding-right: 0;
      padding-left: 0; } }
  @media (min-width: 768px) {
    .bootstrap .navbar-expand-md {
      -ms-flex-direction: row;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
      -ms-flex-pack: start;
      -webkit-box-pack: start;
              justify-content: flex-start; }
    .bootstrap .navbar-expand-md .navbar-nav {
      -ms-flex-direction: row;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
              flex-direction: row; }
    .bootstrap .navbar-expand-md .navbar-nav .dropdown-menu {
      position: absolute; }
    .bootstrap .navbar-expand-md .navbar-nav .dropdown-menu-right {
      right: 0;
      left: auto; }
    .bootstrap .navbar-expand-md .navbar-nav .nav-link {
      padding-right: .5rem;
      padding-left: .5rem; }
    .bootstrap .navbar-expand-md > .container, .bootstrap .navbar-expand-md > .container-fluid {
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap; }
    .bootstrap .navbar-expand-md .navbar-collapse {
      display: -ms-flexbox !important;
      display: -webkit-box !important;
      display: flex !important; }
    .bootstrap .navbar-expand-md .navbar-toggler {
      display: none; } }
  @media (max-width: 991px) {
    .bootstrap .navbar-expand-lg > .container, .bootstrap .navbar-expand-lg > .container-fluid {
      padding-right: 0;
      padding-left: 0; } }
  @media (min-width: 992px) {
    .bootstrap .navbar-expand-lg {
      -ms-flex-direction: row;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
      -ms-flex-pack: start;
      -webkit-box-pack: start;
              justify-content: flex-start; }
    .bootstrap .navbar-expand-lg .navbar-nav {
      -ms-flex-direction: row;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
              flex-direction: row; }
    .bootstrap .navbar-expand-lg .navbar-nav .dropdown-menu {
      position: absolute; }
    .bootstrap .navbar-expand-lg .navbar-nav .dropdown-menu-right {
      right: 0;
      left: auto; }
    .bootstrap .navbar-expand-lg .navbar-nav .nav-link {
      padding-right: .5rem;
      padding-left: .5rem; }
    .bootstrap .navbar-expand-lg > .container, .bootstrap .navbar-expand-lg > .container-fluid {
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap; }
    .bootstrap .navbar-expand-lg .navbar-collapse {
      display: -ms-flexbox !important;
      display: -webkit-box !important;
      display: flex !important; }
    .bootstrap .navbar-expand-lg .navbar-toggler {
      display: none; } }
  @media (max-width: 1199px) {
    .bootstrap .navbar-expand-xl > .container, .bootstrap .navbar-expand-xl > .container-fluid {
      padding-right: 0;
      padding-left: 0; } }
  @media (min-width: 1200px) {
    .bootstrap .navbar-expand-xl {
      -ms-flex-direction: row;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
      -ms-flex-pack: start;
      -webkit-box-pack: start;
              justify-content: flex-start; }
    .bootstrap .navbar-expand-xl .navbar-nav {
      -ms-flex-direction: row;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
              flex-direction: row; }
    .bootstrap .navbar-expand-xl .navbar-nav .dropdown-menu {
      position: absolute; }
    .bootstrap .navbar-expand-xl .navbar-nav .dropdown-menu-right {
      right: 0;
      left: auto; }
    .bootstrap .navbar-expand-xl .navbar-nav .nav-link {
      padding-right: .5rem;
      padding-left: .5rem; }
    .bootstrap .navbar-expand-xl > .container, .bootstrap .navbar-expand-xl > .container-fluid {
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap; }
    .bootstrap .navbar-expand-xl .navbar-collapse {
      display: -ms-flexbox !important;
      display: -webkit-box !important;
      display: flex !important; }
    .bootstrap .navbar-expand-xl .navbar-toggler {
      display: none; } }
  .bootstrap .navbar-expand {
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
            justify-content: flex-start; }
  .bootstrap .navbar-expand > .container, .bootstrap .navbar-expand > .container-fluid {
    padding-right: 0;
    padding-left: 0; }
  .bootstrap .navbar-expand .navbar-nav {
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row; }
  .bootstrap .navbar-expand .navbar-nav .dropdown-menu {
    position: absolute; }
  .bootstrap .navbar-expand .navbar-nav .dropdown-menu-right {
    right: 0;
    left: auto; }
  .bootstrap .navbar-expand .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem; }
  .bootstrap .navbar-expand > .container, .bootstrap .navbar-expand > .container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap; }
  .bootstrap .navbar-expand .navbar-collapse {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important; }
  .bootstrap .navbar-expand .navbar-toggler {
    display: none; }
  .bootstrap .navbar-light .navbar-brand {
    color: rgba(0, 0, 0, 0.9); }
  .bootstrap .navbar-light .navbar-brand:focus, .bootstrap .navbar-light .navbar-brand:hover {
    color: rgba(0, 0, 0, 0.9); }
  .bootstrap .navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, 0.5); }
  .bootstrap .navbar-light .navbar-nav .nav-link:focus, .bootstrap .navbar-light .navbar-nav .nav-link:hover {
    color: rgba(0, 0, 0, 0.7); }
  .bootstrap .navbar-light .navbar-nav .nav-link.disabled {
    color: rgba(0, 0, 0, 0.3); }
  .bootstrap .navbar-light .navbar-nav .active > .nav-link, .bootstrap .navbar-light .navbar-nav .nav-link.active, .bootstrap .navbar-light .navbar-nav .nav-link.show, .bootstrap .navbar-light .navbar-nav .show > .nav-link {
    color: rgba(0, 0, 0, 0.9); }
  .bootstrap .navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 0, 0, 0.1); }
  .bootstrap .navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); }
  .bootstrap .navbar-light .navbar-text {
    color: rgba(0, 0, 0, 0.5); }
  .bootstrap .navbar-dark .navbar-brand {
    color: #fff; }
  .bootstrap .navbar-dark .navbar-brand:focus, .bootstrap .navbar-dark .navbar-brand:hover {
    color: #fff; }
  .bootstrap .navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.5); }
  .bootstrap .navbar-dark .navbar-nav .nav-link:focus, .bootstrap .navbar-dark .navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.75); }
  .bootstrap .navbar-dark .navbar-nav .nav-link.disabled {
    color: rgba(255, 255, 255, 0.25); }
  .bootstrap .navbar-dark .navbar-nav .active > .nav-link, .bootstrap .navbar-dark .navbar-nav .nav-link.active, .bootstrap .navbar-dark .navbar-nav .nav-link.show, .bootstrap .navbar-dark .navbar-nav .show > .nav-link {
    color: #fff; }
  .bootstrap .navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.1); }
  .bootstrap .navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); }
  .bootstrap .navbar-dark .navbar-text {
    color: rgba(255, 255, 255, 0.5); }
  .bootstrap .card {
    position: relative;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: .25rem; }
  .bootstrap .card-body {
    -ms-flex: 1 1 auto;
    -webkit-box-flex: 1;
            flex: 1 1 auto;
    padding: 1.25rem; }
  .bootstrap .card-title {
    margin-bottom: .75rem; }
  .bootstrap .card-subtitle {
    margin-top: -.375rem;
    margin-bottom: 0; }
  .bootstrap .card-text:last-child {
    margin-bottom: 0; }
  .bootstrap .card-link:hover {
    text-decoration: none; }
  .bootstrap .card-link + .card-link {
    margin-left: 1.25rem; }
  .bootstrap .card > .list-group:first-child .list-group-item:first-child {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem; }
  .bootstrap .card > .list-group:last-child .list-group-item:last-child {
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem; }
  .bootstrap .card-header {
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125); }
  .bootstrap .card-header:first-child {
    border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0; }
  .bootstrap .card-footer {
    padding: .75rem 1.25rem;
    background-color: rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(0, 0, 0, 0.125); }
  .bootstrap .card-footer:last-child {
    border-radius: 0 0 calc(.25rem - 1px) calc(.25rem - 1px); }
  .bootstrap .card-header-tabs {
    margin-right: -.625rem;
    margin-bottom: -.75rem;
    margin-left: -.625rem;
    border-bottom: 0; }
  .bootstrap .card-header-pills {
    margin-right: -.625rem;
    margin-left: -.625rem; }
  .bootstrap .card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem; }
  .bootstrap .card-img {
    width: 100%;
    border-radius: calc(.25rem - 1px); }
  .bootstrap .card-img-top {
    width: 100%;
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px); }
  .bootstrap .card-img-bottom {
    width: 100%;
    border-bottom-right-radius: calc(.25rem - 1px);
    border-bottom-left-radius: calc(.25rem - 1px); }
  @media (min-width: 576px) {
    .bootstrap .card-deck {
      display: -ms-flexbox;
      display: -webkit-box;
      display: flex;
      -ms-flex-flow: row wrap;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
              flex-flow: row wrap;
      margin-right: -15px;
      margin-left: -15px; }
    .bootstrap .card-deck .card {
      display: -ms-flexbox;
      display: -webkit-box;
      display: flex;
      -ms-flex: 1 0 0%;
      -webkit-box-flex: 1;
              flex: 1 0 0%;
      -ms-flex-direction: column;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
              flex-direction: column;
      margin-right: 15px;
      margin-left: 15px; } }
  @media (min-width: 576px) {
    .bootstrap .card-group {
      display: -ms-flexbox;
      display: -webkit-box;
      display: flex;
      -ms-flex-flow: row wrap;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
              flex-flow: row wrap; }
    .bootstrap .card-group .card {
      -ms-flex: 1 0 0%;
      -webkit-box-flex: 1;
              flex: 1 0 0%; }
    .bootstrap .card-group .card + .card {
      margin-left: 0;
      border-left: 0; }
    .bootstrap .card-group .card:first-child {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0; }
    .bootstrap .card-group .card:first-child .card-img-top {
      border-top-right-radius: 0; }
    .bootstrap .card-group .card:first-child .card-img-bottom {
      border-bottom-right-radius: 0; }
    .bootstrap .card-group .card:last-child {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0; }
    .bootstrap .card-group .card:last-child .card-img-top {
      border-top-left-radius: 0; }
    .bootstrap .card-group .card:last-child .card-img-bottom {
      border-bottom-left-radius: 0; }
    .bootstrap .card-group .card:not(:first-child):not(:last-child) {
      border-radius: 0; }
    .bootstrap .card-group .card:not(:first-child):not(:last-child) .card-img-bottom, .bootstrap .card-group .card:not(:first-child):not(:last-child) .card-img-top {
      border-radius: 0; } }
  .bootstrap .card-columns .card {
    margin-bottom: .75rem; }
  @media (min-width: 576px) {
    .bootstrap .card-columns {
      -webkit-column-count: 3;
      column-count: 3;
      -webkit-column-gap: 1.25rem;
      column-gap: 1.25rem; }
    .bootstrap .card-columns .card {
      display: inline-block;
      width: 100%; } }
  .bootstrap .breadcrumb {
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #e9ecef;
    border-radius: .25rem; }
  .bootstrap .breadcrumb::after {
    display: block;
    clear: both;
    content: ""; }
  .bootstrap .breadcrumb-item {
    float: left; }
  .bootstrap .breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: .5rem;
    padding-left: .5rem;
    color: #868e96;
    content: "/"; }
  .bootstrap .breadcrumb-item + .breadcrumb-item:hover::before {
    text-decoration: underline; }
  .bootstrap .breadcrumb-item + .breadcrumb-item:hover::before {
    text-decoration: none; }
  .bootstrap .breadcrumb-item.active {
    color: #868e96; }
  .bootstrap .pagination {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem; }
  .bootstrap .page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem; }
  .bootstrap .page-item:last-child .page-link {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem; }
  .bootstrap .page-item.active .page-link {
    z-index: 2;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff; }
  .bootstrap .page-item.disabled .page-link {
    color: #868e96;
    pointer-events: none;
    background-color: #fff;
    border-color: #ddd; }
  .bootstrap .page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #ddd; }
  .bootstrap .page-link:focus, .bootstrap .page-link:hover {
    color: #0056b3;
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #ddd; }
  .bootstrap .pagination-lg .page-link {
    padding: .75rem 1.5rem;
    font-size: 1.25rem;
    line-height: 1.5; }
  .bootstrap .pagination-lg .page-item:first-child .page-link {
    border-top-left-radius: .3rem;
    border-bottom-left-radius: .3rem; }
  .bootstrap .pagination-lg .page-item:last-child .page-link {
    border-top-right-radius: .3rem;
    border-bottom-right-radius: .3rem; }
  .bootstrap .pagination-sm .page-link {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5; }
  .bootstrap .pagination-sm .page-item:first-child .page-link {
    border-top-left-radius: .2rem;
    border-bottom-left-radius: .2rem; }
  .bootstrap .pagination-sm .page-item:last-child .page-link {
    border-top-right-radius: .2rem;
    border-bottom-right-radius: .2rem; }
  .bootstrap .badge {
    display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem; }
  .bootstrap .badge:empty {
    display: none; }
  .bootstrap .btn .badge {
    position: relative;
    top: -1px; }
  .bootstrap .badge-pill {
    padding-right: .6em;
    padding-left: .6em;
    border-radius: 10rem; }
  .bootstrap .badge-primary {
    color: #fff;
    background-color: #007bff; }
  .bootstrap .badge-primary[href]:focus, .bootstrap .badge-primary[href]:hover {
    color: #fff;
    text-decoration: none;
    background-color: #0062cc; }
  .bootstrap .badge-secondary {
    color: #fff;
    background-color: #868e96; }
  .bootstrap .badge-secondary[href]:focus, .bootstrap .badge-secondary[href]:hover {
    color: #fff;
    text-decoration: none;
    background-color: #6c757d; }
  .bootstrap .badge-success {
    color: #fff;
    background-color: #28a745; }
  .bootstrap .badge-success[href]:focus, .bootstrap .badge-success[href]:hover {
    color: #fff;
    text-decoration: none;
    background-color: #1e7e34; }
  .bootstrap .badge-info {
    color: #fff;
    background-color: #17a2b8; }
  .bootstrap .badge-info[href]:focus, .bootstrap .badge-info[href]:hover {
    color: #fff;
    text-decoration: none;
    background-color: #117a8b; }
  .bootstrap .badge-warning {
    color: #111;
    background-color: #ffc107; }
  .bootstrap .badge-warning[href]:focus, .bootstrap .badge-warning[href]:hover {
    color: #111;
    text-decoration: none;
    background-color: #d39e00; }
  .bootstrap .badge-danger {
    color: #fff;
    background-color: #dc3545; }
  .bootstrap .badge-danger[href]:focus, .bootstrap .badge-danger[href]:hover {
    color: #fff;
    text-decoration: none;
    background-color: #bd2130; }
  .bootstrap .badge-light {
    color: #111;
    background-color: #f8f9fa; }
  .bootstrap .badge-light[href]:focus, .bootstrap .badge-light[href]:hover {
    color: #111;
    text-decoration: none;
    background-color: #dae0e5; }
  .bootstrap .badge-dark {
    color: #fff;
    background-color: #343a40; }
  .bootstrap .badge-dark[href]:focus, .bootstrap .badge-dark[href]:hover {
    color: #fff;
    text-decoration: none;
    background-color: #1d2124; }
  .bootstrap .jumbotron {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    background-color: #e9ecef;
    border-radius: .3rem; }
  @media (min-width: 576px) {
    .bootstrap .jumbotron {
      padding: 4rem 2rem; } }
  .bootstrap .jumbotron-fluid {
    padding-right: 0;
    padding-left: 0;
    border-radius: 0; }
  .bootstrap .alert {
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem; }
  .bootstrap .alert-heading {
    color: inherit; }
  .bootstrap .alert-link {
    font-weight: 700; }
  .bootstrap .alert-dismissible .close {
    position: relative;
    top: -.75rem;
    right: -1.25rem;
    padding: .75rem 1.25rem;
    color: inherit; }
  .bootstrap .alert-primary {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff; }
  .bootstrap .alert-primary hr {
    border-top-color: #9fcdff; }
  .bootstrap .alert-primary .alert-link {
    color: #002752; }
  .bootstrap .alert-secondary {
    color: #464a4e;
    background-color: #e7e8ea;
    border-color: #dddfe2; }
  .bootstrap .alert-secondary hr {
    border-top-color: #cfd2d6; }
  .bootstrap .alert-secondary .alert-link {
    color: #2e3133; }
  .bootstrap .alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb; }
  .bootstrap .alert-success hr {
    border-top-color: #b1dfbb; }
  .bootstrap .alert-success .alert-link {
    color: #0b2e13; }
  .bootstrap .alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb; }
  .bootstrap .alert-info hr {
    border-top-color: #abdde5; }
  .bootstrap .alert-info .alert-link {
    color: #062c33; }
  .bootstrap .alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba; }
  .bootstrap .alert-warning hr {
    border-top-color: #ffe8a1; }
  .bootstrap .alert-warning .alert-link {
    color: #533f03; }
  .bootstrap .alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb; }
  .bootstrap .alert-danger hr {
    border-top-color: #f1b0b7; }
  .bootstrap .alert-danger .alert-link {
    color: #491217; }
  .bootstrap .alert-light {
    color: #818182;
    background-color: #fefefe;
    border-color: #fdfdfe; }
  .bootstrap .alert-light hr {
    border-top-color: #ececf6; }
  .bootstrap .alert-light .alert-link {
    color: #686868; }
  .bootstrap .alert-dark {
    color: #1b1e21;
    background-color: #d6d8d9;
    border-color: #c6c8ca; }
  .bootstrap .alert-dark hr {
    border-top-color: #b9bbbe; }
  .bootstrap .alert-dark .alert-link {
    color: #040505; }

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

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0; }
  to {
    background-position: 0 0; } }
  .bootstrap .progress {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    overflow: hidden;
    font-size: .75rem;
    line-height: 1rem;
    text-align: center;
    background-color: #e9ecef;
    border-radius: .25rem; }
  .bootstrap .progress-bar {
    height: 1rem;
    line-height: 1rem;
    color: #fff;
    background-color: #007bff;
    -webkit-transition: width .6s ease;
    transition: width .6s ease; }
  .bootstrap .progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem; }
  .bootstrap .progress-bar-animated {
    -webkit-animation: progress-bar-stripes 1s linear infinite;
    animation: progress-bar-stripes 1s linear infinite; }
  .bootstrap .media {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: start;
    -webkit-box-align: start;
            align-items: flex-start; }
  .bootstrap .media-body {
    -ms-flex: 1;
    -webkit-box-flex: 1;
            flex: 1; }
  .bootstrap .list-group {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    padding-left: 0;
    margin-bottom: 0; }
  .bootstrap .list-group-item-action {
    width: 100%;
    color: #495057;
    text-align: inherit; }
  .bootstrap .list-group-item-action:focus, .bootstrap .list-group-item-action:hover {
    color: #495057;
    text-decoration: none;
    background-color: #f8f9fa; }
  .bootstrap .list-group-item-action:active {
    color: #212529;
    background-color: #e9ecef; }
  .bootstrap .list-group-item {
    position: relative;
    display: block;
    padding: .75rem 1.25rem;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.125); }
  .bootstrap .list-group-item:first-child {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem; }
  .bootstrap .list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem; }
  .bootstrap .list-group-item:focus, .bootstrap .list-group-item:hover {
    text-decoration: none; }
  .bootstrap .list-group-item.disabled, .bootstrap .list-group-item:disabled {
    color: #868e96;
    background-color: #fff; }
  .bootstrap .list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff; }
  .bootstrap .list-group-flush .list-group-item {
    border-right: 0;
    border-left: 0;
    border-radius: 0; }
  .bootstrap .list-group-flush:first-child .list-group-item:first-child {
    border-top: 0; }
  .bootstrap .list-group-flush:last-child .list-group-item:last-child {
    border-bottom: 0; }
  .bootstrap .list-group-item-primary {
    color: #004085;
    background-color: #b8daff; }
  .bootstrap a.list-group-item-primary, .bootstrap button.list-group-item-primary {
    color: #004085; }
  .bootstrap a.list-group-item-primary:focus, .bootstrap a.list-group-item-primary:hover, .bootstrap button.list-group-item-primary:focus, .bootstrap button.list-group-item-primary:hover {
    color: #004085;
    background-color: #9fcdff; }
  .bootstrap a.list-group-item-primary.active, .bootstrap button.list-group-item-primary.active {
    color: #fff;
    background-color: #004085;
    border-color: #004085; }
  .bootstrap .list-group-item-secondary {
    color: #464a4e;
    background-color: #dddfe2; }
  .bootstrap a.list-group-item-secondary, .bootstrap button.list-group-item-secondary {
    color: #464a4e; }
  .bootstrap a.list-group-item-secondary:focus, .bootstrap a.list-group-item-secondary:hover, .bootstrap button.list-group-item-secondary:focus, .bootstrap button.list-group-item-secondary:hover {
    color: #464a4e;
    background-color: #cfd2d6; }
  .bootstrap a.list-group-item-secondary.active, .bootstrap button.list-group-item-secondary.active {
    color: #fff;
    background-color: #464a4e;
    border-color: #464a4e; }
  .bootstrap .list-group-item-success {
    color: #155724;
    background-color: #c3e6cb; }
  .bootstrap a.list-group-item-success, .bootstrap button.list-group-item-success {
    color: #155724; }
  .bootstrap a.list-group-item-success:focus, .bootstrap a.list-group-item-success:hover, .bootstrap button.list-group-item-success:focus, .bootstrap button.list-group-item-success:hover {
    color: #155724;
    background-color: #b1dfbb; }
  .bootstrap a.list-group-item-success.active, .bootstrap button.list-group-item-success.active {
    color: #fff;
    background-color: #155724;
    border-color: #155724; }
  .bootstrap .list-group-item-info {
    color: #0c5460;
    background-color: #bee5eb; }
  .bootstrap a.list-group-item-info, .bootstrap button.list-group-item-info {
    color: #0c5460; }
  .bootstrap a.list-group-item-info:focus, .bootstrap a.list-group-item-info:hover, .bootstrap button.list-group-item-info:focus, .bootstrap button.list-group-item-info:hover {
    color: #0c5460;
    background-color: #abdde5; }
  .bootstrap a.list-group-item-info.active, .bootstrap button.list-group-item-info.active {
    color: #fff;
    background-color: #0c5460;
    border-color: #0c5460; }
  .bootstrap .list-group-item-warning {
    color: #856404;
    background-color: #ffeeba; }
  .bootstrap a.list-group-item-warning, .bootstrap button.list-group-item-warning {
    color: #856404; }
  .bootstrap a.list-group-item-warning:focus, .bootstrap a.list-group-item-warning:hover, .bootstrap button.list-group-item-warning:focus, .bootstrap button.list-group-item-warning:hover {
    color: #856404;
    background-color: #ffe8a1; }
  .bootstrap a.list-group-item-warning.active, .bootstrap button.list-group-item-warning.active {
    color: #fff;
    background-color: #856404;
    border-color: #856404; }
  .bootstrap .list-group-item-danger {
    color: #721c24;
    background-color: #f5c6cb; }
  .bootstrap a.list-group-item-danger, .bootstrap button.list-group-item-danger {
    color: #721c24; }
  .bootstrap a.list-group-item-danger:focus, .bootstrap a.list-group-item-danger:hover, .bootstrap button.list-group-item-danger:focus, .bootstrap button.list-group-item-danger:hover {
    color: #721c24;
    background-color: #f1b0b7; }
  .bootstrap a.list-group-item-danger.active, .bootstrap button.list-group-item-danger.active {
    color: #fff;
    background-color: #721c24;
    border-color: #721c24; }
  .bootstrap .list-group-item-light {
    color: #818182;
    background-color: #fdfdfe; }
  .bootstrap a.list-group-item-light, .bootstrap button.list-group-item-light {
    color: #818182; }
  .bootstrap a.list-group-item-light:focus, .bootstrap a.list-group-item-light:hover, .bootstrap button.list-group-item-light:focus, .bootstrap button.list-group-item-light:hover {
    color: #818182;
    background-color: #ececf6; }
  .bootstrap a.list-group-item-light.active, .bootstrap button.list-group-item-light.active {
    color: #fff;
    background-color: #818182;
    border-color: #818182; }
  .bootstrap .list-group-item-dark {
    color: #1b1e21;
    background-color: #c6c8ca; }
  .bootstrap a.list-group-item-dark, .bootstrap button.list-group-item-dark {
    color: #1b1e21; }
  .bootstrap a.list-group-item-dark:focus, .bootstrap a.list-group-item-dark:hover, .bootstrap button.list-group-item-dark:focus, .bootstrap button.list-group-item-dark:hover {
    color: #1b1e21;
    background-color: #b9bbbe; }
  .bootstrap a.list-group-item-dark.active, .bootstrap button.list-group-item-dark.active {
    color: #fff;
    background-color: #1b1e21;
    border-color: #1b1e21; }
  .bootstrap .close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5; }
  .bootstrap .close:focus, .bootstrap .close:hover {
    color: #000;
    text-decoration: none;
    opacity: .75; }
  .bootstrap button.close {
    padding: 0;
    background: 0 0;
    border: 0;
    -webkit-appearance: none; }
  .bootstrap .modal-open {
    overflow: hidden; }
  .bootstrap .modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    outline: 0; }
  .bootstrap .modal.fade .modal-dialog {
    transition: -webkit-transform .3s ease-out;
    -webkit-transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out;
    transition: transform .3s ease-out,-webkit-transform .3s ease-out;
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
        transform: translate(0, -25%); }
  .bootstrap .modal.show .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
        transform: translate(0, 0); }
  .bootstrap .modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto; }
  .bootstrap .modal-dialog {
    position: relative;
    width: auto;
    margin: 10px; }
  .bootstrap .modal-content {
    position: relative;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: .3rem;
    outline: 0; }
  .bootstrap .modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000; }
  .bootstrap .modal-backdrop.fade {
    opacity: 0; }
  .bootstrap .modal-backdrop.show {
    opacity: .5; }
  .bootstrap .modal-header {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
            justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #e9ecef; }
  .bootstrap .modal-title {
    margin-bottom: 0;
    line-height: 1.5; }
  .bootstrap .modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    -webkit-box-flex: 1;
            flex: 1 1 auto;
    padding: 15px; }
  .bootstrap .modal-footer {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    -ms-flex-pack: end;
    -webkit-box-pack: end;
            justify-content: flex-end;
    padding: 15px;
    border-top: 1px solid #e9ecef; }
  .bootstrap .modal-footer > :not(:first-child) {
    margin-left: .25rem; }
  .bootstrap .modal-footer > :not(:last-child) {
    margin-right: .25rem; }
  .bootstrap .modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll; }
  @media (min-width: 576px) {
    .bootstrap .modal-dialog {
      max-width: 500px;
      margin: 30px auto; }
    .bootstrap .modal-sm {
      max-width: 300px; } }
  @media (min-width: 992px) {
    .bootstrap .modal-lg {
      max-width: 800px; } }
  .bootstrap .tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    margin: 0;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: .875rem;
    word-wrap: break-word;
    opacity: 0; }
  .bootstrap .tooltip.show {
    opacity: .9; }
  .bootstrap .tooltip .arrow {
    position: absolute;
    display: block;
    width: 5px;
    height: 5px; }
  .bootstrap .tooltip.bs-tooltip-auto[x-placement^=top], .bootstrap .tooltip.bs-tooltip-top {
    padding: 5px 0; }
  .bootstrap .tooltip.bs-tooltip-auto[x-placement^=top] .arrow, .bootstrap .tooltip.bs-tooltip-top .arrow {
    bottom: 0; }
  .bootstrap .tooltip.bs-tooltip-auto[x-placement^=top] .arrow::before, .bootstrap .tooltip.bs-tooltip-top .arrow::before {
    margin-left: -3px;
    content: "";
    border-width: 5px 5px 0;
    border-top-color: #000; }
  .bootstrap .tooltip.bs-tooltip-auto[x-placement^=right], .bootstrap .tooltip.bs-tooltip-right {
    padding: 0 5px; }
  .bootstrap .tooltip.bs-tooltip-auto[x-placement^=right] .arrow, .bootstrap .tooltip.bs-tooltip-right .arrow {
    left: 0; }
  .bootstrap .tooltip.bs-tooltip-auto[x-placement^=right] .arrow::before, .bootstrap .tooltip.bs-tooltip-right .arrow::before {
    margin-top: -3px;
    content: "";
    border-width: 5px 5px 5px 0;
    border-right-color: #000; }
  .bootstrap .tooltip.bs-tooltip-auto[x-placement^=bottom], .bootstrap .tooltip.bs-tooltip-bottom {
    padding: 5px 0; }
  .bootstrap .tooltip.bs-tooltip-auto[x-placement^=bottom] .arrow, .bootstrap .tooltip.bs-tooltip-bottom .arrow {
    top: 0; }
  .bootstrap .tooltip.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .bootstrap .tooltip.bs-tooltip-bottom .arrow::before {
    margin-left: -3px;
    content: "";
    border-width: 0 5px 5px;
    border-bottom-color: #000; }
  .bootstrap .tooltip.bs-tooltip-auto[x-placement^=left], .bootstrap .tooltip.bs-tooltip-left {
    padding: 0 5px; }
  .bootstrap .tooltip.bs-tooltip-auto[x-placement^=left] .arrow, .bootstrap .tooltip.bs-tooltip-left .arrow {
    right: 0; }
  .bootstrap .tooltip.bs-tooltip-auto[x-placement^=left] .arrow::before, .bootstrap .tooltip.bs-tooltip-left .arrow::before {
    right: 0;
    margin-top: -3px;
    content: "";
    border-width: 5px 0 5px 5px;
    border-left-color: #000; }
  .bootstrap .tooltip .arrow::before {
    position: absolute;
    border-color: transparent;
    border-style: solid; }
  .bootstrap .tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: .25rem; }
  .bootstrap .popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: block;
    max-width: 276px;
    padding: 1px;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: .875rem;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: .3rem; }
  .bootstrap .popover .arrow {
    position: absolute;
    display: block;
    width: 10px;
    height: 5px; }
  .bootstrap .popover .arrow::after, .bootstrap .popover .arrow::before {
    position: absolute;
    display: block;
    border-color: transparent;
    border-style: solid; }
  .bootstrap .popover .arrow::before {
    content: "";
    border-width: 11px; }
  .bootstrap .popover .arrow::after {
    content: "";
    border-width: 11px; }
  .bootstrap .popover.bs-popover-auto[x-placement^=top], .bootstrap .popover.bs-popover-top {
    margin-bottom: 10px; }
  .bootstrap .popover.bs-popover-auto[x-placement^=top] .arrow, .bootstrap .popover.bs-popover-top .arrow {
    bottom: 0; }
  .bootstrap .popover.bs-popover-auto[x-placement^=top] .arrow::after, .bootstrap .popover.bs-popover-auto[x-placement^=top] .arrow::before, .bootstrap .popover.bs-popover-top .arrow::after, .bootstrap .popover.bs-popover-top .arrow::before {
    border-bottom-width: 0; }
  .bootstrap .popover.bs-popover-auto[x-placement^=top] .arrow::before, .bootstrap .popover.bs-popover-top .arrow::before {
    bottom: -11px;
    margin-left: -6px;
    border-top-color: rgba(0, 0, 0, 0.25); }
  .bootstrap .popover.bs-popover-auto[x-placement^=top] .arrow::after, .bootstrap .popover.bs-popover-top .arrow::after {
    bottom: -10px;
    margin-left: -6px;
    border-top-color: #fff; }
  .bootstrap .popover.bs-popover-auto[x-placement^=right], .bootstrap .popover.bs-popover-right {
    margin-left: 10px; }
  .bootstrap .popover.bs-popover-auto[x-placement^=right] .arrow, .bootstrap .popover.bs-popover-right .arrow {
    left: 0; }
  .bootstrap .popover.bs-popover-auto[x-placement^=right] .arrow::after, .bootstrap .popover.bs-popover-auto[x-placement^=right] .arrow::before, .bootstrap .popover.bs-popover-right .arrow::after, .bootstrap .popover.bs-popover-right .arrow::before {
    margin-top: -8px;
    border-left-width: 0; }
  .bootstrap .popover.bs-popover-auto[x-placement^=right] .arrow::before, .bootstrap .popover.bs-popover-right .arrow::before {
    left: -11px;
    border-right-color: rgba(0, 0, 0, 0.25); }
  .bootstrap .popover.bs-popover-auto[x-placement^=right] .arrow::after, .bootstrap .popover.bs-popover-right .arrow::after {
    left: -10px;
    border-right-color: #fff; }
  .bootstrap .popover.bs-popover-auto[x-placement^=bottom], .bootstrap .popover.bs-popover-bottom {
    margin-top: 10px; }
  .bootstrap .popover.bs-popover-auto[x-placement^=bottom] .arrow, .bootstrap .popover.bs-popover-bottom .arrow {
    top: 0; }
  .bootstrap .popover.bs-popover-auto[x-placement^=bottom] .arrow::after, .bootstrap .popover.bs-popover-auto[x-placement^=bottom] .arrow::before, .bootstrap .popover.bs-popover-bottom .arrow::after, .bootstrap .popover.bs-popover-bottom .arrow::before {
    margin-left: -7px;
    border-top-width: 0; }
  .bootstrap .popover.bs-popover-auto[x-placement^=bottom] .arrow::before, .bootstrap .popover.bs-popover-bottom .arrow::before {
    top: -11px;
    border-bottom-color: rgba(0, 0, 0, 0.25); }
  .bootstrap .popover.bs-popover-auto[x-placement^=bottom] .arrow::after, .bootstrap .popover.bs-popover-bottom .arrow::after {
    top: -10px;
    border-bottom-color: #fff; }
  .bootstrap .popover.bs-popover-auto[x-placement^=bottom] .popover-header::before, .bootstrap .popover.bs-popover-bottom .popover-header::before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 20px;
    margin-left: -10px;
    content: "";
    border-bottom: 1px solid #f7f7f7; }
  .bootstrap .popover.bs-popover-auto[x-placement^=left], .bootstrap .popover.bs-popover-left {
    margin-right: 10px; }
  .bootstrap .popover.bs-popover-auto[x-placement^=left] .arrow, .bootstrap .popover.bs-popover-left .arrow {
    right: 0; }
  .bootstrap .popover.bs-popover-auto[x-placement^=left] .arrow::after, .bootstrap .popover.bs-popover-auto[x-placement^=left] .arrow::before, .bootstrap .popover.bs-popover-left .arrow::after, .bootstrap .popover.bs-popover-left .arrow::before {
    margin-top: -8px;
    border-right-width: 0; }
  .bootstrap .popover.bs-popover-auto[x-placement^=left] .arrow::before, .bootstrap .popover.bs-popover-left .arrow::before {
    right: -11px;
    border-left-color: rgba(0, 0, 0, 0.25); }
  .bootstrap .popover.bs-popover-auto[x-placement^=left] .arrow::after, .bootstrap .popover.bs-popover-left .arrow::after {
    right: -10px;
    border-left-color: #fff; }
  .bootstrap .popover-header {
    padding: 8px 14px;
    margin-bottom: 0;
    font-size: 1rem;
    color: inherit;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px); }
  .bootstrap .popover-header:empty {
    display: none; }
  .bootstrap .popover-body {
    padding: 9px 14px;
    color: #212529; }
  .bootstrap .carousel {
    position: relative; }
  .bootstrap .carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden; }
  .bootstrap .carousel-item {
    position: relative;
    display: none;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    width: 100%;
    transition: -webkit-transform .6s ease;
    -webkit-transition: -webkit-transform .6s ease;
    transition: transform .6s ease;
    transition: transform .6s ease, -webkit-transform .6s ease;
    transition: transform .6s ease,-webkit-transform .6s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px; }
  .bootstrap .carousel-item-next, .bootstrap .carousel-item-prev, .bootstrap .carousel-item.active {
    display: block; }
  .bootstrap .carousel-item-next, .bootstrap .carousel-item-prev {
    position: absolute;
    top: 0; }
  .bootstrap .carousel-item-next.carousel-item-left, .bootstrap .carousel-item-prev.carousel-item-right {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
        transform: translateX(0); }
  @supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
    .bootstrap .carousel-item-next.carousel-item-left, .bootstrap .carousel-item-prev.carousel-item-right {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0); } }
  .bootstrap .active.carousel-item-right, .bootstrap .carousel-item-next {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
        transform: translateX(100%); }
  @supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
    .bootstrap .active.carousel-item-right, .bootstrap .carousel-item-next {
      -webkit-transform: translate3d(100%, 0, 0);
      transform: translate3d(100%, 0, 0); } }
  .bootstrap .active.carousel-item-left, .bootstrap .carousel-item-prev {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
        transform: translateX(-100%); }
  @supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
    .bootstrap .active.carousel-item-left, .bootstrap .carousel-item-prev {
      -webkit-transform: translate3d(-100%, 0, 0);
      transform: translate3d(-100%, 0, 0); } }
  .bootstrap .carousel-control-next, .bootstrap .carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: .5; }
  .bootstrap .carousel-control-next:focus, .bootstrap .carousel-control-next:hover, .bootstrap .carousel-control-prev:focus, .bootstrap .carousel-control-prev:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: .9; }
  .bootstrap .carousel-control-prev {
    left: 0; }
  .bootstrap .carousel-control-next {
    right: 0; }
  .bootstrap .carousel-control-next-icon, .bootstrap .carousel-control-prev-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: transparent no-repeat center center;
    background-size: 100% 100%; }
  .bootstrap .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M4 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E"); }
  .bootstrap .carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M1.5 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E"); }
  .bootstrap .carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none; }
  .bootstrap .carousel-indicators li {
    position: relative;
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
            flex: 0 1 auto;
    width: 30px;
    height: 3px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    background-color: rgba(255, 255, 255, 0.5); }
  .bootstrap .carousel-indicators li::before {
    position: absolute;
    top: -10px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 10px;
    content: ""; }
  .bootstrap .carousel-indicators li::after {
    position: absolute;
    bottom: -10px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 10px;
    content: ""; }
  .bootstrap .carousel-indicators .active {
    background-color: #fff; }
  .bootstrap .carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center; }
  .bootstrap .align-baseline {
    vertical-align: baseline !important; }
  .bootstrap .align-top {
    vertical-align: top !important; }
  .bootstrap .align-middle {
    vertical-align: middle !important; }
  .bootstrap .align-bottom {
    vertical-align: bottom !important; }
  .bootstrap .align-text-bottom {
    vertical-align: text-bottom !important; }
  .bootstrap .align-text-top {
    vertical-align: text-top !important; }
  .bootstrap .bg-primary {
    background-color: #007bff !important; }
  .bootstrap a.bg-primary:focus, .bootstrap a.bg-primary:hover {
    background-color: #0062cc !important; }
  .bootstrap .bg-secondary {
    background-color: #868e96 !important; }
  .bootstrap a.bg-secondary:focus, .bootstrap a.bg-secondary:hover {
    background-color: #6c757d !important; }
  .bootstrap .bg-success {
    background-color: #28a745 !important; }
  .bootstrap a.bg-success:focus, .bootstrap a.bg-success:hover {
    background-color: #1e7e34 !important; }
  .bootstrap .bg-info {
    background-color: #17a2b8 !important; }
  .bootstrap a.bg-info:focus, .bootstrap a.bg-info:hover {
    background-color: #117a8b !important; }
  .bootstrap .bg-warning {
    background-color: #ffc107 !important; }
  .bootstrap a.bg-warning:focus, .bootstrap a.bg-warning:hover {
    background-color: #d39e00 !important; }
  .bootstrap .bg-danger {
    background-color: #dc3545 !important; }
  .bootstrap a.bg-danger:focus, .bootstrap a.bg-danger:hover {
    background-color: #bd2130 !important; }
  .bootstrap .bg-light {
    background-color: #f8f9fa !important; }
  .bootstrap a.bg-light:focus, .bootstrap a.bg-light:hover {
    background-color: #dae0e5 !important; }
  .bootstrap .bg-dark {
    background-color: #343a40 !important; }
  .bootstrap a.bg-dark:focus, .bootstrap a.bg-dark:hover {
    background-color: #1d2124 !important; }
  .bootstrap .bg-white {
    background-color: #fff !important; }
  .bootstrap .bg-transparent {
    background-color: transparent !important; }
  .bootstrap .border {
    border: 1px solid #e9ecef !important; }
  .bootstrap .border-0 {
    border: 0 !important; }
  .bootstrap .border-top-0 {
    border-top: 0 !important; }
  .bootstrap .border-right-0 {
    border-right: 0 !important; }
  .bootstrap .border-bottom-0 {
    border-bottom: 0 !important; }
  .bootstrap .border-left-0 {
    border-left: 0 !important; }
  .bootstrap .border-primary {
    border-color: #007bff !important; }
  .bootstrap .border-secondary {
    border-color: #868e96 !important; }
  .bootstrap .border-success {
    border-color: #28a745 !important; }
  .bootstrap .border-info {
    border-color: #17a2b8 !important; }
  .bootstrap .border-warning {
    border-color: #ffc107 !important; }
  .bootstrap .border-danger {
    border-color: #dc3545 !important; }
  .bootstrap .border-light {
    border-color: #f8f9fa !important; }
  .bootstrap .border-dark {
    border-color: #343a40 !important; }
  .bootstrap .border-white {
    border-color: #fff !important; }
  .bootstrap .rounded {
    border-radius: 0.25rem !important; }
  .bootstrap .rounded-top {
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important; }
  .bootstrap .rounded-right {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important; }
  .bootstrap .rounded-bottom {
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important; }
  .bootstrap .rounded-left {
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important; }
  .bootstrap .rounded-circle {
    border-radius: 50%; }
  .bootstrap .rounded-0 {
    border-radius: 0; }
  .bootstrap .clearfix::after {
    display: block;
    clear: both;
    content: ""; }
  .bootstrap .d-none {
    display: none !important; }
  .bootstrap .d-inline {
    display: inline !important; }
  .bootstrap .d-inline-block {
    display: inline-block !important; }
  .bootstrap .d-block {
    display: block !important; }
  .bootstrap .d-table {
    display: table !important; }
  .bootstrap .d-table-cell {
    display: table-cell !important; }
  .bootstrap .d-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important; }
  .bootstrap .d-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important; }
  @media (min-width: 576px) {
    .bootstrap .d-sm-none {
      display: none !important; }
    .bootstrap .d-sm-inline {
      display: inline !important; }
    .bootstrap .d-sm-inline-block {
      display: inline-block !important; }
    .bootstrap .d-sm-block {
      display: block !important; }
    .bootstrap .d-sm-table {
      display: table !important; }
    .bootstrap .d-sm-table-cell {
      display: table-cell !important; }
    .bootstrap .d-sm-flex {
      display: -ms-flexbox !important;
      display: -webkit-box !important;
      display: flex !important; }
    .bootstrap .d-sm-inline-flex {
      display: -ms-inline-flexbox !important;
      display: -webkit-inline-box !important;
      display: inline-flex !important; } }
  @media (min-width: 768px) {
    .bootstrap .d-md-none {
      display: none !important; }
    .bootstrap .d-md-inline {
      display: inline !important; }
    .bootstrap .d-md-inline-block {
      display: inline-block !important; }
    .bootstrap .d-md-block {
      display: block !important; }
    .bootstrap .d-md-table {
      display: table !important; }
    .bootstrap .d-md-table-cell {
      display: table-cell !important; }
    .bootstrap .d-md-flex {
      display: -ms-flexbox !important;
      display: -webkit-box !important;
      display: flex !important; }
    .bootstrap .d-md-inline-flex {
      display: -ms-inline-flexbox !important;
      display: -webkit-inline-box !important;
      display: inline-flex !important; } }
  @media (min-width: 992px) {
    .bootstrap .d-lg-none {
      display: none !important; }
    .bootstrap .d-lg-inline {
      display: inline !important; }
    .bootstrap .d-lg-inline-block {
      display: inline-block !important; }
    .bootstrap .d-lg-block {
      display: block !important; }
    .bootstrap .d-lg-table {
      display: table !important; }
    .bootstrap .d-lg-table-cell {
      display: table-cell !important; }
    .bootstrap .d-lg-flex {
      display: -ms-flexbox !important;
      display: -webkit-box !important;
      display: flex !important; }
    .bootstrap .d-lg-inline-flex {
      display: -ms-inline-flexbox !important;
      display: -webkit-inline-box !important;
      display: inline-flex !important; } }
  @media (min-width: 1200px) {
    .bootstrap .d-xl-none {
      display: none !important; }
    .bootstrap .d-xl-inline {
      display: inline !important; }
    .bootstrap .d-xl-inline-block {
      display: inline-block !important; }
    .bootstrap .d-xl-block {
      display: block !important; }
    .bootstrap .d-xl-table {
      display: table !important; }
    .bootstrap .d-xl-table-cell {
      display: table-cell !important; }
    .bootstrap .d-xl-flex {
      display: -ms-flexbox !important;
      display: -webkit-box !important;
      display: flex !important; }
    .bootstrap .d-xl-inline-flex {
      display: -ms-inline-flexbox !important;
      display: -webkit-inline-box !important;
      display: inline-flex !important; } }
  .bootstrap .d-print-block {
    display: none !important; }
  @media print {
    .bootstrap .d-print-block {
      display: block !important; } }
  .bootstrap .d-print-inline {
    display: none !important; }
  @media print {
    .bootstrap .d-print-inline {
      display: inline !important; } }
  .bootstrap .d-print-inline-block {
    display: none !important; }
  @media print {
    .bootstrap .d-print-inline-block {
      display: inline-block !important; } }
  @media print {
    .bootstrap .d-print-none {
      display: none !important; } }
  .bootstrap .embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden; }
  .bootstrap .embed-responsive::before {
    display: block;
    content: ""; }
  .bootstrap .embed-responsive .embed-responsive-item, .bootstrap .embed-responsive embed, .bootstrap .embed-responsive iframe, .bootstrap .embed-responsive object, .bootstrap .embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; }
  .bootstrap .embed-responsive-21by9::before {
    padding-top: 42.857143%; }
  .bootstrap .embed-responsive-16by9::before {
    padding-top: 56.25%; }
  .bootstrap .embed-responsive-4by3::before {
    padding-top: 75%; }
  .bootstrap .embed-responsive-1by1::before {
    padding-top: 100%; }
  .bootstrap .flex-row {
    -ms-flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
            flex-direction: row !important; }
  .bootstrap .flex-column {
    -ms-flex-direction: column !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
            flex-direction: column !important; }
  .bootstrap .flex-row-reverse {
    -ms-flex-direction: row-reverse !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
            flex-direction: row-reverse !important; }
  .bootstrap .flex-column-reverse {
    -ms-flex-direction: column-reverse !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
            flex-direction: column-reverse !important; }
  .bootstrap .flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .bootstrap .flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .bootstrap .flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .bootstrap .justify-content-start {
    -ms-flex-pack: start !important;
    -webkit-box-pack: start !important;
            justify-content: flex-start !important; }
  .bootstrap .justify-content-end {
    -ms-flex-pack: end !important;
    -webkit-box-pack: end !important;
            justify-content: flex-end !important; }
  .bootstrap .justify-content-center {
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
            justify-content: center !important; }
  .bootstrap .justify-content-between {
    -ms-flex-pack: justify !important;
    -webkit-box-pack: justify !important;
            justify-content: space-between !important; }
  .bootstrap .justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .bootstrap .align-items-start {
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
            align-items: flex-start !important; }
  .bootstrap .align-items-end {
    -ms-flex-align: end !important;
    -webkit-box-align: end !important;
            align-items: flex-end !important; }
  .bootstrap .align-items-center {
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
            align-items: center !important; }
  .bootstrap .align-items-baseline {
    -ms-flex-align: baseline !important;
    -webkit-box-align: baseline !important;
            align-items: baseline !important; }
  .bootstrap .align-items-stretch {
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
            align-items: stretch !important; }
  .bootstrap .align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .bootstrap .align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .bootstrap .align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .bootstrap .align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .bootstrap .align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .bootstrap .align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .bootstrap .align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important; }
  .bootstrap .align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .bootstrap .align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .bootstrap .align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important; }
  .bootstrap .align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .bootstrap .align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important; }
  @media (min-width: 576px) {
    .bootstrap .flex-sm-row {
      -ms-flex-direction: row !important;
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: normal !important;
              flex-direction: row !important; }
    .bootstrap .flex-sm-column {
      -ms-flex-direction: column !important;
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: normal !important;
              flex-direction: column !important; }
    .bootstrap .flex-sm-row-reverse {
      -ms-flex-direction: row-reverse !important;
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: reverse !important;
              flex-direction: row-reverse !important; }
    .bootstrap .flex-sm-column-reverse {
      -ms-flex-direction: column-reverse !important;
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: reverse !important;
              flex-direction: column-reverse !important; }
    .bootstrap .flex-sm-wrap {
      -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important; }
    .bootstrap .flex-sm-nowrap {
      -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important; }
    .bootstrap .flex-sm-wrap-reverse {
      -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important; }
    .bootstrap .justify-content-sm-start {
      -ms-flex-pack: start !important;
      -webkit-box-pack: start !important;
              justify-content: flex-start !important; }
    .bootstrap .justify-content-sm-end {
      -ms-flex-pack: end !important;
      -webkit-box-pack: end !important;
              justify-content: flex-end !important; }
    .bootstrap .justify-content-sm-center {
      -ms-flex-pack: center !important;
      -webkit-box-pack: center !important;
              justify-content: center !important; }
    .bootstrap .justify-content-sm-between {
      -ms-flex-pack: justify !important;
      -webkit-box-pack: justify !important;
              justify-content: space-between !important; }
    .bootstrap .justify-content-sm-around {
      -ms-flex-pack: distribute !important;
      justify-content: space-around !important; }
    .bootstrap .align-items-sm-start {
      -ms-flex-align: start !important;
      -webkit-box-align: start !important;
              align-items: flex-start !important; }
    .bootstrap .align-items-sm-end {
      -ms-flex-align: end !important;
      -webkit-box-align: end !important;
              align-items: flex-end !important; }
    .bootstrap .align-items-sm-center {
      -ms-flex-align: center !important;
      -webkit-box-align: center !important;
              align-items: center !important; }
    .bootstrap .align-items-sm-baseline {
      -ms-flex-align: baseline !important;
      -webkit-box-align: baseline !important;
              align-items: baseline !important; }
    .bootstrap .align-items-sm-stretch {
      -ms-flex-align: stretch !important;
      -webkit-box-align: stretch !important;
              align-items: stretch !important; }
    .bootstrap .align-content-sm-start {
      -ms-flex-line-pack: start !important;
      align-content: flex-start !important; }
    .bootstrap .align-content-sm-end {
      -ms-flex-line-pack: end !important;
      align-content: flex-end !important; }
    .bootstrap .align-content-sm-center {
      -ms-flex-line-pack: center !important;
      align-content: center !important; }
    .bootstrap .align-content-sm-between {
      -ms-flex-line-pack: justify !important;
      align-content: space-between !important; }
    .bootstrap .align-content-sm-around {
      -ms-flex-line-pack: distribute !important;
      align-content: space-around !important; }
    .bootstrap .align-content-sm-stretch {
      -ms-flex-line-pack: stretch !important;
      align-content: stretch !important; }
    .bootstrap .align-self-sm-auto {
      -ms-flex-item-align: auto !important;
      align-self: auto !important; }
    .bootstrap .align-self-sm-start {
      -ms-flex-item-align: start !important;
      align-self: flex-start !important; }
    .bootstrap .align-self-sm-end {
      -ms-flex-item-align: end !important;
      align-self: flex-end !important; }
    .bootstrap .align-self-sm-center {
      -ms-flex-item-align: center !important;
      align-self: center !important; }
    .bootstrap .align-self-sm-baseline {
      -ms-flex-item-align: baseline !important;
      align-self: baseline !important; }
    .bootstrap .align-self-sm-stretch {
      -ms-flex-item-align: stretch !important;
      align-self: stretch !important; } }
  @media (min-width: 768px) {
    .bootstrap .flex-md-row {
      -ms-flex-direction: row !important;
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: normal !important;
              flex-direction: row !important; }
    .bootstrap .flex-md-column {
      -ms-flex-direction: column !important;
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: normal !important;
              flex-direction: column !important; }
    .bootstrap .flex-md-row-reverse {
      -ms-flex-direction: row-reverse !important;
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: reverse !important;
              flex-direction: row-reverse !important; }
    .bootstrap .flex-md-column-reverse {
      -ms-flex-direction: column-reverse !important;
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: reverse !important;
              flex-direction: column-reverse !important; }
    .bootstrap .flex-md-wrap {
      -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important; }
    .bootstrap .flex-md-nowrap {
      -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important; }
    .bootstrap .flex-md-wrap-reverse {
      -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important; }
    .bootstrap .justify-content-md-start {
      -ms-flex-pack: start !important;
      -webkit-box-pack: start !important;
              justify-content: flex-start !important; }
    .bootstrap .justify-content-md-end {
      -ms-flex-pack: end !important;
      -webkit-box-pack: end !important;
              justify-content: flex-end !important; }
    .bootstrap .justify-content-md-center {
      -ms-flex-pack: center !important;
      -webkit-box-pack: center !important;
              justify-content: center !important; }
    .bootstrap .justify-content-md-between {
      -ms-flex-pack: justify !important;
      -webkit-box-pack: justify !important;
              justify-content: space-between !important; }
    .bootstrap .justify-content-md-around {
      -ms-flex-pack: distribute !important;
      justify-content: space-around !important; }
    .bootstrap .align-items-md-start {
      -ms-flex-align: start !important;
      -webkit-box-align: start !important;
              align-items: flex-start !important; }
    .bootstrap .align-items-md-end {
      -ms-flex-align: end !important;
      -webkit-box-align: end !important;
              align-items: flex-end !important; }
    .bootstrap .align-items-md-center {
      -ms-flex-align: center !important;
      -webkit-box-align: center !important;
              align-items: center !important; }
    .bootstrap .align-items-md-baseline {
      -ms-flex-align: baseline !important;
      -webkit-box-align: baseline !important;
              align-items: baseline !important; }
    .bootstrap .align-items-md-stretch {
      -ms-flex-align: stretch !important;
      -webkit-box-align: stretch !important;
              align-items: stretch !important; }
    .bootstrap .align-content-md-start {
      -ms-flex-line-pack: start !important;
      align-content: flex-start !important; }
    .bootstrap .align-content-md-end {
      -ms-flex-line-pack: end !important;
      align-content: flex-end !important; }
    .bootstrap .align-content-md-center {
      -ms-flex-line-pack: center !important;
      align-content: center !important; }
    .bootstrap .align-content-md-between {
      -ms-flex-line-pack: justify !important;
      align-content: space-between !important; }
    .bootstrap .align-content-md-around {
      -ms-flex-line-pack: distribute !important;
      align-content: space-around !important; }
    .bootstrap .align-content-md-stretch {
      -ms-flex-line-pack: stretch !important;
      align-content: stretch !important; }
    .bootstrap .align-self-md-auto {
      -ms-flex-item-align: auto !important;
      align-self: auto !important; }
    .bootstrap .align-self-md-start {
      -ms-flex-item-align: start !important;
      align-self: flex-start !important; }
    .bootstrap .align-self-md-end {
      -ms-flex-item-align: end !important;
      align-self: flex-end !important; }
    .bootstrap .align-self-md-center {
      -ms-flex-item-align: center !important;
      align-self: center !important; }
    .bootstrap .align-self-md-baseline {
      -ms-flex-item-align: baseline !important;
      align-self: baseline !important; }
    .bootstrap .align-self-md-stretch {
      -ms-flex-item-align: stretch !important;
      align-self: stretch !important; } }
  @media (min-width: 992px) {
    .bootstrap .flex-lg-row {
      -ms-flex-direction: row !important;
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: normal !important;
              flex-direction: row !important; }
    .bootstrap .flex-lg-column {
      -ms-flex-direction: column !important;
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: normal !important;
              flex-direction: column !important; }
    .bootstrap .flex-lg-row-reverse {
      -ms-flex-direction: row-reverse !important;
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: reverse !important;
              flex-direction: row-reverse !important; }
    .bootstrap .flex-lg-column-reverse {
      -ms-flex-direction: column-reverse !important;
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: reverse !important;
              flex-direction: column-reverse !important; }
    .bootstrap .flex-lg-wrap {
      -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important; }
    .bootstrap .flex-lg-nowrap {
      -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important; }
    .bootstrap .flex-lg-wrap-reverse {
      -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important; }
    .bootstrap .justify-content-lg-start {
      -ms-flex-pack: start !important;
      -webkit-box-pack: start !important;
              justify-content: flex-start !important; }
    .bootstrap .justify-content-lg-end {
      -ms-flex-pack: end !important;
      -webkit-box-pack: end !important;
              justify-content: flex-end !important; }
    .bootstrap .justify-content-lg-center {
      -ms-flex-pack: center !important;
      -webkit-box-pack: center !important;
              justify-content: center !important; }
    .bootstrap .justify-content-lg-between {
      -ms-flex-pack: justify !important;
      -webkit-box-pack: justify !important;
              justify-content: space-between !important; }
    .bootstrap .justify-content-lg-around {
      -ms-flex-pack: distribute !important;
      justify-content: space-around !important; }
    .bootstrap .align-items-lg-start {
      -ms-flex-align: start !important;
      -webkit-box-align: start !important;
              align-items: flex-start !important; }
    .bootstrap .align-items-lg-end {
      -ms-flex-align: end !important;
      -webkit-box-align: end !important;
              align-items: flex-end !important; }
    .bootstrap .align-items-lg-center {
      -ms-flex-align: center !important;
      -webkit-box-align: center !important;
              align-items: center !important; }
    .bootstrap .align-items-lg-baseline {
      -ms-flex-align: baseline !important;
      -webkit-box-align: baseline !important;
              align-items: baseline !important; }
    .bootstrap .align-items-lg-stretch {
      -ms-flex-align: stretch !important;
      -webkit-box-align: stretch !important;
              align-items: stretch !important; }
    .bootstrap .align-content-lg-start {
      -ms-flex-line-pack: start !important;
      align-content: flex-start !important; }
    .bootstrap .align-content-lg-end {
      -ms-flex-line-pack: end !important;
      align-content: flex-end !important; }
    .bootstrap .align-content-lg-center {
      -ms-flex-line-pack: center !important;
      align-content: center !important; }
    .bootstrap .align-content-lg-between {
      -ms-flex-line-pack: justify !important;
      align-content: space-between !important; }
    .bootstrap .align-content-lg-around {
      -ms-flex-line-pack: distribute !important;
      align-content: space-around !important; }
    .bootstrap .align-content-lg-stretch {
      -ms-flex-line-pack: stretch !important;
      align-content: stretch !important; }
    .bootstrap .align-self-lg-auto {
      -ms-flex-item-align: auto !important;
      align-self: auto !important; }
    .bootstrap .align-self-lg-start {
      -ms-flex-item-align: start !important;
      align-self: flex-start !important; }
    .bootstrap .align-self-lg-end {
      -ms-flex-item-align: end !important;
      align-self: flex-end !important; }
    .bootstrap .align-self-lg-center {
      -ms-flex-item-align: center !important;
      align-self: center !important; }
    .bootstrap .align-self-lg-baseline {
      -ms-flex-item-align: baseline !important;
      align-self: baseline !important; }
    .bootstrap .align-self-lg-stretch {
      -ms-flex-item-align: stretch !important;
      align-self: stretch !important; } }
  @media (min-width: 1200px) {
    .bootstrap .flex-xl-row {
      -ms-flex-direction: row !important;
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: normal !important;
              flex-direction: row !important; }
    .bootstrap .flex-xl-column {
      -ms-flex-direction: column !important;
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: normal !important;
              flex-direction: column !important; }
    .bootstrap .flex-xl-row-reverse {
      -ms-flex-direction: row-reverse !important;
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: reverse !important;
              flex-direction: row-reverse !important; }
    .bootstrap .flex-xl-column-reverse {
      -ms-flex-direction: column-reverse !important;
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: reverse !important;
              flex-direction: column-reverse !important; }
    .bootstrap .flex-xl-wrap {
      -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important; }
    .bootstrap .flex-xl-nowrap {
      -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important; }
    .bootstrap .flex-xl-wrap-reverse {
      -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important; }
    .bootstrap .justify-content-xl-start {
      -ms-flex-pack: start !important;
      -webkit-box-pack: start !important;
              justify-content: flex-start !important; }
    .bootstrap .justify-content-xl-end {
      -ms-flex-pack: end !important;
      -webkit-box-pack: end !important;
              justify-content: flex-end !important; }
    .bootstrap .justify-content-xl-center {
      -ms-flex-pack: center !important;
      -webkit-box-pack: center !important;
              justify-content: center !important; }
    .bootstrap .justify-content-xl-between {
      -ms-flex-pack: justify !important;
      -webkit-box-pack: justify !important;
              justify-content: space-between !important; }
    .bootstrap .justify-content-xl-around {
      -ms-flex-pack: distribute !important;
      justify-content: space-around !important; }
    .bootstrap .align-items-xl-start {
      -ms-flex-align: start !important;
      -webkit-box-align: start !important;
              align-items: flex-start !important; }
    .bootstrap .align-items-xl-end {
      -ms-flex-align: end !important;
      -webkit-box-align: end !important;
              align-items: flex-end !important; }
    .bootstrap .align-items-xl-center {
      -ms-flex-align: center !important;
      -webkit-box-align: center !important;
              align-items: center !important; }
    .bootstrap .align-items-xl-baseline {
      -ms-flex-align: baseline !important;
      -webkit-box-align: baseline !important;
              align-items: baseline !important; }
    .bootstrap .align-items-xl-stretch {
      -ms-flex-align: stretch !important;
      -webkit-box-align: stretch !important;
              align-items: stretch !important; }
    .bootstrap .align-content-xl-start {
      -ms-flex-line-pack: start !important;
      align-content: flex-start !important; }
    .bootstrap .align-content-xl-end {
      -ms-flex-line-pack: end !important;
      align-content: flex-end !important; }
    .bootstrap .align-content-xl-center {
      -ms-flex-line-pack: center !important;
      align-content: center !important; }
    .bootstrap .align-content-xl-between {
      -ms-flex-line-pack: justify !important;
      align-content: space-between !important; }
    .bootstrap .align-content-xl-around {
      -ms-flex-line-pack: distribute !important;
      align-content: space-around !important; }
    .bootstrap .align-content-xl-stretch {
      -ms-flex-line-pack: stretch !important;
      align-content: stretch !important; }
    .bootstrap .align-self-xl-auto {
      -ms-flex-item-align: auto !important;
      align-self: auto !important; }
    .bootstrap .align-self-xl-start {
      -ms-flex-item-align: start !important;
      align-self: flex-start !important; }
    .bootstrap .align-self-xl-end {
      -ms-flex-item-align: end !important;
      align-self: flex-end !important; }
    .bootstrap .align-self-xl-center {
      -ms-flex-item-align: center !important;
      align-self: center !important; }
    .bootstrap .align-self-xl-baseline {
      -ms-flex-item-align: baseline !important;
      align-self: baseline !important; }
    .bootstrap .align-self-xl-stretch {
      -ms-flex-item-align: stretch !important;
      align-self: stretch !important; } }
  .bootstrap .float-left {
    float: left !important; }
  .bootstrap .float-right {
    float: right !important; }
  .bootstrap .float-none {
    float: none !important; }
  @media (min-width: 576px) {
    .bootstrap .float-sm-left {
      float: left !important; }
    .bootstrap .float-sm-right {
      float: right !important; }
    .bootstrap .float-sm-none {
      float: none !important; } }
  @media (min-width: 768px) {
    .bootstrap .float-md-left {
      float: left !important; }
    .bootstrap .float-md-right {
      float: right !important; }
    .bootstrap .float-md-none {
      float: none !important; } }
  @media (min-width: 992px) {
    .bootstrap .float-lg-left {
      float: left !important; }
    .bootstrap .float-lg-right {
      float: right !important; }
    .bootstrap .float-lg-none {
      float: none !important; } }
  @media (min-width: 1200px) {
    .bootstrap .float-xl-left {
      float: left !important; }
    .bootstrap .float-xl-right {
      float: right !important; }
    .bootstrap .float-xl-none {
      float: none !important; } }
  .bootstrap .fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030; }
  .bootstrap .fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030; }
  @supports ((position: -webkit-sticky) or (position: sticky)) {
    .bootstrap .sticky-top {
      position: -webkit-sticky;
      position: sticky;
      top: 0;
      z-index: 1020; } }
  .bootstrap .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    border: 0; }
  .bootstrap .sr-only-focusable:active, .bootstrap .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
    -webkit-clip-path: none;
    clip-path: none; }
  .bootstrap .w-25 {
    width: 25% !important; }
  .bootstrap .w-50 {
    width: 50% !important; }
  .bootstrap .w-75 {
    width: 75% !important; }
  .bootstrap .w-100 {
    width: 100% !important; }
  .bootstrap .h-25 {
    height: 25% !important; }
  .bootstrap .h-50 {
    height: 50% !important; }
  .bootstrap .h-75 {
    height: 75% !important; }
  .bootstrap .h-100 {
    height: 100% !important; }
  .bootstrap .mw-100 {
    max-width: 100% !important; }
  .bootstrap .mh-100 {
    max-height: 100% !important; }
  .bootstrap .m-0 {
    margin: 0 !important; }
  .bootstrap .mt-0 {
    margin-top: 0 !important; }
  .bootstrap .mr-0 {
    margin-right: 0 !important; }
  .bootstrap .mb-0 {
    margin-bottom: 0 !important; }
  .bootstrap .ml-0 {
    margin-left: 0 !important; }
  .bootstrap .mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .bootstrap .my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .bootstrap .m-1 {
    margin: 0.25rem !important; }
  .bootstrap .mt-1 {
    margin-top: 0.25rem !important; }
  .bootstrap .mr-1 {
    margin-right: 0.25rem !important; }
  .bootstrap .mb-1 {
    margin-bottom: 0.25rem !important; }
  .bootstrap .ml-1 {
    margin-left: 0.25rem !important; }
  .bootstrap .mx-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .bootstrap .my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }
  .bootstrap .m-2 {
    margin: 0.5rem !important; }
  .bootstrap .mt-2 {
    margin-top: 0.5rem !important; }
  .bootstrap .mr-2 {
    margin-right: 0.5rem !important; }
  .bootstrap .mb-2 {
    margin-bottom: 0.5rem !important; }
  .bootstrap .ml-2 {
    margin-left: 0.5rem !important; }
  .bootstrap .mx-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .bootstrap .my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }
  .bootstrap .m-3 {
    margin: 1rem !important; }
  .bootstrap .mt-3 {
    margin-top: 1rem !important; }
  .bootstrap .mr-3 {
    margin-right: 1rem !important; }
  .bootstrap .mb-3 {
    margin-bottom: 1rem !important; }
  .bootstrap .ml-3 {
    margin-left: 1rem !important; }
  .bootstrap .mx-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .bootstrap .my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }
  .bootstrap .m-4 {
    margin: 1.5rem !important; }
  .bootstrap .mt-4 {
    margin-top: 1.5rem !important; }
  .bootstrap .mr-4 {
    margin-right: 1.5rem !important; }
  .bootstrap .mb-4 {
    margin-bottom: 1.5rem !important; }
  .bootstrap .ml-4 {
    margin-left: 1.5rem !important; }
  .bootstrap .mx-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }
  .bootstrap .my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; }
  .bootstrap .m-5 {
    margin: 3rem !important; }
  .bootstrap .mt-5 {
    margin-top: 3rem !important; }
  .bootstrap .mr-5 {
    margin-right: 3rem !important; }
  .bootstrap .mb-5 {
    margin-bottom: 3rem !important; }
  .bootstrap .ml-5 {
    margin-left: 3rem !important; }
  .bootstrap .mx-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }
  .bootstrap .my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; }
  .bootstrap .p-0 {
    padding: 0 !important; }
  .bootstrap .pt-0 {
    padding-top: 0 !important; }
  .bootstrap .pr-0 {
    padding-right: 0 !important; }
  .bootstrap .pb-0 {
    padding-bottom: 0 !important; }
  .bootstrap .pl-0 {
    padding-left: 0 !important; }
  .bootstrap .px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .bootstrap .py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .bootstrap .p-1 {
    padding: 0.25rem !important; }
  .bootstrap .pt-1 {
    padding-top: 0.25rem !important; }
  .bootstrap .pr-1 {
    padding-right: 0.25rem !important; }
  .bootstrap .pb-1 {
    padding-bottom: 0.25rem !important; }
  .bootstrap .pl-1 {
    padding-left: 0.25rem !important; }
  .bootstrap .px-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .bootstrap .py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }
  .bootstrap .p-2 {
    padding: 0.5rem !important; }
  .bootstrap .pt-2 {
    padding-top: 0.5rem !important; }
  .bootstrap .pr-2 {
    padding-right: 0.5rem !important; }
  .bootstrap .pb-2 {
    padding-bottom: 0.5rem !important; }
  .bootstrap .pl-2 {
    padding-left: 0.5rem !important; }
  .bootstrap .px-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .bootstrap .py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }
  .bootstrap .p-3 {
    padding: 1rem !important; }
  .bootstrap .pt-3 {
    padding-top: 1rem !important; }
  .bootstrap .pr-3 {
    padding-right: 1rem !important; }
  .bootstrap .pb-3 {
    padding-bottom: 1rem !important; }
  .bootstrap .pl-3 {
    padding-left: 1rem !important; }
  .bootstrap .px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .bootstrap .py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }
  .bootstrap .p-4 {
    padding: 1.5rem !important; }
  .bootstrap .pt-4 {
    padding-top: 1.5rem !important; }
  .bootstrap .pr-4 {
    padding-right: 1.5rem !important; }
  .bootstrap .pb-4 {
    padding-bottom: 1.5rem !important; }
  .bootstrap .pl-4 {
    padding-left: 1.5rem !important; }
  .bootstrap .px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }
  .bootstrap .py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; }
  .bootstrap .p-5 {
    padding: 3rem !important; }
  .bootstrap .pt-5 {
    padding-top: 3rem !important; }
  .bootstrap .pr-5 {
    padding-right: 3rem !important; }
  .bootstrap .pb-5 {
    padding-bottom: 3rem !important; }
  .bootstrap .pl-5 {
    padding-left: 3rem !important; }
  .bootstrap .px-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }
  .bootstrap .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; }
  .bootstrap .m-auto {
    margin: auto !important; }
  .bootstrap .mt-auto {
    margin-top: auto !important; }
  .bootstrap .mr-auto {
    margin-right: auto !important; }
  .bootstrap .mb-auto {
    margin-bottom: auto !important; }
  .bootstrap .ml-auto {
    margin-left: auto !important; }
  .bootstrap .mx-auto {
    margin-right: auto !important;
    margin-left: auto !important; }
  .bootstrap .my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; }
  @media (min-width: 576px) {
    .bootstrap .m-sm-0 {
      margin: 0 !important; }
    .bootstrap .mt-sm-0 {
      margin-top: 0 !important; }
    .bootstrap .mr-sm-0 {
      margin-right: 0 !important; }
    .bootstrap .mb-sm-0 {
      margin-bottom: 0 !important; }
    .bootstrap .ml-sm-0 {
      margin-left: 0 !important; }
    .bootstrap .mx-sm-0 {
      margin-right: 0 !important;
      margin-left: 0 !important; }
    .bootstrap .my-sm-0 {
      margin-top: 0 !important;
      margin-bottom: 0 !important; }
    .bootstrap .m-sm-1 {
      margin: 0.25rem !important; }
    .bootstrap .mt-sm-1 {
      margin-top: 0.25rem !important; }
    .bootstrap .mr-sm-1 {
      margin-right: 0.25rem !important; }
    .bootstrap .mb-sm-1 {
      margin-bottom: 0.25rem !important; }
    .bootstrap .ml-sm-1 {
      margin-left: 0.25rem !important; }
    .bootstrap .mx-sm-1 {
      margin-right: 0.25rem !important;
      margin-left: 0.25rem !important; }
    .bootstrap .my-sm-1 {
      margin-top: 0.25rem !important;
      margin-bottom: 0.25rem !important; }
    .bootstrap .m-sm-2 {
      margin: 0.5rem !important; }
    .bootstrap .mt-sm-2 {
      margin-top: 0.5rem !important; }
    .bootstrap .mr-sm-2 {
      margin-right: 0.5rem !important; }
    .bootstrap .mb-sm-2 {
      margin-bottom: 0.5rem !important; }
    .bootstrap .ml-sm-2 {
      margin-left: 0.5rem !important; }
    .bootstrap .mx-sm-2 {
      margin-right: 0.5rem !important;
      margin-left: 0.5rem !important; }
    .bootstrap .my-sm-2 {
      margin-top: 0.5rem !important;
      margin-bottom: 0.5rem !important; }
    .bootstrap .m-sm-3 {
      margin: 1rem !important; }
    .bootstrap .mt-sm-3 {
      margin-top: 1rem !important; }
    .bootstrap .mr-sm-3 {
      margin-right: 1rem !important; }
    .bootstrap .mb-sm-3 {
      margin-bottom: 1rem !important; }
    .bootstrap .ml-sm-3 {
      margin-left: 1rem !important; }
    .bootstrap .mx-sm-3 {
      margin-right: 1rem !important;
      margin-left: 1rem !important; }
    .bootstrap .my-sm-3 {
      margin-top: 1rem !important;
      margin-bottom: 1rem !important; }
    .bootstrap .m-sm-4 {
      margin: 1.5rem !important; }
    .bootstrap .mt-sm-4 {
      margin-top: 1.5rem !important; }
    .bootstrap .mr-sm-4 {
      margin-right: 1.5rem !important; }
    .bootstrap .mb-sm-4 {
      margin-bottom: 1.5rem !important; }
    .bootstrap .ml-sm-4 {
      margin-left: 1.5rem !important; }
    .bootstrap .mx-sm-4 {
      margin-right: 1.5rem !important;
      margin-left: 1.5rem !important; }
    .bootstrap .my-sm-4 {
      margin-top: 1.5rem !important;
      margin-bottom: 1.5rem !important; }
    .bootstrap .m-sm-5 {
      margin: 3rem !important; }
    .bootstrap .mt-sm-5 {
      margin-top: 3rem !important; }
    .bootstrap .mr-sm-5 {
      margin-right: 3rem !important; }
    .bootstrap .mb-sm-5 {
      margin-bottom: 3rem !important; }
    .bootstrap .ml-sm-5 {
      margin-left: 3rem !important; }
    .bootstrap .mx-sm-5 {
      margin-right: 3rem !important;
      margin-left: 3rem !important; }
    .bootstrap .my-sm-5 {
      margin-top: 3rem !important;
      margin-bottom: 3rem !important; }
    .bootstrap .p-sm-0 {
      padding: 0 !important; }
    .bootstrap .pt-sm-0 {
      padding-top: 0 !important; }
    .bootstrap .pr-sm-0 {
      padding-right: 0 !important; }
    .bootstrap .pb-sm-0 {
      padding-bottom: 0 !important; }
    .bootstrap .pl-sm-0 {
      padding-left: 0 !important; }
    .bootstrap .px-sm-0 {
      padding-right: 0 !important;
      padding-left: 0 !important; }
    .bootstrap .py-sm-0 {
      padding-top: 0 !important;
      padding-bottom: 0 !important; }
    .bootstrap .p-sm-1 {
      padding: 0.25rem !important; }
    .bootstrap .pt-sm-1 {
      padding-top: 0.25rem !important; }
    .bootstrap .pr-sm-1 {
      padding-right: 0.25rem !important; }
    .bootstrap .pb-sm-1 {
      padding-bottom: 0.25rem !important; }
    .bootstrap .pl-sm-1 {
      padding-left: 0.25rem !important; }
    .bootstrap .px-sm-1 {
      padding-right: 0.25rem !important;
      padding-left: 0.25rem !important; }
    .bootstrap .py-sm-1 {
      padding-top: 0.25rem !important;
      padding-bottom: 0.25rem !important; }
    .bootstrap .p-sm-2 {
      padding: 0.5rem !important; }
    .bootstrap .pt-sm-2 {
      padding-top: 0.5rem !important; }
    .bootstrap .pr-sm-2 {
      padding-right: 0.5rem !important; }
    .bootstrap .pb-sm-2 {
      padding-bottom: 0.5rem !important; }
    .bootstrap .pl-sm-2 {
      padding-left: 0.5rem !important; }
    .bootstrap .px-sm-2 {
      padding-right: 0.5rem !important;
      padding-left: 0.5rem !important; }
    .bootstrap .py-sm-2 {
      padding-top: 0.5rem !important;
      padding-bottom: 0.5rem !important; }
    .bootstrap .p-sm-3 {
      padding: 1rem !important; }
    .bootstrap .pt-sm-3 {
      padding-top: 1rem !important; }
    .bootstrap .pr-sm-3 {
      padding-right: 1rem !important; }
    .bootstrap .pb-sm-3 {
      padding-bottom: 1rem !important; }
    .bootstrap .pl-sm-3 {
      padding-left: 1rem !important; }
    .bootstrap .px-sm-3 {
      padding-right: 1rem !important;
      padding-left: 1rem !important; }
    .bootstrap .py-sm-3 {
      padding-top: 1rem !important;
      padding-bottom: 1rem !important; }
    .bootstrap .p-sm-4 {
      padding: 1.5rem !important; }
    .bootstrap .pt-sm-4 {
      padding-top: 1.5rem !important; }
    .bootstrap .pr-sm-4 {
      padding-right: 1.5rem !important; }
    .bootstrap .pb-sm-4 {
      padding-bottom: 1.5rem !important; }
    .bootstrap .pl-sm-4 {
      padding-left: 1.5rem !important; }
    .bootstrap .px-sm-4 {
      padding-right: 1.5rem !important;
      padding-left: 1.5rem !important; }
    .bootstrap .py-sm-4 {
      padding-top: 1.5rem !important;
      padding-bottom: 1.5rem !important; }
    .bootstrap .p-sm-5 {
      padding: 3rem !important; }
    .bootstrap .pt-sm-5 {
      padding-top: 3rem !important; }
    .bootstrap .pr-sm-5 {
      padding-right: 3rem !important; }
    .bootstrap .pb-sm-5 {
      padding-bottom: 3rem !important; }
    .bootstrap .pl-sm-5 {
      padding-left: 3rem !important; }
    .bootstrap .px-sm-5 {
      padding-right: 3rem !important;
      padding-left: 3rem !important; }
    .bootstrap .py-sm-5 {
      padding-top: 3rem !important;
      padding-bottom: 3rem !important; }
    .bootstrap .m-sm-auto {
      margin: auto !important; }
    .bootstrap .mt-sm-auto {
      margin-top: auto !important; }
    .bootstrap .mr-sm-auto {
      margin-right: auto !important; }
    .bootstrap .mb-sm-auto {
      margin-bottom: auto !important; }
    .bootstrap .ml-sm-auto {
      margin-left: auto !important; }
    .bootstrap .mx-sm-auto {
      margin-right: auto !important;
      margin-left: auto !important; }
    .bootstrap .my-sm-auto {
      margin-top: auto !important;
      margin-bottom: auto !important; } }
  @media (min-width: 768px) {
    .bootstrap .m-md-0 {
      margin: 0 !important; }
    .bootstrap .mt-md-0 {
      margin-top: 0 !important; }
    .bootstrap .mr-md-0 {
      margin-right: 0 !important; }
    .bootstrap .mb-md-0 {
      margin-bottom: 0 !important; }
    .bootstrap .ml-md-0 {
      margin-left: 0 !important; }
    .bootstrap .mx-md-0 {
      margin-right: 0 !important;
      margin-left: 0 !important; }
    .bootstrap .my-md-0 {
      margin-top: 0 !important;
      margin-bottom: 0 !important; }
    .bootstrap .m-md-1 {
      margin: 0.25rem !important; }
    .bootstrap .mt-md-1 {
      margin-top: 0.25rem !important; }
    .bootstrap .mr-md-1 {
      margin-right: 0.25rem !important; }
    .bootstrap .mb-md-1 {
      margin-bottom: 0.25rem !important; }
    .bootstrap .ml-md-1 {
      margin-left: 0.25rem !important; }
    .bootstrap .mx-md-1 {
      margin-right: 0.25rem !important;
      margin-left: 0.25rem !important; }
    .bootstrap .my-md-1 {
      margin-top: 0.25rem !important;
      margin-bottom: 0.25rem !important; }
    .bootstrap .m-md-2 {
      margin: 0.5rem !important; }
    .bootstrap .mt-md-2 {
      margin-top: 0.5rem !important; }
    .bootstrap .mr-md-2 {
      margin-right: 0.5rem !important; }
    .bootstrap .mb-md-2 {
      margin-bottom: 0.5rem !important; }
    .bootstrap .ml-md-2 {
      margin-left: 0.5rem !important; }
    .bootstrap .mx-md-2 {
      margin-right: 0.5rem !important;
      margin-left: 0.5rem !important; }
    .bootstrap .my-md-2 {
      margin-top: 0.5rem !important;
      margin-bottom: 0.5rem !important; }
    .bootstrap .m-md-3 {
      margin: 1rem !important; }
    .bootstrap .mt-md-3 {
      margin-top: 1rem !important; }
    .bootstrap .mr-md-3 {
      margin-right: 1rem !important; }
    .bootstrap .mb-md-3 {
      margin-bottom: 1rem !important; }
    .bootstrap .ml-md-3 {
      margin-left: 1rem !important; }
    .bootstrap .mx-md-3 {
      margin-right: 1rem !important;
      margin-left: 1rem !important; }
    .bootstrap .my-md-3 {
      margin-top: 1rem !important;
      margin-bottom: 1rem !important; }
    .bootstrap .m-md-4 {
      margin: 1.5rem !important; }
    .bootstrap .mt-md-4 {
      margin-top: 1.5rem !important; }
    .bootstrap .mr-md-4 {
      margin-right: 1.5rem !important; }
    .bootstrap .mb-md-4 {
      margin-bottom: 1.5rem !important; }
    .bootstrap .ml-md-4 {
      margin-left: 1.5rem !important; }
    .bootstrap .mx-md-4 {
      margin-right: 1.5rem !important;
      margin-left: 1.5rem !important; }
    .bootstrap .my-md-4 {
      margin-top: 1.5rem !important;
      margin-bottom: 1.5rem !important; }
    .bootstrap .m-md-5 {
      margin: 3rem !important; }
    .bootstrap .mt-md-5 {
      margin-top: 3rem !important; }
    .bootstrap .mr-md-5 {
      margin-right: 3rem !important; }
    .bootstrap .mb-md-5 {
      margin-bottom: 3rem !important; }
    .bootstrap .ml-md-5 {
      margin-left: 3rem !important; }
    .bootstrap .mx-md-5 {
      margin-right: 3rem !important;
      margin-left: 3rem !important; }
    .bootstrap .my-md-5 {
      margin-top: 3rem !important;
      margin-bottom: 3rem !important; }
    .bootstrap .p-md-0 {
      padding: 0 !important; }
    .bootstrap .pt-md-0 {
      padding-top: 0 !important; }
    .bootstrap .pr-md-0 {
      padding-right: 0 !important; }
    .bootstrap .pb-md-0 {
      padding-bottom: 0 !important; }
    .bootstrap .pl-md-0 {
      padding-left: 0 !important; }
    .bootstrap .px-md-0 {
      padding-right: 0 !important;
      padding-left: 0 !important; }
    .bootstrap .py-md-0 {
      padding-top: 0 !important;
      padding-bottom: 0 !important; }
    .bootstrap .p-md-1 {
      padding: 0.25rem !important; }
    .bootstrap .pt-md-1 {
      padding-top: 0.25rem !important; }
    .bootstrap .pr-md-1 {
      padding-right: 0.25rem !important; }
    .bootstrap .pb-md-1 {
      padding-bottom: 0.25rem !important; }
    .bootstrap .pl-md-1 {
      padding-left: 0.25rem !important; }
    .bootstrap .px-md-1 {
      padding-right: 0.25rem !important;
      padding-left: 0.25rem !important; }
    .bootstrap .py-md-1 {
      padding-top: 0.25rem !important;
      padding-bottom: 0.25rem !important; }
    .bootstrap .p-md-2 {
      padding: 0.5rem !important; }
    .bootstrap .pt-md-2 {
      padding-top: 0.5rem !important; }
    .bootstrap .pr-md-2 {
      padding-right: 0.5rem !important; }
    .bootstrap .pb-md-2 {
      padding-bottom: 0.5rem !important; }
    .bootstrap .pl-md-2 {
      padding-left: 0.5rem !important; }
    .bootstrap .px-md-2 {
      padding-right: 0.5rem !important;
      padding-left: 0.5rem !important; }
    .bootstrap .py-md-2 {
      padding-top: 0.5rem !important;
      padding-bottom: 0.5rem !important; }
    .bootstrap .p-md-3 {
      padding: 1rem !important; }
    .bootstrap .pt-md-3 {
      padding-top: 1rem !important; }
    .bootstrap .pr-md-3 {
      padding-right: 1rem !important; }
    .bootstrap .pb-md-3 {
      padding-bottom: 1rem !important; }
    .bootstrap .pl-md-3 {
      padding-left: 1rem !important; }
    .bootstrap .px-md-3 {
      padding-right: 1rem !important;
      padding-left: 1rem !important; }
    .bootstrap .py-md-3 {
      padding-top: 1rem !important;
      padding-bottom: 1rem !important; }
    .bootstrap .p-md-4 {
      padding: 1.5rem !important; }
    .bootstrap .pt-md-4 {
      padding-top: 1.5rem !important; }
    .bootstrap .pr-md-4 {
      padding-right: 1.5rem !important; }
    .bootstrap .pb-md-4 {
      padding-bottom: 1.5rem !important; }
    .bootstrap .pl-md-4 {
      padding-left: 1.5rem !important; }
    .bootstrap .px-md-4 {
      padding-right: 1.5rem !important;
      padding-left: 1.5rem !important; }
    .bootstrap .py-md-4 {
      padding-top: 1.5rem !important;
      padding-bottom: 1.5rem !important; }
    .bootstrap .p-md-5 {
      padding: 3rem !important; }
    .bootstrap .pt-md-5 {
      padding-top: 3rem !important; }
    .bootstrap .pr-md-5 {
      padding-right: 3rem !important; }
    .bootstrap .pb-md-5 {
      padding-bottom: 3rem !important; }
    .bootstrap .pl-md-5 {
      padding-left: 3rem !important; }
    .bootstrap .px-md-5 {
      padding-right: 3rem !important;
      padding-left: 3rem !important; }
    .bootstrap .py-md-5 {
      padding-top: 3rem !important;
      padding-bottom: 3rem !important; }
    .bootstrap .m-md-auto {
      margin: auto !important; }
    .bootstrap .mt-md-auto {
      margin-top: auto !important; }
    .bootstrap .mr-md-auto {
      margin-right: auto !important; }
    .bootstrap .mb-md-auto {
      margin-bottom: auto !important; }
    .bootstrap .ml-md-auto {
      margin-left: auto !important; }
    .bootstrap .mx-md-auto {
      margin-right: auto !important;
      margin-left: auto !important; }
    .bootstrap .my-md-auto {
      margin-top: auto !important;
      margin-bottom: auto !important; } }
  @media (min-width: 992px) {
    .bootstrap .m-lg-0 {
      margin: 0 !important; }
    .bootstrap .mt-lg-0 {
      margin-top: 0 !important; }
    .bootstrap .mr-lg-0 {
      margin-right: 0 !important; }
    .bootstrap .mb-lg-0 {
      margin-bottom: 0 !important; }
    .bootstrap .ml-lg-0 {
      margin-left: 0 !important; }
    .bootstrap .mx-lg-0 {
      margin-right: 0 !important;
      margin-left: 0 !important; }
    .bootstrap .my-lg-0 {
      margin-top: 0 !important;
      margin-bottom: 0 !important; }
    .bootstrap .m-lg-1 {
      margin: 0.25rem !important; }
    .bootstrap .mt-lg-1 {
      margin-top: 0.25rem !important; }
    .bootstrap .mr-lg-1 {
      margin-right: 0.25rem !important; }
    .bootstrap .mb-lg-1 {
      margin-bottom: 0.25rem !important; }
    .bootstrap .ml-lg-1 {
      margin-left: 0.25rem !important; }
    .bootstrap .mx-lg-1 {
      margin-right: 0.25rem !important;
      margin-left: 0.25rem !important; }
    .bootstrap .my-lg-1 {
      margin-top: 0.25rem !important;
      margin-bottom: 0.25rem !important; }
    .bootstrap .m-lg-2 {
      margin: 0.5rem !important; }
    .bootstrap .mt-lg-2 {
      margin-top: 0.5rem !important; }
    .bootstrap .mr-lg-2 {
      margin-right: 0.5rem !important; }
    .bootstrap .mb-lg-2 {
      margin-bottom: 0.5rem !important; }
    .bootstrap .ml-lg-2 {
      margin-left: 0.5rem !important; }
    .bootstrap .mx-lg-2 {
      margin-right: 0.5rem !important;
      margin-left: 0.5rem !important; }
    .bootstrap .my-lg-2 {
      margin-top: 0.5rem !important;
      margin-bottom: 0.5rem !important; }
    .bootstrap .m-lg-3 {
      margin: 1rem !important; }
    .bootstrap .mt-lg-3 {
      margin-top: 1rem !important; }
    .bootstrap .mr-lg-3 {
      margin-right: 1rem !important; }
    .bootstrap .mb-lg-3 {
      margin-bottom: 1rem !important; }
    .bootstrap .ml-lg-3 {
      margin-left: 1rem !important; }
    .bootstrap .mx-lg-3 {
      margin-right: 1rem !important;
      margin-left: 1rem !important; }
    .bootstrap .my-lg-3 {
      margin-top: 1rem !important;
      margin-bottom: 1rem !important; }
    .bootstrap .m-lg-4 {
      margin: 1.5rem !important; }
    .bootstrap .mt-lg-4 {
      margin-top: 1.5rem !important; }
    .bootstrap .mr-lg-4 {
      margin-right: 1.5rem !important; }
    .bootstrap .mb-lg-4 {
      margin-bottom: 1.5rem !important; }
    .bootstrap .ml-lg-4 {
      margin-left: 1.5rem !important; }
    .bootstrap .mx-lg-4 {
      margin-right: 1.5rem !important;
      margin-left: 1.5rem !important; }
    .bootstrap .my-lg-4 {
      margin-top: 1.5rem !important;
      margin-bottom: 1.5rem !important; }
    .bootstrap .m-lg-5 {
      margin: 3rem !important; }
    .bootstrap .mt-lg-5 {
      margin-top: 3rem !important; }
    .bootstrap .mr-lg-5 {
      margin-right: 3rem !important; }
    .bootstrap .mb-lg-5 {
      margin-bottom: 3rem !important; }
    .bootstrap .ml-lg-5 {
      margin-left: 3rem !important; }
    .bootstrap .mx-lg-5 {
      margin-right: 3rem !important;
      margin-left: 3rem !important; }
    .bootstrap .my-lg-5 {
      margin-top: 3rem !important;
      margin-bottom: 3rem !important; }
    .bootstrap .p-lg-0 {
      padding: 0 !important; }
    .bootstrap .pt-lg-0 {
      padding-top: 0 !important; }
    .bootstrap .pr-lg-0 {
      padding-right: 0 !important; }
    .bootstrap .pb-lg-0 {
      padding-bottom: 0 !important; }
    .bootstrap .pl-lg-0 {
      padding-left: 0 !important; }
    .bootstrap .px-lg-0 {
      padding-right: 0 !important;
      padding-left: 0 !important; }
    .bootstrap .py-lg-0 {
      padding-top: 0 !important;
      padding-bottom: 0 !important; }
    .bootstrap .p-lg-1 {
      padding: 0.25rem !important; }
    .bootstrap .pt-lg-1 {
      padding-top: 0.25rem !important; }
    .bootstrap .pr-lg-1 {
      padding-right: 0.25rem !important; }
    .bootstrap .pb-lg-1 {
      padding-bottom: 0.25rem !important; }
    .bootstrap .pl-lg-1 {
      padding-left: 0.25rem !important; }
    .bootstrap .px-lg-1 {
      padding-right: 0.25rem !important;
      padding-left: 0.25rem !important; }
    .bootstrap .py-lg-1 {
      padding-top: 0.25rem !important;
      padding-bottom: 0.25rem !important; }
    .bootstrap .p-lg-2 {
      padding: 0.5rem !important; }
    .bootstrap .pt-lg-2 {
      padding-top: 0.5rem !important; }
    .bootstrap .pr-lg-2 {
      padding-right: 0.5rem !important; }
    .bootstrap .pb-lg-2 {
      padding-bottom: 0.5rem !important; }
    .bootstrap .pl-lg-2 {
      padding-left: 0.5rem !important; }
    .bootstrap .px-lg-2 {
      padding-right: 0.5rem !important;
      padding-left: 0.5rem !important; }
    .bootstrap .py-lg-2 {
      padding-top: 0.5rem !important;
      padding-bottom: 0.5rem !important; }
    .bootstrap .p-lg-3 {
      padding: 1rem !important; }
    .bootstrap .pt-lg-3 {
      padding-top: 1rem !important; }
    .bootstrap .pr-lg-3 {
      padding-right: 1rem !important; }
    .bootstrap .pb-lg-3 {
      padding-bottom: 1rem !important; }
    .bootstrap .pl-lg-3 {
      padding-left: 1rem !important; }
    .bootstrap .px-lg-3 {
      padding-right: 1rem !important;
      padding-left: 1rem !important; }
    .bootstrap .py-lg-3 {
      padding-top: 1rem !important;
      padding-bottom: 1rem !important; }
    .bootstrap .p-lg-4 {
      padding: 1.5rem !important; }
    .bootstrap .pt-lg-4 {
      padding-top: 1.5rem !important; }
    .bootstrap .pr-lg-4 {
      padding-right: 1.5rem !important; }
    .bootstrap .pb-lg-4 {
      padding-bottom: 1.5rem !important; }
    .bootstrap .pl-lg-4 {
      padding-left: 1.5rem !important; }
    .bootstrap .px-lg-4 {
      padding-right: 1.5rem !important;
      padding-left: 1.5rem !important; }
    .bootstrap .py-lg-4 {
      padding-top: 1.5rem !important;
      padding-bottom: 1.5rem !important; }
    .bootstrap .p-lg-5 {
      padding: 3rem !important; }
    .bootstrap .pt-lg-5 {
      padding-top: 3rem !important; }
    .bootstrap .pr-lg-5 {
      padding-right: 3rem !important; }
    .bootstrap .pb-lg-5 {
      padding-bottom: 3rem !important; }
    .bootstrap .pl-lg-5 {
      padding-left: 3rem !important; }
    .bootstrap .px-lg-5 {
      padding-right: 3rem !important;
      padding-left: 3rem !important; }
    .bootstrap .py-lg-5 {
      padding-top: 3rem !important;
      padding-bottom: 3rem !important; }
    .bootstrap .m-lg-auto {
      margin: auto !important; }
    .bootstrap .mt-lg-auto {
      margin-top: auto !important; }
    .bootstrap .mr-lg-auto {
      margin-right: auto !important; }
    .bootstrap .mb-lg-auto {
      margin-bottom: auto !important; }
    .bootstrap .ml-lg-auto {
      margin-left: auto !important; }
    .bootstrap .mx-lg-auto {
      margin-right: auto !important;
      margin-left: auto !important; }
    .bootstrap .my-lg-auto {
      margin-top: auto !important;
      margin-bottom: auto !important; } }
  @media (min-width: 1200px) {
    .bootstrap .m-xl-0 {
      margin: 0 !important; }
    .bootstrap .mt-xl-0 {
      margin-top: 0 !important; }
    .bootstrap .mr-xl-0 {
      margin-right: 0 !important; }
    .bootstrap .mb-xl-0 {
      margin-bottom: 0 !important; }
    .bootstrap .ml-xl-0 {
      margin-left: 0 !important; }
    .bootstrap .mx-xl-0 {
      margin-right: 0 !important;
      margin-left: 0 !important; }
    .bootstrap .my-xl-0 {
      margin-top: 0 !important;
      margin-bottom: 0 !important; }
    .bootstrap .m-xl-1 {
      margin: 0.25rem !important; }
    .bootstrap .mt-xl-1 {
      margin-top: 0.25rem !important; }
    .bootstrap .mr-xl-1 {
      margin-right: 0.25rem !important; }
    .bootstrap .mb-xl-1 {
      margin-bottom: 0.25rem !important; }
    .bootstrap .ml-xl-1 {
      margin-left: 0.25rem !important; }
    .bootstrap .mx-xl-1 {
      margin-right: 0.25rem !important;
      margin-left: 0.25rem !important; }
    .bootstrap .my-xl-1 {
      margin-top: 0.25rem !important;
      margin-bottom: 0.25rem !important; }
    .bootstrap .m-xl-2 {
      margin: 0.5rem !important; }
    .bootstrap .mt-xl-2 {
      margin-top: 0.5rem !important; }
    .bootstrap .mr-xl-2 {
      margin-right: 0.5rem !important; }
    .bootstrap .mb-xl-2 {
      margin-bottom: 0.5rem !important; }
    .bootstrap .ml-xl-2 {
      margin-left: 0.5rem !important; }
    .bootstrap .mx-xl-2 {
      margin-right: 0.5rem !important;
      margin-left: 0.5rem !important; }
    .bootstrap .my-xl-2 {
      margin-top: 0.5rem !important;
      margin-bottom: 0.5rem !important; }
    .bootstrap .m-xl-3 {
      margin: 1rem !important; }
    .bootstrap .mt-xl-3 {
      margin-top: 1rem !important; }
    .bootstrap .mr-xl-3 {
      margin-right: 1rem !important; }
    .bootstrap .mb-xl-3 {
      margin-bottom: 1rem !important; }
    .bootstrap .ml-xl-3 {
      margin-left: 1rem !important; }
    .bootstrap .mx-xl-3 {
      margin-right: 1rem !important;
      margin-left: 1rem !important; }
    .bootstrap .my-xl-3 {
      margin-top: 1rem !important;
      margin-bottom: 1rem !important; }
    .bootstrap .m-xl-4 {
      margin: 1.5rem !important; }
    .bootstrap .mt-xl-4 {
      margin-top: 1.5rem !important; }
    .bootstrap .mr-xl-4 {
      margin-right: 1.5rem !important; }
    .bootstrap .mb-xl-4 {
      margin-bottom: 1.5rem !important; }
    .bootstrap .ml-xl-4 {
      margin-left: 1.5rem !important; }
    .bootstrap .mx-xl-4 {
      margin-right: 1.5rem !important;
      margin-left: 1.5rem !important; }
    .bootstrap .my-xl-4 {
      margin-top: 1.5rem !important;
      margin-bottom: 1.5rem !important; }
    .bootstrap .m-xl-5 {
      margin: 3rem !important; }
    .bootstrap .mt-xl-5 {
      margin-top: 3rem !important; }
    .bootstrap .mr-xl-5 {
      margin-right: 3rem !important; }
    .bootstrap .mb-xl-5 {
      margin-bottom: 3rem !important; }
    .bootstrap .ml-xl-5 {
      margin-left: 3rem !important; }
    .bootstrap .mx-xl-5 {
      margin-right: 3rem !important;
      margin-left: 3rem !important; }
    .bootstrap .my-xl-5 {
      margin-top: 3rem !important;
      margin-bottom: 3rem !important; }
    .bootstrap .p-xl-0 {
      padding: 0 !important; }
    .bootstrap .pt-xl-0 {
      padding-top: 0 !important; }
    .bootstrap .pr-xl-0 {
      padding-right: 0 !important; }
    .bootstrap .pb-xl-0 {
      padding-bottom: 0 !important; }
    .bootstrap .pl-xl-0 {
      padding-left: 0 !important; }
    .bootstrap .px-xl-0 {
      padding-right: 0 !important;
      padding-left: 0 !important; }
    .bootstrap .py-xl-0 {
      padding-top: 0 !important;
      padding-bottom: 0 !important; }
    .bootstrap .p-xl-1 {
      padding: 0.25rem !important; }
    .bootstrap .pt-xl-1 {
      padding-top: 0.25rem !important; }
    .bootstrap .pr-xl-1 {
      padding-right: 0.25rem !important; }
    .bootstrap .pb-xl-1 {
      padding-bottom: 0.25rem !important; }
    .bootstrap .pl-xl-1 {
      padding-left: 0.25rem !important; }
    .bootstrap .px-xl-1 {
      padding-right: 0.25rem !important;
      padding-left: 0.25rem !important; }
    .bootstrap .py-xl-1 {
      padding-top: 0.25rem !important;
      padding-bottom: 0.25rem !important; }
    .bootstrap .p-xl-2 {
      padding: 0.5rem !important; }
    .bootstrap .pt-xl-2 {
      padding-top: 0.5rem !important; }
    .bootstrap .pr-xl-2 {
      padding-right: 0.5rem !important; }
    .bootstrap .pb-xl-2 {
      padding-bottom: 0.5rem !important; }
    .bootstrap .pl-xl-2 {
      padding-left: 0.5rem !important; }
    .bootstrap .px-xl-2 {
      padding-right: 0.5rem !important;
      padding-left: 0.5rem !important; }
    .bootstrap .py-xl-2 {
      padding-top: 0.5rem !important;
      padding-bottom: 0.5rem !important; }
    .bootstrap .p-xl-3 {
      padding: 1rem !important; }
    .bootstrap .pt-xl-3 {
      padding-top: 1rem !important; }
    .bootstrap .pr-xl-3 {
      padding-right: 1rem !important; }
    .bootstrap .pb-xl-3 {
      padding-bottom: 1rem !important; }
    .bootstrap .pl-xl-3 {
      padding-left: 1rem !important; }
    .bootstrap .px-xl-3 {
      padding-right: 1rem !important;
      padding-left: 1rem !important; }
    .bootstrap .py-xl-3 {
      padding-top: 1rem !important;
      padding-bottom: 1rem !important; }
    .bootstrap .p-xl-4 {
      padding: 1.5rem !important; }
    .bootstrap .pt-xl-4 {
      padding-top: 1.5rem !important; }
    .bootstrap .pr-xl-4 {
      padding-right: 1.5rem !important; }
    .bootstrap .pb-xl-4 {
      padding-bottom: 1.5rem !important; }
    .bootstrap .pl-xl-4 {
      padding-left: 1.5rem !important; }
    .bootstrap .px-xl-4 {
      padding-right: 1.5rem !important;
      padding-left: 1.5rem !important; }
    .bootstrap .py-xl-4 {
      padding-top: 1.5rem !important;
      padding-bottom: 1.5rem !important; }
    .bootstrap .p-xl-5 {
      padding: 3rem !important; }
    .bootstrap .pt-xl-5 {
      padding-top: 3rem !important; }
    .bootstrap .pr-xl-5 {
      padding-right: 3rem !important; }
    .bootstrap .pb-xl-5 {
      padding-bottom: 3rem !important; }
    .bootstrap .pl-xl-5 {
      padding-left: 3rem !important; }
    .bootstrap .px-xl-5 {
      padding-right: 3rem !important;
      padding-left: 3rem !important; }
    .bootstrap .py-xl-5 {
      padding-top: 3rem !important;
      padding-bottom: 3rem !important; }
    .bootstrap .m-xl-auto {
      margin: auto !important; }
    .bootstrap .mt-xl-auto {
      margin-top: auto !important; }
    .bootstrap .mr-xl-auto {
      margin-right: auto !important; }
    .bootstrap .mb-xl-auto {
      margin-bottom: auto !important; }
    .bootstrap .ml-xl-auto {
      margin-left: auto !important; }
    .bootstrap .mx-xl-auto {
      margin-right: auto !important;
      margin-left: auto !important; }
    .bootstrap .my-xl-auto {
      margin-top: auto !important;
      margin-bottom: auto !important; } }
  .bootstrap .text-justify {
    text-align: justify !important; }
  .bootstrap .text-nowrap {
    white-space: nowrap !important; }
  .bootstrap .text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
  .bootstrap .text-left {
    text-align: left !important; }
  .bootstrap .text-right {
    text-align: right !important; }
  .bootstrap .text-center {
    text-align: center !important; }
  @media (min-width: 576px) {
    .bootstrap .text-sm-left {
      text-align: left !important; }
    .bootstrap .text-sm-right {
      text-align: right !important; }
    .bootstrap .text-sm-center {
      text-align: center !important; } }
  @media (min-width: 768px) {
    .bootstrap .text-md-left {
      text-align: left !important; }
    .bootstrap .text-md-right {
      text-align: right !important; }
    .bootstrap .text-md-center {
      text-align: center !important; } }
  @media (min-width: 992px) {
    .bootstrap .text-lg-left {
      text-align: left !important; }
    .bootstrap .text-lg-right {
      text-align: right !important; }
    .bootstrap .text-lg-center {
      text-align: center !important; } }
  @media (min-width: 1200px) {
    .bootstrap .text-xl-left {
      text-align: left !important; }
    .bootstrap .text-xl-right {
      text-align: right !important; }
    .bootstrap .text-xl-center {
      text-align: center !important; } }
  .bootstrap .text-lowercase {
    text-transform: lowercase !important; }
  .bootstrap .text-uppercase {
    text-transform: uppercase !important; }
  .bootstrap .text-capitalize {
    text-transform: capitalize !important; }
  .bootstrap .font-weight-normal {
    font-weight: 400; }
  .bootstrap .font-weight-bold {
    font-weight: 700; }
  .bootstrap .font-italic {
    font-style: italic; }
  .bootstrap .text-white {
    color: #fff !important; }
  .bootstrap .text-primary {
    color: #007bff !important; }
  .bootstrap a.text-primary:focus, .bootstrap a.text-primary:hover {
    color: #0062cc !important; }
  .bootstrap .text-secondary {
    color: #868e96 !important; }
  .bootstrap a.text-secondary:focus, .bootstrap a.text-secondary:hover {
    color: #6c757d !important; }
  .bootstrap .text-success {
    color: #28a745 !important; }
  .bootstrap a.text-success:focus, .bootstrap a.text-success:hover {
    color: #1e7e34 !important; }
  .bootstrap .text-info {
    color: #17a2b8 !important; }
  .bootstrap a.text-info:focus, .bootstrap a.text-info:hover {
    color: #117a8b !important; }
  .bootstrap .text-warning {
    color: #ffc107 !important; }
  .bootstrap a.text-warning:focus, .bootstrap a.text-warning:hover {
    color: #d39e00 !important; }
  .bootstrap .text-danger {
    color: #dc3545 !important; }
  .bootstrap a.text-danger:focus, .bootstrap a.text-danger:hover {
    color: #bd2130 !important; }
  .bootstrap .text-light {
    color: #f8f9fa !important; }
  .bootstrap a.text-light:focus, .bootstrap a.text-light:hover {
    color: #dae0e5 !important; }
  .bootstrap .text-dark {
    color: #343a40 !important; }
  .bootstrap a.text-dark:focus, .bootstrap a.text-dark:hover {
    color: #1d2124 !important; }
  .bootstrap .text-muted {
    color: #868e96 !important; }
  .bootstrap .text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0; }
  .bootstrap .visible {
    visibility: visible !important; }
  .bootstrap .invisible {
    visibility: hidden !important; }

.daterangepicker {
  position: absolute;
  background: #fff;
  top: 100px;
  left: 20px;
  padding: 4px;
  margin-top: 1px;
  border-radius: 4px;
  width: 278px; }

.daterangepicker.opensleft:before {
  position: absolute;
  top: -7px;
  right: 9px;
  display: inline-block;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-left: 7px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: ''; }

.daterangepicker.opensleft:after {
  position: absolute;
  top: -6px;
  right: 10px;
  display: inline-block;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent;
  content: ''; }

.daterangepicker.openscenter:before {
  position: absolute;
  top: -7px;
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-left: 7px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: ''; }

.daterangepicker.openscenter:after {
  position: absolute;
  top: -6px;
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent;
  content: ''; }

.daterangepicker.opensright:before {
  position: absolute;
  top: -7px;
  left: 9px;
  display: inline-block;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-left: 7px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: ''; }

.daterangepicker.opensright:after {
  position: absolute;
  top: -6px;
  left: 10px;
  display: inline-block;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent;
  content: ''; }

.daterangepicker.dropup {
  margin-top: -5px; }

.daterangepicker.dropup:before {
  top: initial;
  bottom: -7px;
  border-bottom: initial;
  border-top: 7px solid #ccc; }

.daterangepicker.dropup:after {
  top: initial;
  bottom: -6px;
  border-bottom: initial;
  border-top: 6px solid #fff; }

.daterangepicker.dropdown-menu {
  max-width: none;
  z-index: 3000; }

.daterangepicker.single .ranges, .daterangepicker.single .calendar {
  float: none; }

.daterangepicker .calendar {
  display: none;
  max-width: 270px;
  margin: 4px; }

.daterangepicker.show-calendar .calendar {
  display: block; }

.daterangepicker .calendar.single .calendar-table {
  border: 0; }

.daterangepicker .calendar th, .daterangepicker .calendar td {
  white-space: nowrap;
  text-align: center;
  min-width: 32px; }

.daterangepicker .calendar-table {
  border: 1px solid #ddd;
  padding: 4px;
  border-radius: 4px;
  background: #fff; }

.daterangepicker table {
  width: 100%;
  margin: 0; }

.daterangepicker td, .daterangepicker th {
  text-align: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  white-space: nowrap;
  cursor: pointer; }

.daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date {
  color: #999;
  background: #fff; }

.daterangepicker td.disabled, .daterangepicker option.disabled {
  color: #999;
  cursor: not-allowed;
  text-decoration: line-through; }

.daterangepicker td.available:hover, .daterangepicker th.available:hover {
  background: #eee; }

.daterangepicker td.in-range {
  background: #ebf4f8;
  border-radius: 0; }

.daterangepicker td.start-date {
  border-radius: 4px 0 0 4px; }

.daterangepicker td.end-date {
  border-radius: 0 4px 4px 0; }

.daterangepicker td.start-date.end-date {
  border-radius: 4px; }

.daterangepicker td.active, .daterangepicker td.active:hover {
  background-color: #357ebd;
  border-color: #3071a9;
  color: #fff; }

.daterangepicker td.week, .daterangepicker th.week {
  font-size: 80%;
  color: #ccc; }

.daterangepicker select.monthselect, .daterangepicker select.yearselect {
  font-size: 12px;
  padding: 1px;
  height: auto;
  margin: 0;
  cursor: default; }

.daterangepicker select.monthselect {
  margin-right: 2%;
  width: 56%; }

.daterangepicker select.yearselect {
  width: 40%; }

.daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.secondselect, .daterangepicker select.ampmselect {
  width: 50px;
  margin-bottom: 0; }

.daterangepicker th.month {
  width: auto; }

.daterangepicker .input-mini {
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #555;
  display: block;
  height: 30px;
  line-height: 30px;
  vertical-align: middle;
  margin: 0 0 5px 0;
  padding: 0 6px 0 28px;
  width: 100%; }

.daterangepicker .input-mini.active {
  border: 1px solid #357ebd; }

.daterangepicker .daterangepicker_input i {
  position: absolute;
  left: 8px;
  top: 8px; }

.daterangepicker .daterangepicker_input {
  position: relative; }

.daterangepicker .calendar-time {
  text-align: center;
  margin: 5px auto;
  line-height: 30px;
  position: relative;
  padding-left: 28px; }

.daterangepicker .calendar-time select.disabled {
  color: #ccc;
  cursor: not-allowed; }

.daterangepicker .ranges {
  font-size: 11px;
  float: none;
  margin: 4px;
  text-align: left; }

.daterangepicker .ranges ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%; }

.daterangepicker .ranges li {
  font-size: 13px;
  background: #f5f5f5;
  border: 1px solid #f5f5f5;
  color: #08c;
  padding: 3px 12px;
  margin-bottom: 8px;
  border-radius: 5px;
  cursor: pointer; }

.daterangepicker .ranges li.active, .daterangepicker .ranges li:hover {
  background: #08c;
  border: 1px solid #08c;
  color: #fff; }

@media (min-width: 564px) {
  .daterangepicker {
    width: auto; }
  .daterangepicker .ranges ul {
    width: 160px; }
  .daterangepicker.single .ranges ul {
    width: 100%; }
  .daterangepicker .calendar.left .calendar-table {
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
  .daterangepicker .calendar.right .calendar-table {
    border-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
  .daterangepicker .calendar.left {
    clear: left;
    margin-right: 0; }
  .daterangepicker.single .calendar.left {
    clear: none; }
  .daterangepicker.single .ranges, .daterangepicker.single .calendar {
    float: left; }
  .daterangepicker .calendar.right {
    margin-left: 0; }
  .daterangepicker .left .daterangepicker_input {
    padding-right: 12px; }
  .daterangepicker .calendar.left .calendar-table {
    padding-right: 12px; }
  .daterangepicker .ranges, .daterangepicker .calendar {
    float: left; } }

@media (min-width: 730px) {
  .daterangepicker .ranges {
    width: auto;
    float: left; }
  .daterangepicker .calendar.left {
    clear: none; } }

.daterangepicker {
  top: -1000px;
  left: -1000px;
  -webkit-box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.4);
          box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.4); }

.timelinePicker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .timelinePicker .divider {
    margin: 0 10px; }

.calendar {
  background: rgba(0, 0, 0, 0.1); }
  .calendar .bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: blue;
    padding: 15px; }
    .calendar .bar .leftArrow, .calendar .bar .rightArrow {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      color: #fff; }
    .calendar .bar .month {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      text-align: center;
      color: #fff; }
  .calendar .daysOfWeek {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%; }
    .calendar .daysOfWeek .day {
      text-align: center;
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-top: none;
      background: rgba(0, 0, 0, 0.05);
      width: calc(100% / 7);
      padding: 15px; }
  .calendar .days {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .calendar .days .day {
      width: calc(100% / 7);
      background: rgba(0, 0, 0, 0.15);
      border: 1px solid rgba(0, 0, 0, 0.2);
      text-align: center; }
      .calendar .days .day .daySelector {
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        padding: 15px;
        cursor: pointer;
        position: relative; }
        .calendar .days .day .daySelector .numAppointments {
          position: absolute;
          top: 5px;
          right: 5px; }
      .calendar .days .day .daySelector.active {
        background: blue;
        color: #fff; }
      .calendar .days .day .daySelector.today {
        font-weight: 900;
        text-decoration: underline; }
      .calendar .days .day .invalidDay {
        padding: 15px;
        background: rgba(0, 0, 0, 0.3);
        color: rgba(0, 0, 0, 0.5); }
      .calendar .days .day .pastMonth {
        background: rgba(0, 0, 0, 0.3);
        color: rgba(0, 0, 0, 0.5); }
      .calendar .days .day .numAppointments {
        background: #fff;
        padding: 2px 8px;
        color: #000;
        display: inline-block;
        border-radius: 50px;
        font-size: 10px;
        font-weight: 900; }

.timePicker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .timePicker input[type="text"], .timePicker select {
    width: 90px;
    font-size: 16px;
    padding: 5px; }
  .timePicker .meridian {
    margin: 0 0 0 10px; }
  .timePicker .divider {
    margin: 0 5px; }

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

a {
  cursor: pointer !important; }

.companyLogo {
  background: rgba(0, 0, 0, 0.2);
  padding: 15px;
  text-align: center; }
  .companyLogo img {
    margin: 0 auto; }

.validCategories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .validCategories .category {
    width: calc(100% / 3 - 10px);
    margin: 5px;
    padding: 5px;
    background: rgba(0, 0, 0, 0.1); }

body {
  background: #efefef;
  font-family: "Source Sans Pro", sans-serif;
  margin: 0;
  padding: 0;
  -webkit-font-kerning: normal;
          font-kerning: normal; }

*, html, body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

a {
  cursor: pointer; }

a:focus, button:focus, input[type="submit"]:focus {
  outline: none !important; }

img {
  max-width: 100%; }

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.2); }
  .header .left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 300px; }
  .header .right {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
    .header .right .menu {
      border-right: 1px solid rgba(0, 0, 0, 0.1);
      margin: 0 15px 0 0;
      padding: 0 15px 0 0; }
      .header .right .menu a {
        display: inline-block;
        margin: 0 25px 0 0;
        color: #000;
        text-decoration: none; }
        .header .right .menu a:last-child {
          margin: 0; }
      .header .right .menu .active {
        border-bottom: 3px solid blue; }

.container {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto; }

.contentContainer {
  margin: 15px 0;
  background: #fff;
  padding: 15px; }

.primaryBTN, .secondaryBTN {
  background: blue;
  padding: 8px 15px;
  border-radius: 3px;
  display: inline-block;
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: "Source Sans Pro", sans-serif;
  margin: 0 5px 0 0;
  text-decoration: none;
  font-size: 25px;
  white-space: nowrap; }
  .primaryBTN:hover, .secondaryBTN:hover {
    background: #0000cc; }
  .primaryBTN:active, .secondaryBTN:active {
    border-bottom: none;
    border-top: 3px solid blue;
    background: #000099; }

.secondaryBTN {
  background: none;
  color: #000;
  border: 1px solid #000;
  border-bottom: 2px solid #000;
  background: #fff;
  font-size: 12px;
  padding: 5px 10px; }
  .secondaryBTN:hover {
    background: #efefef; }
  .secondaryBTN:focus {
    border-bottom: 1px solid #000;
    border-top: 2px solid #000;
    background: #efefef; }

form label {
  margin: 0 0 10px 0;
  display: block; }

input[type="text"], input[type="password"], input[type="email"], input[type="tel"], textarea, select, input[type="number"] {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.3);
  padding: 10px;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 20px;
  display: block;
  width: 100%;
  border-radius: 2px; }
  input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, input[type="tel"]:focus, textarea:focus, select:focus, input[type="number"]:focus {
    -webkit-box-shadow: 0px 0px 2px #0000cc;
            box-shadow: 0px 0px 2px #0000cc;
    border: 1px solid blue; }

.sideBySide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: -10px -10px 0 -10px; }
  .sideBySide label {
    margin: 10px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
  .sideBySide .homepage {
    -ms-flex-item-align: end;
        align-self: flex-end; }

.dropzone {
  text-transform: uppercase;
  -webkit-box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  background: #efefef;
  min-height: auto;
  padding: 50px;
  text-align: center;
  margin: 25px 0;
  cursor: pointer; }

.contentAdder {
  background: rgba(0, 0, 0, 0.1);
  padding: 10px;
  border-radius: 5px; }
  .contentAdder form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .contentAdder form .content {
      width: 600px; }
    .contentAdder form .button {
      padding: 18px 0 0 0; }
    .contentAdder form label {
      margin: 0 15px 0 0; }

.contentItems .content {
  background: rgba(0, 0, 0, 0.1);
  padding: 15px;
  margin: 0 0 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .contentItems .content .left {
    margin: 0 15px 0 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto; }
  .contentItems .content .right {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
  .contentItems .content .title {
    font-size: 28px; }
  .contentItems .content .url {
    font-size: 14px; }
  .contentItems .content .buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .contentItems .content .buttons .sorter {
      margin: 0 10px 0 0; }
  .contentItems .content .meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 15px -5px; }
    .contentItems .content .meta .data {
      background: rgba(0, 0, 0, 0.2);
      text-align: center;
      margin: 0 5px;
      padding: 5px 15px;
      font-size: 14px;
      font-weight: 300; }
      .contentItems .content .meta .data .label {
        font-size: 10px;
        text-transform: uppercase;
        font-weight: 900; }

.categorySection, .greySection {
  background: rgba(0, 0, 0, 0.05);
  padding: 15px;
  margin: 15px -15px; }

.editCategories .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px 0;
  padding: 10px;
  background: rgba(0, 0, 0, 0.1); }
  .editCategories .category .input {
    margin: 0 5px 0 0; }

.currentFields .field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(0, 0, 0, 0.1);
  padding: 5px;
  margin: 5px 0; }
  .currentFields .field .label {
    width: 100%; }
  .currentFields .field .input {
    min-width: 350px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
  .currentFields .field .type {
    margin: 0 10px; }
  .currentFields .field .sorter {
    margin: 0 10px 0 0; }
  .currentFields .field .template {
    margin: 0 10px 0 0; }

.adderSection {
  background: rgba(0, 0, 0, 0.05);
  padding: 15px;
  margin: 10px 0; }
  .adderSection .fieldAdder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .adderSection .fieldAdder .type {
      margin: 0 15px; }
    .adderSection .fieldAdder .template {
      margin: 0 15px 0 0; }

.uploadedImages .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(0, 0, 0, 0.1);
  padding: 15px;
  margin: 10px 0; }
  .uploadedImages .image .preview {
    margin: 0 15px 0 0; }
  .uploadedImages .image .url {
    font-size: 12px; }

.smallMessage {
  position: fixed;
  bottom: 20px;
  right: 20px;
  pointer-events: none;
  z-index: 99999; }
  .smallMessage .message {
    display: block;
    background: #68C9A0;
    border-radius: 5px;
    color: #fff;
    font-size: 20px;
    padding: 10px;
    border-radius: 5px; }

.settingsContainer .authors {
  margin: -5px; }
  .settingsContainer .authors .author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: rgba(0, 0, 0, 0.1);
    padding: 5px;
    border-radius: 5px;
    margin: 0 0 5px 0; }
    .settingsContainer .authors .author .column {
      margin: 5px;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1; }
    .settingsContainer .authors .author .column.auto {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto; }
    .settingsContainer .authors .author .column.center {
      -ms-flex-item-align: center;
          align-self: center; }

.optionsSection .editOptions {
  font-size: 12px; }
  .optionsSection .editOptions .option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 15px 0;
    background: rgba(0, 0, 0, 0.1);
    padding: 5px;
    border-radius: 3px; }
    .optionsSection .editOptions .option .item {
      margin: 5px; }
    .optionsSection .editOptions .option .choicesWrapper .choice {
      background: rgba(0, 0, 0, 0.2);
      padding: 5px;
      border-radius: 5px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin: 0 0 10px 0; }

.dz-preview .dz-image, .dz-preview .dz-details, .dz-preview .dz-success-mark, .dz-preview .dz-error-mark, .dz-preview .dz-error-message {
  display: none; }

.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px; }
  .gallery .galleryItem {
    margin: 10px 10px;
    background: rgba(0, 0, 0, 0.1); }
    .gallery .galleryItem .controls {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      font-size: 12px;
      padding: 5px; }
      .gallery .galleryItem .controls .sorter {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1; }

.filters {
  margin: 0 15px; }

.activeFilters {
  font-size: 20px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: rgba(0, 0, 0, 0.3);
  margin: 15px 0;
  padding: 15px;
  border-radius: 15px; }
  .activeFilters div {
    margin: 0 3px; }

.search {
  margin: 10px 0;
  background: rgba(0, 0, 0, 0.2);
  padding: 10px;
  border-radius: 3px; }

.modalWrapper label .image {
  width: 150px; }

.contentItems .content .left {
  max-width: 150px; }

.modalWrapper .modal {
  width: 98%; }

.smallMessage {
  position: fixed;
  bottom: 20px;
  right: 20px;
  pointer-events: none;
  z-index: 99999; }
  .smallMessage .message {
    display: block;
    background: #68C9A0;
    border-radius: 5px;
    color: #fff;
    font-size: 20px;
    padding: 10px;
    border-radius: 5px; }

.settingsContainer .authors {
  margin: -5px; }
  .settingsContainer .authors .author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: rgba(0, 0, 0, 0.1);
    padding: 5px;
    border-radius: 5px;
    margin: 0 0 5px 0; }
    .settingsContainer .authors .author .column {
      margin: 5px;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1; }
    .settingsContainer .authors .author .column.auto {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto; }
    .settingsContainer .authors .author .column.center {
      -ms-flex-item-align: center;
          align-self: center; }

.setting {
  font-size: 12px;
  background: rgba(0, 0, 0, 0.1);
  padding: 5px;
  margin: 5px 0; }
  .setting label {
    font-weight: 900;
    font-size: 14px; }
  .setting.preselect .adder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .setting.preselect .adder div {
      margin: 0 5px 0 0; }
  .setting .preSelections .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: rgba(0, 0, 0, 0.1);
    padding: 3px;
    margin: 3px 0; }
    .setting .preSelections .item .option {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      margin: 0 5px 0 0; }
    .setting .preSelections .item .choice {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1; }

.greyBody {
  background: #31363C; }

.distributorHeader {
  background: #fff;
  padding: 10px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  margin: 0 0 5px 0; }
  .distributorHeader .logo {
    margin: 0 15px 0 0;
    width: 150px; }
  .distributorHeader .menu a {
    display: inline-block;
    margin: 0 15px;
    color: blue;
    text-decoration: none; }
  .distributorHeader .subTitle {
    font-size: 18px;
    font-weight: 900;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: left; }
  .distributorHeader .account {
    font-size: 12px;
    text-align: left;
    background: rgba(0, 0, 0, 0.1);
    padding: 5px;
    border-left: 5px solid rgba(0, 0, 0, 0.5);
    margin: 0 10px 0 0; }
    .distributorHeader .account .title {
      font-weight: bold; }
    .distributorHeader .account a {
      color: #333;
      text-decoration: none; }
    .distributorHeader .account.adminAccount {
      border-color: blue; }

.centerContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100vh; }
  .centerContainer .loginBox {
    width: 400px;
    background: #fff;
    padding: 25px;
    border-radius: 5px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2; }
    .centerContainer .loginBox .title {
      font-size: 30px;
      text-transform: uppercase; }
    .centerContainer .loginBox .subTitle {
      font-size: 20px; }
    .centerContainer .loginBox .tabs {
      position: absolute;
      top: -38px;
      left: 10px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      z-index: 1; }
      .centerContainer .loginBox .tabs .tab {
        background: #999;
        margin: 0 5px;
        padding: 10px 20px;
        border-top-right-radius: 3px;
        border-top-left-radius: 3px; }
        .centerContainer .loginBox .tabs .tab a {
          text-decoration: none;
          color: #333; }
        .centerContainer .loginBox .tabs .tab.active {
          background: #fff; }
  .centerContainer .wideBox {
    width: 100%;
    -ms-flex-item-align: start;
        align-self: flex-start;
    margin: 20px;
    margin-top: 60px; }

.forgot {
  margin: 15px 0 0 0; }
  .forgot a {
    color: blue; }

.dataItem {
  margin: 15px 0; }
  .dataItem .label {
    font-weight: 900;
    font-size: 11px; }

.whiteTable {
  border: none;
  width: 100%;
  font-size: 13px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2); }
  .whiteTable th {
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 5px 10px;
    margin: 0;
    font-size: 16px; }
  .whiteTable td {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: none;
    vertical-align: center;
    height: 100%;
    padding: 5px 10px; }
  .whiteTable .statsCell, .whiteTable .image, .whiteTable .approved, .whiteTable .comingSoon {
    text-align: center; }
  .whiteTable .title {
    font-size: 18px; }

.wideBox {
  width: 100%; }

.adder {
  background: rgba(0, 0, 0, 0.05);
  padding: 10px;
  margin: 15px 0; }
  .adder .section {
    background: rgba(0, 0, 0, 0.1);
    margin: 15px 0;
    padding: 15px; }
    .adder .section .categories {
      margin: 15px 0; }
      .adder .section .categories .category {
        margin: 5px 0; }
  .adder .galleryItems {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0; }
    .adder .galleryItems .item {
      list-style: none;
      margin: 0;
      padding: 0;
      background: rgba(0, 0, 0, 0.1);
      padding: 5px;
      margin: 5px 5px 5px 0; }
      .adder .galleryItems .item .controls {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        .adder .galleryItems .item .controls .grab-handle {
          -webkit-box-flex: 1;
              -ms-flex: 1;
                  flex: 1; }
        .adder .galleryItems .item .controls .deleter {
          -webkit-box-flex: 0;
              -ms-flex: 0 0 auto;
                  flex: 0 0 auto; }
  .adder .options {
    margin: 15px 0; }
    .adder .options .grab-handle {
      margin: 0 25px 0 0; }
    .adder .options .option {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      background: rgba(0, 0, 0, 0.1);
      padding: 15px;
      margin: 15px; }
      .adder .options .option .name {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto;
        margin: 0 15px 0 0; }
      .adder .options .option .choices {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1; }
        .adder .options .option .choices .choice {
          background: rgba(0, 0, 0, 0.1);
          padding: 15px;
          margin: 15px 0;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; }
          .adder .options .option .choices .choice label, .adder .options .option .choices .choice .choiceImage {
            -webkit-box-flex: 1;
                -ms-flex: 1;
                    flex: 1;
            margin: 5px; }

.inputGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .inputGroup .prefix {
    background: rgba(0, 0, 0, 0.2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px; }

.variations .variation {
  margin: 15px 0;
  background: rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #666; }
  .variations .variation .attributes .attribute {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-bottom: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .variations .variation .attributes .attribute:last-child {
      border-bottom: 1px solid rgba(0, 0, 0, 0.2); }
    .variations .variation .attributes .attribute .attributeLabel {
      font-weight: 900;
      font-size: 12px;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      background: #fff;
      padding: 3px; }
    .variations .variation .attributes .attribute .attributeChoice {
      padding: 3px;
      -webkit-box-flex: 2;
          -ms-flex: 2;
              flex: 2;
      text-align: right;
      font-size: 12px;
      background: #999; }
  .variations .variation .left {
    -webkit-box-flex: 0;
        -ms-flex: 0 auto;
            flex: 0 auto;
    margin: 0 15px 0 0;
    background: rgba(255, 255, 255, 0.8);
    padding: 15px;
    width: 250px; }
  .variations .variation .right {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 15px; }
  .variations .variation .item {
    margin: 0 0 15px 0; }
    .variations .variation .item.sku {
      width: 200px; }
    .variations .variation .item .label {
      font-weight: 900;
      font-size: 12px; }

.adderWrapper {
  margin: 25px 0; }

.scrollTable {
  min-height: 80vh;
  overflow-y: auto; }
  .scrollTable .vendorName {
    white-space: nowrap;
    font-size: 16px;
    font-weight: 900; }

.whiteTable.condensed tr th {
  font-size: 12px; }

.whiteTable.condensed tr td .primaryBTN {
  font-size: 12px;
  font-weight: 900;
  padding: 3px 5px; }

.scrollTable .cartTotal {
  font-size: 18px;
  margin: 0 0 5px 0; }

.scrollTable .cart .item {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-top: 3px solid rgba(0, 0, 0, 0.3);
  padding: 5px; }
  .scrollTable .cart .item .mainData {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .scrollTable .cart .item .mainData .data {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1; }
  .scrollTable .cart .item .data {
    margin: 0 0 5px 0; }
    .scrollTable .cart .item .data .options .label span {
      margin: 0 5px 0 0; }
    .scrollTable .cart .item .data .label {
      font-weight: bold;
      font-size: 11px;
      text-transform: uppercase; }
    .scrollTable .cart .item .data.options {
      background: rgba(0, 0, 0, 0.1);
      padding: 5px; }
      .scrollTable .cart .item .data.options .label {
        margin: 0 0 10px 0; }
    .scrollTable .cart .item .data .cartValue {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
      .scrollTable .cart .item .data .cartValue .values {
        margin: 0 10px 0 0;
        background: rgba(0, 0, 0, 0.1);
        padding: 3px; }
      .scrollTable .cart .item .data .cartValue .choice {
        font-weight: bold;
        font-size: 10px; }

.statLabel {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  margin: 0 0 -8px 0; }

.stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px 25px -10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }
  .stats .stat {
    background: rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin: 10px;
    text-align: left; }
    .stats .stat .mainLabel {
      font-size: 14px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.3);
      padding: 0 0 5px 0;
      margin: 0 0 5px 0; }
    .stats .stat .label {
      font-size: 12px;
      font-weight: 300; }
    .stats .stat .value {
      font-size: 20px;
      font-weight: bold; }

.tableStats .tableStat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .tableStats .tableStat .label {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 0 15px 0 0; }
  .tableStats .tableStat.lineTop {
    margin: 3px 0 0 0;
    padding: 3px 0 0 0;
    font-weight: 900; }
  .tableStats .tableStat.calculation {
    border-top: 2px solid rgba(0, 0, 0, 0.5); }

.major {
  background: yellow; }

.modal-body .editSection {
  background: rgba(0, 0, 0, 0.1);
  padding: 10px; }
  .modal-body .editSection label {
    font-size: 18px;
    font-weight: bold; }
  .modal-body .editSection .category {
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: rgba(0, 0, 0, 0.1);
    padding: 5px;
    margin: 5px 0; }
    .modal-body .editSection .category .name {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1; }

.catAdder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(0, 0, 0, 0.3);
  margin: 5px 0;
  padding: 5px; }
  .catAdder .input {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 300px;
    margin: 0 10px 0 0; }

.explainerActive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: rgba(0, 0, 0, 0.2);
  padding: 15px;
  margin: 0 0 5px 0; }
  .explainerActive .label {
    font-weight: 900;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 0 10px 0 0; }

.mainChart {
  width: 900px;
  margin: 50px 0; }

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px; }

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0; }

/* The slider */
.switch_slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s; }

.switch_slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s; }

input:checked + .switch_slider {
  background-color: #2196F3; }

input:focus + .switch_slider {
  -webkit-box-shadow: 0 0 1px #2196F3;
          box-shadow: 0 0 1px #2196F3; }

input:checked + .switch_slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px); }

/* Rounded switch_sliders */
.switch_slider.round {
  border-radius: 34px; }

.switch_slider.round:before {
  border-radius: 50%; }

.shipstationSection {
  background: rgba(0, 0, 0, 0.1);
  padding: 15px; }
  .shipstationSection .value {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    margin: 5px 0; }

.distributorTable .name {
  font-weight: 900;
  font-size: 18px; }

.categoryDiscounts {
  font-size: 11px; }
  .categoryDiscounts .discount {
    margin: 5px 0; }
  .categoryDiscounts input[type="text"] {
    font-size: 11px;
    padding: 5px;
    position: relative;
    top: 5px; }

.paging {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 15px 0 0 0; }
  .paging input[type="text"] {
    width: 70px;
    text-align: center; }
  .paging .pager {
    margin: 0 3px; }
  .paging .divider {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
  .paging .total {
    text-align: center;
    font-weight: bold; }
    .paging .total span.label {
      display: block;
      font-size: 12px;
      font-weight: 300; }
  .paging .prev a, .paging .next a {
    background: rgba(0, 0, 0, 0.1);
    padding: 3px 8px;
    border-radius: 3px; }
  .paging .searcher input[type="text"] {
    width: 300px;
    text-align: left; }

/*# sourceMappingURL=../maps/admin/admin_styles.css.map */
