

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    /*-webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);*/
    -webkit-transform: translate3d(0, -50px, 0);
    transform: translate3d(0, -50px, 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);*/
    -webkit-transform: translate3d(0, -50px, 0);
    transform: translate3d(0, -50px, 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);*/
    -webkit-transform: translate3d(-50px, 0, 0);
    transform: translate3d(-50px, 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);*/
    -webkit-transform: translate3d(-50px, 0, 0);
    transform: translate3d(-50px, 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);*/
    -webkit-transform: translate3d(50px, 0, 0);
    transform: translate3d(50px, 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);*/
    -webkit-transform: translate3d(50px, 0, 0);
    transform: translate3d(50px, 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);*/
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 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);*/
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

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

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

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes rollOut {
  from {
    opacity: 1;
  }

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

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

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

  50% {
    opacity: 1;
  }
}

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

  50% {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
@charset "UTF-8";
/*!
 * Bootstrap v3.3.5 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/* line 8, app/assets/stylesheets/bootstrap.scss */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/* line 14, app/assets/stylesheets/bootstrap.scss */
body {
  margin: 0;
}

/* line 18, app/assets/stylesheets/bootstrap.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/* line 34, app/assets/stylesheets/bootstrap.scss */
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

/* line 42, app/assets/stylesheets/bootstrap.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* line 47, app/assets/stylesheets/bootstrap.scss */
[hidden],
template {
  display: none;
}

/* line 52, app/assets/stylesheets/bootstrap.scss */
a {
  background-color: transparent;
}

/* line 56, app/assets/stylesheets/bootstrap.scss */
a:active,
a:hover {
  outline: 0;
}

/* line 61, app/assets/stylesheets/bootstrap.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/* line 65, app/assets/stylesheets/bootstrap.scss */
b,
strong {
  font-weight: bold;
}

/* line 70, app/assets/stylesheets/bootstrap.scss */
dfn {
  font-style: italic;
}

/* line 74, app/assets/stylesheets/bootstrap.scss */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* line 79, app/assets/stylesheets/bootstrap.scss */
mark {
  background: #ff0;
  color: #000;
}

/* line 84, app/assets/stylesheets/bootstrap.scss */
small {
  font-size: 80%;
}

/* line 88, app/assets/stylesheets/bootstrap.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 96, app/assets/stylesheets/bootstrap.scss */
sup {
  top: -0.5em;
}

/* line 100, app/assets/stylesheets/bootstrap.scss */
sub {
  bottom: -0.25em;
}

/* line 104, app/assets/stylesheets/bootstrap.scss */
img {
  border: 0;
}

/* line 108, app/assets/stylesheets/bootstrap.scss */
svg:not(:root) {
  overflow: hidden;
}

/* line 112, app/assets/stylesheets/bootstrap.scss */
figure {
  margin: 1em 40px;
}

/* line 116, app/assets/stylesheets/bootstrap.scss */
hr {
  box-sizing: content-box;
  height: 0;
}

/* line 121, app/assets/stylesheets/bootstrap.scss */
pre {
  overflow: auto;
}

/* line 125, app/assets/stylesheets/bootstrap.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* line 133, app/assets/stylesheets/bootstrap.scss */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

/* line 143, app/assets/stylesheets/bootstrap.scss */
button {
  overflow: visible;
}

/* line 147, app/assets/stylesheets/bootstrap.scss */
button,
select {
  text-transform: none;
}

/* line 152, app/assets/stylesheets/bootstrap.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

/* line 160, app/assets/stylesheets/bootstrap.scss */
button[disabled],
html input[disabled] {
  cursor: default;
}

/* line 165, app/assets/stylesheets/bootstrap.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* line 171, app/assets/stylesheets/bootstrap.scss */
input {
  line-height: normal;
}

/* line 175, app/assets/stylesheets/bootstrap.scss */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

/* line 181, app/assets/stylesheets/bootstrap.scss */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/* line 186, app/assets/stylesheets/bootstrap.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

/* line 191, app/assets/stylesheets/bootstrap.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* line 196, app/assets/stylesheets/bootstrap.scss */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/* line 202, app/assets/stylesheets/bootstrap.scss */
legend {
  border: 0;
  padding: 0;
}

/* line 207, app/assets/stylesheets/bootstrap.scss */
textarea {
  overflow: auto;
}

/* line 211, app/assets/stylesheets/bootstrap.scss */
optgroup {
  font-weight: bold;
}

/* line 215, app/assets/stylesheets/bootstrap.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 220, app/assets/stylesheets/bootstrap.scss */
td,
th {
  padding: 0;
}

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  /* line 227, app/assets/stylesheets/bootstrap.scss */
  *,
*:before,
*:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  /* line 236, app/assets/stylesheets/bootstrap.scss */
  a,
a:visited {
    text-decoration: underline;
  }
  /* line 241, app/assets/stylesheets/bootstrap.scss */
  a[href]:after {
    content: " (" attr(href) ")";
  }
  /* line 245, app/assets/stylesheets/bootstrap.scss */
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /* line 249, app/assets/stylesheets/bootstrap.scss */
  a[href^="#"]:after,
a[href^="javascript:"]:after {
    content: "";
  }
  /* line 254, app/assets/stylesheets/bootstrap.scss */
  pre,
blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /* line 260, app/assets/stylesheets/bootstrap.scss */
  thead {
    display: table-header-group;
  }
  /* line 264, app/assets/stylesheets/bootstrap.scss */
  tr,
img {
    page-break-inside: avoid;
  }
  /* line 269, app/assets/stylesheets/bootstrap.scss */
  img {
    max-width: 100% !important;
  }
  /* line 273, app/assets/stylesheets/bootstrap.scss */
  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }
  /* line 280, app/assets/stylesheets/bootstrap.scss */
  h2,
h3 {
    page-break-after: avoid;
  }
  /* line 285, app/assets/stylesheets/bootstrap.scss */
  .navbar {
    display: none;
  }
  /* line 289, app/assets/stylesheets/bootstrap.scss */
  .btn > .caret,
.dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  /* line 294, app/assets/stylesheets/bootstrap.scss */
  .label {
    border: 1px solid #000;
  }
  /* line 298, app/assets/stylesheets/bootstrap.scss */
  .table {
    border-collapse: collapse !important;
  }
  /* line 301, app/assets/stylesheets/bootstrap.scss */
  .table td,
.table th {
    background-color: #fff !important;
  }
  /* line 306, app/assets/stylesheets/bootstrap.scss */
  .table-bordered th,
.table-bordered td {
    border: 1px solid #ddd !important;
  }
}

@font-face {
  font-family: 'Glyphicons Halflings';
  src: url(/assets/glyphicons-halflings-regular-0805fb1fe24235f70a639f67514990e4bfb6d2cfb00ca563ad4b553c240ddc33.eot);
  src: url(/assets/glyphicons-halflings-regular-0805fb1fe24235f70a639f67514990e4bfb6d2cfb00ca563ad4b553c240ddc33.eot?#iefix) format("embedded-opentype"), url(/assets/glyphicons-halflings-regular-403acfcf0cbaebd1c28b404eec442cea53642644b3a73f91c5a4ab46859af772.woff2) format("woff2"), url(/assets/glyphicons-halflings-regular-0703369a358a012c0011843ae337a8a20270c336948a8668df5cb89a8827299b.woff) format("woff"), url(/assets/glyphicons-halflings-regular-7c9caa5f4e16169b0129fdf93c84e85ad14d6c107eb1b0ad60b542daf01ee1f0.ttf) format("truetype"), url(/assets/glyphicons-halflings-regular-22d0c88a49d7d0ebe45627143a601061a32a46a9b9afd2dc7f457436f5f15f6e.svg#glyphicons_halflingsregular) format("svg");
}

/* line 320, app/assets/stylesheets/bootstrap.scss */
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 332, app/assets/stylesheets/bootstrap.scss */
.glyphicon-asterisk:before {
  content: "\2a";
}

/* line 336, app/assets/stylesheets/bootstrap.scss */
.glyphicon-plus:before {
  content: "\2b";
}

/* line 340, app/assets/stylesheets/bootstrap.scss */
.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20ac";
}

/* line 345, app/assets/stylesheets/bootstrap.scss */
.glyphicon-minus:before {
  content: "\2212";
}

/* line 349, app/assets/stylesheets/bootstrap.scss */
.glyphicon-cloud:before {
  content: "\2601";
}

/* line 353, app/assets/stylesheets/bootstrap.scss */
.glyphicon-envelope:before {
  content: "\2709";
}

/* line 357, app/assets/stylesheets/bootstrap.scss */
.glyphicon-pencil:before {
  content: "\270f";
}

/* line 361, app/assets/stylesheets/bootstrap.scss */
.glyphicon-glass:before {
  content: "\e001";
}

/* line 365, app/assets/stylesheets/bootstrap.scss */
.glyphicon-music:before {
  content: "\e002";
}

/* line 369, app/assets/stylesheets/bootstrap.scss */
.glyphicon-search:before {
  content: "\e003";
}

/* line 373, app/assets/stylesheets/bootstrap.scss */
.glyphicon-heart:before {
  content: "\e005";
}

/* line 377, app/assets/stylesheets/bootstrap.scss */
.glyphicon-star:before {
  content: "\e006";
}

/* line 381, app/assets/stylesheets/bootstrap.scss */
.glyphicon-star-empty:before {
  content: "\e007";
}

/* line 385, app/assets/stylesheets/bootstrap.scss */
.glyphicon-user:before {
  content: "\e008";
}

/* line 389, app/assets/stylesheets/bootstrap.scss */
.glyphicon-film:before {
  content: "\e009";
}

/* line 393, app/assets/stylesheets/bootstrap.scss */
.glyphicon-th-large:before {
  content: "\e010";
}

/* line 397, app/assets/stylesheets/bootstrap.scss */
.glyphicon-th:before {
  content: "\e011";
}

/* line 401, app/assets/stylesheets/bootstrap.scss */
.glyphicon-th-list:before {
  content: "\e012";
}

/* line 405, app/assets/stylesheets/bootstrap.scss */
.glyphicon-ok:before {
  content: "\e013";
}

/* line 409, app/assets/stylesheets/bootstrap.scss */
.glyphicon-remove:before {
  content: "\e014";
}

/* line 413, app/assets/stylesheets/bootstrap.scss */
.glyphicon-zoom-in:before {
  content: "\e015";
}

/* line 417, app/assets/stylesheets/bootstrap.scss */
.glyphicon-zoom-out:before {
  content: "\e016";
}

/* line 421, app/assets/stylesheets/bootstrap.scss */
.glyphicon-off:before {
  content: "\e017";
}

/* line 425, app/assets/stylesheets/bootstrap.scss */
.glyphicon-signal:before {
  content: "\e018";
}

/* line 429, app/assets/stylesheets/bootstrap.scss */
.glyphicon-cog:before {
  content: "\e019";
}

/* line 433, app/assets/stylesheets/bootstrap.scss */
.glyphicon-trash:before {
  content: "\e020";
}

/* line 437, app/assets/stylesheets/bootstrap.scss */
.glyphicon-home:before {
  content: "\e021";
}

/* line 441, app/assets/stylesheets/bootstrap.scss */
.glyphicon-file:before {
  content: "\e022";
}

/* line 445, app/assets/stylesheets/bootstrap.scss */
.glyphicon-time:before {
  content: "\e023";
}

/* line 449, app/assets/stylesheets/bootstrap.scss */
.glyphicon-road:before {
  content: "\e024";
}

/* line 453, app/assets/stylesheets/bootstrap.scss */
.glyphicon-download-alt:before {
  content: "\e025";
}

/* line 457, app/assets/stylesheets/bootstrap.scss */
.glyphicon-download:before {
  content: "\e026";
}

/* line 461, app/assets/stylesheets/bootstrap.scss */
.glyphicon-upload:before {
  content: "\e027";
}

/* line 465, app/assets/stylesheets/bootstrap.scss */
.glyphicon-inbox:before {
  content: "\e028";
}

/* line 469, app/assets/stylesheets/bootstrap.scss */
.glyphicon-play-circle:before {
  content: "\e029";
}

/* line 473, app/assets/stylesheets/bootstrap.scss */
.glyphicon-repeat:before {
  content: "\e030";
}

/* line 477, app/assets/stylesheets/bootstrap.scss */
.glyphicon-refresh:before {
  content: "\e031";
}

/* line 481, app/assets/stylesheets/bootstrap.scss */
.glyphicon-list-alt:before {
  content: "\e032";
}

/* line 485, app/assets/stylesheets/bootstrap.scss */
.glyphicon-lock:before {
  content: "\e033";
}

/* line 489, app/assets/stylesheets/bootstrap.scss */
.glyphicon-flag:before {
  content: "\e034";
}

/* line 493, app/assets/stylesheets/bootstrap.scss */
.glyphicon-headphones:before {
  content: "\e035";
}

/* line 497, app/assets/stylesheets/bootstrap.scss */
.glyphicon-volume-off:before {
  content: "\e036";
}

/* line 501, app/assets/stylesheets/bootstrap.scss */
.glyphicon-volume-down:before {
  content: "\e037";
}

/* line 505, app/assets/stylesheets/bootstrap.scss */
.glyphicon-volume-up:before {
  content: "\e038";
}

/* line 509, app/assets/stylesheets/bootstrap.scss */
.glyphicon-qrcode:before {
  content: "\e039";
}

/* line 513, app/assets/stylesheets/bootstrap.scss */
.glyphicon-barcode:before {
  content: "\e040";
}

/* line 517, app/assets/stylesheets/bootstrap.scss */
.glyphicon-tag:before {
  content: "\e041";
}

/* line 521, app/assets/stylesheets/bootstrap.scss */
.glyphicon-tags:before {
  content: "\e042";
}

/* line 525, app/assets/stylesheets/bootstrap.scss */
.glyphicon-book:before {
  content: "\e043";
}

/* line 529, app/assets/stylesheets/bootstrap.scss */
.glyphicon-bookmark:before {
  content: "\e044";
}

/* line 533, app/assets/stylesheets/bootstrap.scss */
.glyphicon-print:before {
  content: "\e045";
}

/* line 537, app/assets/stylesheets/bootstrap.scss */
.glyphicon-camera:before {
  content: "\e046";
}

/* line 541, app/assets/stylesheets/bootstrap.scss */
.glyphicon-font:before {
  content: "\e047";
}

/* line 545, app/assets/stylesheets/bootstrap.scss */
.glyphicon-bold:before {
  content: "\e048";
}

/* line 549, app/assets/stylesheets/bootstrap.scss */
.glyphicon-italic:before {
  content: "\e049";
}

/* line 553, app/assets/stylesheets/bootstrap.scss */
.glyphicon-text-height:before {
  content: "\e050";
}

/* line 557, app/assets/stylesheets/bootstrap.scss */
.glyphicon-text-width:before {
  content: "\e051";
}

/* line 561, app/assets/stylesheets/bootstrap.scss */
.glyphicon-align-left:before {
  content: "\e052";
}

/* line 565, app/assets/stylesheets/bootstrap.scss */
.glyphicon-align-center:before {
  content: "\e053";
}

/* line 569, app/assets/stylesheets/bootstrap.scss */
.glyphicon-align-right:before {
  content: "\e054";
}

/* line 573, app/assets/stylesheets/bootstrap.scss */
.glyphicon-align-justify:before {
  content: "\e055";
}

/* line 577, app/assets/stylesheets/bootstrap.scss */
.glyphicon-list:before {
  content: "\e056";
}

/* line 581, app/assets/stylesheets/bootstrap.scss */
.glyphicon-indent-left:before {
  content: "\e057";
}

/* line 585, app/assets/stylesheets/bootstrap.scss */
.glyphicon-indent-right:before {
  content: "\e058";
}

/* line 589, app/assets/stylesheets/bootstrap.scss */
.glyphicon-facetime-video:before {
  content: "\e059";
}

/* line 593, app/assets/stylesheets/bootstrap.scss */
.glyphicon-picture:before {
  content: "\e060";
}

/* line 597, app/assets/stylesheets/bootstrap.scss */
.glyphicon-map-marker:before {
  content: "\e062";
}

/* line 601, app/assets/stylesheets/bootstrap.scss */
.glyphicon-adjust:before {
  content: "\e063";
}

/* line 605, app/assets/stylesheets/bootstrap.scss */
.glyphicon-tint:before {
  content: "\e064";
}

/* line 609, app/assets/stylesheets/bootstrap.scss */
.glyphicon-edit:before {
  content: "\e065";
}

/* line 613, app/assets/stylesheets/bootstrap.scss */
.glyphicon-share:before {
  content: "\e066";
}

/* line 617, app/assets/stylesheets/bootstrap.scss */
.glyphicon-check:before {
  content: "\e067";
}

/* line 621, app/assets/stylesheets/bootstrap.scss */
.glyphicon-move:before {
  content: "\e068";
}

/* line 625, app/assets/stylesheets/bootstrap.scss */
.glyphicon-step-backward:before {
  content: "\e069";
}

/* line 629, app/assets/stylesheets/bootstrap.scss */
.glyphicon-fast-backward:before {
  content: "\e070";
}

/* line 633, app/assets/stylesheets/bootstrap.scss */
.glyphicon-backward:before {
  content: "\e071";
}

/* line 637, app/assets/stylesheets/bootstrap.scss */
.glyphicon-play:before {
  content: "\e072";
}

/* line 641, app/assets/stylesheets/bootstrap.scss */
.glyphicon-pause:before {
  content: "\e073";
}

/* line 645, app/assets/stylesheets/bootstrap.scss */
.glyphicon-stop:before {
  content: "\e074";
}

/* line 649, app/assets/stylesheets/bootstrap.scss */
.glyphicon-forward:before {
  content: "\e075";
}

/* line 653, app/assets/stylesheets/bootstrap.scss */
.glyphicon-fast-forward:before {
  content: "\e076";
}

/* line 657, app/assets/stylesheets/bootstrap.scss */
.glyphicon-step-forward:before {
  content: "\e077";
}

/* line 661, app/assets/stylesheets/bootstrap.scss */
.glyphicon-eject:before {
  content: "\e078";
}

/* line 665, app/assets/stylesheets/bootstrap.scss */
.glyphicon-chevron-left:before {
  content: "\e079";
}

/* line 669, app/assets/stylesheets/bootstrap.scss */
.glyphicon-chevron-right:before {
  content: "\e080";
}

/* line 673, app/assets/stylesheets/bootstrap.scss */
.glyphicon-plus-sign:before {
  content: "\e081";
}

/* line 677, app/assets/stylesheets/bootstrap.scss */
.glyphicon-minus-sign:before {
  content: "\e082";
}

/* line 681, app/assets/stylesheets/bootstrap.scss */
.glyphicon-remove-sign:before {
  content: "\e083";
}

/* line 685, app/assets/stylesheets/bootstrap.scss */
.glyphicon-ok-sign:before {
  content: "\e084";
}

/* line 689, app/assets/stylesheets/bootstrap.scss */
.glyphicon-question-sign:before {
  content: "\e085";
}

/* line 693, app/assets/stylesheets/bootstrap.scss */
.glyphicon-info-sign:before {
  content: "\e086";
}

/* line 697, app/assets/stylesheets/bootstrap.scss */
.glyphicon-screenshot:before {
  content: "\e087";
}

/* line 701, app/assets/stylesheets/bootstrap.scss */
.glyphicon-remove-circle:before {
  content: "\e088";
}

/* line 705, app/assets/stylesheets/bootstrap.scss */
.glyphicon-ok-circle:before {
  content: "\e089";
}

/* line 709, app/assets/stylesheets/bootstrap.scss */
.glyphicon-ban-circle:before {
  content: "\e090";
}

/* line 713, app/assets/stylesheets/bootstrap.scss */
.glyphicon-arrow-left:before {
  content: "\e091";
}

/* line 717, app/assets/stylesheets/bootstrap.scss */
.glyphicon-arrow-right:before {
  content: "\e092";
}

/* line 721, app/assets/stylesheets/bootstrap.scss */
.glyphicon-arrow-up:before {
  content: "\e093";
}

/* line 725, app/assets/stylesheets/bootstrap.scss */
.glyphicon-arrow-down:before {
  content: "\e094";
}

/* line 729, app/assets/stylesheets/bootstrap.scss */
.glyphicon-share-alt:before {
  content: "\e095";
}

/* line 733, app/assets/stylesheets/bootstrap.scss */
.glyphicon-resize-full:before {
  content: "\e096";
}

/* line 737, app/assets/stylesheets/bootstrap.scss */
.glyphicon-resize-small:before {
  content: "\e097";
}

/* line 741, app/assets/stylesheets/bootstrap.scss */
.glyphicon-exclamation-sign:before {
  content: "\e101";
}

/* line 745, app/assets/stylesheets/bootstrap.scss */
.glyphicon-gift:before {
  content: "\e102";
}

/* line 749, app/assets/stylesheets/bootstrap.scss */
.glyphicon-leaf:before {
  content: "\e103";
}

/* line 753, app/assets/stylesheets/bootstrap.scss */
.glyphicon-fire:before {
  content: "\e104";
}

/* line 757, app/assets/stylesheets/bootstrap.scss */
.glyphicon-eye-open:before {
  content: "\e105";
}

/* line 761, app/assets/stylesheets/bootstrap.scss */
.glyphicon-eye-close:before {
  content: "\e106";
}

/* line 765, app/assets/stylesheets/bootstrap.scss */
.glyphicon-warning-sign:before {
  content: "\e107";
}

/* line 769, app/assets/stylesheets/bootstrap.scss */
.glyphicon-plane:before {
  content: "\e108";
}

/* line 773, app/assets/stylesheets/bootstrap.scss */
.glyphicon-calendar:before {
  content: "\e109";
}

/* line 777, app/assets/stylesheets/bootstrap.scss */
.glyphicon-random:before {
  content: "\e110";
}

/* line 781, app/assets/stylesheets/bootstrap.scss */
.glyphicon-comment:before {
  content: "\e111";
}

/* line 785, app/assets/stylesheets/bootstrap.scss */
.glyphicon-magnet:before {
  content: "\e112";
}

/* line 789, app/assets/stylesheets/bootstrap.scss */
.glyphicon-chevron-up:before {
  content: "\e113";
}

/* line 793, app/assets/stylesheets/bootstrap.scss */
.glyphicon-chevron-down:before {
  content: "\e114";
}

/* line 797, app/assets/stylesheets/bootstrap.scss */
.glyphicon-retweet:before {
  content: "\e115";
}

/* line 801, app/assets/stylesheets/bootstrap.scss */
.glyphicon-shopping-cart:before {
  content: "\e116";
}

/* line 805, app/assets/stylesheets/bootstrap.scss */
.glyphicon-folder-close:before {
  content: "\e117";
}

/* line 809, app/assets/stylesheets/bootstrap.scss */
.glyphicon-folder-open:before {
  content: "\e118";
}

/* line 813, app/assets/stylesheets/bootstrap.scss */
.glyphicon-resize-vertical:before {
  content: "\e119";
}

/* line 817, app/assets/stylesheets/bootstrap.scss */
.glyphicon-resize-horizontal:before {
  content: "\e120";
}

/* line 821, app/assets/stylesheets/bootstrap.scss */
.glyphicon-hdd:before {
  content: "\e121";
}

/* line 825, app/assets/stylesheets/bootstrap.scss */
.glyphicon-bullhorn:before {
  content: "\e122";
}

/* line 829, app/assets/stylesheets/bootstrap.scss */
.glyphicon-bell:before {
  content: "\e123";
}

/* line 833, app/assets/stylesheets/bootstrap.scss */
.glyphicon-certificate:before {
  content: "\e124";
}

/* line 837, app/assets/stylesheets/bootstrap.scss */
.glyphicon-thumbs-up:before {
  content: "\e125";
}

/* line 841, app/assets/stylesheets/bootstrap.scss */
.glyphicon-thumbs-down:before {
  content: "\e126";
}

/* line 845, app/assets/stylesheets/bootstrap.scss */
.glyphicon-hand-right:before {
  content: "\e127";
}

/* line 849, app/assets/stylesheets/bootstrap.scss */
.glyphicon-hand-left:before {
  content: "\e128";
}

/* line 853, app/assets/stylesheets/bootstrap.scss */
.glyphicon-hand-up:before {
  content: "\e129";
}

/* line 857, app/assets/stylesheets/bootstrap.scss */
.glyphicon-hand-down:before {
  content: "\e130";
}

/* line 861, app/assets/stylesheets/bootstrap.scss */
.glyphicon-circle-arrow-right:before {
  content: "\e131";
}

/* line 865, app/assets/stylesheets/bootstrap.scss */
.glyphicon-circle-arrow-left:before {
  content: "\e132";
}

/* line 869, app/assets/stylesheets/bootstrap.scss */
.glyphicon-circle-arrow-up:before {
  content: "\e133";
}

/* line 873, app/assets/stylesheets/bootstrap.scss */
.glyphicon-circle-arrow-down:before {
  content: "\e134";
}

/* line 877, app/assets/stylesheets/bootstrap.scss */
.glyphicon-globe:before {
  content: "\e135";
}

/* line 881, app/assets/stylesheets/bootstrap.scss */
.glyphicon-wrench:before {
  content: "\e136";
}

/* line 885, app/assets/stylesheets/bootstrap.scss */
.glyphicon-tasks:before {
  content: "\e137";
}

/* line 889, app/assets/stylesheets/bootstrap.scss */
.glyphicon-filter:before {
  content: "\e138";
}

/* line 893, app/assets/stylesheets/bootstrap.scss */
.glyphicon-briefcase:before {
  content: "\e139";
}

/* line 897, app/assets/stylesheets/bootstrap.scss */
.glyphicon-fullscreen:before {
  content: "\e140";
}

/* line 901, app/assets/stylesheets/bootstrap.scss */
.glyphicon-dashboard:before {
  content: "\e141";
}

/* line 905, app/assets/stylesheets/bootstrap.scss */
.glyphicon-paperclip:before {
  content: "\e142";
}

/* line 909, app/assets/stylesheets/bootstrap.scss */
.glyphicon-heart-empty:before {
  content: "\e143";
}

/* line 913, app/assets/stylesheets/bootstrap.scss */
.glyphicon-link:before {
  content: "\e144";
}

/* line 917, app/assets/stylesheets/bootstrap.scss */
.glyphicon-phone:before {
  content: "\e145";
}

/* line 921, app/assets/stylesheets/bootstrap.scss */
.glyphicon-pushpin:before {
  content: "\e146";
}

/* line 925, app/assets/stylesheets/bootstrap.scss */
.glyphicon-usd:before {
  content: "\e148";
}

/* line 929, app/assets/stylesheets/bootstrap.scss */
.glyphicon-gbp:before {
  content: "\e149";
}

/* line 933, app/assets/stylesheets/bootstrap.scss */
.glyphicon-sort:before {
  content: "\e150";
}

/* line 937, app/assets/stylesheets/bootstrap.scss */
.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}

/* line 941, app/assets/stylesheets/bootstrap.scss */
.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}

/* line 945, app/assets/stylesheets/bootstrap.scss */
.glyphicon-sort-by-order:before {
  content: "\e153";
}

/* line 949, app/assets/stylesheets/bootstrap.scss */
.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}

/* line 953, app/assets/stylesheets/bootstrap.scss */
.glyphicon-sort-by-attributes:before {
  content: "\e155";
}

/* line 957, app/assets/stylesheets/bootstrap.scss */
.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}

/* line 961, app/assets/stylesheets/bootstrap.scss */
.glyphicon-unchecked:before {
  content: "\e157";
}

/* line 965, app/assets/stylesheets/bootstrap.scss */
.glyphicon-expand:before {
  content: "\e158";
}

/* line 969, app/assets/stylesheets/bootstrap.scss */
.glyphicon-collapse-down:before {
  content: "\e159";
}

/* line 973, app/assets/stylesheets/bootstrap.scss */
.glyphicon-collapse-up:before {
  content: "\e160";
}

/* line 977, app/assets/stylesheets/bootstrap.scss */
.glyphicon-log-in:before {
  content: "\e161";
}

/* line 981, app/assets/stylesheets/bootstrap.scss */
.glyphicon-flash:before {
  content: "\e162";
}

/* line 985, app/assets/stylesheets/bootstrap.scss */
.glyphicon-log-out:before {
  content: "\e163";
}

/* line 989, app/assets/stylesheets/bootstrap.scss */
.glyphicon-new-window:before {
  content: "\e164";
}

/* line 993, app/assets/stylesheets/bootstrap.scss */
.glyphicon-record:before {
  content: "\e165";
}

/* line 997, app/assets/stylesheets/bootstrap.scss */
.glyphicon-save:before {
  content: "\e166";
}

/* line 1001, app/assets/stylesheets/bootstrap.scss */
.glyphicon-open:before {
  content: "\e167";
}

/* line 1005, app/assets/stylesheets/bootstrap.scss */
.glyphicon-saved:before {
  content: "\e168";
}

/* line 1009, app/assets/stylesheets/bootstrap.scss */
.glyphicon-import:before {
  content: "\e169";
}

/* line 1013, app/assets/stylesheets/bootstrap.scss */
.glyphicon-export:before {
  content: "\e170";
}

/* line 1017, app/assets/stylesheets/bootstrap.scss */
.glyphicon-send:before {
  content: "\e171";
}

/* line 1021, app/assets/stylesheets/bootstrap.scss */
.glyphicon-floppy-disk:before {
  content: "\e172";
}

/* line 1025, app/assets/stylesheets/bootstrap.scss */
.glyphicon-floppy-saved:before {
  content: "\e173";
}

/* line 1029, app/assets/stylesheets/bootstrap.scss */
.glyphicon-floppy-remove:before {
  content: "\e174";
}

/* line 1033, app/assets/stylesheets/bootstrap.scss */
.glyphicon-floppy-save:before {
  content: "\e175";
}

/* line 1037, app/assets/stylesheets/bootstrap.scss */
.glyphicon-floppy-open:before {
  content: "\e176";
}

/* line 1041, app/assets/stylesheets/bootstrap.scss */
.glyphicon-credit-card:before {
  content: "\e177";
}

/* line 1045, app/assets/stylesheets/bootstrap.scss */
.glyphicon-transfer:before {
  content: "\e178";
}

/* line 1049, app/assets/stylesheets/bootstrap.scss */
.glyphicon-cutlery:before {
  content: "\e179";
}

/* line 1053, app/assets/stylesheets/bootstrap.scss */
.glyphicon-header:before {
  content: "\e180";
}

/* line 1057, app/assets/stylesheets/bootstrap.scss */
.glyphicon-compressed:before {
  content: "\e181";
}

/* line 1061, app/assets/stylesheets/bootstrap.scss */
.glyphicon-earphone:before {
  content: "\e182";
}

/* line 1065, app/assets/stylesheets/bootstrap.scss */
.glyphicon-phone-alt:before {
  content: "\e183";
}

/* line 1069, app/assets/stylesheets/bootstrap.scss */
.glyphicon-tower:before {
  content: "\e184";
}

/* line 1073, app/assets/stylesheets/bootstrap.scss */
.glyphicon-stats:before {
  content: "\e185";
}

/* line 1077, app/assets/stylesheets/bootstrap.scss */
.glyphicon-sd-video:before {
  content: "\e186";
}

/* line 1081, app/assets/stylesheets/bootstrap.scss */
.glyphicon-hd-video:before {
  content: "\e187";
}

/* line 1085, app/assets/stylesheets/bootstrap.scss */
.glyphicon-subtitles:before {
  content: "\e188";
}

/* line 1089, app/assets/stylesheets/bootstrap.scss */
.glyphicon-sound-stereo:before {
  content: "\e189";
}

/* line 1093, app/assets/stylesheets/bootstrap.scss */
.glyphicon-sound-dolby:before {
  content: "\e190";
}

/* line 1097, app/assets/stylesheets/bootstrap.scss */
.glyphicon-sound-5-1:before {
  content: "\e191";
}

/* line 1101, app/assets/stylesheets/bootstrap.scss */
.glyphicon-sound-6-1:before {
  content: "\e192";
}

/* line 1105, app/assets/stylesheets/bootstrap.scss */
.glyphicon-sound-7-1:before {
  content: "\e193";
}

/* line 1109, app/assets/stylesheets/bootstrap.scss */
.glyphicon-copyright-mark:before {
  content: "\e194";
}

/* line 1113, app/assets/stylesheets/bootstrap.scss */
.glyphicon-registration-mark:before {
  content: "\e195";
}

/* line 1117, app/assets/stylesheets/bootstrap.scss */
.glyphicon-cloud-download:before {
  content: "\e197";
}

/* line 1121, app/assets/stylesheets/bootstrap.scss */
.glyphicon-cloud-upload:before {
  content: "\e198";
}

/* line 1125, app/assets/stylesheets/bootstrap.scss */
.glyphicon-tree-conifer:before {
  content: "\e199";
}

/* line 1129, app/assets/stylesheets/bootstrap.scss */
.glyphicon-tree-deciduous:before {
  content: "\e200";
}

/* line 1133, app/assets/stylesheets/bootstrap.scss */
.glyphicon-cd:before {
  content: "\e201";
}

/* line 1137, app/assets/stylesheets/bootstrap.scss */
.glyphicon-save-file:before {
  content: "\e202";
}

/* line 1141, app/assets/stylesheets/bootstrap.scss */
.glyphicon-open-file:before {
  content: "\e203";
}

/* line 1145, app/assets/stylesheets/bootstrap.scss */
.glyphicon-level-up:before {
  content: "\e204";
}

/* line 1149, app/assets/stylesheets/bootstrap.scss */
.glyphicon-copy:before {
  content: "\e205";
}

/* line 1153, app/assets/stylesheets/bootstrap.scss */
.glyphicon-paste:before {
  content: "\e206";
}

/* line 1157, app/assets/stylesheets/bootstrap.scss */
.glyphicon-alert:before {
  content: "\e209";
}

/* line 1161, app/assets/stylesheets/bootstrap.scss */
.glyphicon-equalizer:before {
  content: "\e210";
}

/* line 1165, app/assets/stylesheets/bootstrap.scss */
.glyphicon-king:before {
  content: "\e211";
}

/* line 1169, app/assets/stylesheets/bootstrap.scss */
.glyphicon-queen:before {
  content: "\e212";
}

/* line 1173, app/assets/stylesheets/bootstrap.scss */
.glyphicon-pawn:before {
  content: "\e213";
}

/* line 1177, app/assets/stylesheets/bootstrap.scss */
.glyphicon-bishop:before {
  content: "\e214";
}

/* line 1181, app/assets/stylesheets/bootstrap.scss */
.glyphicon-knight:before {
  content: "\e215";
}

/* line 1185, app/assets/stylesheets/bootstrap.scss */
.glyphicon-baby-formula:before {
  content: "\e216";
}

/* line 1189, app/assets/stylesheets/bootstrap.scss */
.glyphicon-tent:before {
  content: "\26fa";
}

/* line 1193, app/assets/stylesheets/bootstrap.scss */
.glyphicon-blackboard:before {
  content: "\e218";
}

/* line 1197, app/assets/stylesheets/bootstrap.scss */
.glyphicon-bed:before {
  content: "\e219";
}

/* line 1201, app/assets/stylesheets/bootstrap.scss */
.glyphicon-apple:before {
  content: "\f8ff";
}

/* line 1205, app/assets/stylesheets/bootstrap.scss */
.glyphicon-erase:before {
  content: "\e221";
}

/* line 1209, app/assets/stylesheets/bootstrap.scss */
.glyphicon-hourglass:before {
  content: "\231b";
}

/* line 1213, app/assets/stylesheets/bootstrap.scss */
.glyphicon-lamp:before {
  content: "\e223";
}

/* line 1217, app/assets/stylesheets/bootstrap.scss */
.glyphicon-duplicate:before {
  content: "\e224";
}

/* line 1221, app/assets/stylesheets/bootstrap.scss */
.glyphicon-piggy-bank:before {
  content: "\e225";
}

/* line 1225, app/assets/stylesheets/bootstrap.scss */
.glyphicon-scissors:before {
  content: "\e226";
}

/* line 1229, app/assets/stylesheets/bootstrap.scss */
.glyphicon-bitcoin:before {
  content: "\e227";
}

/* line 1233, app/assets/stylesheets/bootstrap.scss */
.glyphicon-btc:before {
  content: "\e227";
}

/* line 1237, app/assets/stylesheets/bootstrap.scss */
.glyphicon-xbt:before {
  content: "\e227";
}

/* line 1241, app/assets/stylesheets/bootstrap.scss */
.glyphicon-yen:before {
  content: "\00a5";
}

/* line 1245, app/assets/stylesheets/bootstrap.scss */
.glyphicon-jpy:before {
  content: "\00a5";
}

/* line 1249, app/assets/stylesheets/bootstrap.scss */
.glyphicon-ruble:before {
  content: "\20bd";
}

/* line 1253, app/assets/stylesheets/bootstrap.scss */
.glyphicon-rub:before {
  content: "\20bd";
}

/* line 1257, app/assets/stylesheets/bootstrap.scss */
.glyphicon-scale:before {
  content: "\e230";
}

/* line 1261, app/assets/stylesheets/bootstrap.scss */
.glyphicon-ice-lolly:before {
  content: "\e231";
}

/* line 1265, app/assets/stylesheets/bootstrap.scss */
.glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}

/* line 1269, app/assets/stylesheets/bootstrap.scss */
.glyphicon-education:before {
  content: "\e233";
}

/* line 1273, app/assets/stylesheets/bootstrap.scss */
.glyphicon-option-horizontal:before {
  content: "\e234";
}

/* line 1277, app/assets/stylesheets/bootstrap.scss */
.glyphicon-option-vertical:before {
  content: "\e235";
}

/* line 1281, app/assets/stylesheets/bootstrap.scss */
.glyphicon-menu-hamburger:before {
  content: "\e236";
}

/* line 1285, app/assets/stylesheets/bootstrap.scss */
.glyphicon-modal-window:before {
  content: "\e237";
}

/* line 1289, app/assets/stylesheets/bootstrap.scss */
.glyphicon-oil:before {
  content: "\e238";
}

/* line 1293, app/assets/stylesheets/bootstrap.scss */
.glyphicon-grain:before {
  content: "\e239";
}

/* line 1297, app/assets/stylesheets/bootstrap.scss */
.glyphicon-sunglasses:before {
  content: "\e240";
}

/* line 1301, app/assets/stylesheets/bootstrap.scss */
.glyphicon-text-size:before {
  content: "\e241";
}

/* line 1305, app/assets/stylesheets/bootstrap.scss */
.glyphicon-text-color:before {
  content: "\e242";
}

/* line 1309, app/assets/stylesheets/bootstrap.scss */
.glyphicon-text-background:before {
  content: "\e243";
}

/* line 1313, app/assets/stylesheets/bootstrap.scss */
.glyphicon-object-align-top:before {
  content: "\e244";
}

/* line 1317, app/assets/stylesheets/bootstrap.scss */
.glyphicon-object-align-bottom:before {
  content: "\e245";
}

/* line 1321, app/assets/stylesheets/bootstrap.scss */
.glyphicon-object-align-horizontal:before {
  content: "\e246";
}

/* line 1325, app/assets/stylesheets/bootstrap.scss */
.glyphicon-object-align-left:before {
  content: "\e247";
}

/* line 1329, app/assets/stylesheets/bootstrap.scss */
.glyphicon-object-align-vertical:before {
  content: "\e248";
}

/* line 1333, app/assets/stylesheets/bootstrap.scss */
.glyphicon-object-align-right:before {
  content: "\e249";
}

/* line 1337, app/assets/stylesheets/bootstrap.scss */
.glyphicon-triangle-right:before {
  content: "\e250";
}

/* line 1341, app/assets/stylesheets/bootstrap.scss */
.glyphicon-triangle-left:before {
  content: "\e251";
}

/* line 1345, app/assets/stylesheets/bootstrap.scss */
.glyphicon-triangle-bottom:before {
  content: "\e252";
}

/* line 1349, app/assets/stylesheets/bootstrap.scss */
.glyphicon-triangle-top:before {
  content: "\e253";
}

/* line 1353, app/assets/stylesheets/bootstrap.scss */
.glyphicon-console:before {
  content: "\e254";
}

/* line 1357, app/assets/stylesheets/bootstrap.scss */
.glyphicon-superscript:before {
  content: "\e255";
}

/* line 1361, app/assets/stylesheets/bootstrap.scss */
.glyphicon-subscript:before {
  content: "\e256";
}

/* line 1365, app/assets/stylesheets/bootstrap.scss */
.glyphicon-menu-left:before {
  content: "\e257";
}

/* line 1369, app/assets/stylesheets/bootstrap.scss */
.glyphicon-menu-right:before {
  content: "\e258";
}

/* line 1373, app/assets/stylesheets/bootstrap.scss */
.glyphicon-menu-down:before {
  content: "\e259";
}

/* line 1377, app/assets/stylesheets/bootstrap.scss */
.glyphicon-menu-up:before {
  content: "\e260";
}

/* line 1381, app/assets/stylesheets/bootstrap.scss */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 1387, app/assets/stylesheets/bootstrap.scss */
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 1394, app/assets/stylesheets/bootstrap.scss */
html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
}

/* line 1399, app/assets/stylesheets/bootstrap.scss */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857;
  color: #333333;
  background-color: #fff;
}

/* line 1407, app/assets/stylesheets/bootstrap.scss */
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* line 1416, app/assets/stylesheets/bootstrap.scss */
a {
  color: #337ab7;
  text-decoration: none;
}

/* line 1420, app/assets/stylesheets/bootstrap.scss */
a:hover, a:focus {
  color: #23527c;
  text-decoration: underline;
}

/* line 1424, app/assets/stylesheets/bootstrap.scss */
a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 1430, app/assets/stylesheets/bootstrap.scss */
figure {
  margin: 0;
}

/* line 1434, app/assets/stylesheets/bootstrap.scss */
img {
  vertical-align: middle;
}

/* line 1438, app/assets/stylesheets/bootstrap.scss */
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

/* line 1444, app/assets/stylesheets/bootstrap.scss */
.img-rounded {
  border-radius: 6px;
}

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

/* line 1462, app/assets/stylesheets/bootstrap.scss */
.img-circle {
  border-radius: 50%;
}

/* line 1466, app/assets/stylesheets/bootstrap.scss */
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}

/* line 1473, app/assets/stylesheets/bootstrap.scss */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 1484, app/assets/stylesheets/bootstrap.scss */
.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/* line 1493, app/assets/stylesheets/bootstrap.scss */
[role="button"] {
  cursor: pointer;
}

/* line 1497, app/assets/stylesheets/bootstrap.scss */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

/* line 1504, app/assets/stylesheets/bootstrap.scss */
h1 small,
h1 .small, h2 small,
h2 .small, h3 small,
h3 .small, h4 small,
h4 .small, h5 small,
h5 .small, h6 small,
h6 .small,
.h1 small,
.h1 .small, .h2 small,
.h2 .small, .h3 small,
.h3 .small, .h4 small,
.h4 .small, .h5 small,
.h5 .small, .h6 small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #777777;
}

/* line 1523, app/assets/stylesheets/bootstrap.scss */
h1, .h1,
h2, .h2,
h3, .h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

/* line 1529, app/assets/stylesheets/bootstrap.scss */
h1 small,
h1 .small, .h1 small,
.h1 .small,
h2 small,
h2 .small, .h2 small,
.h2 .small,
h3 small,
h3 .small, .h3 small,
.h3 .small {
  font-size: 65%;
}

/* line 1541, app/assets/stylesheets/bootstrap.scss */
h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 1547, app/assets/stylesheets/bootstrap.scss */
h4 small,
h4 .small, .h4 small,
.h4 .small,
h5 small,
h5 .small, .h5 small,
.h5 .small,
h6 small,
h6 .small, .h6 small,
.h6 .small {
  font-size: 75%;
}

/* line 1559, app/assets/stylesheets/bootstrap.scss */
h1, .h1 {
  font-size: 36px;
}

/* line 1563, app/assets/stylesheets/bootstrap.scss */
h2, .h2 {
  font-size: 30px;
}

/* line 1567, app/assets/stylesheets/bootstrap.scss */
h3, .h3 {
  font-size: 24px;
}

/* line 1571, app/assets/stylesheets/bootstrap.scss */
h4, .h4 {
  font-size: 18px;
}

/* line 1575, app/assets/stylesheets/bootstrap.scss */
h5, .h5 {
  font-size: 14px;
}

/* line 1579, app/assets/stylesheets/bootstrap.scss */
h6, .h6 {
  font-size: 12px;
}

/* line 1583, app/assets/stylesheets/bootstrap.scss */
p {
  margin: 0 0 10px;
}

/* line 1587, app/assets/stylesheets/bootstrap.scss */
.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}

@media (min-width: 768px) {
  /* line 1594, app/assets/stylesheets/bootstrap.scss */
  .lead {
    font-size: 21px;
  }
}

/* line 1599, app/assets/stylesheets/bootstrap.scss */
small,
.small {
  font-size: 85%;
}

/* line 1604, app/assets/stylesheets/bootstrap.scss */
mark,
.mark {
  background-color: #fcf8e3;
  padding: .2em;
}

/* line 1610, app/assets/stylesheets/bootstrap.scss */
.text-left {
  text-align: left;
}

/* line 1614, app/assets/stylesheets/bootstrap.scss */
.text-right {
  text-align: right;
}

/* line 1618, app/assets/stylesheets/bootstrap.scss */
.text-center {
  text-align: center;
}

/* line 1622, app/assets/stylesheets/bootstrap.scss */
.text-justify {
  text-align: justify;
}

/* line 1626, app/assets/stylesheets/bootstrap.scss */
.text-nowrap {
  white-space: nowrap;
}

/* line 1630, app/assets/stylesheets/bootstrap.scss */
.text-lowercase {
  text-transform: lowercase;
}

/* line 1634, app/assets/stylesheets/bootstrap.scss */
.text-uppercase, .initialism {
  text-transform: uppercase;
}

/* line 1638, app/assets/stylesheets/bootstrap.scss */
.text-capitalize {
  text-transform: capitalize;
}

/* line 1642, app/assets/stylesheets/bootstrap.scss */
.text-muted {
  color: #777777;
}

/* line 1646, app/assets/stylesheets/bootstrap.scss */
.text-primary {
  color: #337ab7;
}

/* line 1650, app/assets/stylesheets/bootstrap.scss */
a.text-primary:hover,
a.text-primary:focus {
  color: #286090;
}

/* line 1655, app/assets/stylesheets/bootstrap.scss */
.text-success {
  color: #3c763d;
}

/* line 1659, app/assets/stylesheets/bootstrap.scss */
a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}

/* line 1664, app/assets/stylesheets/bootstrap.scss */
.text-info {
  color: #31708f;
}

/* line 1668, app/assets/stylesheets/bootstrap.scss */
a.text-info:hover,
a.text-info:focus {
  color: #245269;
}

/* line 1673, app/assets/stylesheets/bootstrap.scss */
.text-warning {
  color: #8a6d3b;
}

/* line 1677, app/assets/stylesheets/bootstrap.scss */
a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}

/* line 1682, app/assets/stylesheets/bootstrap.scss */
.text-danger {
  color: #a94442;
}

/* line 1686, app/assets/stylesheets/bootstrap.scss */
a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}

/* line 1691, app/assets/stylesheets/bootstrap.scss */
.bg-primary {
  color: #fff;
}

/* line 1695, app/assets/stylesheets/bootstrap.scss */
.bg-primary {
  background-color: #337ab7;
}

/* line 1699, app/assets/stylesheets/bootstrap.scss */
a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #286090;
}

/* line 1704, app/assets/stylesheets/bootstrap.scss */
.bg-success {
  background-color: #dff0d8;
}

/* line 1708, app/assets/stylesheets/bootstrap.scss */
a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}

/* line 1713, app/assets/stylesheets/bootstrap.scss */
.bg-info {
  background-color: #d9edf7;
}

/* line 1717, app/assets/stylesheets/bootstrap.scss */
a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}

/* line 1722, app/assets/stylesheets/bootstrap.scss */
.bg-warning {
  background-color: #fcf8e3;
}

/* line 1726, app/assets/stylesheets/bootstrap.scss */
a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}

/* line 1731, app/assets/stylesheets/bootstrap.scss */
.bg-danger {
  background-color: #f2dede;
}

/* line 1735, app/assets/stylesheets/bootstrap.scss */
a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}

/* line 1740, app/assets/stylesheets/bootstrap.scss */
.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee;
}

/* line 1746, app/assets/stylesheets/bootstrap.scss */
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}

/* line 1751, app/assets/stylesheets/bootstrap.scss */
ul ul,
ul ol,
ol ul,
ol ol {
  margin-bottom: 0;
}

/* line 1758, app/assets/stylesheets/bootstrap.scss */
.list-unstyled {
  padding-left: 0;
  list-style: none;
}

/* line 1763, app/assets/stylesheets/bootstrap.scss */
.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}

/* line 1768, app/assets/stylesheets/bootstrap.scss */
.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}

/* line 1774, app/assets/stylesheets/bootstrap.scss */
dl {
  margin-top: 0;
  margin-bottom: 20px;
}

/* line 1779, app/assets/stylesheets/bootstrap.scss */
dt,
dd {
  line-height: 1.42857;
}

/* line 1784, app/assets/stylesheets/bootstrap.scss */
dt {
  font-weight: bold;
}

/* line 1788, app/assets/stylesheets/bootstrap.scss */
dd {
  margin-left: 0;
}

/* line 1792, app/assets/stylesheets/bootstrap.scss */
.dl-horizontal dd:before, .dl-horizontal dd:after {
  content: " ";
  display: table;
}

/* line 1796, app/assets/stylesheets/bootstrap.scss */
.dl-horizontal dd:after {
  clear: both;
}

@media (min-width: 768px) {
  /* line 1800, app/assets/stylesheets/bootstrap.scss */
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  /* line 1809, app/assets/stylesheets/bootstrap.scss */
  .dl-horizontal dd {
    margin-left: 180px;
  }
}

/* line 1814, app/assets/stylesheets/bootstrap.scss */
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777777;
}

/* line 1820, app/assets/stylesheets/bootstrap.scss */
.initialism {
  font-size: 90%;
}

/* line 1824, app/assets/stylesheets/bootstrap.scss */
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee;
}

/* line 1830, app/assets/stylesheets/bootstrap.scss */
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}

/* line 1835, app/assets/stylesheets/bootstrap.scss */
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857;
  color: #777777;
}

/* line 1843, app/assets/stylesheets/bootstrap.scss */
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}

/* line 1849, app/assets/stylesheets/bootstrap.scss */
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
  text-align: right;
}

/* line 1857, app/assets/stylesheets/bootstrap.scss */
.blockquote-reverse footer:before,
.blockquote-reverse small:before,
.blockquote-reverse .small:before,
blockquote.pull-right footer:before,
blockquote.pull-right small:before,
blockquote.pull-right .small:before {
  content: '';
}

/* line 1865, app/assets/stylesheets/bootstrap.scss */
.blockquote-reverse footer:after,
.blockquote-reverse small:after,
.blockquote-reverse .small:after,
blockquote.pull-right footer:after,
blockquote.pull-right small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}

/* line 1874, app/assets/stylesheets/bootstrap.scss */
address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857;
}

/* line 1880, app/assets/stylesheets/bootstrap.scss */
code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

/* line 1887, app/assets/stylesheets/bootstrap.scss */
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}

/* line 1895, app/assets/stylesheets/bootstrap.scss */
kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 1903, app/assets/stylesheets/bootstrap.scss */
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  box-shadow: none;
}

/* line 1910, app/assets/stylesheets/bootstrap.scss */
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857;
  word-break: break-all;
  word-wrap: break-word;
  color: #333333;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* line 1923, app/assets/stylesheets/bootstrap.scss */
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}

/* line 1932, app/assets/stylesheets/bootstrap.scss */
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

/* line 1937, app/assets/stylesheets/bootstrap.scss */
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* line 1943, app/assets/stylesheets/bootstrap.scss */
.container:before, .container:after {
  content: " ";
  display: table;
}

/* line 1947, app/assets/stylesheets/bootstrap.scss */
.container:after {
  clear: both;
}

@media (min-width: 768px) {
  /* line 1951, app/assets/stylesheets/bootstrap.scss */
  .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  /* line 1956, app/assets/stylesheets/bootstrap.scss */
  .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  /* line 1961, app/assets/stylesheets/bootstrap.scss */
  .container {
    width: 1170px;
  }
}

/* line 1966, app/assets/stylesheets/bootstrap.scss */
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* line 1972, app/assets/stylesheets/bootstrap.scss */
.container-fluid:before, .container-fluid:after {
  content: " ";
  display: table;
}

/* line 1976, app/assets/stylesheets/bootstrap.scss */
.container-fluid:after {
  clear: both;
}

/* line 1980, app/assets/stylesheets/bootstrap.scss */
.row {
  margin-left: -15px;
  margin-right: -15px;
}

/* line 1984, app/assets/stylesheets/bootstrap.scss */
.row:before, .row:after {
  content: " ";
  display: table;
}

/* line 1988, app/assets/stylesheets/bootstrap.scss */
.row:after {
  clear: both;
}

/* line 1992, app/assets/stylesheets/bootstrap.scss */
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

/* line 1999, app/assets/stylesheets/bootstrap.scss */
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

/* line 2003, app/assets/stylesheets/bootstrap.scss */
.col-xs-1 {
  width: 8.33333%;
}

/* line 2007, app/assets/stylesheets/bootstrap.scss */
.col-xs-2 {
  width: 16.66667%;
}

/* line 2011, app/assets/stylesheets/bootstrap.scss */
.col-xs-3 {
  width: 25%;
}

/* line 2015, app/assets/stylesheets/bootstrap.scss */
.col-xs-4 {
  width: 33.33333%;
}

/* line 2019, app/assets/stylesheets/bootstrap.scss */
.col-xs-5 {
  width: 41.66667%;
}

/* line 2023, app/assets/stylesheets/bootstrap.scss */
.col-xs-6 {
  width: 50%;
}

/* line 2027, app/assets/stylesheets/bootstrap.scss */
.col-xs-7 {
  width: 58.33333%;
}

/* line 2031, app/assets/stylesheets/bootstrap.scss */
.col-xs-8 {
  width: 66.66667%;
}

/* line 2035, app/assets/stylesheets/bootstrap.scss */
.col-xs-9 {
  width: 75%;
}

/* line 2039, app/assets/stylesheets/bootstrap.scss */
.col-xs-10 {
  width: 83.33333%;
}

/* line 2043, app/assets/stylesheets/bootstrap.scss */
.col-xs-11 {
  width: 91.66667%;
}

/* line 2047, app/assets/stylesheets/bootstrap.scss */
.col-xs-12 {
  width: 100%;
}

/* line 2051, app/assets/stylesheets/bootstrap.scss */
.col-xs-pull-0 {
  right: auto;
}

/* line 2055, app/assets/stylesheets/bootstrap.scss */
.col-xs-pull-1 {
  right: 8.33333%;
}

/* line 2059, app/assets/stylesheets/bootstrap.scss */
.col-xs-pull-2 {
  right: 16.66667%;
}

/* line 2063, app/assets/stylesheets/bootstrap.scss */
.col-xs-pull-3 {
  right: 25%;
}

/* line 2067, app/assets/stylesheets/bootstrap.scss */
.col-xs-pull-4 {
  right: 33.33333%;
}

/* line 2071, app/assets/stylesheets/bootstrap.scss */
.col-xs-pull-5 {
  right: 41.66667%;
}

/* line 2075, app/assets/stylesheets/bootstrap.scss */
.col-xs-pull-6 {
  right: 50%;
}

/* line 2079, app/assets/stylesheets/bootstrap.scss */
.col-xs-pull-7 {
  right: 58.33333%;
}

/* line 2083, app/assets/stylesheets/bootstrap.scss */
.col-xs-pull-8 {
  right: 66.66667%;
}

/* line 2087, app/assets/stylesheets/bootstrap.scss */
.col-xs-pull-9 {
  right: 75%;
}

/* line 2091, app/assets/stylesheets/bootstrap.scss */
.col-xs-pull-10 {
  right: 83.33333%;
}

/* line 2095, app/assets/stylesheets/bootstrap.scss */
.col-xs-pull-11 {
  right: 91.66667%;
}

/* line 2099, app/assets/stylesheets/bootstrap.scss */
.col-xs-pull-12 {
  right: 100%;
}

/* line 2103, app/assets/stylesheets/bootstrap.scss */
.col-xs-push-0 {
  left: auto;
}

/* line 2107, app/assets/stylesheets/bootstrap.scss */
.col-xs-push-1 {
  left: 8.33333%;
}

/* line 2111, app/assets/stylesheets/bootstrap.scss */
.col-xs-push-2 {
  left: 16.66667%;
}

/* line 2115, app/assets/stylesheets/bootstrap.scss */
.col-xs-push-3 {
  left: 25%;
}

/* line 2119, app/assets/stylesheets/bootstrap.scss */
.col-xs-push-4 {
  left: 33.33333%;
}

/* line 2123, app/assets/stylesheets/bootstrap.scss */
.col-xs-push-5 {
  left: 41.66667%;
}

/* line 2127, app/assets/stylesheets/bootstrap.scss */
.col-xs-push-6 {
  left: 50%;
}

/* line 2131, app/assets/stylesheets/bootstrap.scss */
.col-xs-push-7 {
  left: 58.33333%;
}

/* line 2135, app/assets/stylesheets/bootstrap.scss */
.col-xs-push-8 {
  left: 66.66667%;
}

/* line 2139, app/assets/stylesheets/bootstrap.scss */
.col-xs-push-9 {
  left: 75%;
}

/* line 2143, app/assets/stylesheets/bootstrap.scss */
.col-xs-push-10 {
  left: 83.33333%;
}

/* line 2147, app/assets/stylesheets/bootstrap.scss */
.col-xs-push-11 {
  left: 91.66667%;
}

/* line 2151, app/assets/stylesheets/bootstrap.scss */
.col-xs-push-12 {
  left: 100%;
}

/* line 2155, app/assets/stylesheets/bootstrap.scss */
.col-xs-offset-0 {
  margin-left: 0%;
}

/* line 2159, app/assets/stylesheets/bootstrap.scss */
.col-xs-offset-1 {
  margin-left: 8.33333%;
}

/* line 2163, app/assets/stylesheets/bootstrap.scss */
.col-xs-offset-2 {
  margin-left: 16.66667%;
}

/* line 2167, app/assets/stylesheets/bootstrap.scss */
.col-xs-offset-3 {
  margin-left: 25%;
}

/* line 2171, app/assets/stylesheets/bootstrap.scss */
.col-xs-offset-4 {
  margin-left: 33.33333%;
}

/* line 2175, app/assets/stylesheets/bootstrap.scss */
.col-xs-offset-5 {
  margin-left: 41.66667%;
}

/* line 2179, app/assets/stylesheets/bootstrap.scss */
.col-xs-offset-6 {
  margin-left: 50%;
}

/* line 2183, app/assets/stylesheets/bootstrap.scss */
.col-xs-offset-7 {
  margin-left: 58.33333%;
}

/* line 2187, app/assets/stylesheets/bootstrap.scss */
.col-xs-offset-8 {
  margin-left: 66.66667%;
}

/* line 2191, app/assets/stylesheets/bootstrap.scss */
.col-xs-offset-9 {
  margin-left: 75%;
}

/* line 2195, app/assets/stylesheets/bootstrap.scss */
.col-xs-offset-10 {
  margin-left: 83.33333%;
}

/* line 2199, app/assets/stylesheets/bootstrap.scss */
.col-xs-offset-11 {
  margin-left: 91.66667%;
}

/* line 2203, app/assets/stylesheets/bootstrap.scss */
.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 768px) {
  /* line 2208, app/assets/stylesheets/bootstrap.scss */
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  /* line 2212, app/assets/stylesheets/bootstrap.scss */
  .col-sm-1 {
    width: 8.33333%;
  }
  /* line 2216, app/assets/stylesheets/bootstrap.scss */
  .col-sm-2 {
    width: 16.66667%;
  }
  /* line 2220, app/assets/stylesheets/bootstrap.scss */
  .col-sm-3 {
    width: 25%;
  }
  /* line 2224, app/assets/stylesheets/bootstrap.scss */
  .col-sm-4 {
    width: 33.33333%;
  }
  /* line 2228, app/assets/stylesheets/bootstrap.scss */
  .col-sm-5 {
    width: 41.66667%;
  }
  /* line 2232, app/assets/stylesheets/bootstrap.scss */
  .col-sm-6 {
    width: 50%;
  }
  /* line 2236, app/assets/stylesheets/bootstrap.scss */
  .col-sm-7 {
    width: 58.33333%;
  }
  /* line 2240, app/assets/stylesheets/bootstrap.scss */
  .col-sm-8 {
    width: 66.66667%;
  }
  /* line 2244, app/assets/stylesheets/bootstrap.scss */
  .col-sm-9 {
    width: 75%;
  }
  /* line 2248, app/assets/stylesheets/bootstrap.scss */
  .col-sm-10 {
    width: 83.33333%;
  }
  /* line 2252, app/assets/stylesheets/bootstrap.scss */
  .col-sm-11 {
    width: 91.66667%;
  }
  /* line 2256, app/assets/stylesheets/bootstrap.scss */
  .col-sm-12 {
    width: 100%;
  }
  /* line 2260, app/assets/stylesheets/bootstrap.scss */
  .col-sm-pull-0 {
    right: auto;
  }
  /* line 2264, app/assets/stylesheets/bootstrap.scss */
  .col-sm-pull-1 {
    right: 8.33333%;
  }
  /* line 2268, app/assets/stylesheets/bootstrap.scss */
  .col-sm-pull-2 {
    right: 16.66667%;
  }
  /* line 2272, app/assets/stylesheets/bootstrap.scss */
  .col-sm-pull-3 {
    right: 25%;
  }
  /* line 2276, app/assets/stylesheets/bootstrap.scss */
  .col-sm-pull-4 {
    right: 33.33333%;
  }
  /* line 2280, app/assets/stylesheets/bootstrap.scss */
  .col-sm-pull-5 {
    right: 41.66667%;
  }
  /* line 2284, app/assets/stylesheets/bootstrap.scss */
  .col-sm-pull-6 {
    right: 50%;
  }
  /* line 2288, app/assets/stylesheets/bootstrap.scss */
  .col-sm-pull-7 {
    right: 58.33333%;
  }
  /* line 2292, app/assets/stylesheets/bootstrap.scss */
  .col-sm-pull-8 {
    right: 66.66667%;
  }
  /* line 2296, app/assets/stylesheets/bootstrap.scss */
  .col-sm-pull-9 {
    right: 75%;
  }
  /* line 2300, app/assets/stylesheets/bootstrap.scss */
  .col-sm-pull-10 {
    right: 83.33333%;
  }
  /* line 2304, app/assets/stylesheets/bootstrap.scss */
  .col-sm-pull-11 {
    right: 91.66667%;
  }
  /* line 2308, app/assets/stylesheets/bootstrap.scss */
  .col-sm-pull-12 {
    right: 100%;
  }
  /* line 2312, app/assets/stylesheets/bootstrap.scss */
  .col-sm-push-0 {
    left: auto;
  }
  /* line 2316, app/assets/stylesheets/bootstrap.scss */
  .col-sm-push-1 {
    left: 8.33333%;
  }
  /* line 2320, app/assets/stylesheets/bootstrap.scss */
  .col-sm-push-2 {
    left: 16.66667%;
  }
  /* line 2324, app/assets/stylesheets/bootstrap.scss */
  .col-sm-push-3 {
    left: 25%;
  }
  /* line 2328, app/assets/stylesheets/bootstrap.scss */
  .col-sm-push-4 {
    left: 33.33333%;
  }
  /* line 2332, app/assets/stylesheets/bootstrap.scss */
  .col-sm-push-5 {
    left: 41.66667%;
  }
  /* line 2336, app/assets/stylesheets/bootstrap.scss */
  .col-sm-push-6 {
    left: 50%;
  }
  /* line 2340, app/assets/stylesheets/bootstrap.scss */
  .col-sm-push-7 {
    left: 58.33333%;
  }
  /* line 2344, app/assets/stylesheets/bootstrap.scss */
  .col-sm-push-8 {
    left: 66.66667%;
  }
  /* line 2348, app/assets/stylesheets/bootstrap.scss */
  .col-sm-push-9 {
    left: 75%;
  }
  /* line 2352, app/assets/stylesheets/bootstrap.scss */
  .col-sm-push-10 {
    left: 83.33333%;
  }
  /* line 2356, app/assets/stylesheets/bootstrap.scss */
  .col-sm-push-11 {
    left: 91.66667%;
  }
  /* line 2360, app/assets/stylesheets/bootstrap.scss */
  .col-sm-push-12 {
    left: 100%;
  }
  /* line 2364, app/assets/stylesheets/bootstrap.scss */
  .col-sm-offset-0 {
    margin-left: 0%;
  }
  /* line 2368, app/assets/stylesheets/bootstrap.scss */
  .col-sm-offset-1 {
    margin-left: 8.33333%;
  }
  /* line 2372, app/assets/stylesheets/bootstrap.scss */
  .col-sm-offset-2 {
    margin-left: 16.66667%;
  }
  /* line 2376, app/assets/stylesheets/bootstrap.scss */
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  /* line 2380, app/assets/stylesheets/bootstrap.scss */
  .col-sm-offset-4 {
    margin-left: 33.33333%;
  }
  /* line 2384, app/assets/stylesheets/bootstrap.scss */
  .col-sm-offset-5 {
    margin-left: 41.66667%;
  }
  /* line 2388, app/assets/stylesheets/bootstrap.scss */
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  /* line 2392, app/assets/stylesheets/bootstrap.scss */
  .col-sm-offset-7 {
    margin-left: 58.33333%;
  }
  /* line 2396, app/assets/stylesheets/bootstrap.scss */
  .col-sm-offset-8 {
    margin-left: 66.66667%;
  }
  /* line 2400, app/assets/stylesheets/bootstrap.scss */
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  /* line 2404, app/assets/stylesheets/bootstrap.scss */
  .col-sm-offset-10 {
    margin-left: 83.33333%;
  }
  /* line 2408, app/assets/stylesheets/bootstrap.scss */
  .col-sm-offset-11 {
    margin-left: 91.66667%;
  }
  /* line 2412, app/assets/stylesheets/bootstrap.scss */
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 992px) {
  /* line 2417, app/assets/stylesheets/bootstrap.scss */
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  /* line 2421, app/assets/stylesheets/bootstrap.scss */
  .col-md-1 {
    width: 8.33333%;
  }
  /* line 2425, app/assets/stylesheets/bootstrap.scss */
  .col-md-2 {
    width: 16.66667%;
  }
  /* line 2429, app/assets/stylesheets/bootstrap.scss */
  .col-md-3 {
    width: 25%;
  }
  /* line 2433, app/assets/stylesheets/bootstrap.scss */
  .col-md-4 {
    width: 33.33333%;
  }
  /* line 2437, app/assets/stylesheets/bootstrap.scss */
  .col-md-5 {
    width: 41.66667%;
  }
  /* line 2441, app/assets/stylesheets/bootstrap.scss */
  .col-md-6 {
    width: 50%;
  }
  /* line 2445, app/assets/stylesheets/bootstrap.scss */
  .col-md-7 {
    width: 58.33333%;
  }
  /* line 2449, app/assets/stylesheets/bootstrap.scss */
  .col-md-8 {
    width: 66.66667%;
  }
  /* line 2453, app/assets/stylesheets/bootstrap.scss */
  .col-md-9 {
    width: 75%;
  }
  /* line 2457, app/assets/stylesheets/bootstrap.scss */
  .col-md-10 {
    width: 83.33333%;
  }
  /* line 2461, app/assets/stylesheets/bootstrap.scss */
  .col-md-11 {
    width: 91.66667%;
  }
  /* line 2465, app/assets/stylesheets/bootstrap.scss */
  .col-md-12 {
    width: 100%;
  }
  /* line 2469, app/assets/stylesheets/bootstrap.scss */
  .col-md-pull-0 {
    right: auto;
  }
  /* line 2473, app/assets/stylesheets/bootstrap.scss */
  .col-md-pull-1 {
    right: 8.33333%;
  }
  /* line 2477, app/assets/stylesheets/bootstrap.scss */
  .col-md-pull-2 {
    right: 16.66667%;
  }
  /* line 2481, app/assets/stylesheets/bootstrap.scss */
  .col-md-pull-3 {
    right: 25%;
  }
  /* line 2485, app/assets/stylesheets/bootstrap.scss */
  .col-md-pull-4 {
    right: 33.33333%;
  }
  /* line 2489, app/assets/stylesheets/bootstrap.scss */
  .col-md-pull-5 {
    right: 41.66667%;
  }
  /* line 2493, app/assets/stylesheets/bootstrap.scss */
  .col-md-pull-6 {
    right: 50%;
  }
  /* line 2497, app/assets/stylesheets/bootstrap.scss */
  .col-md-pull-7 {
    right: 58.33333%;
  }
  /* line 2501, app/assets/stylesheets/bootstrap.scss */
  .col-md-pull-8 {
    right: 66.66667%;
  }
  /* line 2505, app/assets/stylesheets/bootstrap.scss */
  .col-md-pull-9 {
    right: 75%;
  }
  /* line 2509, app/assets/stylesheets/bootstrap.scss */
  .col-md-pull-10 {
    right: 83.33333%;
  }
  /* line 2513, app/assets/stylesheets/bootstrap.scss */
  .col-md-pull-11 {
    right: 91.66667%;
  }
  /* line 2517, app/assets/stylesheets/bootstrap.scss */
  .col-md-pull-12 {
    right: 100%;
  }
  /* line 2521, app/assets/stylesheets/bootstrap.scss */
  .col-md-push-0 {
    left: auto;
  }
  /* line 2525, app/assets/stylesheets/bootstrap.scss */
  .col-md-push-1 {
    left: 8.33333%;
  }
  /* line 2529, app/assets/stylesheets/bootstrap.scss */
  .col-md-push-2 {
    left: 16.66667%;
  }
  /* line 2533, app/assets/stylesheets/bootstrap.scss */
  .col-md-push-3 {
    left: 25%;
  }
  /* line 2537, app/assets/stylesheets/bootstrap.scss */
  .col-md-push-4 {
    left: 33.33333%;
  }
  /* line 2541, app/assets/stylesheets/bootstrap.scss */
  .col-md-push-5 {
    left: 41.66667%;
  }
  /* line 2545, app/assets/stylesheets/bootstrap.scss */
  .col-md-push-6 {
    left: 50%;
  }
  /* line 2549, app/assets/stylesheets/bootstrap.scss */
  .col-md-push-7 {
    left: 58.33333%;
  }
  /* line 2553, app/assets/stylesheets/bootstrap.scss */
  .col-md-push-8 {
    left: 66.66667%;
  }
  /* line 2557, app/assets/stylesheets/bootstrap.scss */
  .col-md-push-9 {
    left: 75%;
  }
  /* line 2561, app/assets/stylesheets/bootstrap.scss */
  .col-md-push-10 {
    left: 83.33333%;
  }
  /* line 2565, app/assets/stylesheets/bootstrap.scss */
  .col-md-push-11 {
    left: 91.66667%;
  }
  /* line 2569, app/assets/stylesheets/bootstrap.scss */
  .col-md-push-12 {
    left: 100%;
  }
  /* line 2573, app/assets/stylesheets/bootstrap.scss */
  .col-md-offset-0 {
    margin-left: 0%;
  }
  /* line 2577, app/assets/stylesheets/bootstrap.scss */
  .col-md-offset-1 {
    margin-left: 8.33333%;
  }
  /* line 2581, app/assets/stylesheets/bootstrap.scss */
  .col-md-offset-2 {
    margin-left: 16.66667%;
  }
  /* line 2585, app/assets/stylesheets/bootstrap.scss */
  .col-md-offset-3 {
    margin-left: 25%;
  }
  /* line 2589, app/assets/stylesheets/bootstrap.scss */
  .col-md-offset-4 {
    margin-left: 33.33333%;
  }
  /* line 2593, app/assets/stylesheets/bootstrap.scss */
  .col-md-offset-5 {
    margin-left: 41.66667%;
  }
  /* line 2597, app/assets/stylesheets/bootstrap.scss */
  .col-md-offset-6 {
    margin-left: 50%;
  }
  /* line 2601, app/assets/stylesheets/bootstrap.scss */
  .col-md-offset-7 {
    margin-left: 58.33333%;
  }
  /* line 2605, app/assets/stylesheets/bootstrap.scss */
  .col-md-offset-8 {
    margin-left: 66.66667%;
  }
  /* line 2609, app/assets/stylesheets/bootstrap.scss */
  .col-md-offset-9 {
    margin-left: 75%;
  }
  /* line 2613, app/assets/stylesheets/bootstrap.scss */
  .col-md-offset-10 {
    margin-left: 83.33333%;
  }
  /* line 2617, app/assets/stylesheets/bootstrap.scss */
  .col-md-offset-11 {
    margin-left: 91.66667%;
  }
  /* line 2621, app/assets/stylesheets/bootstrap.scss */
  .col-md-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 1200px) {
  /* line 2626, app/assets/stylesheets/bootstrap.scss */
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  /* line 2630, app/assets/stylesheets/bootstrap.scss */
  .col-lg-1 {
    width: 8.33333%;
  }
  /* line 2634, app/assets/stylesheets/bootstrap.scss */
  .col-lg-2 {
    width: 16.66667%;
  }
  /* line 2638, app/assets/stylesheets/bootstrap.scss */
  .col-lg-3 {
    width: 25%;
  }
  /* line 2642, app/assets/stylesheets/bootstrap.scss */
  .col-lg-4 {
    width: 33.33333%;
  }
  /* line 2646, app/assets/stylesheets/bootstrap.scss */
  .col-lg-5 {
    width: 41.66667%;
  }
  /* line 2650, app/assets/stylesheets/bootstrap.scss */
  .col-lg-6 {
    width: 50%;
  }
  /* line 2654, app/assets/stylesheets/bootstrap.scss */
  .col-lg-7 {
    width: 58.33333%;
  }
  /* line 2658, app/assets/stylesheets/bootstrap.scss */
  .col-lg-8 {
    width: 66.66667%;
  }
  /* line 2662, app/assets/stylesheets/bootstrap.scss */
  .col-lg-9 {
    width: 75%;
  }
  /* line 2666, app/assets/stylesheets/bootstrap.scss */
  .col-lg-10 {
    width: 83.33333%;
  }
  /* line 2670, app/assets/stylesheets/bootstrap.scss */
  .col-lg-11 {
    width: 91.66667%;
  }
  /* line 2674, app/assets/stylesheets/bootstrap.scss */
  .col-lg-12 {
    width: 100%;
  }
  /* line 2678, app/assets/stylesheets/bootstrap.scss */
  .col-lg-pull-0 {
    right: auto;
  }
  /* line 2682, app/assets/stylesheets/bootstrap.scss */
  .col-lg-pull-1 {
    right: 8.33333%;
  }
  /* line 2686, app/assets/stylesheets/bootstrap.scss */
  .col-lg-pull-2 {
    right: 16.66667%;
  }
  /* line 2690, app/assets/stylesheets/bootstrap.scss */
  .col-lg-pull-3 {
    right: 25%;
  }
  /* line 2694, app/assets/stylesheets/bootstrap.scss */
  .col-lg-pull-4 {
    right: 33.33333%;
  }
  /* line 2698, app/assets/stylesheets/bootstrap.scss */
  .col-lg-pull-5 {
    right: 41.66667%;
  }
  /* line 2702, app/assets/stylesheets/bootstrap.scss */
  .col-lg-pull-6 {
    right: 50%;
  }
  /* line 2706, app/assets/stylesheets/bootstrap.scss */
  .col-lg-pull-7 {
    right: 58.33333%;
  }
  /* line 2710, app/assets/stylesheets/bootstrap.scss */
  .col-lg-pull-8 {
    right: 66.66667%;
  }
  /* line 2714, app/assets/stylesheets/bootstrap.scss */
  .col-lg-pull-9 {
    right: 75%;
  }
  /* line 2718, app/assets/stylesheets/bootstrap.scss */
  .col-lg-pull-10 {
    right: 83.33333%;
  }
  /* line 2722, app/assets/stylesheets/bootstrap.scss */
  .col-lg-pull-11 {
    right: 91.66667%;
  }
  /* line 2726, app/assets/stylesheets/bootstrap.scss */
  .col-lg-pull-12 {
    right: 100%;
  }
  /* line 2730, app/assets/stylesheets/bootstrap.scss */
  .col-lg-push-0 {
    left: auto;
  }
  /* line 2734, app/assets/stylesheets/bootstrap.scss */
  .col-lg-push-1 {
    left: 8.33333%;
  }
  /* line 2738, app/assets/stylesheets/bootstrap.scss */
  .col-lg-push-2 {
    left: 16.66667%;
  }
  /* line 2742, app/assets/stylesheets/bootstrap.scss */
  .col-lg-push-3 {
    left: 25%;
  }
  /* line 2746, app/assets/stylesheets/bootstrap.scss */
  .col-lg-push-4 {
    left: 33.33333%;
  }
  /* line 2750, app/assets/stylesheets/bootstrap.scss */
  .col-lg-push-5 {
    left: 41.66667%;
  }
  /* line 2754, app/assets/stylesheets/bootstrap.scss */
  .col-lg-push-6 {
    left: 50%;
  }
  /* line 2758, app/assets/stylesheets/bootstrap.scss */
  .col-lg-push-7 {
    left: 58.33333%;
  }
  /* line 2762, app/assets/stylesheets/bootstrap.scss */
  .col-lg-push-8 {
    left: 66.66667%;
  }
  /* line 2766, app/assets/stylesheets/bootstrap.scss */
  .col-lg-push-9 {
    left: 75%;
  }
  /* line 2770, app/assets/stylesheets/bootstrap.scss */
  .col-lg-push-10 {
    left: 83.33333%;
  }
  /* line 2774, app/assets/stylesheets/bootstrap.scss */
  .col-lg-push-11 {
    left: 91.66667%;
  }
  /* line 2778, app/assets/stylesheets/bootstrap.scss */
  .col-lg-push-12 {
    left: 100%;
  }
  /* line 2782, app/assets/stylesheets/bootstrap.scss */
  .col-lg-offset-0 {
    margin-left: 0%;
  }
  /* line 2786, app/assets/stylesheets/bootstrap.scss */
  .col-lg-offset-1 {
    margin-left: 8.33333%;
  }
  /* line 2790, app/assets/stylesheets/bootstrap.scss */
  .col-lg-offset-2 {
    margin-left: 16.66667%;
  }
  /* line 2794, app/assets/stylesheets/bootstrap.scss */
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  /* line 2798, app/assets/stylesheets/bootstrap.scss */
  .col-lg-offset-4 {
    margin-left: 33.33333%;
  }
  /* line 2802, app/assets/stylesheets/bootstrap.scss */
  .col-lg-offset-5 {
    margin-left: 41.66667%;
  }
  /* line 2806, app/assets/stylesheets/bootstrap.scss */
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  /* line 2810, app/assets/stylesheets/bootstrap.scss */
  .col-lg-offset-7 {
    margin-left: 58.33333%;
  }
  /* line 2814, app/assets/stylesheets/bootstrap.scss */
  .col-lg-offset-8 {
    margin-left: 66.66667%;
  }
  /* line 2818, app/assets/stylesheets/bootstrap.scss */
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  /* line 2822, app/assets/stylesheets/bootstrap.scss */
  .col-lg-offset-10 {
    margin-left: 83.33333%;
  }
  /* line 2826, app/assets/stylesheets/bootstrap.scss */
  .col-lg-offset-11 {
    margin-left: 91.66667%;
  }
  /* line 2830, app/assets/stylesheets/bootstrap.scss */
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}

/* line 2834, app/assets/stylesheets/bootstrap.scss */
table {
  background-color: transparent;
}

/* line 2838, app/assets/stylesheets/bootstrap.scss */
caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777777;
  text-align: left;
}

/* line 2845, app/assets/stylesheets/bootstrap.scss */
th {
  text-align: left;
}

/* line 2849, app/assets/stylesheets/bootstrap.scss */
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

/* line 2854, app/assets/stylesheets/bootstrap.scss */
.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857;
  vertical-align: top;
  border-top: 1px solid #ddd;
}

/* line 2865, app/assets/stylesheets/bootstrap.scss */
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}

/* line 2869, app/assets/stylesheets/bootstrap.scss */
.table > caption + thead > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > th,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}

/* line 2877, app/assets/stylesheets/bootstrap.scss */
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}

/* line 2880, app/assets/stylesheets/bootstrap.scss */
.table .table {
  background-color: #fff;
}

/* line 2884, app/assets/stylesheets/bootstrap.scss */
.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}

/* line 2893, app/assets/stylesheets/bootstrap.scss */
.table-bordered {
  border: 1px solid #ddd;
}

/* line 2896, app/assets/stylesheets/bootstrap.scss */
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}

/* line 2904, app/assets/stylesheets/bootstrap.scss */
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

/* line 2909, app/assets/stylesheets/bootstrap.scss */
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}

/* line 2913, app/assets/stylesheets/bootstrap.scss */
.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}

/* line 2917, app/assets/stylesheets/bootstrap.scss */
table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column;
}

/* line 2923, app/assets/stylesheets/bootstrap.scss */
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell;
}

/* line 2930, app/assets/stylesheets/bootstrap.scss */
.table > thead > tr > td.active,
.table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}

/* line 2943, app/assets/stylesheets/bootstrap.scss */
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}

/* line 2948, app/assets/stylesheets/bootstrap.scss */
.table > thead > tr > td.success,
.table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}

/* line 2961, app/assets/stylesheets/bootstrap.scss */
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}

/* line 2966, app/assets/stylesheets/bootstrap.scss */
.table > thead > tr > td.info,
.table > thead > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}

/* line 2979, app/assets/stylesheets/bootstrap.scss */
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}

/* line 2984, app/assets/stylesheets/bootstrap.scss */
.table > thead > tr > td.warning,
.table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}

/* line 2997, app/assets/stylesheets/bootstrap.scss */
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}

/* line 3002, app/assets/stylesheets/bootstrap.scss */
.table > thead > tr > td.danger,
.table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}

/* line 3015, app/assets/stylesheets/bootstrap.scss */
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}

/* line 3020, app/assets/stylesheets/bootstrap.scss */
.table-responsive {
  overflow-x: auto;
  min-height: 0.01%;
}

@media screen and (max-width: 767px) {
  /* line 3025, app/assets/stylesheets/bootstrap.scss */
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
  /* line 3032, app/assets/stylesheets/bootstrap.scss */
  .table-responsive > .table {
    margin-bottom: 0;
  }
  /* line 3035, app/assets/stylesheets/bootstrap.scss */
  .table-responsive > .table > thead > tr > th,
.table-responsive > .table > thead > tr > td,
.table-responsive > .table > tbody > tr > th,
.table-responsive > .table > tbody > tr > td,
.table-responsive > .table > tfoot > tr > th,
.table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  /* line 3043, app/assets/stylesheets/bootstrap.scss */
  .table-responsive > .table-bordered {
    border: 0;
  }
  /* line 3046, app/assets/stylesheets/bootstrap.scss */
  .table-responsive > .table-bordered > thead > tr > th:first-child,
.table-responsive > .table-bordered > thead > tr > td:first-child,
.table-responsive > .table-bordered > tbody > tr > th:first-child,
.table-responsive > .table-bordered > tbody > tr > td:first-child,
.table-responsive > .table-bordered > tfoot > tr > th:first-child,
.table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  /* line 3054, app/assets/stylesheets/bootstrap.scss */
  .table-responsive > .table-bordered > thead > tr > th:last-child,
.table-responsive > .table-bordered > thead > tr > td:last-child,
.table-responsive > .table-bordered > tbody > tr > th:last-child,
.table-responsive > .table-bordered > tbody > tr > td:last-child,
.table-responsive > .table-bordered > tfoot > tr > th:last-child,
.table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  /* line 3062, app/assets/stylesheets/bootstrap.scss */
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
.table-responsive > .table-bordered > tbody > tr:last-child > td,
.table-responsive > .table-bordered > tfoot > tr:last-child > th,
.table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}

/* line 3070, app/assets/stylesheets/bootstrap.scss */
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}

/* line 3077, app/assets/stylesheets/bootstrap.scss */
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

/* line 3089, app/assets/stylesheets/bootstrap.scss */
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}

/* line 3096, app/assets/stylesheets/bootstrap.scss */
input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 3102, app/assets/stylesheets/bootstrap.scss */
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}

/* line 3109, app/assets/stylesheets/bootstrap.scss */
input[type="file"] {
  display: block;
}

/* line 3113, app/assets/stylesheets/bootstrap.scss */
input[type="range"] {
  display: block;
  width: 100%;
}

/* line 3118, app/assets/stylesheets/bootstrap.scss */
select[multiple],
select[size] {
  height: auto;
}

/* line 3123, app/assets/stylesheets/bootstrap.scss */
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 3131, app/assets/stylesheets/bootstrap.scss */
output {
  display: block;
  padding-top: 11px;
  font-size: 14px;
  line-height: 1.42857;
  color: #555555;
}

/* line 3139, app/assets/stylesheets/bootstrap.scss */
.form-control {
  display: block;
  width: 100%;
  height: 42px;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 1.42857;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

/* line 3157, app/assets/stylesheets/bootstrap.scss */
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

/* line 3163, app/assets/stylesheets/bootstrap.scss */
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}

/* line 3167, app/assets/stylesheets/bootstrap.scss */
.form-control:-ms-input-placeholder {
  color: #999;
}

/* line 3170, app/assets/stylesheets/bootstrap.scss */
.form-control::-webkit-input-placeholder {
  color: #999;
}

/* line 3173, app/assets/stylesheets/bootstrap.scss */
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  background-color: #eeeeee;
  opacity: 1;
}

/* line 3177, app/assets/stylesheets/bootstrap.scss */
.form-control[disabled], fieldset[disabled] .form-control {
  cursor: not-allowed;
}

/* line 3181, app/assets/stylesheets/bootstrap.scss */
textarea.form-control {
  height: auto;
}

/* line 3185, app/assets/stylesheets/bootstrap.scss */
input[type="search"] {
  -webkit-appearance: none;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  /* line 3190, app/assets/stylesheets/bootstrap.scss */
  input.form-control[type="date"],
input.form-control[type="time"],
input.form-control[type="datetime-local"],
input.form-control[type="month"] {
    line-height: 42px;
  }
  /* line 3196, app/assets/stylesheets/bootstrap.scss */
  input.input-sm[type="date"], .input-group-sm > input.form-control[type="date"],
.input-group-sm > input.input-group-addon[type="date"],
.input-group-sm > .input-group-btn > input.btn[type="date"], .input-group-sm input[type="date"],
input.input-sm[type="time"],
.input-group-sm > input.form-control[type="time"],
.input-group-sm > input.input-group-addon[type="time"],
.input-group-sm > .input-group-btn > input.btn[type="time"], .input-group-sm
input[type="time"],
input.input-sm[type="datetime-local"],
.input-group-sm > input.form-control[type="datetime-local"],
.input-group-sm > input.input-group-addon[type="datetime-local"],
.input-group-sm > .input-group-btn > input.btn[type="datetime-local"], .input-group-sm
input[type="datetime-local"],
input.input-sm[type="month"],
.input-group-sm > input.form-control[type="month"],
.input-group-sm > input.input-group-addon[type="month"],
.input-group-sm > .input-group-btn > input.btn[type="month"], .input-group-sm
input[type="month"] {
    line-height: 30px;
  }
  /* line 3216, app/assets/stylesheets/bootstrap.scss */
  input.input-lg[type="date"], .input-group-lg > input.form-control[type="date"],
.input-group-lg > input.input-group-addon[type="date"],
.input-group-lg > .input-group-btn > input.btn[type="date"], .input-group-lg input[type="date"],
input.input-lg[type="time"],
.input-group-lg > input.form-control[type="time"],
.input-group-lg > input.input-group-addon[type="time"],
.input-group-lg > .input-group-btn > input.btn[type="time"], .input-group-lg
input[type="time"],
input.input-lg[type="datetime-local"],
.input-group-lg > input.form-control[type="datetime-local"],
.input-group-lg > input.input-group-addon[type="datetime-local"],
.input-group-lg > .input-group-btn > input.btn[type="datetime-local"], .input-group-lg
input[type="datetime-local"],
input.input-lg[type="month"],
.input-group-lg > input.form-control[type="month"],
.input-group-lg > input.input-group-addon[type="month"],
.input-group-lg > .input-group-btn > input.btn[type="month"], .input-group-lg
input[type="month"] {
    line-height: 46px;
  }
}

/* line 3237, app/assets/stylesheets/bootstrap.scss */
.form-group {
  margin-bottom: 15px;
}

/* line 3241, app/assets/stylesheets/bootstrap.scss */
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 3248, app/assets/stylesheets/bootstrap.scss */
.radio label,
.checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}

/* line 3257, app/assets/stylesheets/bootstrap.scss */
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9;
}

/* line 3266, app/assets/stylesheets/bootstrap.scss */
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}

/* line 3271, app/assets/stylesheets/bootstrap.scss */
.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}

/* line 3282, app/assets/stylesheets/bootstrap.scss */
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}

/* line 3288, app/assets/stylesheets/bootstrap.scss */
input[type="radio"][disabled], input.disabled[type="radio"], fieldset[disabled] input[type="radio"],
input[type="checkbox"][disabled],
input.disabled[type="checkbox"], fieldset[disabled]
input[type="checkbox"] {
  cursor: not-allowed;
}

/* line 3295, app/assets/stylesheets/bootstrap.scss */
.radio-inline.disabled, fieldset[disabled] .radio-inline,
.checkbox-inline.disabled, fieldset[disabled]
.checkbox-inline {
  cursor: not-allowed;
}

/* line 3301, app/assets/stylesheets/bootstrap.scss */
.radio.disabled label, fieldset[disabled] .radio label,
.checkbox.disabled label, fieldset[disabled]
.checkbox label {
  cursor: not-allowed;
}

/* line 3307, app/assets/stylesheets/bootstrap.scss */
.form-control-static {
  padding-top: 11px;
  padding-bottom: 11px;
  margin-bottom: 0;
  min-height: 34px;
}

/* line 3313, app/assets/stylesheets/bootstrap.scss */
.form-control-static.input-lg, .input-group-lg > .form-control-static.form-control,
.input-group-lg > .form-control-static.input-group-addon,
.input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control,
.input-group-sm > .form-control-static.input-group-addon,
.input-group-sm > .input-group-btn > .form-control-static.btn {
  padding-left: 0;
  padding-right: 0;
}

/* line 3322, app/assets/stylesheets/bootstrap.scss */
.input-sm, .input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 20px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 3332, app/assets/stylesheets/bootstrap.scss */
select.input-sm, .input-group-sm > select.form-control,
.input-group-sm > select.input-group-addon,
.input-group-sm > .input-group-btn > select.btn {
  height: 30px;
  line-height: 30px;
}

/* line 3339, app/assets/stylesheets/bootstrap.scss */
textarea.input-sm, .input-group-sm > textarea.form-control,
.input-group-sm > textarea.input-group-addon,
.input-group-sm > .input-group-btn > textarea.btn,
select.input-sm[multiple],
.input-group-sm > select.form-control[multiple],
.input-group-sm > select.input-group-addon[multiple],
.input-group-sm > .input-group-btn > select.btn[multiple] {
  height: auto;
}

/* line 3349, app/assets/stylesheets/bootstrap.scss */
.form-group-sm .form-control {
  height: 30px;
  padding: 5px 20px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 3356, app/assets/stylesheets/bootstrap.scss */
.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px;
}

/* line 3360, app/assets/stylesheets/bootstrap.scss */
.form-group-sm textarea.form-control,
.form-group-sm select.form-control[multiple] {
  height: auto;
}

/* line 3364, app/assets/stylesheets/bootstrap.scss */
.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 20px;
  font-size: 12px;
  line-height: 1.5;
}

/* line 3372, app/assets/stylesheets/bootstrap.scss */
.input-lg, .input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 1.33333;
  border-radius: 6px;
}

/* line 3382, app/assets/stylesheets/bootstrap.scss */
select.input-lg, .input-group-lg > select.form-control,
.input-group-lg > select.input-group-addon,
.input-group-lg > .input-group-btn > select.btn {
  height: 46px;
  line-height: 46px;
}

/* line 3389, app/assets/stylesheets/bootstrap.scss */
textarea.input-lg, .input-group-lg > textarea.form-control,
.input-group-lg > textarea.input-group-addon,
.input-group-lg > .input-group-btn > textarea.btn,
select.input-lg[multiple],
.input-group-lg > select.form-control[multiple],
.input-group-lg > select.input-group-addon[multiple],
.input-group-lg > .input-group-btn > select.btn[multiple] {
  height: auto;
}

/* line 3399, app/assets/stylesheets/bootstrap.scss */
.form-group-lg .form-control {
  height: 46px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 1.33333;
  border-radius: 6px;
}

/* line 3406, app/assets/stylesheets/bootstrap.scss */
.form-group-lg select.form-control {
  height: 46px;
  line-height: 46px;
}

/* line 3410, app/assets/stylesheets/bootstrap.scss */
.form-group-lg textarea.form-control,
.form-group-lg select.form-control[multiple] {
  height: auto;
}

/* line 3414, app/assets/stylesheets/bootstrap.scss */
.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 20px;
  font-size: 18px;
  line-height: 1.33333;
}

/* line 3422, app/assets/stylesheets/bootstrap.scss */
.has-feedback {
  position: relative;
}

/* line 3425, app/assets/stylesheets/bootstrap.scss */
.has-feedback .form-control {
  padding-right: 52.5px;
}

/* line 3429, app/assets/stylesheets/bootstrap.scss */
.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  pointer-events: none;
}

/* line 3442, app/assets/stylesheets/bootstrap.scss */
.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback,
.input-group-lg > .input-group-addon + .form-control-feedback,
.input-group-lg > .input-group-btn > .btn + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}

/* line 3452, app/assets/stylesheets/bootstrap.scss */
.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback,
.input-group-sm > .input-group-addon + .form-control-feedback,
.input-group-sm > .input-group-btn > .btn + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

/* line 3462, app/assets/stylesheets/bootstrap.scss */
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label {
  color: #3c763d;
}

/* line 3470, app/assets/stylesheets/bootstrap.scss */
.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

/* line 3475, app/assets/stylesheets/bootstrap.scss */
.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}

/* line 3480, app/assets/stylesheets/bootstrap.scss */
.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8;
}

/* line 3485, app/assets/stylesheets/bootstrap.scss */
.has-success .form-control-feedback {
  color: #3c763d;
}

/* line 3489, app/assets/stylesheets/bootstrap.scss */
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label {
  color: #8a6d3b;
}

/* line 3497, app/assets/stylesheets/bootstrap.scss */
.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

/* line 3502, app/assets/stylesheets/bootstrap.scss */
.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}

/* line 3507, app/assets/stylesheets/bootstrap.scss */
.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3;
}

/* line 3512, app/assets/stylesheets/bootstrap.scss */
.has-warning .form-control-feedback {
  color: #8a6d3b;
}

/* line 3516, app/assets/stylesheets/bootstrap.scss */
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
  color: #a94442;
}

/* line 3524, app/assets/stylesheets/bootstrap.scss */
.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

/* line 3529, app/assets/stylesheets/bootstrap.scss */
.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}

/* line 3534, app/assets/stylesheets/bootstrap.scss */
.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede;
}

/* line 3539, app/assets/stylesheets/bootstrap.scss */
.has-error .form-control-feedback {
  color: #a94442;
}

/* line 3543, app/assets/stylesheets/bootstrap.scss */
.has-feedback label ~ .form-control-feedback {
  top: 25px;
}

/* line 3546, app/assets/stylesheets/bootstrap.scss */
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}

/* line 3550, app/assets/stylesheets/bootstrap.scss */
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}

@media (min-width: 768px) {
  /* line 3558, app/assets/stylesheets/bootstrap.scss */
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 3563, app/assets/stylesheets/bootstrap.scss */
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  /* line 3568, app/assets/stylesheets/bootstrap.scss */
  .form-inline .form-control-static {
    display: inline-block;
  }
  /* line 3571, app/assets/stylesheets/bootstrap.scss */
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  /* line 3575, app/assets/stylesheets/bootstrap.scss */
  .form-inline .input-group .input-group-addon,
.form-inline .input-group .input-group-btn,
.form-inline .input-group .form-control {
    width: auto;
  }
  /* line 3580, app/assets/stylesheets/bootstrap.scss */
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  /* line 3583, app/assets/stylesheets/bootstrap.scss */
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 3587, app/assets/stylesheets/bootstrap.scss */
  .form-inline .radio,
.form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 3594, app/assets/stylesheets/bootstrap.scss */
  .form-inline .radio label,
.form-inline .checkbox label {
    padding-left: 0;
  }
  /* line 3598, app/assets/stylesheets/bootstrap.scss */
  .form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  /* line 3603, app/assets/stylesheets/bootstrap.scss */
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}

/* line 3608, app/assets/stylesheets/bootstrap.scss */
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 11px;
}

/* line 3616, app/assets/stylesheets/bootstrap.scss */
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 31px;
}

/* line 3620, app/assets/stylesheets/bootstrap.scss */
.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px;
}

/* line 3624, app/assets/stylesheets/bootstrap.scss */
.form-horizontal .form-group:before, .form-horizontal .form-group:after {
  content: " ";
  display: table;
}

/* line 3628, app/assets/stylesheets/bootstrap.scss */
.form-horizontal .form-group:after {
  clear: both;
}

@media (min-width: 768px) {
  /* line 3632, app/assets/stylesheets/bootstrap.scss */
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 11px;
  }
}

/* line 3638, app/assets/stylesheets/bootstrap.scss */
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}

@media (min-width: 768px) {
  /* line 3642, app/assets/stylesheets/bootstrap.scss */
  .form-horizontal .form-group-lg .control-label {
    padding-top: 14.33333px;
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  /* line 3648, app/assets/stylesheets/bootstrap.scss */
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}

/* line 3654, app/assets/stylesheets/bootstrap.scss */
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 1.42857;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 3674, app/assets/stylesheets/bootstrap.scss */
.btn:focus, .btn.focus, .btn:active:focus, .btn.focus:active, .btn.active:focus, .btn.active.focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 3679, app/assets/stylesheets/bootstrap.scss */
.btn:hover, .btn:focus, .btn.focus {
  color: #333;
  text-decoration: none;
}

/* line 3683, app/assets/stylesheets/bootstrap.scss */
.btn:active, .btn.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

/* line 3689, app/assets/stylesheets/bootstrap.scss */
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 3697, app/assets/stylesheets/bootstrap.scss */
a.btn.disabled, fieldset[disabled] a.btn {
  pointer-events: none;
}

/* line 3701, app/assets/stylesheets/bootstrap.scss */
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}

/* line 3706, app/assets/stylesheets/bootstrap.scss */
.btn-default:focus, .btn-default.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}

/* line 3711, app/assets/stylesheets/bootstrap.scss */
.btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}

/* line 3716, app/assets/stylesheets/bootstrap.scss */
.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}

/* line 3721, app/assets/stylesheets/bootstrap.scss */
.btn-default:active:hover, .btn-default:active:focus, .btn-default.focus:active, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, .open > .btn-default.dropdown-toggle:hover, .open > .btn-default.dropdown-toggle:focus, .open > .btn-default.dropdown-toggle.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}

/* line 3726, app/assets/stylesheets/bootstrap.scss */
.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
  background-image: none;
}

/* line 3729, app/assets/stylesheets/bootstrap.scss */
.btn-default.disabled, .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default.disabled:active, .btn-default.disabled.active, .btn-default[disabled], .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default.focus[disabled], .btn-default[disabled]:active, .btn-default.active[disabled], fieldset[disabled] .btn-default, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default.focus, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default.active {
  background-color: #fff;
  border-color: #ccc;
}

/* line 3733, app/assets/stylesheets/bootstrap.scss */
.btn-default .badge {
  color: #fff;
  background-color: #333;
}

/* line 3738, app/assets/stylesheets/bootstrap.scss */
.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}

/* line 3743, app/assets/stylesheets/bootstrap.scss */
.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #286090;
  border-color: #122b40;
}

/* line 3748, app/assets/stylesheets/bootstrap.scss */
.btn-primary:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}

/* line 3753, app/assets/stylesheets/bootstrap.scss */
.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}

/* line 3758, app/assets/stylesheets/bootstrap.scss */
.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary.focus:active, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, .open > .btn-primary.dropdown-toggle:hover, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle.focus {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40;
}

/* line 3763, app/assets/stylesheets/bootstrap.scss */
.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
  background-image: none;
}

/* line 3766, app/assets/stylesheets/bootstrap.scss */
.btn-primary.disabled, .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary.disabled:active, .btn-primary.disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary.focus[disabled], .btn-primary[disabled]:active, .btn-primary.active[disabled], fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary.focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary.active {
  background-color: #337ab7;
  border-color: #2e6da4;
}

/* line 3770, app/assets/stylesheets/bootstrap.scss */
.btn-primary .badge {
  color: #337ab7;
  background-color: #fff;
}

/* line 3775, app/assets/stylesheets/bootstrap.scss */
.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}

/* line 3780, app/assets/stylesheets/bootstrap.scss */
.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #449d44;
  border-color: #255625;
}

/* line 3785, app/assets/stylesheets/bootstrap.scss */
.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}

/* line 3790, app/assets/stylesheets/bootstrap.scss */
.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}

/* line 3795, app/assets/stylesheets/bootstrap.scss */
.btn-success:active:hover, .btn-success:active:focus, .btn-success.focus:active, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, .open > .btn-success.dropdown-toggle:hover, .open > .btn-success.dropdown-toggle:focus, .open > .btn-success.dropdown-toggle.focus {
  color: #fff;
  background-color: #398439;
  border-color: #255625;
}

/* line 3800, app/assets/stylesheets/bootstrap.scss */
.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  background-image: none;
}

/* line 3803, app/assets/stylesheets/bootstrap.scss */
.btn-success.disabled, .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success.disabled:active, .btn-success.disabled.active, .btn-success[disabled], .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success.focus[disabled], .btn-success[disabled]:active, .btn-success.active[disabled], fieldset[disabled] .btn-success, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success.focus, fieldset[disabled] .btn-success:active, fieldset[disabled] .btn-success.active {
  background-color: #5cb85c;
  border-color: #4cae4c;
}

/* line 3807, app/assets/stylesheets/bootstrap.scss */
.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}

/* line 3812, app/assets/stylesheets/bootstrap.scss */
.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}

/* line 3817, app/assets/stylesheets/bootstrap.scss */
.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}

/* line 3822, app/assets/stylesheets/bootstrap.scss */
.btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}

/* line 3827, app/assets/stylesheets/bootstrap.scss */
.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}

/* line 3832, app/assets/stylesheets/bootstrap.scss */
.btn-info:active:hover, .btn-info:active:focus, .btn-info.focus:active, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, .open > .btn-info.dropdown-toggle:hover, .open > .btn-info.dropdown-toggle:focus, .open > .btn-info.dropdown-toggle.focus {
  color: #fff;
  background-color: #269abc;
  border-color: #1b6d85;
}

/* line 3837, app/assets/stylesheets/bootstrap.scss */
.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  background-image: none;
}

/* line 3840, app/assets/stylesheets/bootstrap.scss */
.btn-info.disabled, .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info.disabled:active, .btn-info.disabled.active, .btn-info[disabled], .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info.focus[disabled], .btn-info[disabled]:active, .btn-info.active[disabled], fieldset[disabled] .btn-info, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info.focus, fieldset[disabled] .btn-info:active, fieldset[disabled] .btn-info.active {
  background-color: #5bc0de;
  border-color: #46b8da;
}

/* line 3844, app/assets/stylesheets/bootstrap.scss */
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}

/* line 3849, app/assets/stylesheets/bootstrap.scss */
.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}

/* line 3854, app/assets/stylesheets/bootstrap.scss */
.btn-warning:focus, .btn-warning.focus {
  color: #fff;
  background-color: #ec971f;
  border-color: #985f0d;
}

/* line 3859, app/assets/stylesheets/bootstrap.scss */
.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}

/* line 3864, app/assets/stylesheets/bootstrap.scss */
.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}

/* line 3869, app/assets/stylesheets/bootstrap.scss */
.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning.focus:active, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, .open > .btn-warning.dropdown-toggle:hover, .open > .btn-warning.dropdown-toggle:focus, .open > .btn-warning.dropdown-toggle.focus {
  color: #fff;
  background-color: #d58512;
  border-color: #985f0d;
}

/* line 3874, app/assets/stylesheets/bootstrap.scss */
.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  background-image: none;
}

/* line 3877, app/assets/stylesheets/bootstrap.scss */
.btn-warning.disabled, .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning.disabled:active, .btn-warning.disabled.active, .btn-warning[disabled], .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning.focus[disabled], .btn-warning[disabled]:active, .btn-warning.active[disabled], fieldset[disabled] .btn-warning, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning.focus, fieldset[disabled] .btn-warning:active, fieldset[disabled] .btn-warning.active {
  background-color: #f0ad4e;
  border-color: #eea236;
}

/* line 3881, app/assets/stylesheets/bootstrap.scss */
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}

/* line 3886, app/assets/stylesheets/bootstrap.scss */
.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}

/* line 3891, app/assets/stylesheets/bootstrap.scss */
.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #761c19;
}

/* line 3896, app/assets/stylesheets/bootstrap.scss */
.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}

/* line 3901, app/assets/stylesheets/bootstrap.scss */
.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}

/* line 3906, app/assets/stylesheets/bootstrap.scss */
.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger.focus:active, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, .open > .btn-danger.dropdown-toggle:hover, .open > .btn-danger.dropdown-toggle:focus, .open > .btn-danger.dropdown-toggle.focus {
  color: #fff;
  background-color: #ac2925;
  border-color: #761c19;
}

/* line 3911, app/assets/stylesheets/bootstrap.scss */
.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  background-image: none;
}

/* line 3914, app/assets/stylesheets/bootstrap.scss */
.btn-danger.disabled, .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger.disabled:active, .btn-danger.disabled.active, .btn-danger[disabled], .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger.focus[disabled], .btn-danger[disabled]:active, .btn-danger.active[disabled], fieldset[disabled] .btn-danger, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger.focus, fieldset[disabled] .btn-danger:active, fieldset[disabled] .btn-danger.active {
  background-color: #d9534f;
  border-color: #d43f3a;
}

/* line 3918, app/assets/stylesheets/bootstrap.scss */
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}

/* line 3923, app/assets/stylesheets/bootstrap.scss */
.btn-link {
  color: #337ab7;
  font-weight: normal;
  border-radius: 0;
}

/* line 3928, app/assets/stylesheets/bootstrap.scss */
.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 3933, app/assets/stylesheets/bootstrap.scss */
.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
  border-color: transparent;
}

/* line 3936, app/assets/stylesheets/bootstrap.scss */
.btn-link:hover, .btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent;
}

/* line 3941, app/assets/stylesheets/bootstrap.scss */
.btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus {
  color: #777777;
  text-decoration: none;
}

/* line 3946, app/assets/stylesheets/bootstrap.scss */
.btn-lg, .btn-group-lg > .btn {
  padding: 10px 20px;
  font-size: 18px;
  line-height: 1.33333;
  border-radius: 6px;
}

/* line 3953, app/assets/stylesheets/bootstrap.scss */
.btn-sm, .btn-group-sm > .btn {
  padding: 5px 20px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 3960, app/assets/stylesheets/bootstrap.scss */
.btn-xs, .btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 3967, app/assets/stylesheets/bootstrap.scss */
.btn-block {
  display: block;
  width: 100%;
}

/* line 3972, app/assets/stylesheets/bootstrap.scss */
.btn-block + .btn-block {
  margin-top: 5px;
}

/* line 3976, app/assets/stylesheets/bootstrap.scss */
input.btn-block[type="submit"],
input.btn-block[type="reset"],
input.btn-block[type="button"] {
  width: 100%;
}

/* line 3982, app/assets/stylesheets/bootstrap.scss */
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

/* line 3988, app/assets/stylesheets/bootstrap.scss */
.fade.in {
  opacity: 1;
}

/* line 3992, app/assets/stylesheets/bootstrap.scss */
.collapse {
  display: none;
}

/* line 3995, app/assets/stylesheets/bootstrap.scss */
.collapse.in {
  display: block;
}

/* line 3999, app/assets/stylesheets/bootstrap.scss */
tr.collapse.in {
  display: table-row;
}

/* line 4003, app/assets/stylesheets/bootstrap.scss */
tbody.collapse.in {
  display: table-row-group;
}

/* line 4007, app/assets/stylesheets/bootstrap.scss */
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

/* line 4019, app/assets/stylesheets/bootstrap.scss */
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

/* line 4031, app/assets/stylesheets/bootstrap.scss */
.dropup,
.dropdown {
  position: relative;
}

/* line 4036, app/assets/stylesheets/bootstrap.scss */
.dropdown-toggle:focus {
  outline: 0;
}

/* line 4040, app/assets/stylesheets/bootstrap.scss */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}

/* line 4061, app/assets/stylesheets/bootstrap.scss */
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}

/* line 4065, app/assets/stylesheets/bootstrap.scss */
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

/* line 4071, app/assets/stylesheets/bootstrap.scss */
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857;
  color: #333333;
  white-space: nowrap;
}

/* line 4081, app/assets/stylesheets/bootstrap.scss */
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5;
}

/* line 4087, app/assets/stylesheets/bootstrap.scss */
.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #337ab7;
}

/* line 4094, app/assets/stylesheets/bootstrap.scss */
.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  color: #777777;
}

/* line 4097, app/assets/stylesheets/bootstrap.scss */
.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed;
}

/* line 4105, app/assets/stylesheets/bootstrap.scss */
.open > .dropdown-menu {
  display: block;
}

/* line 4108, app/assets/stylesheets/bootstrap.scss */
.open > a {
  outline: 0;
}

/* line 4112, app/assets/stylesheets/bootstrap.scss */
.dropdown-menu-right {
  left: auto;
  right: 0;
}

/* line 4117, app/assets/stylesheets/bootstrap.scss */
.dropdown-menu-left {
  left: 0;
  right: auto;
}

/* line 4122, app/assets/stylesheets/bootstrap.scss */
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857;
  color: #777777;
  white-space: nowrap;
}

/* line 4131, app/assets/stylesheets/bootstrap.scss */
.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}

/* line 4140, app/assets/stylesheets/bootstrap.scss */
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}

/* line 4145, app/assets/stylesheets/bootstrap.scss */
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
  content: "";
}

/* line 4152, app/assets/stylesheets/bootstrap.scss */
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}

@media (min-width: 768px) {
  /* line 4160, app/assets/stylesheets/bootstrap.scss */
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  /* line 4164, app/assets/stylesheets/bootstrap.scss */
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}

/* line 4169, app/assets/stylesheets/bootstrap.scss */
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

/* line 4175, app/assets/stylesheets/bootstrap.scss */
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}

/* line 4180, app/assets/stylesheets/bootstrap.scss */
.btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}

/* line 4188, app/assets/stylesheets/bootstrap.scss */
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}

/* line 4195, app/assets/stylesheets/bootstrap.scss */
.btn-toolbar {
  margin-left: -5px;
}

/* line 4198, app/assets/stylesheets/bootstrap.scss */
.btn-toolbar:before, .btn-toolbar:after {
  content: " ";
  display: table;
}

/* line 4202, app/assets/stylesheets/bootstrap.scss */
.btn-toolbar:after {
  clear: both;
}

/* line 4205, app/assets/stylesheets/bootstrap.scss */
.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}

/* line 4210, app/assets/stylesheets/bootstrap.scss */
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}

/* line 4216, app/assets/stylesheets/bootstrap.scss */
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}

/* line 4220, app/assets/stylesheets/bootstrap.scss */
.btn-group > .btn:first-child {
  margin-left: 0;
}

/* line 4223, app/assets/stylesheets/bootstrap.scss */
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

/* line 4228, app/assets/stylesheets/bootstrap.scss */
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

/* line 4234, app/assets/stylesheets/bootstrap.scss */
.btn-group > .btn-group {
  float: left;
}

/* line 4238, app/assets/stylesheets/bootstrap.scss */
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

/* line 4242, app/assets/stylesheets/bootstrap.scss */
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

/* line 4248, app/assets/stylesheets/bootstrap.scss */
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

/* line 4253, app/assets/stylesheets/bootstrap.scss */
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}

/* line 4258, app/assets/stylesheets/bootstrap.scss */
.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
}

/* line 4263, app/assets/stylesheets/bootstrap.scss */
.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}

/* line 4268, app/assets/stylesheets/bootstrap.scss */
.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

/* line 4272, app/assets/stylesheets/bootstrap.scss */
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 4277, app/assets/stylesheets/bootstrap.scss */
.btn .caret {
  margin-left: 0;
}

/* line 4281, app/assets/stylesheets/bootstrap.scss */
.btn-lg .caret, .btn-group-lg > .btn .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}

/* line 4286, app/assets/stylesheets/bootstrap.scss */
.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret {
  border-width: 0 5px 5px;
}

/* line 4290, app/assets/stylesheets/bootstrap.scss */
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}

/* line 4298, app/assets/stylesheets/bootstrap.scss */
.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
  content: " ";
  display: table;
}

/* line 4302, app/assets/stylesheets/bootstrap.scss */
.btn-group-vertical > .btn-group:after {
  clear: both;
}

/* line 4305, app/assets/stylesheets/bootstrap.scss */
.btn-group-vertical > .btn-group > .btn {
  float: none;
}

/* line 4308, app/assets/stylesheets/bootstrap.scss */
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}

/* line 4316, app/assets/stylesheets/bootstrap.scss */
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}

/* line 4319, app/assets/stylesheets/bootstrap.scss */
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 4324, app/assets/stylesheets/bootstrap.scss */
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-bottom-left-radius: 4px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

/* line 4330, app/assets/stylesheets/bootstrap.scss */
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

/* line 4334, app/assets/stylesheets/bootstrap.scss */
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 4340, app/assets/stylesheets/bootstrap.scss */
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

/* line 4345, app/assets/stylesheets/bootstrap.scss */
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}

/* line 4351, app/assets/stylesheets/bootstrap.scss */
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%;
}

/* line 4357, app/assets/stylesheets/bootstrap.scss */
.btn-group-justified > .btn-group .btn {
  width: 100%;
}

/* line 4360, app/assets/stylesheets/bootstrap.scss */
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}

/* line 4364, app/assets/stylesheets/bootstrap.scss */
[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

/* line 4373, app/assets/stylesheets/bootstrap.scss */
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}

/* line 4378, app/assets/stylesheets/bootstrap.scss */
.input-group[class*="col-"] {
  float: none;
  padding-left: 0;
  padding-right: 0;
}

/* line 4383, app/assets/stylesheets/bootstrap.scss */
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}

/* line 4391, app/assets/stylesheets/bootstrap.scss */
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}

/* line 4396, app/assets/stylesheets/bootstrap.scss */
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}

/* line 4402, app/assets/stylesheets/bootstrap.scss */
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

/* line 4409, app/assets/stylesheets/bootstrap.scss */
.input-group-addon {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555555;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* line 4420, app/assets/stylesheets/bootstrap.scss */
.input-group-addon.input-sm,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .input-group-addon.btn {
  padding: 5px 20px;
  font-size: 12px;
  border-radius: 3px;
}

/* line 4427, app/assets/stylesheets/bootstrap.scss */
.input-group-addon.input-lg,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .input-group-addon.btn {
  padding: 10px 20px;
  font-size: 18px;
  border-radius: 6px;
}

/* line 4434, app/assets/stylesheets/bootstrap.scss */
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}

/* line 4439, app/assets/stylesheets/bootstrap.scss */
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

/* line 4450, app/assets/stylesheets/bootstrap.scss */
.input-group-addon:first-child {
  border-right: 0;
}

/* line 4454, app/assets/stylesheets/bootstrap.scss */
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

/* line 4465, app/assets/stylesheets/bootstrap.scss */
.input-group-addon:last-child {
  border-left: 0;
}

/* line 4469, app/assets/stylesheets/bootstrap.scss */
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}

/* line 4474, app/assets/stylesheets/bootstrap.scss */
.input-group-btn > .btn {
  position: relative;
}

/* line 4477, app/assets/stylesheets/bootstrap.scss */
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}

/* line 4480, app/assets/stylesheets/bootstrap.scss */
.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
  z-index: 2;
}

/* line 4483, app/assets/stylesheets/bootstrap.scss */
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}

/* line 4487, app/assets/stylesheets/bootstrap.scss */
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}

/* line 4493, app/assets/stylesheets/bootstrap.scss */
.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

/* line 4498, app/assets/stylesheets/bootstrap.scss */
.nav:before, .nav:after {
  content: " ";
  display: table;
}

/* line 4502, app/assets/stylesheets/bootstrap.scss */
.nav:after {
  clear: both;
}

/* line 4505, app/assets/stylesheets/bootstrap.scss */
.nav > li {
  position: relative;
  display: block;
}

/* line 4509, app/assets/stylesheets/bootstrap.scss */
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}

/* line 4514, app/assets/stylesheets/bootstrap.scss */
.nav > li > a:hover, .nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}

/* line 4518, app/assets/stylesheets/bootstrap.scss */
.nav > li.disabled > a {
  color: #777777;
}

/* line 4521, app/assets/stylesheets/bootstrap.scss */
.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}

/* line 4527, app/assets/stylesheets/bootstrap.scss */
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #337ab7;
}

/* line 4531, app/assets/stylesheets/bootstrap.scss */
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

/* line 4537, app/assets/stylesheets/bootstrap.scss */
.nav > li > a > img {
  max-width: none;
}

/* line 4541, app/assets/stylesheets/bootstrap.scss */
.nav-tabs {
  border-bottom: 1px solid #ddd;
}

/* line 4544, app/assets/stylesheets/bootstrap.scss */
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}

/* line 4548, app/assets/stylesheets/bootstrap.scss */
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}

/* line 4554, app/assets/stylesheets/bootstrap.scss */
.nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #ddd;
}

/* line 4557, app/assets/stylesheets/bootstrap.scss */
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  color: #555555;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  cursor: default;
}

/* line 4565, app/assets/stylesheets/bootstrap.scss */
.nav-pills > li {
  float: left;
}

/* line 4568, app/assets/stylesheets/bootstrap.scss */
.nav-pills > li > a {
  border-radius: 4px;
}

/* line 4571, app/assets/stylesheets/bootstrap.scss */
.nav-pills > li + li {
  margin-left: 2px;
}

/* line 4574, app/assets/stylesheets/bootstrap.scss */
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #337ab7;
}

/* line 4579, app/assets/stylesheets/bootstrap.scss */
.nav-stacked > li {
  float: none;
}

/* line 4582, app/assets/stylesheets/bootstrap.scss */
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}

/* line 4587, app/assets/stylesheets/bootstrap.scss */
.nav-justified, .nav-tabs.nav-justified {
  width: 100%;
}

/* line 4590, app/assets/stylesheets/bootstrap.scss */
.nav-justified > li, .nav-tabs.nav-justified > li {
  float: none;
}

/* line 4593, app/assets/stylesheets/bootstrap.scss */
.nav-justified > li > a, .nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}

/* line 4597, app/assets/stylesheets/bootstrap.scss */
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}

@media (min-width: 768px) {
  /* line 4602, app/assets/stylesheets/bootstrap.scss */
  .nav-justified > li, .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  /* line 4606, app/assets/stylesheets/bootstrap.scss */
  .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}

/* line 4611, app/assets/stylesheets/bootstrap.scss */
.nav-tabs-justified, .nav-tabs.nav-justified {
  border-bottom: 0;
}

/* line 4614, app/assets/stylesheets/bootstrap.scss */
.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}

/* line 4618, app/assets/stylesheets/bootstrap.scss */
.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd;
}

@media (min-width: 768px) {
  /* line 4626, app/assets/stylesheets/bootstrap.scss */
  .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  /* line 4630, app/assets/stylesheets/bootstrap.scss */
  .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus,
.nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}

/* line 4639, app/assets/stylesheets/bootstrap.scss */
.tab-content > .tab-pane {
  display: none;
}

/* line 4642, app/assets/stylesheets/bootstrap.scss */
.tab-content > .active {
  display: block;
}

/* line 4646, app/assets/stylesheets/bootstrap.scss */
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

/* line 4652, app/assets/stylesheets/bootstrap.scss */
.navbar {
  position: relative;
  min-height: 55px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}

/* line 4658, app/assets/stylesheets/bootstrap.scss */
.navbar:before, .navbar:after {
  content: " ";
  display: table;
}

/* line 4662, app/assets/stylesheets/bootstrap.scss */
.navbar:after {
  clear: both;
}

@media (min-width: 768px) {
  /* line 4666, app/assets/stylesheets/bootstrap.scss */
  .navbar {
    border-radius: 4px;
  }
}

/* line 4671, app/assets/stylesheets/bootstrap.scss */
.navbar-header:before, .navbar-header:after {
  content: " ";
  display: table;
}

/* line 4675, app/assets/stylesheets/bootstrap.scss */
.navbar-header:after {
  clear: both;
}

@media (min-width: 768px) {
  /* line 4679, app/assets/stylesheets/bootstrap.scss */
  .navbar-header {
    float: left;
  }
}

/* line 4684, app/assets/stylesheets/bootstrap.scss */
.navbar-collapse {
  overflow-x: visible;
  padding-right: 15px;
  padding-left: 15px;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}

/* line 4692, app/assets/stylesheets/bootstrap.scss */
.navbar-collapse:before, .navbar-collapse:after {
  content: " ";
  display: table;
}

/* line 4696, app/assets/stylesheets/bootstrap.scss */
.navbar-collapse:after {
  clear: both;
}

/* line 4699, app/assets/stylesheets/bootstrap.scss */
.navbar-collapse.in {
  overflow-y: auto;
}

@media (min-width: 768px) {
  /* line 4703, app/assets/stylesheets/bootstrap.scss */
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  /* line 4708, app/assets/stylesheets/bootstrap.scss */
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  /* line 4714, app/assets/stylesheets/bootstrap.scss */
  .navbar-collapse.in {
    overflow-y: visible;
  }
  /* line 4717, app/assets/stylesheets/bootstrap.scss */
  .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }
}

/* line 4723, app/assets/stylesheets/bootstrap.scss */
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}

@media (max-device-width: 480px) and (orientation: landscape) {
  /* line 4728, app/assets/stylesheets/bootstrap.scss */
  .navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}

/* line 4734, app/assets/stylesheets/bootstrap.scss */
.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}

@media (min-width: 768px) {
  /* line 4742, app/assets/stylesheets/bootstrap.scss */
  .container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}

/* line 4751, app/assets/stylesheets/bootstrap.scss */
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}

@media (min-width: 768px) {
  /* line 4756, app/assets/stylesheets/bootstrap.scss */
  .navbar-static-top {
    border-radius: 0;
  }
}

/* line 4761, app/assets/stylesheets/bootstrap.scss */
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}

@media (min-width: 768px) {
  /* line 4769, app/assets/stylesheets/bootstrap.scss */
  .navbar-fixed-top,
.navbar-fixed-bottom {
    border-radius: 0;
  }
}

/* line 4775, app/assets/stylesheets/bootstrap.scss */
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}

/* line 4780, app/assets/stylesheets/bootstrap.scss */
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}

/* line 4786, app/assets/stylesheets/bootstrap.scss */
.navbar-brand {
  float: left;
  padding: 17.5px 15px;
  font-size: 18px;
  line-height: 20px;
  height: 55px;
}

/* line 4793, app/assets/stylesheets/bootstrap.scss */
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

/* line 4796, app/assets/stylesheets/bootstrap.scss */
.navbar-brand > img {
  display: block;
}

@media (min-width: 768px) {
  /* line 4800, app/assets/stylesheets/bootstrap.scss */
  .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}

/* line 4805, app/assets/stylesheets/bootstrap.scss */
.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: 10.5px;
  margin-bottom: 10.5px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

/* line 4817, app/assets/stylesheets/bootstrap.scss */
.navbar-toggle:focus {
  outline: 0;
}

/* line 4820, app/assets/stylesheets/bootstrap.scss */
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}

/* line 4826, app/assets/stylesheets/bootstrap.scss */
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}

@media (min-width: 768px) {
  /* line 4830, app/assets/stylesheets/bootstrap.scss */
  .navbar-toggle {
    display: none;
  }
}

/* line 4835, app/assets/stylesheets/bootstrap.scss */
.navbar-nav {
  margin: 8.75px -15px;
}

/* line 4838, app/assets/stylesheets/bootstrap.scss */
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}

@media (max-width: 767px) {
  /* line 4844, app/assets/stylesheets/bootstrap.scss */
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  /* line 4853, app/assets/stylesheets/bootstrap.scss */
  .navbar-nav .open .dropdown-menu > li > a,
.navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  /* line 4857, app/assets/stylesheets/bootstrap.scss */
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  /* line 4860, app/assets/stylesheets/bootstrap.scss */
  .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}

@media (min-width: 768px) {
  /* line 4865, app/assets/stylesheets/bootstrap.scss */
  .navbar-nav {
    float: left;
    margin: 0;
  }
  /* line 4869, app/assets/stylesheets/bootstrap.scss */
  .navbar-nav > li {
    float: left;
  }
  /* line 4872, app/assets/stylesheets/bootstrap.scss */
  .navbar-nav > li > a {
    padding-top: 17.5px;
    padding-bottom: 17.5px;
  }
}

/* line 4878, app/assets/stylesheets/bootstrap.scss */
.navbar-form {
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 6.5px;
  margin-bottom: 6.5px;
}

@media (min-width: 768px) {
  /* line 4890, app/assets/stylesheets/bootstrap.scss */
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 4895, app/assets/stylesheets/bootstrap.scss */
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  /* line 4900, app/assets/stylesheets/bootstrap.scss */
  .navbar-form .form-control-static {
    display: inline-block;
  }
  /* line 4903, app/assets/stylesheets/bootstrap.scss */
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  /* line 4907, app/assets/stylesheets/bootstrap.scss */
  .navbar-form .input-group .input-group-addon,
.navbar-form .input-group .input-group-btn,
.navbar-form .input-group .form-control {
    width: auto;
  }
  /* line 4912, app/assets/stylesheets/bootstrap.scss */
  .navbar-form .input-group > .form-control {
    width: 100%;
  }
  /* line 4915, app/assets/stylesheets/bootstrap.scss */
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 4919, app/assets/stylesheets/bootstrap.scss */
  .navbar-form .radio,
.navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 4926, app/assets/stylesheets/bootstrap.scss */
  .navbar-form .radio label,
.navbar-form .checkbox label {
    padding-left: 0;
  }
  /* line 4930, app/assets/stylesheets/bootstrap.scss */
  .navbar-form .radio input[type="radio"],
.navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  /* line 4935, app/assets/stylesheets/bootstrap.scss */
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}

@media (max-width: 767px) {
  /* line 4940, app/assets/stylesheets/bootstrap.scss */
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  /* line 4943, app/assets/stylesheets/bootstrap.scss */
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  /* line 4948, app/assets/stylesheets/bootstrap.scss */
  .navbar-form {
    width: auto;
    border: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

/* line 4960, app/assets/stylesheets/bootstrap.scss */
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

/* line 4966, app/assets/stylesheets/bootstrap.scss */
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 4974, app/assets/stylesheets/bootstrap.scss */
.navbar-btn {
  margin-top: 6.5px;
  margin-bottom: 6.5px;
}

/* line 4978, app/assets/stylesheets/bootstrap.scss */
.navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn {
  margin-top: 12.5px;
  margin-bottom: 12.5px;
}

/* line 4982, app/assets/stylesheets/bootstrap.scss */
.navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn {
  margin-top: 16.5px;
  margin-bottom: 16.5px;
}

/* line 4987, app/assets/stylesheets/bootstrap.scss */
.navbar-text {
  margin-top: 17.5px;
  margin-bottom: 17.5px;
}

@media (min-width: 768px) {
  /* line 4992, app/assets/stylesheets/bootstrap.scss */
  .navbar-text {
    float: left;
    margin-left: 15px;
    margin-right: 15px;
  }
}

@media (min-width: 768px) {
  /* line 5000, app/assets/stylesheets/bootstrap.scss */
  .navbar-left {
    float: left !important;
  }
  /* line 5004, app/assets/stylesheets/bootstrap.scss */
  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  /* line 5008, app/assets/stylesheets/bootstrap.scss */
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}

/* line 5012, app/assets/stylesheets/bootstrap.scss */
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}

/* line 5016, app/assets/stylesheets/bootstrap.scss */
.navbar-default .navbar-brand {
  color: #777;
}

/* line 5019, app/assets/stylesheets/bootstrap.scss */
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}

/* line 5023, app/assets/stylesheets/bootstrap.scss */
.navbar-default .navbar-text {
  color: #777;
}

/* line 5026, app/assets/stylesheets/bootstrap.scss */
.navbar-default .navbar-nav > li > a {
  color: #777;
}

/* line 5029, app/assets/stylesheets/bootstrap.scss */
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}

/* line 5033, app/assets/stylesheets/bootstrap.scss */
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
  color: #555;
  background-color: #e7e7e7;
}

/* line 5037, app/assets/stylesheets/bootstrap.scss */
.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}

/* line 5041, app/assets/stylesheets/bootstrap.scss */
.navbar-default .navbar-toggle {
  border-color: #ddd;
}

/* line 5044, app/assets/stylesheets/bootstrap.scss */
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}

/* line 5047, app/assets/stylesheets/bootstrap.scss */
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}

/* line 5050, app/assets/stylesheets/bootstrap.scss */
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}

/* line 5054, app/assets/stylesheets/bootstrap.scss */
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
  background-color: #e7e7e7;
  color: #555;
}

@media (max-width: 767px) {
  /* line 5059, app/assets/stylesheets/bootstrap.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }
  /* line 5062, app/assets/stylesheets/bootstrap.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent;
  }
  /* line 5066, app/assets/stylesheets/bootstrap.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }
  /* line 5070, app/assets/stylesheets/bootstrap.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}

/* line 5075, app/assets/stylesheets/bootstrap.scss */
.navbar-default .navbar-link {
  color: #777;
}

/* line 5078, app/assets/stylesheets/bootstrap.scss */
.navbar-default .navbar-link:hover {
  color: #333;
}

/* line 5081, app/assets/stylesheets/bootstrap.scss */
.navbar-default .btn-link {
  color: #777;
}

/* line 5084, app/assets/stylesheets/bootstrap.scss */
.navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
  color: #333;
}

/* line 5087, app/assets/stylesheets/bootstrap.scss */
.navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:hover, fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}

/* line 5091, app/assets/stylesheets/bootstrap.scss */
.navbar-inverse {
  background-color: #222;
  border-color: #090909;
}

/* line 5095, app/assets/stylesheets/bootstrap.scss */
.navbar-inverse .navbar-brand {
  color: #9d9d9d;
}

/* line 5098, app/assets/stylesheets/bootstrap.scss */
.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}

/* line 5102, app/assets/stylesheets/bootstrap.scss */
.navbar-inverse .navbar-text {
  color: #9d9d9d;
}

/* line 5105, app/assets/stylesheets/bootstrap.scss */
.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}

/* line 5108, app/assets/stylesheets/bootstrap.scss */
.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}

/* line 5112, app/assets/stylesheets/bootstrap.scss */
.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #090909;
}

/* line 5116, app/assets/stylesheets/bootstrap.scss */
.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}

/* line 5120, app/assets/stylesheets/bootstrap.scss */
.navbar-inverse .navbar-toggle {
  border-color: #333;
}

/* line 5123, app/assets/stylesheets/bootstrap.scss */
.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}

/* line 5126, app/assets/stylesheets/bootstrap.scss */
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}

/* line 5129, app/assets/stylesheets/bootstrap.scss */
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}

/* line 5133, app/assets/stylesheets/bootstrap.scss */
.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
  background-color: #090909;
  color: #fff;
}

@media (max-width: 767px) {
  /* line 5138, app/assets/stylesheets/bootstrap.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #090909;
  }
  /* line 5141, app/assets/stylesheets/bootstrap.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #090909;
  }
  /* line 5144, app/assets/stylesheets/bootstrap.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }
  /* line 5147, app/assets/stylesheets/bootstrap.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
  }
  /* line 5151, app/assets/stylesheets/bootstrap.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #090909;
  }
  /* line 5155, app/assets/stylesheets/bootstrap.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}

/* line 5160, app/assets/stylesheets/bootstrap.scss */
.navbar-inverse .navbar-link {
  color: #9d9d9d;
}

/* line 5163, app/assets/stylesheets/bootstrap.scss */
.navbar-inverse .navbar-link:hover {
  color: #fff;
}

/* line 5166, app/assets/stylesheets/bootstrap.scss */
.navbar-inverse .btn-link {
  color: #9d9d9d;
}

/* line 5169, app/assets/stylesheets/bootstrap.scss */
.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
  color: #fff;
}

/* line 5172, app/assets/stylesheets/bootstrap.scss */
.navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:hover, fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444;
}

/* line 5176, app/assets/stylesheets/bootstrap.scss */
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}

/* line 5183, app/assets/stylesheets/bootstrap.scss */
.breadcrumb > li {
  display: inline-block;
}

/* line 5186, app/assets/stylesheets/bootstrap.scss */
.breadcrumb > li + li:before {
  content: "/ ";
  padding: 0 5px;
  color: #ccc;
}

/* line 5191, app/assets/stylesheets/bootstrap.scss */
.breadcrumb > .active {
  color: #777777;
}

/* line 5195, app/assets/stylesheets/bootstrap.scss */
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}

/* line 5201, app/assets/stylesheets/bootstrap.scss */
.pagination > li {
  display: inline;
}

/* line 5204, app/assets/stylesheets/bootstrap.scss */
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 10px 20px;
  line-height: 1.42857;
  text-decoration: none;
  color: #337ab7;
  background-color: #fff;
  border: 1px solid #ddd;
  margin-left: -1px;
}

/* line 5216, app/assets/stylesheets/bootstrap.scss */
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

/* line 5222, app/assets/stylesheets/bootstrap.scss */
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}

/* line 5227, app/assets/stylesheets/bootstrap.scss */
.pagination > li > a:hover, .pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
  z-index: 3;
  color: #23527c;
  background-color: #eeeeee;
  border-color: #ddd;
}

/* line 5235, app/assets/stylesheets/bootstrap.scss */
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
  z-index: 2;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
  cursor: default;
}

/* line 5245, app/assets/stylesheets/bootstrap.scss */
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777777;
  background-color: #fff;
  border-color: #ddd;
  cursor: not-allowed;
}

/* line 5257, app/assets/stylesheets/bootstrap.scss */
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 20px;
  font-size: 18px;
  line-height: 1.33333;
}

/* line 5263, app/assets/stylesheets/bootstrap.scss */
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}

/* line 5268, app/assets/stylesheets/bootstrap.scss */
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}

/* line 5274, app/assets/stylesheets/bootstrap.scss */
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 20px;
  font-size: 12px;
  line-height: 1.5;
}

/* line 5280, app/assets/stylesheets/bootstrap.scss */
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}

/* line 5285, app/assets/stylesheets/bootstrap.scss */
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

/* line 5291, app/assets/stylesheets/bootstrap.scss */
.pager {
  padding-left: 0;
  margin: 20px 0;
  list-style: none;
  text-align: center;
}

/* line 5297, app/assets/stylesheets/bootstrap.scss */
.pager:before, .pager:after {
  content: " ";
  display: table;
}

/* line 5301, app/assets/stylesheets/bootstrap.scss */
.pager:after {
  clear: both;
}

/* line 5304, app/assets/stylesheets/bootstrap.scss */
.pager li {
  display: inline;
}

/* line 5307, app/assets/stylesheets/bootstrap.scss */
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}

/* line 5315, app/assets/stylesheets/bootstrap.scss */
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}

/* line 5320, app/assets/stylesheets/bootstrap.scss */
.pager .next > a,
.pager .next > span {
  float: right;
}

/* line 5324, app/assets/stylesheets/bootstrap.scss */
.pager .previous > a,
.pager .previous > span {
  float: left;
}

/* line 5328, app/assets/stylesheets/bootstrap.scss */
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777777;
  background-color: #fff;
  cursor: not-allowed;
}

/* line 5337, app/assets/stylesheets/bootstrap.scss */
.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}

/* line 5349, app/assets/stylesheets/bootstrap.scss */
.label:empty {
  display: none;
}

/* line 5352, app/assets/stylesheets/bootstrap.scss */
.btn .label {
  position: relative;
  top: -1px;
}

/* line 5357, app/assets/stylesheets/bootstrap.scss */
a.label:hover, a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/* line 5363, app/assets/stylesheets/bootstrap.scss */
.label-default {
  background-color: #777777;
}

/* line 5366, app/assets/stylesheets/bootstrap.scss */
.label-default[href]:hover, .label-default[href]:focus {
  background-color: #5e5e5e;
}

/* line 5370, app/assets/stylesheets/bootstrap.scss */
.label-primary {
  background-color: #337ab7;
}

/* line 5373, app/assets/stylesheets/bootstrap.scss */
.label-primary[href]:hover, .label-primary[href]:focus {
  background-color: #286090;
}

/* line 5377, app/assets/stylesheets/bootstrap.scss */
.label-success {
  background-color: #5cb85c;
}

/* line 5380, app/assets/stylesheets/bootstrap.scss */
.label-success[href]:hover, .label-success[href]:focus {
  background-color: #449d44;
}

/* line 5384, app/assets/stylesheets/bootstrap.scss */
.label-info {
  background-color: #5bc0de;
}

/* line 5387, app/assets/stylesheets/bootstrap.scss */
.label-info[href]:hover, .label-info[href]:focus {
  background-color: #31b0d5;
}

/* line 5391, app/assets/stylesheets/bootstrap.scss */
.label-warning {
  background-color: #f0ad4e;
}

/* line 5394, app/assets/stylesheets/bootstrap.scss */
.label-warning[href]:hover, .label-warning[href]:focus {
  background-color: #ec971f;
}

/* line 5398, app/assets/stylesheets/bootstrap.scss */
.label-danger {
  background-color: #d9534f;
}

/* line 5401, app/assets/stylesheets/bootstrap.scss */
.label-danger[href]:hover, .label-danger[href]:focus {
  background-color: #c9302c;
}

/* line 5405, app/assets/stylesheets/bootstrap.scss */
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  background-color: #777777;
  border-radius: 10px;
}

/* line 5419, app/assets/stylesheets/bootstrap.scss */
.badge:empty {
  display: none;
}

/* line 5422, app/assets/stylesheets/bootstrap.scss */
.btn .badge {
  position: relative;
  top: -1px;
}

/* line 5426, app/assets/stylesheets/bootstrap.scss */
.btn-xs .badge, .btn-group-xs > .btn .badge, .btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}

/* line 5430, app/assets/stylesheets/bootstrap.scss */
.list-group-item.active > .badge, .nav-pills > .active > a > .badge {
  color: #337ab7;
  background-color: #fff;
}

/* line 5434, app/assets/stylesheets/bootstrap.scss */
.list-group-item > .badge {
  float: right;
}

/* line 5437, app/assets/stylesheets/bootstrap.scss */
.list-group-item > .badge + .badge {
  margin-right: 5px;
}

/* line 5440, app/assets/stylesheets/bootstrap.scss */
.nav-pills > li > a > .badge {
  margin-left: 3px;
}

/* line 5444, app/assets/stylesheets/bootstrap.scss */
a.badge:hover, a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/* line 5450, app/assets/stylesheets/bootstrap.scss */
.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eeeeee;
}

/* line 5457, app/assets/stylesheets/bootstrap.scss */
.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}

/* line 5461, app/assets/stylesheets/bootstrap.scss */
.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}

/* line 5466, app/assets/stylesheets/bootstrap.scss */
.jumbotron > hr {
  border-top-color: #d5d5d5;
}

/* line 5469, app/assets/stylesheets/bootstrap.scss */
.container .jumbotron, .container-fluid .jumbotron {
  border-radius: 6px;
}

/* line 5472, app/assets/stylesheets/bootstrap.scss */
.jumbotron .container {
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  /* line 5476, app/assets/stylesheets/bootstrap.scss */
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  /* line 5480, app/assets/stylesheets/bootstrap.scss */
  .container .jumbotron, .container-fluid .jumbotron {
    padding-left: 60px;
    padding-right: 60px;
  }
  /* line 5484, app/assets/stylesheets/bootstrap.scss */
  .jumbotron h1,
.jumbotron .h1 {
    font-size: 63px;
  }
}

/* line 5490, app/assets/stylesheets/bootstrap.scss */
.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.42857;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: border 0.2s ease-in-out;
  -o-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}

/* line 5502, app/assets/stylesheets/bootstrap.scss */
.thumbnail > img,
.thumbnail a > img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

/* line 5510, app/assets/stylesheets/bootstrap.scss */
.thumbnail .caption {
  padding: 9px;
  color: #333333;
}

/* line 5515, app/assets/stylesheets/bootstrap.scss */
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #337ab7;
}

/* line 5521, app/assets/stylesheets/bootstrap.scss */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

/* line 5527, app/assets/stylesheets/bootstrap.scss */
.alert h4 {
  margin-top: 0;
  color: inherit;
}

/* line 5531, app/assets/stylesheets/bootstrap.scss */
.alert .alert-link {
  font-weight: bold;
}

/* line 5534, app/assets/stylesheets/bootstrap.scss */
.alert > p,
.alert > ul {
  margin-bottom: 0;
}

/* line 5538, app/assets/stylesheets/bootstrap.scss */
.alert > p + p {
  margin-top: 5px;
}

/* line 5542, app/assets/stylesheets/bootstrap.scss */
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}

/* line 5546, app/assets/stylesheets/bootstrap.scss */
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

/* line 5554, app/assets/stylesheets/bootstrap.scss */
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}

/* line 5559, app/assets/stylesheets/bootstrap.scss */
.alert-success hr {
  border-top-color: #c9e2b3;
}

/* line 5562, app/assets/stylesheets/bootstrap.scss */
.alert-success .alert-link {
  color: #2b542c;
}

/* line 5566, app/assets/stylesheets/bootstrap.scss */
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}

/* line 5571, app/assets/stylesheets/bootstrap.scss */
.alert-info hr {
  border-top-color: #a6e1ec;
}

/* line 5574, app/assets/stylesheets/bootstrap.scss */
.alert-info .alert-link {
  color: #245269;
}

/* line 5578, app/assets/stylesheets/bootstrap.scss */
.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}

/* line 5583, app/assets/stylesheets/bootstrap.scss */
.alert-warning hr {
  border-top-color: #f7e1b5;
}

/* line 5586, app/assets/stylesheets/bootstrap.scss */
.alert-warning .alert-link {
  color: #66512c;
}

/* line 5590, app/assets/stylesheets/bootstrap.scss */
.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}

/* line 5595, app/assets/stylesheets/bootstrap.scss */
.alert-danger hr {
  border-top-color: #e4b9c0;
}

/* line 5598, app/assets/stylesheets/bootstrap.scss */
.alert-danger .alert-link {
  color: #843534;
}

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

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

/* line 5618, app/assets/stylesheets/bootstrap.scss */
.progress {
  overflow: hidden;
  height: 20px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

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

/* line 5644, app/assets/stylesheets/bootstrap.scss */
.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
}

/* line 5652, app/assets/stylesheets/bootstrap.scss */
.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}

/* line 5659, app/assets/stylesheets/bootstrap.scss */
.progress-bar-success {
  background-color: #5cb85c;
}

/* line 5662, app/assets/stylesheets/bootstrap.scss */
.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 5668, app/assets/stylesheets/bootstrap.scss */
.progress-bar-info {
  background-color: #5bc0de;
}

/* line 5671, app/assets/stylesheets/bootstrap.scss */
.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 5677, app/assets/stylesheets/bootstrap.scss */
.progress-bar-warning {
  background-color: #f0ad4e;
}

/* line 5680, app/assets/stylesheets/bootstrap.scss */
.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 5686, app/assets/stylesheets/bootstrap.scss */
.progress-bar-danger {
  background-color: #d9534f;
}

/* line 5689, app/assets/stylesheets/bootstrap.scss */
.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 5695, app/assets/stylesheets/bootstrap.scss */
.media {
  margin-top: 15px;
}

/* line 5698, app/assets/stylesheets/bootstrap.scss */
.media:first-child {
  margin-top: 0;
}

/* line 5702, app/assets/stylesheets/bootstrap.scss */
.media,
.media-body {
  zoom: 1;
  overflow: hidden;
}

/* line 5708, app/assets/stylesheets/bootstrap.scss */
.media-body {
  width: 10000px;
}

/* line 5712, app/assets/stylesheets/bootstrap.scss */
.media-object {
  display: block;
}

/* line 5715, app/assets/stylesheets/bootstrap.scss */
.media-object.img-thumbnail {
  max-width: none;
}

/* line 5719, app/assets/stylesheets/bootstrap.scss */
.media-right,
.media > .pull-right {
  padding-left: 10px;
}

/* line 5724, app/assets/stylesheets/bootstrap.scss */
.media-left,
.media > .pull-left {
  padding-right: 10px;
}

/* line 5729, app/assets/stylesheets/bootstrap.scss */
.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}

/* line 5736, app/assets/stylesheets/bootstrap.scss */
.media-middle {
  vertical-align: middle;
}

/* line 5740, app/assets/stylesheets/bootstrap.scss */
.media-bottom {
  vertical-align: bottom;
}

/* line 5744, app/assets/stylesheets/bootstrap.scss */
.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

/* line 5749, app/assets/stylesheets/bootstrap.scss */
.media-list {
  padding-left: 0;
  list-style: none;
}

/* line 5754, app/assets/stylesheets/bootstrap.scss */
.list-group {
  margin-bottom: 20px;
  padding-left: 0;
}

/* line 5759, app/assets/stylesheets/bootstrap.scss */
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}

/* line 5767, app/assets/stylesheets/bootstrap.scss */
.list-group-item:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

/* line 5771, app/assets/stylesheets/bootstrap.scss */
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

/* line 5777, app/assets/stylesheets/bootstrap.scss */
a.list-group-item,
button.list-group-item {
  color: #555;
}

/* line 5781, app/assets/stylesheets/bootstrap.scss */
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333;
}

/* line 5785, app/assets/stylesheets/bootstrap.scss */
a.list-group-item:hover, a.list-group-item:focus,
button.list-group-item:hover,
button.list-group-item:focus {
  text-decoration: none;
  color: #555;
  background-color: #f5f5f5;
}

/* line 5793, app/assets/stylesheets/bootstrap.scss */
button.list-group-item {
  width: 100%;
  text-align: left;
}

/* line 5798, app/assets/stylesheets/bootstrap.scss */
.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
  background-color: #eeeeee;
  color: #777777;
  cursor: not-allowed;
}

/* line 5803, app/assets/stylesheets/bootstrap.scss */
.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}

/* line 5806, app/assets/stylesheets/bootstrap.scss */
.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
  color: #777777;
}

/* line 5809, app/assets/stylesheets/bootstrap.scss */
.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}

/* line 5815, app/assets/stylesheets/bootstrap.scss */
.list-group-item.active .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}

/* line 5824, app/assets/stylesheets/bootstrap.scss */
.list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
  color: #c7ddef;
}

/* line 5828, app/assets/stylesheets/bootstrap.scss */
.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}

/* line 5833, app/assets/stylesheets/bootstrap.scss */
a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d;
}

/* line 5837, app/assets/stylesheets/bootstrap.scss */
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit;
}

/* line 5841, app/assets/stylesheets/bootstrap.scss */
a.list-group-item-success:hover, a.list-group-item-success:focus,
button.list-group-item-success:hover,
button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}

/* line 5847, app/assets/stylesheets/bootstrap.scss */
a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus,
button.list-group-item-success.active,
button.list-group-item-success.active:hover,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}

/* line 5856, app/assets/stylesheets/bootstrap.scss */
.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}

/* line 5861, app/assets/stylesheets/bootstrap.scss */
a.list-group-item-info,
button.list-group-item-info {
  color: #31708f;
}

/* line 5865, app/assets/stylesheets/bootstrap.scss */
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit;
}

/* line 5869, app/assets/stylesheets/bootstrap.scss */
a.list-group-item-info:hover, a.list-group-item-info:focus,
button.list-group-item-info:hover,
button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}

/* line 5875, app/assets/stylesheets/bootstrap.scss */
a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus,
button.list-group-item-info.active,
button.list-group-item-info.active:hover,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}

/* line 5884, app/assets/stylesheets/bootstrap.scss */
.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}

/* line 5889, app/assets/stylesheets/bootstrap.scss */
a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b;
}

/* line 5893, app/assets/stylesheets/bootstrap.scss */
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}

/* line 5897, app/assets/stylesheets/bootstrap.scss */
a.list-group-item-warning:hover, a.list-group-item-warning:focus,
button.list-group-item-warning:hover,
button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}

/* line 5903, app/assets/stylesheets/bootstrap.scss */
a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus,
button.list-group-item-warning.active,
button.list-group-item-warning.active:hover,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}

/* line 5912, app/assets/stylesheets/bootstrap.scss */
.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}

/* line 5917, app/assets/stylesheets/bootstrap.scss */
a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442;
}

/* line 5921, app/assets/stylesheets/bootstrap.scss */
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}

/* line 5925, app/assets/stylesheets/bootstrap.scss */
a.list-group-item-danger:hover, a.list-group-item-danger:focus,
button.list-group-item-danger:hover,
button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}

/* line 5931, app/assets/stylesheets/bootstrap.scss */
a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus,
button.list-group-item-danger.active,
button.list-group-item-danger.active:hover,
button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}

/* line 5940, app/assets/stylesheets/bootstrap.scss */
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

/* line 5945, app/assets/stylesheets/bootstrap.scss */
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}

/* line 5950, app/assets/stylesheets/bootstrap.scss */
.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

/* line 5959, app/assets/stylesheets/bootstrap.scss */
.panel-body {
  padding: 15px;
}

/* line 5962, app/assets/stylesheets/bootstrap.scss */
.panel-body:before, .panel-body:after {
  content: " ";
  display: table;
}

/* line 5966, app/assets/stylesheets/bootstrap.scss */
.panel-body:after {
  clear: both;
}

/* line 5970, app/assets/stylesheets/bootstrap.scss */
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}

/* line 5976, app/assets/stylesheets/bootstrap.scss */
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}

/* line 5980, app/assets/stylesheets/bootstrap.scss */
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}

/* line 5986, app/assets/stylesheets/bootstrap.scss */
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}

/* line 5994, app/assets/stylesheets/bootstrap.scss */
.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 6002, app/assets/stylesheets/bootstrap.scss */
.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}

/* line 6006, app/assets/stylesheets/bootstrap.scss */
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}

/* line 6011, app/assets/stylesheets/bootstrap.scss */
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}

/* line 6017, app/assets/stylesheets/bootstrap.scss */
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 6023, app/assets/stylesheets/bootstrap.scss */
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

/* line 6028, app/assets/stylesheets/bootstrap.scss */
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}

/* line 6032, app/assets/stylesheets/bootstrap.scss */
.list-group + .panel-footer {
  border-top-width: 0;
}

/* line 6036, app/assets/stylesheets/bootstrap.scss */
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}

/* line 6041, app/assets/stylesheets/bootstrap.scss */
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-left: 15px;
  padding-right: 15px;
}

/* line 6047, app/assets/stylesheets/bootstrap.scss */
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}

/* line 6052, app/assets/stylesheets/bootstrap.scss */
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

/* line 6059, app/assets/stylesheets/bootstrap.scss */
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}

/* line 6069, app/assets/stylesheets/bootstrap.scss */
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}

/* line 6079, app/assets/stylesheets/bootstrap.scss */
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 6084, app/assets/stylesheets/bootstrap.scss */
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

/* line 6091, app/assets/stylesheets/bootstrap.scss */
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}

/* line 6101, app/assets/stylesheets/bootstrap.scss */
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}

/* line 6111, app/assets/stylesheets/bootstrap.scss */
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}

/* line 6117, app/assets/stylesheets/bootstrap.scss */
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}

/* line 6121, app/assets/stylesheets/bootstrap.scss */
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}

/* line 6125, app/assets/stylesheets/bootstrap.scss */
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}

/* line 6139, app/assets/stylesheets/bootstrap.scss */
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}

/* line 6153, app/assets/stylesheets/bootstrap.scss */
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}

/* line 6163, app/assets/stylesheets/bootstrap.scss */
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}

/* line 6173, app/assets/stylesheets/bootstrap.scss */
.panel > .table-responsive {
  border: 0;
  margin-bottom: 0;
}

/* line 6178, app/assets/stylesheets/bootstrap.scss */
.panel-group {
  margin-bottom: 20px;
}

/* line 6181, app/assets/stylesheets/bootstrap.scss */
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}

/* line 6185, app/assets/stylesheets/bootstrap.scss */
.panel-group .panel + .panel {
  margin-top: 5px;
}

/* line 6188, app/assets/stylesheets/bootstrap.scss */
.panel-group .panel-heading {
  border-bottom: 0;
}

/* line 6191, app/assets/stylesheets/bootstrap.scss */
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd;
}

/* line 6195, app/assets/stylesheets/bootstrap.scss */
.panel-group .panel-footer {
  border-top: 0;
}

/* line 6198, app/assets/stylesheets/bootstrap.scss */
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}

/* line 6202, app/assets/stylesheets/bootstrap.scss */
.panel-default {
  border-color: #ddd;
}

/* line 6205, app/assets/stylesheets/bootstrap.scss */
.panel-default > .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #ddd;
}

/* line 6210, app/assets/stylesheets/bootstrap.scss */
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}

/* line 6213, app/assets/stylesheets/bootstrap.scss */
.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333333;
}

/* line 6217, app/assets/stylesheets/bootstrap.scss */
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}

/* line 6221, app/assets/stylesheets/bootstrap.scss */
.panel-primary {
  border-color: #337ab7;
}

/* line 6224, app/assets/stylesheets/bootstrap.scss */
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}

/* line 6229, app/assets/stylesheets/bootstrap.scss */
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7;
}

/* line 6232, app/assets/stylesheets/bootstrap.scss */
.panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #fff;
}

/* line 6236, app/assets/stylesheets/bootstrap.scss */
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7;
}

/* line 6240, app/assets/stylesheets/bootstrap.scss */
.panel-success {
  border-color: #d6e9c6;
}

/* line 6243, app/assets/stylesheets/bootstrap.scss */
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

/* line 6248, app/assets/stylesheets/bootstrap.scss */
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}

/* line 6251, app/assets/stylesheets/bootstrap.scss */
.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}

/* line 6255, app/assets/stylesheets/bootstrap.scss */
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}

/* line 6259, app/assets/stylesheets/bootstrap.scss */
.panel-info {
  border-color: #bce8f1;
}

/* line 6262, app/assets/stylesheets/bootstrap.scss */
.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

/* line 6267, app/assets/stylesheets/bootstrap.scss */
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}

/* line 6270, app/assets/stylesheets/bootstrap.scss */
.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}

/* line 6274, app/assets/stylesheets/bootstrap.scss */
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}

/* line 6278, app/assets/stylesheets/bootstrap.scss */
.panel-warning {
  border-color: #faebcc;
}

/* line 6281, app/assets/stylesheets/bootstrap.scss */
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

/* line 6286, app/assets/stylesheets/bootstrap.scss */
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}

/* line 6289, app/assets/stylesheets/bootstrap.scss */
.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}

/* line 6293, app/assets/stylesheets/bootstrap.scss */
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}

/* line 6297, app/assets/stylesheets/bootstrap.scss */
.panel-danger {
  border-color: #ebccd1;
}

/* line 6300, app/assets/stylesheets/bootstrap.scss */
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

/* line 6305, app/assets/stylesheets/bootstrap.scss */
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}

/* line 6308, app/assets/stylesheets/bootstrap.scss */
.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}

/* line 6312, app/assets/stylesheets/bootstrap.scss */
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}

/* line 6316, app/assets/stylesheets/bootstrap.scss */
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

/* line 6323, app/assets/stylesheets/bootstrap.scss */
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}

/* line 6337, app/assets/stylesheets/bootstrap.scss */
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

/* line 6341, app/assets/stylesheets/bootstrap.scss */
.embed-responsive-4by3 {
  padding-bottom: 75%;
}

/* line 6345, app/assets/stylesheets/bootstrap.scss */
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

/* line 6355, app/assets/stylesheets/bootstrap.scss */
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}

/* line 6360, app/assets/stylesheets/bootstrap.scss */
.well-lg {
  padding: 24px;
  border-radius: 6px;
}

/* line 6365, app/assets/stylesheets/bootstrap.scss */
.well-sm {
  padding: 9px;
  border-radius: 3px;
}

/* line 6370, app/assets/stylesheets/bootstrap.scss */
.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}

/* line 6380, app/assets/stylesheets/bootstrap.scss */
.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

/* line 6388, app/assets/stylesheets/bootstrap.scss */
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

/* line 6396, app/assets/stylesheets/bootstrap.scss */
.modal-open {
  overflow: hidden;
}

/* line 6400, app/assets/stylesheets/bootstrap.scss */
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

/* line 6412, app/assets/stylesheets/bootstrap.scss */
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}

/* line 6422, app/assets/stylesheets/bootstrap.scss */
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

/* line 6429, app/assets/stylesheets/bootstrap.scss */
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

/* line 6434, app/assets/stylesheets/bootstrap.scss */
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

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

/* line 6452, app/assets/stylesheets/bootstrap.scss */
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

/* line 6461, app/assets/stylesheets/bootstrap.scss */
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}

/* line 6465, app/assets/stylesheets/bootstrap.scss */
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

/* line 6470, app/assets/stylesheets/bootstrap.scss */
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.42857px;
}

/* line 6476, app/assets/stylesheets/bootstrap.scss */
.modal-header .close {
  margin-top: -2px;
}

/* line 6480, app/assets/stylesheets/bootstrap.scss */
.modal-title {
  margin: 0;
  line-height: 1.42857;
}

/* line 6485, app/assets/stylesheets/bootstrap.scss */
.modal-body {
  position: relative;
  padding: 15px;
}

/* line 6490, app/assets/stylesheets/bootstrap.scss */
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

/* line 6495, app/assets/stylesheets/bootstrap.scss */
.modal-footer:before, .modal-footer:after {
  content: " ";
  display: table;
}

/* line 6499, app/assets/stylesheets/bootstrap.scss */
.modal-footer:after {
  clear: both;
}

/* line 6502, app/assets/stylesheets/bootstrap.scss */
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}

/* line 6506, app/assets/stylesheets/bootstrap.scss */
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

/* line 6509, app/assets/stylesheets/bootstrap.scss */
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

/* line 6513, app/assets/stylesheets/bootstrap.scss */
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 768px) {
  /* line 6522, app/assets/stylesheets/bootstrap.scss */
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  /* line 6527, app/assets/stylesheets/bootstrap.scss */
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  /* line 6532, app/assets/stylesheets/bootstrap.scss */
  .modal-sm {
    width: 300px;
  }
}

@media (min-width: 992px) {
  /* line 6537, app/assets/stylesheets/bootstrap.scss */
  .modal-lg {
    width: 900px;
  }
}

/* line 6541, app/assets/stylesheets/bootstrap.scss */
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 12px;
  opacity: 0;
  filter: alpha(opacity=0);
}

/* line 6564, app/assets/stylesheets/bootstrap.scss */
.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

/* line 6568, app/assets/stylesheets/bootstrap.scss */
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}

/* line 6572, app/assets/stylesheets/bootstrap.scss */
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}

/* line 6576, app/assets/stylesheets/bootstrap.scss */
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}

/* line 6580, app/assets/stylesheets/bootstrap.scss */
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}

/* line 6585, app/assets/stylesheets/bootstrap.scss */
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}

/* line 6594, app/assets/stylesheets/bootstrap.scss */
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

/* line 6602, app/assets/stylesheets/bootstrap.scss */
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

/* line 6609, app/assets/stylesheets/bootstrap.scss */
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

/* line 6616, app/assets/stylesheets/bootstrap.scss */
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

/* line 6623, app/assets/stylesheets/bootstrap.scss */
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}

/* line 6630, app/assets/stylesheets/bootstrap.scss */
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}

/* line 6637, app/assets/stylesheets/bootstrap.scss */
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

/* line 6644, app/assets/stylesheets/bootstrap.scss */
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

/* line 6651, app/assets/stylesheets/bootstrap.scss */
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

/* line 6659, app/assets/stylesheets/bootstrap.scss */
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 14px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* line 6691, app/assets/stylesheets/bootstrap.scss */
.popover.top {
  margin-top: -10px;
}

/* line 6694, app/assets/stylesheets/bootstrap.scss */
.popover.right {
  margin-left: 10px;
}

/* line 6697, app/assets/stylesheets/bootstrap.scss */
.popover.bottom {
  margin-top: 10px;
}

/* line 6700, app/assets/stylesheets/bootstrap.scss */
.popover.left {
  margin-left: -10px;
}

/* line 6704, app/assets/stylesheets/bootstrap.scss */
.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}

/* line 6713, app/assets/stylesheets/bootstrap.scss */
.popover-content {
  padding: 9px 14px;
}

/* line 6717, app/assets/stylesheets/bootstrap.scss */
.popover > .arrow, .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

/* line 6726, app/assets/stylesheets/bootstrap.scss */
.popover > .arrow {
  border-width: 11px;
}

/* line 6730, app/assets/stylesheets/bootstrap.scss */
.popover > .arrow:after {
  border-width: 10px;
  content: "";
}

/* line 6735, app/assets/stylesheets/bootstrap.scss */
.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px;
}

/* line 6743, app/assets/stylesheets/bootstrap.scss */
.popover.top > .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #fff;
}

/* line 6750, app/assets/stylesheets/bootstrap.scss */
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
}

/* line 6758, app/assets/stylesheets/bootstrap.scss */
.popover.right > .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #fff;
}

/* line 6765, app/assets/stylesheets/bootstrap.scss */
.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px;
}

/* line 6773, app/assets/stylesheets/bootstrap.scss */
.popover.bottom > .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #fff;
}

/* line 6780, app/assets/stylesheets/bootstrap.scss */
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}

/* line 6788, app/assets/stylesheets/bootstrap.scss */
.popover.left > .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #fff;
  bottom: -10px;
}

/* line 6796, app/assets/stylesheets/bootstrap.scss */
.carousel {
  position: relative;
}

/* line 6800, app/assets/stylesheets/bootstrap.scss */
.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* line 6805, app/assets/stylesheets/bootstrap.scss */
.carousel-inner > .item {
  display: none;
  position: relative;
  -webkit-transition: 0.6s ease-in-out left;
  -o-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}

/* line 6812, app/assets/stylesheets/bootstrap.scss */
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
  line-height: 1;
}

@media all and (transform-3d), (-webkit-transform-3d) {
  /* line 6820, app/assets/stylesheets/bootstrap.scss */
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    -moz-transition: -moz-transform 0.6s ease-in-out;
    -o-transition: -o-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    perspective: 1000px;
  }
  /* line 6832, app/assets/stylesheets/bootstrap.scss */
  .carousel-inner > .item.next, .carousel-inner > .item.active.right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    left: 0;
  }
  /* line 6837, app/assets/stylesheets/bootstrap.scss */
  .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
  }
  /* line 6842, app/assets/stylesheets/bootstrap.scss */
  .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}

/* line 6848, app/assets/stylesheets/bootstrap.scss */
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}

/* line 6853, app/assets/stylesheets/bootstrap.scss */
.carousel-inner > .active {
  left: 0;
}

/* line 6856, app/assets/stylesheets/bootstrap.scss */
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}

/* line 6862, app/assets/stylesheets/bootstrap.scss */
.carousel-inner > .next {
  left: 100%;
}

/* line 6865, app/assets/stylesheets/bootstrap.scss */
.carousel-inner > .prev {
  left: -100%;
}

/* line 6868, app/assets/stylesheets/bootstrap.scss */
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}

/* line 6872, app/assets/stylesheets/bootstrap.scss */
.carousel-inner > .active.left {
  left: -100%;
}

/* line 6875, app/assets/stylesheets/bootstrap.scss */
.carousel-inner > .active.right {
  left: 100%;
}

/* line 6879, app/assets/stylesheets/bootstrap.scss */
.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

/* line 6892, app/assets/stylesheets/bootstrap.scss */
.carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}

/* line 6899, app/assets/stylesheets/bootstrap.scss */
.carousel-control.right {
  left: auto;
  right: 0;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}

/* line 6908, app/assets/stylesheets/bootstrap.scss */
.carousel-control:hover, .carousel-control:focus {
  outline: 0;
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

/* line 6915, app/assets/stylesheets/bootstrap.scss */
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  z-index: 5;
  display: inline-block;
}

/* line 6925, app/assets/stylesheets/bootstrap.scss */
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}

/* line 6930, app/assets/stylesheets/bootstrap.scss */
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}

/* line 6935, app/assets/stylesheets/bootstrap.scss */
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  line-height: 1;
  font-family: serif;
}

/* line 6942, app/assets/stylesheets/bootstrap.scss */
.carousel-control .icon-prev:before {
  content: '\2039';
}

/* line 6945, app/assets/stylesheets/bootstrap.scss */
.carousel-control .icon-next:before {
  content: '\203a';
}

/* line 6949, app/assets/stylesheets/bootstrap.scss */
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center;
}

/* line 6960, app/assets/stylesheets/bootstrap.scss */
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  border: 1px solid #fff;
  border-radius: 10px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: transparent;
}

/* line 6972, app/assets/stylesheets/bootstrap.scss */
.carousel-indicators .active {
  margin: 0;
  width: 12px;
  height: 12px;
  background-color: #fff;
}

/* line 6979, app/assets/stylesheets/bootstrap.scss */
.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

/* line 6991, app/assets/stylesheets/bootstrap.scss */
.carousel-caption .btn {
  text-shadow: none;
}

@media screen and (min-width: 768px) {
  /* line 6996, app/assets/stylesheets/bootstrap.scss */
  .carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-prev,
.carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 30px;
  }
  /* line 7005, app/assets/stylesheets/bootstrap.scss */
  .carousel-control .glyphicon-chevron-left,
.carousel-control .icon-prev {
    margin-left: -15px;
  }
  /* line 7009, app/assets/stylesheets/bootstrap.scss */
  .carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next {
    margin-right: -15px;
  }
  /* line 7014, app/assets/stylesheets/bootstrap.scss */
  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px;
  }
  /* line 7020, app/assets/stylesheets/bootstrap.scss */
  .carousel-indicators {
    bottom: 20px;
  }
}

/* line 7024, app/assets/stylesheets/bootstrap.scss */
.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}

/* line 7028, app/assets/stylesheets/bootstrap.scss */
.clearfix:after {
  clear: both;
}

/* line 7032, app/assets/stylesheets/bootstrap.scss */
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* line 7038, app/assets/stylesheets/bootstrap.scss */
.pull-right {
  float: right !important;
}

/* line 7042, app/assets/stylesheets/bootstrap.scss */
.pull-left {
  float: left !important;
}

/* line 7046, app/assets/stylesheets/bootstrap.scss */
.hide {
  display: none !important;
}

/* line 7050, app/assets/stylesheets/bootstrap.scss */
.show {
  display: block !important;
}

/* line 7054, app/assets/stylesheets/bootstrap.scss */
.invisible {
  visibility: hidden;
}

/* line 7058, app/assets/stylesheets/bootstrap.scss */
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/* line 7066, app/assets/stylesheets/bootstrap.scss */
.hidden {
  display: none !important;
}

/* line 7070, app/assets/stylesheets/bootstrap.scss */
.affix {
  position: fixed;
}

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

/* line 7077, app/assets/stylesheets/bootstrap.scss */
.visible-xs {
  display: none !important;
}

/* line 7081, app/assets/stylesheets/bootstrap.scss */
.visible-sm {
  display: none !important;
}

/* line 7085, app/assets/stylesheets/bootstrap.scss */
.visible-md {
  display: none !important;
}

/* line 7089, app/assets/stylesheets/bootstrap.scss */
.visible-lg {
  display: none !important;
}

/* line 7093, app/assets/stylesheets/bootstrap.scss */
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  /* line 7109, app/assets/stylesheets/bootstrap.scss */
  .visible-xs {
    display: block !important;
  }
  /* line 7113, app/assets/stylesheets/bootstrap.scss */
  table.visible-xs {
    display: table !important;
  }
  /* line 7117, app/assets/stylesheets/bootstrap.scss */
  tr.visible-xs {
    display: table-row !important;
  }
  /* line 7121, app/assets/stylesheets/bootstrap.scss */
  th.visible-xs,
td.visible-xs {
    display: table-cell !important;
  }
}

@media (max-width: 767px) {
  /* line 7127, app/assets/stylesheets/bootstrap.scss */
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  /* line 7133, app/assets/stylesheets/bootstrap.scss */
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  /* line 7139, app/assets/stylesheets/bootstrap.scss */
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 7145, app/assets/stylesheets/bootstrap.scss */
  .visible-sm {
    display: block !important;
  }
  /* line 7149, app/assets/stylesheets/bootstrap.scss */
  table.visible-sm {
    display: table !important;
  }
  /* line 7153, app/assets/stylesheets/bootstrap.scss */
  tr.visible-sm {
    display: table-row !important;
  }
  /* line 7157, app/assets/stylesheets/bootstrap.scss */
  th.visible-sm,
td.visible-sm {
    display: table-cell !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 7163, app/assets/stylesheets/bootstrap.scss */
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 7169, app/assets/stylesheets/bootstrap.scss */
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 7175, app/assets/stylesheets/bootstrap.scss */
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 7181, app/assets/stylesheets/bootstrap.scss */
  .visible-md {
    display: block !important;
  }
  /* line 7185, app/assets/stylesheets/bootstrap.scss */
  table.visible-md {
    display: table !important;
  }
  /* line 7189, app/assets/stylesheets/bootstrap.scss */
  tr.visible-md {
    display: table-row !important;
  }
  /* line 7193, app/assets/stylesheets/bootstrap.scss */
  th.visible-md,
td.visible-md {
    display: table-cell !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 7199, app/assets/stylesheets/bootstrap.scss */
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 7205, app/assets/stylesheets/bootstrap.scss */
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 7211, app/assets/stylesheets/bootstrap.scss */
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) {
  /* line 7217, app/assets/stylesheets/bootstrap.scss */
  .visible-lg {
    display: block !important;
  }
  /* line 7221, app/assets/stylesheets/bootstrap.scss */
  table.visible-lg {
    display: table !important;
  }
  /* line 7225, app/assets/stylesheets/bootstrap.scss */
  tr.visible-lg {
    display: table-row !important;
  }
  /* line 7229, app/assets/stylesheets/bootstrap.scss */
  th.visible-lg,
td.visible-lg {
    display: table-cell !important;
  }
}

@media (min-width: 1200px) {
  /* line 7235, app/assets/stylesheets/bootstrap.scss */
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  /* line 7241, app/assets/stylesheets/bootstrap.scss */
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1200px) {
  /* line 7247, app/assets/stylesheets/bootstrap.scss */
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  /* line 7253, app/assets/stylesheets/bootstrap.scss */
  .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 7258, app/assets/stylesheets/bootstrap.scss */
  .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 7263, app/assets/stylesheets/bootstrap.scss */
  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  /* line 7268, app/assets/stylesheets/bootstrap.scss */
  .hidden-lg {
    display: none !important;
  }
}

/* line 7272, app/assets/stylesheets/bootstrap.scss */
.visible-print {
  display: none !important;
}

@media print {
  /* line 7277, app/assets/stylesheets/bootstrap.scss */
  .visible-print {
    display: block !important;
  }
  /* line 7281, app/assets/stylesheets/bootstrap.scss */
  table.visible-print {
    display: table !important;
  }
  /* line 7285, app/assets/stylesheets/bootstrap.scss */
  tr.visible-print {
    display: table-row !important;
  }
  /* line 7289, app/assets/stylesheets/bootstrap.scss */
  th.visible-print,
td.visible-print {
    display: table-cell !important;
  }
}

/* line 7294, app/assets/stylesheets/bootstrap.scss */
.visible-print-block {
  display: none !important;
}

@media print {
  /* line 7298, app/assets/stylesheets/bootstrap.scss */
  .visible-print-block {
    display: block !important;
  }
}

/* line 7303, app/assets/stylesheets/bootstrap.scss */
.visible-print-inline {
  display: none !important;
}

@media print {
  /* line 7307, app/assets/stylesheets/bootstrap.scss */
  .visible-print-inline {
    display: inline !important;
  }
}

/* line 7312, app/assets/stylesheets/bootstrap.scss */
.visible-print-inline-block {
  display: none !important;
}

@media print {
  /* line 7316, app/assets/stylesheets/bootstrap.scss */
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  /* line 7322, app/assets/stylesheets/bootstrap.scss */
  .hidden-print {
    display: none !important;
  }
}

/*# sourceMappingURL=bootstrap.css.map */
/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
}
.sf-menu li {
	position: relative;
}
.sf-menu ul {
	position: absolute;
	display: none;
	top: 100%;
	right: 0;
	
	z-index: 99;
}
.sf-menu > li {
	float: left;
}
.sf-menu li:hover > ul,
.sf-menu li.sfHover > ul {
	display: block;
}

.sf-menu a {
	display: block;
	position: relative;
}
.sf-menu ul ul {
	top: 0;
	left: 100%;
}


/*** DEMO SKIN ***/
.sf-menu {
	float: left;
	margin-bottom: 1em;
}
.sf-menu ul {
	box-shadow: 2px 2px 6px rgba(0,0,0,.2);
	min-width: 12em; /* allow long menu items to determine submenu width */
	*width: 12em; /* no auto sub width for IE7, see white-space comment below */
}
.sf-menu a {
	border-left: 1px solid #fff;
	border-top: 1px solid #dFeEFF; /* fallback colour must use full shorthand */
	border-top: 1px solid rgba(255,255,255,.5);
	padding: .75em 1em;
	text-decoration: none;
	zoom: 1; /* IE7 */
}
.sf-menu a {
	color: #13a;
}
.sf-menu li {
	background: #BDD2FF;
	white-space: nowrap; /* no need for Supersubs plugin */
	*white-space: normal; /* ...unless you support IE7 (let it wrap) */
	-webkit-transition: background .2s;
	transition: background .2s;
}
.sf-menu ul li {
	background: #AABDE6;
}
.sf-menu ul ul li {
	background: #9AAEDB;
}
.sf-menu li:hover,
.sf-menu li.sfHover {
	background: #CFDEFF;
	/* only transition out, not in */
	-webkit-transition: none;
	transition: none;
}

/*** arrows (for all except IE7) **/
.sf-arrows .sf-with-ul {
	padding-right: 2.5em;
	*padding-right: 1em; /* no CSS arrows for IE7 (lack pseudo-elements) */
}
/* styling for both css and generated arrows */
.sf-arrows .sf-with-ul:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 1em;
	margin-top: -3px;
	height: 0;
	width: 0;
	/* order of following 3 rules important for fallbacks to work */
	border: 5px solid transparent;
	border-top-color: #dFeEFF; /* edit this to suit design (no rgba in IE8) */
	border-top-color: rgba(255,255,255,.5);
}
.sf-arrows > li > .sf-with-ul:focus:after,
.sf-arrows > li:hover > .sf-with-ul:after,
.sf-arrows > .sfHover > .sf-with-ul:after {
	border-top-color: white; /* IE8 fallback colour */
}
/* styling for right-facing arrows */
.sf-arrows ul .sf-with-ul:after {
	margin-top: -5px;
	/*margin-right: -3px;*/
	border-color: transparent;
	border-left-color: #dFeEFF; /* edit this to suit design (no rgba in IE8) */
	border-left-color: rgba(255,255,255,.5);
}
.sf-arrows ul li > .sf-with-ul:focus:after,
.sf-arrows ul li:hover > .sf-with-ul:after,
.sf-arrows ul .sfHover > .sf-with-ul:after {
	border-left-color: white;
}
.btn-social{position:relative;padding-left:44px;text-align:left;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-size: 10px;border-radius: 0px;border: none;box-shadow: 0px 0px 14px -3px #023f5e inset;}.btn-social :first-child{position:absolute;left:0;top:0;bottom:0;width:32px;line-height:34px;font-size:15px;text-align:center;border-right:1px solid rgba(0,0,0,0.2)}
.btn-social.btn-lg{padding-left:61px}.btn-social.btn-lg :first-child{line-height:45px;width:45px;font-size:1.8em}
.btn-social.btn-sm{padding-left:38px}.btn-social.btn-sm :first-child{line-height:28px;width:28px;font-size:1.4em}
.btn-social.btn-xs{padding-left:30px}.btn-social.btn-xs :first-child{line-height:20px;width:20px;font-size:1.2em}
.btn-social-icon{position:relative;padding-left:44px;text-align:left;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;height:34px;width:34px;padding-left:0;padding-right:0}.btn-social-icon :first-child{position:absolute;left:0;top:0;bottom:0;width:32px;line-height:34px;font-size:1.6em;text-align:center;border-right:1px solid rgba(0,0,0,0.2)}
.btn-social-icon.btn-lg{padding-left:61px}.btn-social-icon.btn-lg :first-child{line-height:45px;width:45px;font-size:1.8em}
.btn-social-icon.btn-sm{padding-left:38px}.btn-social-icon.btn-sm :first-child{line-height:28px;width:28px;font-size:1.4em}
.btn-social-icon.btn-xs{padding-left:30px}.btn-social-icon.btn-xs :first-child{line-height:20px;width:20px;font-size:1.2em}
.btn-social-icon :first-child{border:none;text-align:center;width:100% !important}
.btn-social-icon.btn-lg{height:45px;width:45px;padding-left:0;padding-right:0}
.btn-social-icon.btn-sm{height:30px;width:30px;padding-left:0;padding-right:0}
.btn-social-icon.btn-xs{height:22px;width:22px;padding-left:0;padding-right:0}
.btn-rss {
    color: #fff;
    background-color: #f2a02a;
    border-color: rgba(0,0,0,0.2);
}
.btn-bitbucket{color:#fff;background-color:#205081;border-color:rgba(0,0,0,0.2)}.btn-bitbucket:hover,.btn-bitbucket:focus,.btn-bitbucket:active,.btn-bitbucket.active,.open .dropdown-toggle.btn-bitbucket{color:#fff;background-color:#183c60;border-color:rgba(0,0,0,0.2)}
.btn-bitbucket:active,.btn-bitbucket.active,.open .dropdown-toggle.btn-bitbucket{background-image:none}
.btn-bitbucket.disabled,.btn-bitbucket[disabled],fieldset[disabled] .btn-bitbucket,.btn-bitbucket.disabled:hover,.btn-bitbucket[disabled]:hover,fieldset[disabled] .btn-bitbucket:hover,.btn-bitbucket.disabled:focus,.btn-bitbucket[disabled]:focus,fieldset[disabled] .btn-bitbucket:focus,.btn-bitbucket.disabled:active,.btn-bitbucket[disabled]:active,fieldset[disabled] .btn-bitbucket:active,.btn-bitbucket.disabled.active,.btn-bitbucket[disabled].active,fieldset[disabled] .btn-bitbucket.active{background-color:#205081;border-color:rgba(0,0,0,0.2)}
.btn-dropbox{color:#fff;background-color:#1087dd;border-color:rgba(0,0,0,0.2)}.btn-dropbox:hover,.btn-dropbox:focus,.btn-dropbox:active,.btn-dropbox.active,.open .dropdown-toggle.btn-dropbox{color:#fff;background-color:#0d70b7;border-color:rgba(0,0,0,0.2)}
.btn-dropbox:active,.btn-dropbox.active,.open .dropdown-toggle.btn-dropbox{background-image:none}
.btn-dropbox.disabled,.btn-dropbox[disabled],fieldset[disabled] .btn-dropbox,.btn-dropbox.disabled:hover,.btn-dropbox[disabled]:hover,fieldset[disabled] .btn-dropbox:hover,.btn-dropbox.disabled:focus,.btn-dropbox[disabled]:focus,fieldset[disabled] .btn-dropbox:focus,.btn-dropbox.disabled:active,.btn-dropbox[disabled]:active,fieldset[disabled] .btn-dropbox:active,.btn-dropbox.disabled.active,.btn-dropbox[disabled].active,fieldset[disabled] .btn-dropbox.active{background-color:#1087dd;border-color:rgba(0,0,0,0.2)}
.btn-facebook{color:#fff;background-color:#3b5998;border-color:rgba(0,0,0,0.2)}.btn-facebook:hover,.btn-facebook:focus,.btn-facebook:active,.btn-facebook.active,.open .dropdown-toggle.btn-facebook{color:#fff;background-color:#30487b;border-color:rgba(0,0,0,0.2)}
.btn-facebook:active,.btn-facebook.active,.open .dropdown-toggle.btn-facebook{background-image:none}
.btn-facebook.disabled,.btn-facebook[disabled],fieldset[disabled] .btn-facebook,.btn-facebook.disabled:hover,.btn-facebook[disabled]:hover,fieldset[disabled] .btn-facebook:hover,.btn-facebook.disabled:focus,.btn-facebook[disabled]:focus,fieldset[disabled] .btn-facebook:focus,.btn-facebook.disabled:active,.btn-facebook[disabled]:active,fieldset[disabled] .btn-facebook:active,.btn-facebook.disabled.active,.btn-facebook[disabled].active,fieldset[disabled] .btn-facebook.active{background-color:#3b5998;border-color:rgba(0,0,0,0.2)}
.btn-flickr{color:#fff;background-color:#ff0084;border-color:rgba(0,0,0,0.2)}.btn-flickr:hover,.btn-flickr:focus,.btn-flickr:active,.btn-flickr.active,.open .dropdown-toggle.btn-flickr{color:#fff;background-color:#d6006f;border-color:rgba(0,0,0,0.2)}
.btn-flickr:active,.btn-flickr.active,.open .dropdown-toggle.btn-flickr{background-image:none}
.btn-flickr.disabled,.btn-flickr[disabled],fieldset[disabled] .btn-flickr,.btn-flickr.disabled:hover,.btn-flickr[disabled]:hover,fieldset[disabled] .btn-flickr:hover,.btn-flickr.disabled:focus,.btn-flickr[disabled]:focus,fieldset[disabled] .btn-flickr:focus,.btn-flickr.disabled:active,.btn-flickr[disabled]:active,fieldset[disabled] .btn-flickr:active,.btn-flickr.disabled.active,.btn-flickr[disabled].active,fieldset[disabled] .btn-flickr.active{background-color:#ff0084;border-color:rgba(0,0,0,0.2)}
.btn-github{color:#fff;background-color:#444;border-color:rgba(0,0,0,0.2)}.btn-github:hover,.btn-github:focus,.btn-github:active,.btn-github.active,.open .dropdown-toggle.btn-github{color:#fff;background-color:#303030;border-color:rgba(0,0,0,0.2)}
.btn-github:active,.btn-github.active,.open .dropdown-toggle.btn-github{background-image:none}
.btn-github.disabled,.btn-github[disabled],fieldset[disabled] .btn-github,.btn-github.disabled:hover,.btn-github[disabled]:hover,fieldset[disabled] .btn-github:hover,.btn-github.disabled:focus,.btn-github[disabled]:focus,fieldset[disabled] .btn-github:focus,.btn-github.disabled:active,.btn-github[disabled]:active,fieldset[disabled] .btn-github:active,.btn-github.disabled.active,.btn-github[disabled].active,fieldset[disabled] .btn-github.active{background-color:#444;border-color:rgba(0,0,0,0.2)}
.btn-google-plus{color:#fff;background-color:#dd4b39;border-color:rgba(0,0,0,0.2)}.btn-google-plus:hover,.btn-google-plus:focus,.btn-google-plus:active,.btn-google-plus.active,.open .dropdown-toggle.btn-google-plus{color:#fff;background-color:#ca3523;border-color:rgba(0,0,0,0.2)}
.btn-google-plus:active,.btn-google-plus.active,.open .dropdown-toggle.btn-google-plus{background-image:none}
.btn-google-plus.disabled,.btn-google-plus[disabled],fieldset[disabled] .btn-google-plus,.btn-google-plus.disabled:hover,.btn-google-plus[disabled]:hover,fieldset[disabled] .btn-google-plus:hover,.btn-google-plus.disabled:focus,.btn-google-plus[disabled]:focus,fieldset[disabled] .btn-google-plus:focus,.btn-google-plus.disabled:active,.btn-google-plus[disabled]:active,fieldset[disabled] .btn-google-plus:active,.btn-google-plus.disabled.active,.btn-google-plus[disabled].active,fieldset[disabled] .btn-google-plus.active{background-color:#dd4b39;border-color:rgba(0,0,0,0.2)}
.btn-instagram{color:#fff;background-color:#517fa4;border-color:rgba(0,0,0,0.2)}.btn-instagram:hover,.btn-instagram:focus,.btn-instagram:active,.btn-instagram.active,.open .dropdown-toggle.btn-instagram{color:#fff;background-color:#446a89;border-color:rgba(0,0,0,0.2)}
.btn-instagram:active,.btn-instagram.active,.open .dropdown-toggle.btn-instagram{background-image:none}
.btn-instagram.disabled,.btn-instagram[disabled],fieldset[disabled] .btn-instagram,.btn-instagram.disabled:hover,.btn-instagram[disabled]:hover,fieldset[disabled] .btn-instagram:hover,.btn-instagram.disabled:focus,.btn-instagram[disabled]:focus,fieldset[disabled] .btn-instagram:focus,.btn-instagram.disabled:active,.btn-instagram[disabled]:active,fieldset[disabled] .btn-instagram:active,.btn-instagram.disabled.active,.btn-instagram[disabled].active,fieldset[disabled] .btn-instagram.active{background-color:#517fa4;border-color:rgba(0,0,0,0.2)}
.btn-linkedin{color:#fff;background-color:#007bb6;border-color:rgba(0,0,0,0.2)}.btn-linkedin:hover,.btn-linkedin:focus,.btn-linkedin:active,.btn-linkedin.active,.open .dropdown-toggle.btn-linkedin{color:#fff;background-color:#005f8d;border-color:rgba(0,0,0,0.2)}
.btn-linkedin:active,.btn-linkedin.active,.open .dropdown-toggle.btn-linkedin{background-image:none}
.btn-linkedin.disabled,.btn-linkedin[disabled],fieldset[disabled] .btn-linkedin,.btn-linkedin.disabled:hover,.btn-linkedin[disabled]:hover,fieldset[disabled] .btn-linkedin:hover,.btn-linkedin.disabled:focus,.btn-linkedin[disabled]:focus,fieldset[disabled] .btn-linkedin:focus,.btn-linkedin.disabled:active,.btn-linkedin[disabled]:active,fieldset[disabled] .btn-linkedin:active,.btn-linkedin.disabled.active,.btn-linkedin[disabled].active,fieldset[disabled] .btn-linkedin.active{background-color:#007bb6;border-color:rgba(0,0,0,0.2)}
.btn-pinterest{color:#fff;background-color:#cb2027;border-color:rgba(0,0,0,0.2)}.btn-pinterest:hover,.btn-pinterest:focus,.btn-pinterest:active,.btn-pinterest.active,.open .dropdown-toggle.btn-pinterest{color:#fff;background-color:#a81a20;border-color:rgba(0,0,0,0.2)}
.btn-pinterest:active,.btn-pinterest.active,.open .dropdown-toggle.btn-pinterest{background-image:none}
.btn-pinterest.disabled,.btn-pinterest[disabled],fieldset[disabled] .btn-pinterest,.btn-pinterest.disabled:hover,.btn-pinterest[disabled]:hover,fieldset[disabled] .btn-pinterest:hover,.btn-pinterest.disabled:focus,.btn-pinterest[disabled]:focus,fieldset[disabled] .btn-pinterest:focus,.btn-pinterest.disabled:active,.btn-pinterest[disabled]:active,fieldset[disabled] .btn-pinterest:active,.btn-pinterest.disabled.active,.btn-pinterest[disabled].active,fieldset[disabled] .btn-pinterest.active{background-color:#cb2027;border-color:rgba(0,0,0,0.2)}
.btn-tumblr{color:#fff;background-color:#2c4762;border-color:rgba(0,0,0,0.2)}.btn-tumblr:hover,.btn-tumblr:focus,.btn-tumblr:active,.btn-tumblr.active,.open .dropdown-toggle.btn-tumblr{color:#fff;background-color:#1f3346;border-color:rgba(0,0,0,0.2)}
.btn-tumblr:active,.btn-tumblr.active,.open .dropdown-toggle.btn-tumblr{background-image:none}
.btn-tumblr.disabled,.btn-tumblr[disabled],fieldset[disabled] .btn-tumblr,.btn-tumblr.disabled:hover,.btn-tumblr[disabled]:hover,fieldset[disabled] .btn-tumblr:hover,.btn-tumblr.disabled:focus,.btn-tumblr[disabled]:focus,fieldset[disabled] .btn-tumblr:focus,.btn-tumblr.disabled:active,.btn-tumblr[disabled]:active,fieldset[disabled] .btn-tumblr:active,.btn-tumblr.disabled.active,.btn-tumblr[disabled].active,fieldset[disabled] .btn-tumblr.active{background-color:#2c4762;border-color:rgba(0,0,0,0.2)}
.btn-twitter{color:#fff;background-color:#2ba9e1;border-color:rgba(0,0,0,0.2)}.btn-twitter:hover,.btn-twitter:focus,.btn-twitter:active,.btn-twitter.active,.open .dropdown-toggle.btn-twitter{color:#fff;background-color:#1c92c7;border-color:rgba(0,0,0,0.2)}
.btn-twitter:active,.btn-twitter.active,.open .dropdown-toggle.btn-twitter{background-image:none}
.btn-twitter.disabled,.btn-twitter[disabled],fieldset[disabled] .btn-twitter,.btn-twitter.disabled:hover,.btn-twitter[disabled]:hover,fieldset[disabled] .btn-twitter:hover,.btn-twitter.disabled:focus,.btn-twitter[disabled]:focus,fieldset[disabled] .btn-twitter:focus,.btn-twitter.disabled:active,.btn-twitter[disabled]:active,fieldset[disabled] .btn-twitter:active,.btn-twitter.disabled.active,.btn-twitter[disabled].active,fieldset[disabled] .btn-twitter.active{background-color:#2ba9e1;border-color:rgba(0,0,0,0.2)}
.btn-vk{color:#fff;background-color:#587ea3;border-color:rgba(0,0,0,0.2)}.btn-vk:hover,.btn-vk:focus,.btn-vk:active,.btn-vk.active,.open .dropdown-toggle.btn-vk{color:#fff;background-color:#4a6a89;border-color:rgba(0,0,0,0.2)}
.btn-vk:active,.btn-vk.active,.open .dropdown-toggle.btn-vk{background-image:none}
.btn-vk.disabled,.btn-vk[disabled],fieldset[disabled] .btn-vk,.btn-vk.disabled:hover,.btn-vk[disabled]:hover,fieldset[disabled] .btn-vk:hover,.btn-vk.disabled:focus,.btn-vk[disabled]:focus,fieldset[disabled] .btn-vk:focus,.btn-vk.disabled:active,.btn-vk[disabled]:active,fieldset[disabled] .btn-vk:active,.btn-vk.disabled.active,.btn-vk[disabled].active,fieldset[disabled] .btn-vk.active{background-color:#587ea3;border-color:rgba(0,0,0,0.2)}
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80); }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #cccccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #cccccc; }
    .mfp-preloader a:hover {
      color: white; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none; }
button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: white;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover, .mfp-close:focus {
    opacity: 1;
    filter: alpha(opacity=100); }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333333; }

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: white;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #cccccc;
  font-size: 12px;
  line-height: 18px; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover, .mfp-arrow:focus {
    opacity: 1;
    filter: alpha(opacity=100); }
  .mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after, .mfp-arrow .mfp-a {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before, .mfp-arrow .mfp-b {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
    border-right: 17px solid white;
    margin-left: 31px; }
  .mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
    margin-left: 25px;
    border-right: 27px solid #3f3f3f; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
    border-left: 17px solid white;
    margin-left: 39px; }
  .mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
    border-left: 27px solid #3f3f3f; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: black; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444444; }
  .mfp-figure small {
    color: #bdbdbd;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

.mfp-ie7 .mfp-img {
  padding: 0; }
.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px; }
.mfp-ie7 .mfp-container {
  padding: 0; }
.mfp-ie7 .mfp-content {
  padding-top: 44px; }
.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0; }
/* @font-face {
  font-family: 'icomoon';
  src: url(asset-path('icomoon.eot?srf3rx'));
  src: url(asset-path('icomoon.eot?srf3rx#iefix')) format("embedded-opentype"), 
  url(asset-path('icomoon.ttf?srf3rx')) format("truetype"), 
  url(asset-path('icomoon.woff?srf3rx')) format("woff"), 
  url(asset-path('icomoon.svg?srf3rx#icomoon')) format("svg");
  font-weight: normal;
  font-style: normal;
}*/
/* =======================================================
*
* 	Template Style 
*	Edit this section
*
* ======================================================= */
/* line 20, app/assets/stylesheets/style.scss */
body {
  font-family: 'IBM Plex Sans', sans-serif;
  line-height: 1.6;
  font-size: 16px;
  background: #fff;
  color: #3b3b3b;
}

/* line 27, app/assets/stylesheets/style.scss */
body.fh5co-offcanvas {
  overflow: hidden;
}

/* line 31, app/assets/stylesheets/style.scss */
a {
  color: #23C497;
  -webkit-transition: 0.5s, ease;
  -o-transition: 0.5s, ease;
  transition: 0.5s, ease;
}

/* line 37, app/assets/stylesheets/style.scss */
a:hover {
  text-decoration: none;
  color: #23C497;
}

/* line 42, app/assets/stylesheets/style.scss */
p, ul, ol {
  margin-bottom: 1.5em;
  font-size: 16px;
  color: #535760;
  line-height: 28px;
}

/* line 49, app/assets/stylesheets/style.scss */
h1, h2, h3, h4, h5, h6 {
  color: #0F121D;
  font-weight: 400;
  margin: 0 0 30px 0;
}

/* line 55, app/assets/stylesheets/style.scss */
figure {
  margin-bottom: 2em;
}

/* line 59, app/assets/stylesheets/style.scss */
::-webkit-selection {
  color: #fcfcfc;
  background: #0875bc;
}

/* line 64, app/assets/stylesheets/style.scss */
::-moz-selection {
  color: #fcfcfc;
  background: #0875bc;
}

/* line 69, app/assets/stylesheets/style.scss */
::selection {
  color: #fcfcfc;
  background: #0875bc;
}

/* line 74, app/assets/stylesheets/style.scss */
#fh5co-header {
  position: relative;
  margin-bottom: 0;
  z-index: 9999999;
}

/* line 80, app/assets/stylesheets/style.scss */
.stuck {
  position: fixed !important;
  top: 0 !important;
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
  width: 100%;
  background: #fff;
}

/* line 92, app/assets/stylesheets/style.scss */
ul.top-social-links li a {
  color: #575757;
}

/* line 96, app/assets/stylesheets/style.scss */
ul.top-social-links li a:hover {
  color: #7c9153;
}

/* line 100, app/assets/stylesheets/style.scss */
.top-notice-area > ul {
  border-bottom: 1px solid #d5d5d5;
}

/* line 104, app/assets/stylesheets/style.scss */
.top-notice-area ul li ul {
  padding-bottom: 0px;
}

/* line 108, app/assets/stylesheets/style.scss */
.top-login-links {
  text-align: center;
  height: 100%;
  color: #fff;
  margin: 22px 0;
}

/* line 115, app/assets/stylesheets/style.scss */
.top-login-links a.login {
  color: #0F121D;
  padding: 6px 20px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  transition: all .3s ease;
  margin-right: 20px;
}

/* line 126, app/assets/stylesheets/style.scss */
.top-login-links a.signup {
  color: #fff;
  background: #355694;
  padding: 6px 20px;
  border: 1px solid #355694;
  border-radius: 3px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  transition: all .3s ease;
}

/* line 139, app/assets/stylesheets/style.scss */
.top-login-links a.login span {
  margin-right: 6px;
}

/* line 143, app/assets/stylesheets/style.scss */
.top-login-links a.login:hover {
  color: #23C497 !important;
  transition: all .3s ease;
}

/* line 147, app/assets/stylesheets/style.scss */
.top-login-links a.signup:hover {
  background: #23C497 !important;
  border-color: #23C497 !important;
  color: #fff !important;
  transition: all .3s ease;
}

/* line 155, app/assets/stylesheets/style.scss */
.social-media {
  margin: 5px 0;
}

/* line 158, app/assets/stylesheets/style.scss */
ul.scnd-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
}

/* line 165, app/assets/stylesheets/style.scss */
ul.scnd-menu li {
  display: inline-block;
  margin-right: 25px;
}

/* line 170, app/assets/stylesheets/style.scss */
ul.scnd-menu li:last-child {
  margin-right: 0px;
}

/* line 174, app/assets/stylesheets/style.scss */
ul.scnd-menu li a {
  color: #1c237d;
  font-family: 'IBM Plex Sans';
  font-weight: 100;
  font-size: 16px;
  transition: all .3s ease;
}

/* line 176, app/assets/stylesheets/style.scss */
ul.scnd-menu li a:hover, ul.scnd-menu li a:focus {
  color: #000;
  transition: all .3s ease;
}

/* line 180, app/assets/stylesheets/style.scss */
.container {
  width: 100%;
  max-width: 1200px;
}

/* line 185, app/assets/stylesheets/style.scss */
.b-icon span {
  color: #fff;
  margin: 0 20px;
  font-size: 16px;
}

/* line 190, app/assets/stylesheets/style.scss */
.address-box {
  font-size: 16px;
}

/* line 193, app/assets/stylesheets/style.scss */
.address-box a {
  color: #fff !important;
}

/* line 196, app/assets/stylesheets/style.scss */
.address {
  display: inline-block;
}

/* line 200, app/assets/stylesheets/style.scss */
.phone-no {
  display: inline-block;
}

/* line 204, app/assets/stylesheets/style.scss */
.social-col {
  display: inline-block;
  margin: 0;
  font-size: 16px;
  text-align: center;
}

/* line 210, app/assets/stylesheets/style.scss */
.social-media a {
  display: inline-block;
  margin: 0;
  font-size: 25px;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  margin-right: 5px;
  padding: 0;
  color: #0070c0;
  transition: all .5s ease;
}

/* line 223, app/assets/stylesheets/style.scss */
.social-media a:hover, .social-media a:focus {
  color: #8dc63f;
}

/* line 226, app/assets/stylesheets/style.scss */
.social-media a span {
  transform: scale(1);
  color: #0070c0;
  transition: all .5s ease;
}

/* line 231, app/assets/stylesheets/style.scss */
.social-media a:hover span, .social-media a:focus span {
  color: #8dc63f;
}

/* line 234, app/assets/stylesheets/style.scss */
.social-media a:hover span {
  transform: scale(1.2);
  transition: all .5s ease;
}

/* line 239, app/assets/stylesheets/style.scss */
.logo-bar {
  position: relative;
  padding: 15px 0;
}

/* Superfish Override Menu */
/* line 245, app/assets/stylesheets/style.scss */
.sf-menu {
  margin: 28px auto  28px !important;
  transition: all .3s ease;
}

/* line 249, app/assets/stylesheets/style.scss */
.stuck .sf-menu {
  margin: 28px auto  28px !important;
  transition: all .3s ease;
}

/* line 253, app/assets/stylesheets/style.scss */
.sf-menu {
  float: left;
  width: 100%;
  text-align: right;
}

/*.sf-menu:before {
    content: '';
    position: absolute;
    width: 110%;
    height: 6px;
    background: #01535e;
    bottom: -2px;
    right: 0;
}*/
/* line 267, app/assets/stylesheets/style.scss */
.sf-menu ul {
  box-shadow: none;
  border: transparent;
  min-width: 14em;
  *width: 12em;
}

/* line 273, app/assets/stylesheets/style.scss */
.sf-menu > li {
  float: none;
  display: inline-block;
}

/* line 277, app/assets/stylesheets/style.scss */
.sf-menu a {
  color: #fff;
  padding: 0.25em 1em !important;
  font-weight: normal;
  border-left: none;
  border-top: none;
  border-top: none;
  text-decoration: none;
  zoom: 1;
  font-size: 16px;
  border-bottom: none !important;
  font-weight: 600;
}

/* line 290, app/assets/stylesheets/style.scss */
.stuck .sf-menu a {
  padding: 1.5em 1em !important;
}

/* line 293, app/assets/stylesheets/style.scss */
.sf-menu a:hover, .sf-menu a:focus {
  color: #ff5722 !important;
}

/* line 297, app/assets/stylesheets/style.scss */
.sf-menu li.active a:hover, .sf-menu li.active a:focus {
  color: #ff5722;
}

/* line 301, app/assets/stylesheets/style.scss */
.sf-menu li,
.sf-menu ul li,
.sf-menu ul ul li,
.sf-menu li:hover,
.sf-menu li.sfHover {
  background: transparent;
}

/* line 309, app/assets/stylesheets/style.scss */
.sf-menu ul li a,
.sf-menu ul ul li a {
  text-transform: none;
  padding: 0.2em 1em !important;
  letter-spacing: 1px;
  font-size: 14px !important;
}

/* line 317, app/assets/stylesheets/style.scss */
.sf-menu li:hover a,
.sf-menu li.sfHover a,
.sf-menu ul li:hover a,
.sf-menu ul li.sfHover a,
.sf-menu li.active a {
  color: #ff5722;
}

/* line 325, app/assets/stylesheets/style.scss */
.sf-menu ul li:hover,
.sf-menu ul li.sfHover {
  background: transparent;
}

/* line 330, app/assets/stylesheets/style.scss */
.sf-menu ul li {
  background: transparent;
}

/* line 334, app/assets/stylesheets/style.scss */
.sf-arrows .sf-with-ul {
  padding-right: 1.8em !important;
  padding-right: 1em;
}

/* line 339, app/assets/stylesheets/style.scss */
.sf-arrows .sf-with-ul:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1.5em;
  margin-top: -3px;
  height: 0;
  width: 0;
  border: 5px solid transparent;
  border-top-color: #ccc;
}

/* line 351, app/assets/stylesheets/style.scss */
.sf-arrows > li > .sf-with-ul:focus:after,
.sf-arrows > li:hover > .sf-with-ul:after,
.sf-arrows > .sfHover > .sf-with-ul:after {
  border-top-color: #ccc;
}

/* line 357, app/assets/stylesheets/style.scss */
.sf-arrows ul .sf-with-ul:after {
  margin-top: -5px;
  margin-right: -3px;
  border-color: transparent;
  border-left-color: #ccc;
}

/* line 364, app/assets/stylesheets/style.scss */
.sf-arrows ul li > .sf-with-ul:focus:after,
.sf-arrows ul li:hover > .sf-with-ul:after,
.sf-arrows ul .sfHover > .sf-with-ul:after {
  border-left-color: #ccc;
}

/* line 371, app/assets/stylesheets/style.scss */
#fh5co-header-section {
  padding: 0;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1022;
  background: #fff;
  border-bottom: 0px;
  background-size: cover;
  box-shadow: none;
}

/* line 384, app/assets/stylesheets/style.scss */
#fh5co-header-section nav ul li a {
  font-size: 16px;
  text-transform: capitalize;
  letter-spacing: 0;
  display: block;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
}

/* line 393, app/assets/stylesheets/style.scss */
#fh5co-header-section nav {
  margin: 0px;
}

/* line 396, app/assets/stylesheets/style.scss */
#fh5co-header-section nav ul li {
  margin-right: 65px;
  transition: all .3s ease;
}

/* line 400, app/assets/stylesheets/style.scss */
#fh5co-header-section nav ul li:last-child {
  margin-right: 0 !important;
}

/*#fh5co-header-section nav ul li:before {
    content: ' | ';
    position: absolute;
    top: 10px;
    right: -13px;
    color: #fff;
}*/
/*#fh5co-header-section nav ul li:last-child:before {
    display: none;
}*/
/* line 413, app/assets/stylesheets/style.scss */
#fh5co-header-section nav ul li a {
  color: #0F121D !important;
  transition: all .3s ease;
  position: relative;
}

/*#fh5co-header-section nav ul li a:hover:before, 
#fh5co-header-section nav ul li:hover > a:before, 
#fh5co-header-section nav ul li.active > a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 3px;
    background: #927196;
}*/
/* line 429, app/assets/stylesheets/style.scss */
#fh5co-header-section nav ul li a:hover,
#fh5co-header-section nav ul li:hover > a,
#fh5co-header-section nav ul li.active > a {
  color: #23C497 !important;
  transition: all .3s ease;
}

/* line 435, app/assets/stylesheets/style.scss */
#fh5co-header-section .stuck nav ul li a {
  color: #0F121D !important;
  transition: all .3s ease;
}

/* line 439, app/assets/stylesheets/style.scss */
#fh5co-header-section .stuck nav ul li a:hover,
#fh5co-header-section .stuck nav ul li:hover > a,
#fh5co-header-section .stuck nav ul li.active > a {
  color: #23C497 !important;
  transition: all .3s ease;
}

/* line 445, app/assets/stylesheets/style.scss */
#fh5co-menu-wrap .sf-menu a.sf-withul {
  margin-bottom: 0px;
}

/* line 448, app/assets/stylesheets/style.scss */
.page-with-map #fh5co-header-section nav ul li a {
  color: #1c237d !important;
  transition: all .3s ease;
}

/* line 452, app/assets/stylesheets/style.scss */
.page-with-map #fh5co-header-section nav ul li a:hover,
.page-with-map #fh5co-header-section nav ul li:hover > a,
.page-with-map #fh5co-header-section nav ul li.active > a,
.page-with-map #fh5co-primary-menu .fh5co-sub-menu a {
  color: #fff !important;
  transition: all .3s ease;
}

/*#fh5co-header-section nav ul li a:before, 
#fh5co-header-section nav ul li > a:before, 
#fh5co-header-section nav ul li > a:before{
    content: '';
    position: absolute;
    top: -7px;
    right: 5px;
    width: 100%;
    height: 15px;
    background: url(asset-path('menu-hover-after.png')) no-repeat top right;
    background-size: contain;
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease;
}

#fh5co-header-section nav ul li a:hover:before, 
#fh5co-header-section nav ul li:hover > a:before, 
#fh5co-header-section nav ul li.active > a:before{
      visibility: visible;
    opacity: 1;
    transition: all .3s ease;
}*/
/*
#fh5co-header-section nav ul li ul.dropdown li a:hover {
  color: #fff;
  background: #155159;
  transition: all 0.5s;
}
#fh5co-header-section nav ul li ul.dropdown li.active a {
    background: rgb(21,91,125);
    background: -moz-linear-gradient(top, rgba(21,91,125,1) 0%, rgba(25,100,139,1) 7%, rgba(26,105,146,1) 15%, rgba(16,90,127,1) 54%, rgba(13,86,121,1) 59%, rgba(7,71,106,1) 89%, rgba(4,69,101,1) 100%);
    background: -webkit-linear-gradient(top, rgba(21,91,125,1) 0%,rgba(25,100,139,1) 7%,rgba(26,105,146,1) 15%,rgba(16,90,127,1) 54%,rgba(13,86,121,1) 59%,rgba(7,71,106,1) 89%,rgba(4,69,101,1) 100%);
    background: linear-gradient(to bottom, rgba(21,91,125,1) 0%,rgba(25,100,139,1) 7%,rgba(26,105,146,1) 15%,rgba(16,90,127,1) 54%,rgba(13,86,121,1) 59%,rgba(7,71,106,1) 89%,rgba(4,69,101,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#155b7d', endColorstr='#044565',GradientType=0 );
    color: #fff !important;
}*/
/* line 500, app/assets/stylesheets/style.scss */
#fh5co-header-section nav ul li ul.dropdown {
  position: absolute !important;
  z-index: 999;
  width: 224px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  padding: 10px 35px 10px 10px;
  /* display: none; */
  border-top: 13px solid #094c6f;
  transition: all 1s ease;
}

/* line 510, app/assets/stylesheets/style.scss */
#fh5co-header-section nav ul li:hover ul.dropdown {
  display: block  !important;
  transition: all 1s ease;
}

/* line 514, app/assets/stylesheets/style.scss */
#fh5co-header-section nav ul li ul.dropdown li {
  margin: 0px  !important;
  display: block  !important;
  transition: all 1s ease;
}

/* line 519, app/assets/stylesheets/style.scss */
#fh5co-header-section nav ul li ul.dropdown li a {
  padding: 5px 10px  !important;
  text-transform: capitalize  !important;
  font-size: 13px  !important;
  color: #000 !important;
  transition: all 1s ease;
}

/* line 526, app/assets/stylesheets/style.scss */
#fh5co-header-section nav ul li ul.dropdown li a:before {
  background: #155b7d;
  background: -moz-linear-gradient(top, #155b7d 0%, #19648b 7%, #1a6992 15%, #105a7f 54%, #0d5679 59%, #07476a 89%, #044565 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #155b7d 0%, #19648b 7%, #1a6992 15%, #105a7f 54%, #0d5679 59%, #07476a 89%, #044565 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #155b7d 0%, #19648b 7%, #1a6992 15%, #105a7f 54%, #0d5679 59%, #07476a 89%, #044565 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#155b7d', endColorstr='#044565',GradientType=0 );
  /* IE6-9 */
}

/* line 533, app/assets/stylesheets/style.scss */
#fh5co-header-section nav ul li ul.dropdown li a:hover {
  color: #fff  !important;
  background: #155b7d;
  background: -moz-linear-gradient(top, #155b7d 0%, #19648b 7%, #1a6992 15%, #105a7f 54%, #0d5679 59%, #07476a 89%, #044565 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #155b7d 0%, #19648b 7%, #1a6992 15%, #105a7f 54%, #0d5679 59%, #07476a 89%, #044565 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #155b7d 0%, #19648b 7%, #1a6992 15%, #105a7f 54%, #0d5679 59%, #07476a 89%, #044565 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#155b7d', endColorstr='#044565',GradientType=0 );
  /* IE6-9 */
}

/* line 541, app/assets/stylesheets/style.scss */
#fh5co-header-section nav ul li ul.dropdown li a:after {
  background: none  !important;
  position: static  !important;
}

/* line 546, app/assets/stylesheets/style.scss */
.websearch {
  position: relative;
  margin: 18px auto 0 !important;
}

/* line 551, app/assets/stylesheets/style.scss */
.nav-header {
  position: relative;
  float: left;
  width: 100%;
}

/* line 557, app/assets/stylesheets/style.scss */
#fh5co-logo {
  position: relative;
  z-index: 2;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 700;
  transition: all .3s ease;
}

/*#fh5co-logo img {
    max-width: 120px;
}*/
/* line 568, app/assets/stylesheets/style.scss */
#fh5co-logo span {
  font-weight: 700;
}

/* line 571, app/assets/stylesheets/style.scss */
img.sub-logo {
  max-width: inherit !important;
  position: relative;
  top: 20px;
  left: 25px;
}

/* line 577, app/assets/stylesheets/style.scss */
header .right-logos {
  margin: 10px 0;
}

/* line 580, app/assets/stylesheets/style.scss */
.main-warpper {
  padding: 0;
  position: relative;
}

/*.main-warpper .container-fluid {
    padding-left: 45px;
    padding-right: 45px;
    max-width: 1580px;
}*/
/* line 590, app/assets/stylesheets/style.scss */
.main-warpper p.text-center {
  text-align: center;
}

/* line 593, app/assets/stylesheets/style.scss */
.main-warpper p span {
  color: #ed504d;
}

/* line 599, app/assets/stylesheets/style.scss */
#fh5co-logo a {
  color: #ff5722;
}

/* line 602, app/assets/stylesheets/style.scss */
#fh5co-logo a:hover, #fh5co-logo a:focus {
  color: #ff5722 !important;
}

/* line 606, app/assets/stylesheets/style.scss */
#fh5co-menu-wrap {
  position: relative;
  z-index: 2;
  display: block;
  float: none;
  margin-top: 15px;
}

/* line 613, app/assets/stylesheets/style.scss */
#fh5co-menu-wrap .sf-menu a {
  padding: 0px 0 0px !important;
  border-radius: 0px !important;
}

/* line 617, app/assets/stylesheets/style.scss */
#fh5co-primary-menu > li > ul li.active > a {
  color: #000 !important;
  padding-left: 10px !important;
}

/* line 621, app/assets/stylesheets/style.scss */
#fh5co-primary-menu > li > .sf-with-ul:after {
  border: none !important;
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: initial;
  float: none;
  margin-left: 4px;
  margin-right: -4px;
  top: 50%;
  font-size: 12px;
  margin-top: 0;
  content: "\e922";
  color: #4e4e4e;
  transition: all .3s ease;
}

/* line 643, app/assets/stylesheets/style.scss */
.stuck #fh5co-primary-menu > li > .sf-with-ul:after {
  color: #4e4e4e !important;
  transition: all .3s ease;
}

/* line 647, app/assets/stylesheets/style.scss */
#fh5co-primary-menu > li:hover > .sf-with-ul:after, #fh5co-primary-menu > li > .sf-with-ul:hover:after, .stuck #fh5co-primary-menu > li.active > .sf-with-ul:after {
  color: #000 !important;
  transition: all .3s ease;
}

/* line 651, app/assets/stylesheets/style.scss */
#fh5co-primary-menu > li.active > .sf-with-ul:after {
  color: #000;
}

/* line 654, app/assets/stylesheets/style.scss */
#fh5co-primary-menu > li > ul li {
  position: relative;
}

/* line 657, app/assets/stylesheets/style.scss */
#fh5co-primary-menu > li > ul li > .sf-with-ul:after {
  border: none !important;
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  float: right;
  margin-right: 10px;
  top: 20px;
  font-size: 12px;
  content: "\e924";
  color: rgba(0, 0, 0, 0.5);
}

/* line 678, app/assets/stylesheets/style.scss */
#fh5co-primary-menu .fh5co-sub-menu {
  background: #90a860;
  padding: 0;
  left: 0;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  /* min-width: 285px; */
  text-align: left !important;
}

/* line 694, app/assets/stylesheets/style.scss */
#fh5co-primary-menu .fh5co-sub-menu li {
  margin: 0px;
}

/* line 697, app/assets/stylesheets/style.scss */
#fh5co-primary-menu .fh5co-sub-menu > li > .fh5co-sub-menu {
  left: 100%;
}

/* line 701, app/assets/stylesheets/style.scss */
#fh5co-primary-menu .fh5co-sub-menu:before {
  position: absolute;
  top: -9px;
  left: 20px;
  width: 0;
  height: 0;
  content: '';
}

/* line 710, app/assets/stylesheets/style.scss */
#fh5co-primary-menu .fh5co-sub-menu:after {
  position: absolute;
  top: -8px;
  left: 21px;
  width: 0;
  height: 0;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  border-bottom: 8px solid white;
  border-left: 8px solid transparent;
  content: '';
  display: none;
}

/* line 724, app/assets/stylesheets/style.scss */
#fh5co-primary-menu .fh5co-sub-menu .fh5co-sub-menu:before {
  top: 6px;
  left: 100%;
}

/* line 729, app/assets/stylesheets/style.scss */
#fh5co-primary-menu .fh5co-sub-menu .fh5co-sub-menu:after {
  top: 7px;
  right: 100%;
  border: none !important;
}

/* line 735, app/assets/stylesheets/style.scss */
.site-header.has-image #primary-menu .sub-menu {
  border-color: #ebebeb;
  -webkit-box-shadow: 0 5px 15px 4px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0 5px 15px 4px rgba(0, 0, 0, 0.09);
  -ms-box-shadow: 0 5px 15px 4px rgba(0, 0, 0, 0.09);
  -o-box-shadow: 0 5px 15px 4px rgba(0, 0, 0, 0.09);
  box-shadow: 0 5px 15px 4px rgba(0, 0, 0, 0.09);
}

/* line 743, app/assets/stylesheets/style.scss */
.site-header.has-image #primary-menu .sub-menu:before {
  display: none;
}

/* line 747, app/assets/stylesheets/style.scss */
#fh5co-primary-menu .fh5co-sub-menu a {
  transition: all .5s ease;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 14px !important;
  text-transform: capitalize;
  background: transparent !important;
  padding: 8px 10px !important;
  color: #fff !important;
  border: none !important;
  line-height: normal;
  white-space: break-spaces;
}

/* line 760, app/assets/stylesheets/style.scss */
#fh5co-primary-menu .fh5co-sub-menu a:hover {
  color: #7c9153 !important;
  background: #fff !important;
  transition: all .5s ease;
  padding-left: 10px !important;
}

/* line 766, app/assets/stylesheets/style.scss */
#fh5co-header-section .stuck #fh5co-primary-menu .fh5co-sub-menu a {
  color: #fff !important;
  transition: all .5s ease;
}

/* line 770, app/assets/stylesheets/style.scss */
#fh5co-primary-menu .fh5co-sub-menu li a:before {
  display: none !important;
}

/* line 773, app/assets/stylesheets/style.scss */
#fh5co-work-section,
#fh5co-services-section,
#fh5co-content-section,
#fh5co-work-section_2,
#fh5co-blog-section,
#fh5co-features {
  padding: 7em 0;
}

@media screen and (max-width: 768px) {
  /* line 782, app/assets/stylesheets/style.scss */
  #fh5co-work-section,
#fh5co-services-section,
#fh5co-content-section,
#fh5co-work-section_2,
#fh5co-blog-section,
#fh5co-features {
    padding: 4em 0;
  }
}

/* line 792, app/assets/stylesheets/style.scss */
.fh5co-section-gray {
  background: rgba(0, 0, 0, 0.04);
}

/* line 796, app/assets/stylesheets/style.scss */
.heading-section {
  padding-bottom: 1em;
  margin-bottom: 5em;
}

/* line 800, app/assets/stylesheets/style.scss */
.heading-section:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 50%;
  width: 100px;
  margin-left: -50px;
  height: 2px;
  background: #ff5722;
}

/* line 810, app/assets/stylesheets/style.scss */
.heading-section h3 {
  font-size: 40px;
  font-weight: 300;
  position: relative;
}

/* line 815, app/assets/stylesheets/style.scss */
.heading-section p {
  font-size: 20px;
}

/* line 819, app/assets/stylesheets/style.scss */
.feature-text h3 {
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #000;
  letter-spacing: .2em;
}

/* line 827, app/assets/stylesheets/style.scss */
.feature-text h3 .number {
  margin-right: 5px;
  color: #ff5722;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

/* line 836, app/assets/stylesheets/style.scss */
#gtco-footer {
  clear: both;
  position: relative;
  padding: 5em 0em 3em;
  background: #fff;
}

/*

.sub-to-news-wrap {
    position: relative;
    padding: 55px 30px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0px 0px 25px -17px #000;
    margin: 160px 0 60px;
}


.sub-to-news-wrap input[type=email] {
    padding: 12px 20px;
    margin: 9px 0;
    box-sizing: border-box;
    border-radius: 30px;
    border: none;
    outline: none;
    width: 55%;
    height: 20%;
    text-align: left;
    background: #f2f2f2;
    transition: all .3s ease;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #797979;
        margin-right: 5px;
}
.sub-to-news-wrap input[type=email]:hover {
    transition: all .3s ease;
}
.sub-to-news-wrap input[type=email]::placeholder { 
    color: #797979;
    opacity: 1;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    text-align: left;


}
.sub-to-news-wrap button{
  height: 50px;
  padding: 0;
  margin: 0;
  
}
.sub-to-news-wrap .btn{
  border-radius: 30px;
  width: 14%;
  margin-left: 5px;
  font-size: 20px;

}

@media(max-width: 992px){
  .sub-to-news-wrap .btn{
    width: 20%
  }
  .sub-to-news-wrap input[type=email]{
    width: 50%;
  }
}
@media(max-width: 768px){
  .sub-to-news-wrap  .btn{
    width: 40%
  }
  .sub-to-news-wrap input[type=email]{
    width: 90%;
  }
}
@media(max-width: 440px){
  .sub-to-news-wrap  .btn{
    width: 50%;
    font-size: 18px;
  }
  .sub-to-news-wrap input[type=email]{
    width: 100%;
  }
}*/
/* line 924, app/assets/stylesheets/style.scss */
#gtco-footer .heading-with-sub p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  margin-bottom: 5px;
  color: #927196;
}

/* line 931, app/assets/stylesheets/style.scss */
#gtco-footer .row.row-pb-md {
  margin: 0;
}

/* line 934, app/assets/stylesheets/style.scss */
.footer-links {
  font-size: 14px !important;
  font-weight: 400;
  display: inline-block;
  font-family: 'IBM Plex Sans', sans-serif;
  color: #927196 !important;
  line-height: normal;
}

/* line 942, app/assets/stylesheets/style.scss */
.footer-links a {
  text-transform: none;
  letter-spacing: 0;
  word-spacing: 0;
  font-size: 14px !important;
  font-weight: 400;
  display: inline-block;
  margin: 5px !important;
  font-family: 'IBM Plex Sans', sans-serif;
  color: #515151 !important;
  line-height: normal;
}

/* line 954, app/assets/stylesheets/style.scss */
.footer-links a:hover {
  text-decoration: underline;
}

/* line 957, app/assets/stylesheets/style.scss */
#gtco-footer hr {
  border-color: #cccccc;
}

/* line 960, app/assets/stylesheets/style.scss */
#gtco-footer .gtco-widget {
  margin-bottom: 30px;
  color: #fff;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
  word-spacing: 0px;
}

/* line 969, app/assets/stylesheets/style.scss */
.social-links {
  position: relative;
  margin-bottom: 10px;
  margin-top: 25px;
}

/* line 975, app/assets/stylesheets/style.scss */
.social-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 981, app/assets/stylesheets/style.scss */
.social-links ul li {
  display: inline-block;
}

/* line 985, app/assets/stylesheets/style.scss */
.social-links ul li a {
  padding: 0px 5px;
  line-height: normal;
  background: #01b1d7;
  color: #fff;
}

/* line 992, app/assets/stylesheets/style.scss */
#gtco-footer .social-links {
  margin-bottom: 0px !important;
}

/* line 996, app/assets/stylesheets/style.scss */
#gtco-footer .social-links ul li a {
  background: transparent;
  border: 1px solid #F4F7FE;
  color: #355694;
  width: 50px;
  height: 45px;
  display: inline-block;
  line-height: 45px;
  border-radius: 5px;
  background: #F4F7FE;
  font-size: 20px;
  transition: all .3s ease;
  margin-right: 8px;
}

/* line 1011, app/assets/stylesheets/style.scss */
#gtco-footer .social-links ul li a:hover {
  color: #F4F7FE;
  border-color: #F4F7FE;
  background: #355694;
  transition: all .3s ease;
}

/* line 1018, app/assets/stylesheets/style.scss */
.gtco-widget ul.scnd-menu li {
  margin-right: 5px;
  text-align: left;
  font-size: 14px;
}

/* line 1024, app/assets/stylesheets/style.scss */
.gtco-widget ul.scnd-menu {
  text-align: left;
  font-size: 14px;
}

/* line 1029, app/assets/stylesheets/style.scss */
.gtco-widget ul.scnd-menu li a {
  font-size: 14px;
  text-transform: capitalize;
  color: #666568;
}

/* line 1034, app/assets/stylesheets/style.scss */
#gtco-footer .gtco-widget p, #gtco-footer .gtco-widget .links a {
  color: #383838;
  font-size: 14px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 5px;
  text-transform: capitalize;
}

/* line 1043, app/assets/stylesheets/style.scss */
#gtco-footer .gtco-widget .call-us {
  font-size: 24px;
  color: #3b3b3b;
  font-family: 'Roboto', sans-serif;
  text-transform: capitalize;
  margin-top: 10px;
}

/* line 1051, app/assets/stylesheets/style.scss */
#gtco-footer .gtco-widget .call-us a {
  font-weight: 600;
}

/* line 1054, app/assets/stylesheets/style.scss */
#gtco-footer .gtco-widget .call-us a:hover {
  color: #3f9dc2 !important;
}

/* line 1057, app/assets/stylesheets/style.scss */
.links.two-cols ul li {
  float: left;
  width: 50%;
}

/* line 1061, app/assets/stylesheets/style.scss */
.gtco-widget.footer-info p, .gtco-widget.footer-info a {
  color: #3b3b3b !important;
  font-family: 'IBM Plex Sans';
  text-transform: initial;
  font-size: 20px !important;
  line-height: 32px !important;
  font-weight: 400 !important;
}

/* line 1069, app/assets/stylesheets/style.scss */
.gtco-widget .heading h2, .gtco-widget .heading h2 a {
  font-size: 20px;
  font-family: 'IBM Plex Sans';
  color: #02abcf;
  line-height: normal;
  margin-bottom: 15px;
  text-transform: capitalize;
  font-weight: 400 !important;
}

/* line 1078, app/assets/stylesheets/style.scss */
.gtco-widget p {
  font-size: 15px;
  margin-top: 15px;
}

/* line 1082, app/assets/stylesheets/style.scss */
#gtco-footer h3 {
  margin-bottom: 0;
  font-weight: 300;
  font-size: 16px;
  /* letter-spacing: 1px; */
  /* text-transform: uppercase; */
  color: #fff;
}

/* line 1090, app/assets/stylesheets/style.scss */
#gtco-footer .address-box {
  font-size: 15px;
}

/* line 1093, app/assets/stylesheets/style.scss */
#gtco-footer .address-box a {
  color: #fff !important;
}

/* line 1096, app/assets/stylesheets/style.scss */
#gtco-footer .address-box ul {
  padding: 0px;
  list-style-type: none;
  font-size: 15px;
}

/* line 1101, app/assets/stylesheets/style.scss */
#gtco-footer .address-box ul li {
  margin-bottom: 8px;
}

/* line 1104, app/assets/stylesheets/style.scss */
#gtco-footer .address-box ul li span {
  color: #890304;
  margin-right: 5px;
  font-weight: 600;
}

/* line 1109, app/assets/stylesheets/style.scss */
#gtco-footer .social-media a {
  color: #fe1b24;
  font-size: 30px;
}

/* line 1113, app/assets/stylesheets/style.scss */
#gtco-footer .social-media a:hover {
  color: #231f20;
}

/* line 1116, app/assets/stylesheets/style.scss */
#gtco-footer .social-media {
  margin-top: 15px;
  margin-bottom: 20px;
  text-align: center !important;
}

/* line 1121, app/assets/stylesheets/style.scss */
#gtco-footer .social-media .social-col {
  display: inline-block;
}

/* line 1125, app/assets/stylesheets/style.scss */
.footer-nav {
  position: relative;
  margin-top: 0px;
}

/* line 1130, app/assets/stylesheets/style.scss */
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: normal;
}

/* line 1137, app/assets/stylesheets/style.scss */
.footer-nav ul li {
  display: inline-block;
  line-height: normal;
  margin-right: 45px;
  position: relative;
}

/* line 1144, app/assets/stylesheets/style.scss */
.footer-nav ul li:last-child {
  margin: 0;
}

/* line 1147, app/assets/stylesheets/style.scss */
.footer-nav ul li:before {
  content: ' | ';
  position: absolute;
  top: -1px;
  right: -28px;
  color: #02cab8;
}

/* line 1154, app/assets/stylesheets/style.scss */
.footer-nav ul li:last-child:before {
  display: none;
}

/* line 1157, app/assets/stylesheets/style.scss */
.footer-nav ul li a {
  font-family: 'Roboto', sans-serif;
  color: #02cab8 !important;
  font-size: 14px !important;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  transition: all .3s ease !important;
}

/* line 1166, app/assets/stylesheets/style.scss */
.footer-nav ul li a:hover {
  color: #3f9dc2 !important;
}

/* line 1169, app/assets/stylesheets/style.scss */
.copyright {
  background: #fff;
  padding: 13px 0 11px;
  text-align: center;
  margin-top: 0;
  font-size: 14px;
  color: #383838;
}

/* line 1177, app/assets/stylesheets/style.scss */
.copyright p {
  margin: 5px 0px 10px;
  color: #383838 !important;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

/* line 1185, app/assets/stylesheets/style.scss */
#gtco-footer .gtco-widget .widget-head {
  font-family: 'IBM Plex Sans', sans-serif;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 18px;
  text-align: left;
  margin-bottom: 20px;
}

/* line 1195, app/assets/stylesheets/style.scss */
.btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

/* line 1201, app/assets/stylesheets/style.scss */
.btn {
  text-transform: uppercase;
  letter-spacing: 2px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

/* line 1208, app/assets/stylesheets/style.scss */
.btn.btn-primary {
  background: #ff5722;
  color: #fff;
  border: none !important;
  border: 2px solid transparent !important;
}

/* line 1214, app/assets/stylesheets/style.scss */
.btn.btn-primary:hover, .btn.btn-primary:active, .btn.btn-primary:focus {
  box-shadow: none;
  background: #ff5722;
  color: #fff !important;
}

/* line 1219, app/assets/stylesheets/style.scss */
.btn:hover, .btn:active, .btn:focus {
  background: #393e46 !important;
  color: #fff;
  outline: none !important;
}

/* line 1224, app/assets/stylesheets/style.scss */
.btn.btn-default:hover, .btn.btn-default:focus, .btn.btn-default:active {
  border-color: transparent;
}

/* line 1228, app/assets/stylesheets/style.scss */
.js .animate-box {
  opacity: 0;
}

/* line 1232, app/assets/stylesheets/style.scss */
#fh5co-wrapper {
  overflow-x: hidden;
  position: relative;
}

/* line 1237, app/assets/stylesheets/style.scss */
.fh5co-offcanvas {
  overflow: hidden;
}

/* line 1240, app/assets/stylesheets/style.scss */
.fh5co-offcanvas #fh5co-wrapper {
  overflow: hidden !important;
}

/* line 1244, app/assets/stylesheets/style.scss */
#fh5co-page {
  position: relative;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

/* line 1250, app/assets/stylesheets/style.scss */
.fh5co-offcanvas #fh5co-page {
  -moz-transform: translateX(-240px);
  -webkit-transform: translateX(-240px);
  -ms-transform: translateX(-240px);
  -o-transform: translateX(-240px);
  transform: translateX(-240px);
}

/* line 1260, app/assets/stylesheets/style.scss */
#gtco-footer .gtco-widget p.footer-text {
  color: #535760;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  line-height: 26px;
  margin: 0 !important;
}

/* line 1268, app/assets/stylesheets/style.scss */
#gtco-footer .gtco-widget .footer-links .footer-links-head {
  font-family: 'IBM Plex Sans', sans-serif;
  text-transform: capitalize;
  color: #030514;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 30px;
  display: block;
}

/* line 1278, app/assets/stylesheets/style.scss */
#gtco-footer .gtco-widget .footer-links a {
  font-size: 16px !important;
  margin: 0  !important;
  margin-bottom: 15px !important;
}

/* line 1284, app/assets/stylesheets/style.scss */
#gtco-footer .gtco-widget p.copyright-text {
  font-size: 14px;
  color: #BBBBBB;
}

@media screen and (max-width: 991px) {
  /* line 1291, app/assets/stylesheets/style.scss */
  #fh5co-menu-wrap {
    display: none;
  }
}

/* line 1296, app/assets/stylesheets/style.scss */
#offcanvas-menu {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 99;
  background: #222;
  right: -240px;
  width: 240px;
  padding: 20px;
  overflow-y: scroll !important;
  display: none;
}

@media screen and (max-width: 991px) {
  /* line 1309, app/assets/stylesheets/style.scss */
  #offcanvas-menu {
    display: block;
  }
}

/* line 1313, app/assets/stylesheets/style.scss */
#offcanvas-menu ul {
  padding: 0;
  margin: 0;
}

/* line 1317, app/assets/stylesheets/style.scss */
#offcanvas-menu ul li {
  padding: 0;
  margin: 0 0 10px 0;
  list-style: none;
}

/* line 1322, app/assets/stylesheets/style.scss */
#offcanvas-menu ul li a {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.4);
}

/* line 1326, app/assets/stylesheets/style.scss */
#offcanvas-menu ul li a:hover {
  color: #02cab8;
}

/* line 1329, app/assets/stylesheets/style.scss */
#offcanvas-menu ul li > .fh5co-sub-menu {
  margin-top: 9px;
  padding-left: 20px;
}

/* line 1333, app/assets/stylesheets/style.scss */
#offcanvas-menu ul li.active > a {
  color: #92aa63;
}

/* line 1336, app/assets/stylesheets/style.scss */
#offcanvas-menu ul .fh5co-sub-menu {
  display: block !important;
}

/* line 1339, app/assets/stylesheets/style.scss */
#offcanvas-menu .top-login-links {
  height: auto;
  margin: 22px 0px;
  text-align: left;
}

/* line 1345, app/assets/stylesheets/style.scss */
#offcanvas-menu .top-login-links * {
  color: #fff;
}

/* line 1349, app/assets/stylesheets/style.scss */
#offcanvas-menu .top-login-links a.login {
  margin-right: 0px;
  margin-bottom: 10px;
  margin-top: 10px;
}

/* line 1355, app/assets/stylesheets/style.scss */
.fh5co-nav-toggle {
  cursor: pointer;
  text-decoration: none;
}

/* line 1359, app/assets/stylesheets/style.scss */
.fh5co-nav-toggle.active i::before, .fh5co-nav-toggle.active i::after {
  background: #fff;
}

/* line 1362, app/assets/stylesheets/style.scss */
.fh5co-nav-toggle.dark.active i::before, .fh5co-nav-toggle.dark.active i::after {
  background: #fff;
}

/* line 1365, app/assets/stylesheets/style.scss */
.fh5co-nav-toggle:hover, .fh5co-nav-toggle:focus, .fh5co-nav-toggle:active {
  outline: none;
  border-bottom: none !important;
}

/* line 1369, app/assets/stylesheets/style.scss */
.fh5co-nav-toggle i {
  position: relative;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  width: 30px;
  height: 2px;
  color: #23c497;
  font: bold 14px/.4 Helvetica;
  text-transform: uppercase;
  text-indent: -55px;
  background: #23c497;
  transition: all .2s ease-out;
}

/* line 1383, app/assets/stylesheets/style.scss */
.fh5co-nav-toggle i::before, .fh5co-nav-toggle i::after {
  content: '';
  width: 30px;
  height: 2px;
  background: #23c497;
  position: absolute;
  left: 0;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

/* line 1394, app/assets/stylesheets/style.scss */
.stuck .fh5co-nav-toggle i {
  background: #23c497;
  color: #fff;
}

/* line 1398, app/assets/stylesheets/style.scss */
.stuck .fh5co-nav-toggle i::before, .stuck .fh5co-nav-toggle i::after {
  background: #23c497;
  color: #fff;
}

/* line 1402, app/assets/stylesheets/style.scss */
.fh5co-nav-toggle.dark i {
  position: relative;
  color: #000;
  background: #000;
  transition: all .2s ease-out;
}

/* line 1408, app/assets/stylesheets/style.scss */
.fh5co-nav-toggle.dark i::before, .fh5co-nav-toggle.dark i::after {
  background: #000;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

/* line 1415, app/assets/stylesheets/style.scss */
.fh5co-nav-toggle i::before {
  top: -7px;
}

/* line 1419, app/assets/stylesheets/style.scss */
.fh5co-nav-toggle i::after {
  bottom: -7px;
}

/* line 1423, app/assets/stylesheets/style.scss */
.fh5co-nav-toggle:hover i::before {
  top: -10px;
}

/* line 1427, app/assets/stylesheets/style.scss */
.fh5co-nav-toggle:hover i::after {
  bottom: -10px;
}

/* line 1431, app/assets/stylesheets/style.scss */
.fh5co-nav-toggle.active i {
  background: transparent;
}

/* line 1435, app/assets/stylesheets/style.scss */
.fh5co-nav-toggle.active i::before {
  top: 0;
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
  -ms-transform: rotateZ(45deg);
  -o-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

/* line 1444, app/assets/stylesheets/style.scss */
.fh5co-nav-toggle.active i::after {
  bottom: 0;
  -webkit-transform: rotateZ(-45deg);
  -moz-transform: rotateZ(-45deg);
  -ms-transform: rotateZ(-45deg);
  -o-transform: rotateZ(-45deg);
  transform: rotateZ(-45deg);
}

/* line 1453, app/assets/stylesheets/style.scss */
.fh5co-nav-toggle {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 9999;
  display: block;
  margin: 0 auto;
  display: none;
  cursor: pointer;
}

/* line 1463, app/assets/stylesheets/style.scss */
.tp-bannercontainer {
  width: 100%;
  position: relative;
  padding: 0;
  background: #f8f8f8;
}

/* line 1470, app/assets/stylesheets/style.scss */
.tp-banner {
  width: 100%;
  position: relative;
}

/* line 1474, app/assets/stylesheets/style.scss */
.uppercase {
  text-transform: uppercase;
}

/* line 1477, app/assets/stylesheets/style.scss */
.tp-caption.red-bg {
  background-color: #890304 !important;
  color: #fff !important;
  font-weight: 500;
  color: #34495e;
  text-decoration: none;
  border-style: none;
  line-height: normal !important;
}

/* line 1486, app/assets/stylesheets/style.scss */
.redbtn {
  padding: 9px 18px;
  transition: all 0.5s ease-out 0s;
  min-height: 0px;
  min-width: 0px;
  line-height: 24px;
  border-width: 0px;
  margin: 0px;
  letter-spacing: 0px;
  font-size: 18px;
  display: inline-block;
  margin: 0px !important;
  text-align: center;
  min-width: auto;
  position: relative;
  border-radius: 0px;
  border-radius: 25px;
  background: #ff1b24;
  color: #fff !important;
  border: 1px solid #ff1b24 !important;
  border-color: #ff1b24;
  font-family: 'proximanova';
  text-transform: capitalize !important;
}

/* line 1510, app/assets/stylesheets/style.scss */
.redbtn:hover, .redbtn:focus {
  transition: all 0.5s ease-out 0s;
  background: transparent !important;
  color: #ff1b24 !important;
  border-color: #ff1b24 !important;
}

/*
.redbtn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #ffffff61;
    transition: all .3s ease;
}
.redbtn:hover::before {
    width: 100%;
    transition: all .3s ease;
}
*/
/* line 1532, app/assets/stylesheets/style.scss */
.fh5co-cover,
.fh5co-hero {
  position: relative;
  height: 200px;
}

@media screen and (max-width: 991px) {
  /* line 1538, app/assets/stylesheets/style.scss */
  .fh5co-cover,
.fh5co-hero {
    background-attachment: initial;
  }
}

@media screen and (max-width: 768px) {
  /* line 1544, app/assets/stylesheets/style.scss */
  .fh5co-cover,
.fh5co-hero {
    height: 700px;
  }
  /* line 1548, app/assets/stylesheets/style.scss */
  .footer-quick-links-wrap {
    padding: 0px;
  }
  /* line 1551, app/assets/stylesheets/style.scss */
  #gtco-footer .footer-quick-links-wrap .gtco-widget {
    padding: 0px;
  }
  /* line 1554, app/assets/stylesheets/style.scss */
  #gtco-footer .footer-quick-links-wrap .gtco-widget:before {
    left: 106%;
  }
}

@media screen and (max-width: 480px) {
  /* line 1559, app/assets/stylesheets/style.scss */
  .fh5co-cover, .fh5co-hero {
    height: 500px;
  }
}

@media screen and (max-width: 380px) {
  /* line 1564, app/assets/stylesheets/style.scss */
  .fh5co-cover, .fh5co-hero {
    height: 450px;
  }
  /* line 1567, app/assets/stylesheets/style.scss */
  .address-box {
    font-size: 12px;
  }
}

/* line 1571, app/assets/stylesheets/style.scss */
.fh5co-cover.fh5co-hero-2,
.fh5co-hero.fh5co-hero-2 {
  height: 600px;
}

/* line 1575, app/assets/stylesheets/style.scss */
.fh5co-cover.fh5co-hero-2 .fh5co-overlay,
.fh5co-hero.fh5co-hero-2 .fh5co-overlay {
  position: absolute !important;
  width: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.2);
}

/* line 1587, app/assets/stylesheets/style.scss */
.fh5co-overlay {
  position: absolute !important;
  width: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  display: block;
  position: absolute;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
  height: 100%;
  width: 100%;
  content: '';
  top: 0;
}

/* line 1604, app/assets/stylesheets/style.scss */
.fh5co-cover {
  background-size: cover;
  position: relative;
  background-position: 50% 100%;
}

@media screen and (max-width: 768px) {
  /* line 1610, app/assets/stylesheets/style.scss */
  .fh5co-cover {
    heifght: inherit;
    padding: 3em 0;
  }
}

/* line 1615, app/assets/stylesheets/style.scss */
.fh5co-cover.fh5co-cover_2 {
  height: 600px;
}

@media screen and (max-width: 768px) {
  /* line 1619, app/assets/stylesheets/style.scss */
  .fh5co-cover.fh5co-cover_2 {
    height: inherit;
    padding: 3em 0;
  }
}

/* line 1624, app/assets/stylesheets/style.scss */
.fh5co-cover .desc {
  top: 50%;
  position: absolute;
  width: 100%;
  margin-top: -90px;
  z-index: 2;
  color: #fff;
}

/* line 1632, app/assets/stylesheets/style.scss */
.fh5co-cover .desc p {
  color: #fff;
  font-size: 20px;
  font-family: 'IBM Plex Sans';
}

/* line 1637, app/assets/stylesheets/style.scss */
.banner-top-text {
  font-size: 38px;
  text-transform: capitalize;
  text-align: left;
  line-height: normal;
  color: #fff;
  font-family: 'Arial Rounded';
}

/* line 1645, app/assets/stylesheets/style.scss */
.fh5co-inner-banner .banner-top-text {
  font-size: 50px;
  line-height: normal;
  margin: 0;
  text-align: center;
  margin-bottom: 20px;
}

/*.fh5co-cover .desc a {
    background: #149ee4 !important;
    border-radius: 0px;
    padding: 0.4em 1em;
    position: relative;
    border: none !important;
    transition: 0s;
}
.fh5co-cover .desc a:before {
    content: '';
    position: absolute;
    top: 0px;
    right: -11px;
    width: 30%;
    height: 100%;
    background: #149ee4;
    z-index: -1;
    -ms-transform: skew(-30deg,0deg);
    -webkit-transform: skew(-30deg,0deg);
    transform: skew(-30deg,0deg);
    /* padding: .3em 1em;
}
.fh5co-cover .desc a:hover, .fh5co-cover .desc a:hover:before {
    background: #146086 !important;
    transition: 0s;
}*/
/* line 1678, app/assets/stylesheets/style.scss */
.fh5co-inner-banner .seperator {
  display: inline-block;
  width: 65px;
  height: 2px;
  background: #fff;
}

@media screen and (max-width: 768px) {
  /* line 1685, app/assets/stylesheets/style.scss */
  .fh5co-cover .desc {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* line 1690, app/assets/stylesheets/style.scss */
.fh5co-cover .desc h2 {
  color: #fff;
  text-transform: uppercase;
  font-size: 60px;
  margin-bottom: 10px;
  font-weight: 300 !important;
}

/* line 1697, app/assets/stylesheets/style.scss */
.fh5co-cover .desc h2 strong {
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  /* line 1701, app/assets/stylesheets/style.scss */
  .fh5co-cover .desc h2 {
    font-size: 40px;
  }
}

/* line 1705, app/assets/stylesheets/style.scss */
.fh5co-cover .desc span {
  display: block;
  margin-bottom: 30px;
  font-size: 28px;
  letter-spacing: 1px;
}

/* line 1711, app/assets/stylesheets/style.scss */
.fh5co-cover .desc span a {
  color: #fff;
}

/* line 1714, app/assets/stylesheets/style.scss */
.fh5co-cover .desc span a:hover, .fh5co-cover .desc span a:focus {
  color: #fff !important;
}

/* line 1717, app/assets/stylesheets/style.scss */
.fh5co-cover .desc span a.btn:hover, .fh5co-cover .desc span a.btn:focus {
  border: 2px solid #fff !important;
  background: transparent !important;
}

/* line 1721, app/assets/stylesheets/style.scss */
.fh5co-cover .desc span a.fh5co-site-name {
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 991px) {
  /* line 1726, app/assets/stylesheets/style.scss */
  .fh5co-nav-toggle {
    display: block;
    top: 10px;
    right: 20px;
    margin-top: 2em;
  }
  /* line 1732, app/assets/stylesheets/style.scss */
  .right-logos {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  /* line 1737, app/assets/stylesheets/style.scss */
  .fh5co-nav-toggle {
    display: block;
    top: 38px;
    margin-top: 2em;
  }
  /* line 1742, app/assets/stylesheets/style.scss */
  .right-logos {
    display: none;
  }
  /* line 1745, app/assets/stylesheets/style.scss */
  .social-media {
    margin-top: 0;
    text-align: right;
  }
  /* line 1749, app/assets/stylesheets/style.scss */
  #fh5co-logo img {
    max-width: 120px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1754, app/assets/stylesheets/style.scss */
  .social-media {
    margin-top: 0;
    text-align: right;
    margin: 0 -15px;
  }
  /* line 1759, app/assets/stylesheets/style.scss */
  .address-box {
    font-size: 16px;
    text-align: center;
  }
  /* line 1763, app/assets/stylesheets/style.scss */
  .address, .phone-no {
    margin: 5px 0;
  }
  /* line 1766, app/assets/stylesheets/style.scss */
  .b-icon span {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  /* line 1772, app/assets/stylesheets/style.scss */
  .col-xxs-12 {
    float: none;
    width: 100%;
  }
}

/* line 1778, app/assets/stylesheets/style.scss */
.row-bottom-padded-lg {
  padding-bottom: 7em;
}

@media screen and (max-width: 768px) {
  /* line 1782, app/assets/stylesheets/style.scss */
  .row-bottom-padded-lg {
    padding-bottom: 2em;
  }
}

/* line 1787, app/assets/stylesheets/style.scss */
.row-top-padded-lg {
  padding-top: 7em;
}

@media screen and (max-width: 768px) {
  /* line 1791, app/assets/stylesheets/style.scss */
  .row-top-padded-lg {
    padding-top: 2em;
  }
}

/* line 1796, app/assets/stylesheets/style.scss */
.row-bottom-padded-md {
  padding-bottom: 4em;
}

@media screen and (max-width: 768px) {
  /* line 1800, app/assets/stylesheets/style.scss */
  .row-bottom-padded-md {
    padding-bottom: 2em;
  }
}

/* line 1805, app/assets/stylesheets/style.scss */
.row-top-padded-md {
  padding-top: 4em;
}

@media screen and (max-width: 768px) {
  /* line 1809, app/assets/stylesheets/style.scss */
  .row-top-padded-md {
    padding-top: 2em;
  }
}

/* line 1814, app/assets/stylesheets/style.scss */
.row-bottom-padded-sm {
  padding-bottom: 2em;
}

@media screen and (max-width: 768px) {
  /* line 1818, app/assets/stylesheets/style.scss */
  .row-bottom-padded-sm {
    padding-bottom: 2em;
  }
}

/* line 1823, app/assets/stylesheets/style.scss */
.row-top-padded-sm {
  padding-top: 2em;
}

@media screen and (max-width: 768px) {
  /* line 1827, app/assets/stylesheets/style.scss */
  .row-top-padded-sm {
    padding-top: 2em;
  }
}

/* line 1832, app/assets/stylesheets/style.scss */
.border-bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* line 1836, app/assets/stylesheets/style.scss */
.lead {
  line-height: 1.8;
}

/* line 1840, app/assets/stylesheets/style.scss */
.no-js #loader {
  display: none;
}

/*# sourceMappingURL=style.css.map */
/*!
 *  Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url(/assets/fontawesome-webfont-1d057a728d416ed6053ce3fd1b60728be5c5a90b27218f961362606a2a638945.eot?v=4.2.0);
  src: url(/assets/fontawesome-webfont-1d057a728d416ed6053ce3fd1b60728be5c5a90b27218f961362606a2a638945.eot?#iefix&v=4.2.0) format("embedded-opentype"), url(/assets/fontawesome-webfont-8e1a1259d36dc59dce9d53adc6402eb49b4f54d567ebe57e30d2eec33da34c50.woff?v=4.2.0) format("woff"), url(/assets/fontawesome-webfont-6e963e77348738cd95a2aba31ef47a8a657282226b7a7f5331544361392d092b.ttf?v=4.2.0) format("truetype"), url(/assets/fontawesome-webfont-82042cbaecec3df750b26dabc5a5ea14a83baa70b49945dbd114ab01710f9853.svg?v=4.2.0#fontawesomeregular) format("svg");
  font-weight: normal;
  font-style: normal;
}

/* line 17, app/assets/stylesheets/font-awesome.scss */
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
/* line 26, app/assets/stylesheets/font-awesome.scss */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

/* line 31, app/assets/stylesheets/font-awesome.scss */
.fa-2x {
  font-size: 2em;
}

/* line 34, app/assets/stylesheets/font-awesome.scss */
.fa-3x {
  font-size: 3em;
}

/* line 37, app/assets/stylesheets/font-awesome.scss */
.fa-4x {
  font-size: 4em;
}

/* line 40, app/assets/stylesheets/font-awesome.scss */
.fa-5x {
  font-size: 5em;
}

/* line 43, app/assets/stylesheets/font-awesome.scss */
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}

/* line 47, app/assets/stylesheets/font-awesome.scss */
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}

/* line 52, app/assets/stylesheets/font-awesome.scss */
.fa-ul > li {
  position: relative;
}

/* line 55, app/assets/stylesheets/font-awesome.scss */
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}

/* line 62, app/assets/stylesheets/font-awesome.scss */
.fa-li.fa-lg {
  left: -1.85714286em;
}

/* line 65, app/assets/stylesheets/font-awesome.scss */
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}

/* line 70, app/assets/stylesheets/font-awesome.scss */
.pull-right {
  float: right;
}

/* line 73, app/assets/stylesheets/font-awesome.scss */
.pull-left {
  float: left;
}

/* line 76, app/assets/stylesheets/font-awesome.scss */
.fa.pull-left {
  margin-right: .3em;
}

/* line 79, app/assets/stylesheets/font-awesome.scss */
.fa.pull-right {
  margin-left: .3em;
}

/* line 82, app/assets/stylesheets/font-awesome.scss */
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

/* line 106, app/assets/stylesheets/font-awesome.scss */
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

/* line 112, app/assets/stylesheets/font-awesome.scss */
.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* line 118, app/assets/stylesheets/font-awesome.scss */
.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

/* line 124, app/assets/stylesheets/font-awesome.scss */
.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

/* line 130, app/assets/stylesheets/font-awesome.scss */
.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

/* line 136, app/assets/stylesheets/font-awesome.scss */
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}

/* line 143, app/assets/stylesheets/font-awesome.scss */
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

/* line 151, app/assets/stylesheets/font-awesome.scss */
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

/* line 158, app/assets/stylesheets/font-awesome.scss */
.fa-stack-1x {
  line-height: inherit;
}

/* line 161, app/assets/stylesheets/font-awesome.scss */
.fa-stack-2x {
  font-size: 2em;
}

/* line 164, app/assets/stylesheets/font-awesome.scss */
.fa-inverse {
  color: #ffffff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
/* line 169, app/assets/stylesheets/font-awesome.scss */
.fa-glass:before {
  content: "\f000";
}

/* line 172, app/assets/stylesheets/font-awesome.scss */
.fa-music:before {
  content: "\f001";
}

/* line 175, app/assets/stylesheets/font-awesome.scss */
.fa-search:before {
  content: "\f002";
}

/* line 178, app/assets/stylesheets/font-awesome.scss */
.fa-envelope-o:before {
  content: "\f003";
}

/* line 181, app/assets/stylesheets/font-awesome.scss */
.fa-heart:before {
  content: "\f004";
}

/* line 184, app/assets/stylesheets/font-awesome.scss */
.fa-star:before {
  content: "\f005";
}

/* line 187, app/assets/stylesheets/font-awesome.scss */
.fa-star-o:before {
  content: "\f006";
}

/* line 190, app/assets/stylesheets/font-awesome.scss */
.fa-user:before {
  content: "\f007";
}

/* line 193, app/assets/stylesheets/font-awesome.scss */
.fa-film:before {
  content: "\f008";
}

/* line 196, app/assets/stylesheets/font-awesome.scss */
.fa-th-large:before {
  content: "\f009";
}

/* line 199, app/assets/stylesheets/font-awesome.scss */
.fa-th:before {
  content: "\f00a";
}

/* line 202, app/assets/stylesheets/font-awesome.scss */
.fa-th-list:before {
  content: "\f00b";
}

/* line 205, app/assets/stylesheets/font-awesome.scss */
.fa-check:before {
  content: "\f00c";
}

/* line 208, app/assets/stylesheets/font-awesome.scss */
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}

/* line 213, app/assets/stylesheets/font-awesome.scss */
.fa-search-plus:before {
  content: "\f00e";
}

/* line 216, app/assets/stylesheets/font-awesome.scss */
.fa-search-minus:before {
  content: "\f010";
}

/* line 219, app/assets/stylesheets/font-awesome.scss */
.fa-power-off:before {
  content: "\f011";
}

/* line 222, app/assets/stylesheets/font-awesome.scss */
.fa-signal:before {
  content: "\f012";
}

/* line 225, app/assets/stylesheets/font-awesome.scss */
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}

/* line 229, app/assets/stylesheets/font-awesome.scss */
.fa-trash-o:before {
  content: "\f014";
}

/* line 232, app/assets/stylesheets/font-awesome.scss */
.fa-home:before {
  content: "\f015";
}

/* line 235, app/assets/stylesheets/font-awesome.scss */
.fa-file-o:before {
  content: "\f016";
}

/* line 238, app/assets/stylesheets/font-awesome.scss */
.fa-clock-o:before {
  content: "\f017";
}

/* line 241, app/assets/stylesheets/font-awesome.scss */
.fa-road:before {
  content: "\f018";
}

/* line 244, app/assets/stylesheets/font-awesome.scss */
.fa-download:before {
  content: "\f019";
}

/* line 247, app/assets/stylesheets/font-awesome.scss */
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}

/* line 250, app/assets/stylesheets/font-awesome.scss */
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}

/* line 253, app/assets/stylesheets/font-awesome.scss */
.fa-inbox:before {
  content: "\f01c";
}

/* line 256, app/assets/stylesheets/font-awesome.scss */
.fa-play-circle-o:before {
  content: "\f01d";
}

/* line 259, app/assets/stylesheets/font-awesome.scss */
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}

/* line 263, app/assets/stylesheets/font-awesome.scss */
.fa-refresh:before {
  content: "\f021";
}

/* line 266, app/assets/stylesheets/font-awesome.scss */
.fa-list-alt:before {
  content: "\f022";
}

/* line 269, app/assets/stylesheets/font-awesome.scss */
.fa-lock:before {
  content: "\f023";
}

/* line 272, app/assets/stylesheets/font-awesome.scss */
.fa-flag:before {
  content: "\f024";
}

/* line 275, app/assets/stylesheets/font-awesome.scss */
.fa-headphones:before {
  content: "\f025";
}

/* line 278, app/assets/stylesheets/font-awesome.scss */
.fa-volume-off:before {
  content: "\f026";
}

/* line 281, app/assets/stylesheets/font-awesome.scss */
.fa-volume-down:before {
  content: "\f027";
}

/* line 284, app/assets/stylesheets/font-awesome.scss */
.fa-volume-up:before {
  content: "\f028";
}

/* line 287, app/assets/stylesheets/font-awesome.scss */
.fa-qrcode:before {
  content: "\f029";
}

/* line 290, app/assets/stylesheets/font-awesome.scss */
.fa-barcode:before {
  content: "\f02a";
}

/* line 293, app/assets/stylesheets/font-awesome.scss */
.fa-tag:before {
  content: "\f02b";
}

/* line 296, app/assets/stylesheets/font-awesome.scss */
.fa-tags:before {
  content: "\f02c";
}

/* line 299, app/assets/stylesheets/font-awesome.scss */
.fa-book:before {
  content: "\f02d";
}

/* line 302, app/assets/stylesheets/font-awesome.scss */
.fa-bookmark:before {
  content: "\f02e";
}

/* line 305, app/assets/stylesheets/font-awesome.scss */
.fa-print:before {
  content: "\f02f";
}

/* line 308, app/assets/stylesheets/font-awesome.scss */
.fa-camera:before {
  content: "\f030";
}

/* line 311, app/assets/stylesheets/font-awesome.scss */
.fa-font:before {
  content: "\f031";
}

/* line 314, app/assets/stylesheets/font-awesome.scss */
.fa-bold:before {
  content: "\f032";
}

/* line 317, app/assets/stylesheets/font-awesome.scss */
.fa-italic:before {
  content: "\f033";
}

/* line 320, app/assets/stylesheets/font-awesome.scss */
.fa-text-height:before {
  content: "\f034";
}

/* line 323, app/assets/stylesheets/font-awesome.scss */
.fa-text-width:before {
  content: "\f035";
}

/* line 326, app/assets/stylesheets/font-awesome.scss */
.fa-align-left:before {
  content: "\f036";
}

/* line 329, app/assets/stylesheets/font-awesome.scss */
.fa-align-center:before {
  content: "\f037";
}

/* line 332, app/assets/stylesheets/font-awesome.scss */
.fa-align-right:before {
  content: "\f038";
}

/* line 335, app/assets/stylesheets/font-awesome.scss */
.fa-align-justify:before {
  content: "\f039";
}

/* line 338, app/assets/stylesheets/font-awesome.scss */
.fa-list:before {
  content: "\f03a";
}

/* line 341, app/assets/stylesheets/font-awesome.scss */
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}

/* line 345, app/assets/stylesheets/font-awesome.scss */
.fa-indent:before {
  content: "\f03c";
}

/* line 348, app/assets/stylesheets/font-awesome.scss */
.fa-video-camera:before {
  content: "\f03d";
}

/* line 351, app/assets/stylesheets/font-awesome.scss */
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}

/* line 356, app/assets/stylesheets/font-awesome.scss */
.fa-pencil:before {
  content: "\f040";
}

/* line 359, app/assets/stylesheets/font-awesome.scss */
.fa-map-marker:before {
  content: "\f041";
}

/* line 362, app/assets/stylesheets/font-awesome.scss */
.fa-adjust:before {
  content: "\f042";
}

/* line 365, app/assets/stylesheets/font-awesome.scss */
.fa-tint:before {
  content: "\f043";
}

/* line 368, app/assets/stylesheets/font-awesome.scss */
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}

/* line 372, app/assets/stylesheets/font-awesome.scss */
.fa-share-square-o:before {
  content: "\f045";
}

/* line 375, app/assets/stylesheets/font-awesome.scss */
.fa-check-square-o:before {
  content: "\f046";
}

/* line 378, app/assets/stylesheets/font-awesome.scss */
.fa-arrows:before {
  content: "\f047";
}

/* line 381, app/assets/stylesheets/font-awesome.scss */
.fa-step-backward:before {
  content: "\f048";
}

/* line 384, app/assets/stylesheets/font-awesome.scss */
.fa-fast-backward:before {
  content: "\f049";
}

/* line 387, app/assets/stylesheets/font-awesome.scss */
.fa-backward:before {
  content: "\f04a";
}

/* line 390, app/assets/stylesheets/font-awesome.scss */
.fa-play:before {
  content: "\f04b";
}

/* line 393, app/assets/stylesheets/font-awesome.scss */
.fa-pause:before {
  content: "\f04c";
}

/* line 396, app/assets/stylesheets/font-awesome.scss */
.fa-stop:before {
  content: "\f04d";
}

/* line 399, app/assets/stylesheets/font-awesome.scss */
.fa-forward:before {
  content: "\f04e";
}

/* line 402, app/assets/stylesheets/font-awesome.scss */
.fa-fast-forward:before {
  content: "\f050";
}

/* line 405, app/assets/stylesheets/font-awesome.scss */
.fa-step-forward:before {
  content: "\f051";
}

/* line 408, app/assets/stylesheets/font-awesome.scss */
.fa-eject:before {
  content: "\f052";
}

/* line 411, app/assets/stylesheets/font-awesome.scss */
.fa-chevron-left:before {
  content: "\f053";
}

/* line 414, app/assets/stylesheets/font-awesome.scss */
.fa-chevron-right:before {
  content: "\f054";
}

/* line 417, app/assets/stylesheets/font-awesome.scss */
.fa-plus-circle:before {
  content: "\f055";
}

/* line 420, app/assets/stylesheets/font-awesome.scss */
.fa-minus-circle:before {
  content: "\f056";
}

/* line 423, app/assets/stylesheets/font-awesome.scss */
.fa-times-circle:before {
  content: "\f057";
}

/* line 426, app/assets/stylesheets/font-awesome.scss */
.fa-check-circle:before {
  content: "\f058";
}

/* line 429, app/assets/stylesheets/font-awesome.scss */
.fa-question-circle:before {
  content: "\f059";
}

/* line 432, app/assets/stylesheets/font-awesome.scss */
.fa-info-circle:before {
  content: "\f05a";
}

/* line 435, app/assets/stylesheets/font-awesome.scss */
.fa-crosshairs:before {
  content: "\f05b";
}

/* line 438, app/assets/stylesheets/font-awesome.scss */
.fa-times-circle-o:before {
  content: "\f05c";
}

/* line 441, app/assets/stylesheets/font-awesome.scss */
.fa-check-circle-o:before {
  content: "\f05d";
}

/* line 444, app/assets/stylesheets/font-awesome.scss */
.fa-ban:before {
  content: "\f05e";
}

/* line 447, app/assets/stylesheets/font-awesome.scss */
.fa-arrow-left:before {
  content: "\f060";
}

/* line 450, app/assets/stylesheets/font-awesome.scss */
.fa-arrow-right:before {
  content: "\f061";
}

/* line 453, app/assets/stylesheets/font-awesome.scss */
.fa-arrow-up:before {
  content: "\f062";
}

/* line 456, app/assets/stylesheets/font-awesome.scss */
.fa-arrow-down:before {
  content: "\f063";
}

/* line 459, app/assets/stylesheets/font-awesome.scss */
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}

/* line 463, app/assets/stylesheets/font-awesome.scss */
.fa-expand:before {
  content: "\f065";
}

/* line 466, app/assets/stylesheets/font-awesome.scss */
.fa-compress:before {
  content: "\f066";
}

/* line 469, app/assets/stylesheets/font-awesome.scss */
.fa-plus:before {
  content: "\f067";
}

/* line 472, app/assets/stylesheets/font-awesome.scss */
.fa-minus:before {
  content: "\f068";
}

/* line 475, app/assets/stylesheets/font-awesome.scss */
.fa-asterisk:before {
  content: "\f069";
}

/* line 478, app/assets/stylesheets/font-awesome.scss */
.fa-exclamation-circle:before {
  content: "\f06a";
}

/* line 481, app/assets/stylesheets/font-awesome.scss */
.fa-gift:before {
  content: "\f06b";
}

/* line 484, app/assets/stylesheets/font-awesome.scss */
.fa-leaf:before {
  content: "\f06c";
}

/* line 487, app/assets/stylesheets/font-awesome.scss */
.fa-fire:before {
  content: "\f06d";
}

/* line 490, app/assets/stylesheets/font-awesome.scss */
.fa-eye:before {
  content: "\f06e";
}

/* line 493, app/assets/stylesheets/font-awesome.scss */
.fa-eye-slash:before {
  content: "\f070";
}

/* line 496, app/assets/stylesheets/font-awesome.scss */
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}

/* line 500, app/assets/stylesheets/font-awesome.scss */
.fa-plane:before {
  content: "\f072";
}

/* line 503, app/assets/stylesheets/font-awesome.scss */
.fa-calendar:before {
  content: "\f073";
}

/* line 506, app/assets/stylesheets/font-awesome.scss */
.fa-random:before {
  content: "\f074";
}

/* line 509, app/assets/stylesheets/font-awesome.scss */
.fa-comment:before {
  content: "\f075";
}

/* line 512, app/assets/stylesheets/font-awesome.scss */
.fa-magnet:before {
  content: "\f076";
}

/* line 515, app/assets/stylesheets/font-awesome.scss */
.fa-chevron-up:before {
  content: "\f077";
}

/* line 518, app/assets/stylesheets/font-awesome.scss */
.fa-chevron-down:before {
  content: "\f078";
}

/* line 521, app/assets/stylesheets/font-awesome.scss */
.fa-retweet:before {
  content: "\f079";
}

/* line 524, app/assets/stylesheets/font-awesome.scss */
.fa-shopping-cart:before {
  content: "\f07a";
}

/* line 527, app/assets/stylesheets/font-awesome.scss */
.fa-folder:before {
  content: "\f07b";
}

/* line 530, app/assets/stylesheets/font-awesome.scss */
.fa-folder-open:before {
  content: "\f07c";
}

/* line 533, app/assets/stylesheets/font-awesome.scss */
.fa-arrows-v:before {
  content: "\f07d";
}

/* line 536, app/assets/stylesheets/font-awesome.scss */
.fa-arrows-h:before {
  content: "\f07e";
}

/* line 539, app/assets/stylesheets/font-awesome.scss */
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}

/* line 543, app/assets/stylesheets/font-awesome.scss */
.fa-twitter-square:before {
  content: "\f081";
}

/* line 546, app/assets/stylesheets/font-awesome.scss */
.fa-facebook-square:before {
  content: "\f082";
}

/* line 549, app/assets/stylesheets/font-awesome.scss */
.fa-camera-retro:before {
  content: "\f083";
}

/* line 552, app/assets/stylesheets/font-awesome.scss */
.fa-key:before {
  content: "\f084";
}

/* line 555, app/assets/stylesheets/font-awesome.scss */
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}

/* line 559, app/assets/stylesheets/font-awesome.scss */
.fa-comments:before {
  content: "\f086";
}

/* line 562, app/assets/stylesheets/font-awesome.scss */
.fa-thumbs-o-up:before {
  content: "\f087";
}

/* line 565, app/assets/stylesheets/font-awesome.scss */
.fa-thumbs-o-down:before {
  content: "\f088";
}

/* line 568, app/assets/stylesheets/font-awesome.scss */
.fa-star-half:before {
  content: "\f089";
}

/* line 571, app/assets/stylesheets/font-awesome.scss */
.fa-heart-o:before {
  content: "\f08a";
}

/* line 574, app/assets/stylesheets/font-awesome.scss */
.fa-sign-out:before {
  content: "\f08b";
}

/* line 577, app/assets/stylesheets/font-awesome.scss */
.fa-linkedin-square:before {
  content: "\f08c";
}

/* line 580, app/assets/stylesheets/font-awesome.scss */
.fa-thumb-tack:before {
  content: "\f08d";
}

/* line 583, app/assets/stylesheets/font-awesome.scss */
.fa-external-link:before {
  content: "\f08e";
}

/* line 586, app/assets/stylesheets/font-awesome.scss */
.fa-sign-in:before {
  content: "\f090";
}

/* line 589, app/assets/stylesheets/font-awesome.scss */
.fa-trophy:before {
  content: "\f091";
}

/* line 592, app/assets/stylesheets/font-awesome.scss */
.fa-github-square:before {
  content: "\f092";
}

/* line 595, app/assets/stylesheets/font-awesome.scss */
.fa-upload:before {
  content: "\f093";
}

/* line 598, app/assets/stylesheets/font-awesome.scss */
.fa-lemon-o:before {
  content: "\f094";
}

/* line 601, app/assets/stylesheets/font-awesome.scss */
.fa-phone:before {
  content: "\f095";
}

/* line 604, app/assets/stylesheets/font-awesome.scss */
.fa-square-o:before {
  content: "\f096";
}

/* line 607, app/assets/stylesheets/font-awesome.scss */
.fa-bookmark-o:before {
  content: "\f097";
}

/* line 610, app/assets/stylesheets/font-awesome.scss */
.fa-phone-square:before {
  content: "\f098";
}

/* line 613, app/assets/stylesheets/font-awesome.scss */
.fa-twitter:before {
  content: "\f099";
}

/* line 616, app/assets/stylesheets/font-awesome.scss */
.fa-facebook:before {
  content: "\f09a";
}

/* line 619, app/assets/stylesheets/font-awesome.scss */
.fa-github:before {
  content: "\f09b";
}

/* line 622, app/assets/stylesheets/font-awesome.scss */
.fa-unlock:before {
  content: "\f09c";
}

/* line 625, app/assets/stylesheets/font-awesome.scss */
.fa-credit-card:before {
  content: "\f09d";
}

/* line 628, app/assets/stylesheets/font-awesome.scss */
.fa-rss:before {
  content: "\f09e";
}

/* line 631, app/assets/stylesheets/font-awesome.scss */
.fa-hdd-o:before {
  content: "\f0a0";
}

/* line 634, app/assets/stylesheets/font-awesome.scss */
.fa-bullhorn:before {
  content: "\f0a1";
}

/* line 637, app/assets/stylesheets/font-awesome.scss */
.fa-bell:before {
  content: "\f0f3";
}

/* line 640, app/assets/stylesheets/font-awesome.scss */
.fa-certificate:before {
  content: "\f0a3";
}

/* line 643, app/assets/stylesheets/font-awesome.scss */
.fa-hand-o-right:before {
  content: "\f0a4";
}

/* line 646, app/assets/stylesheets/font-awesome.scss */
.fa-hand-o-left:before {
  content: "\f0a5";
}

/* line 649, app/assets/stylesheets/font-awesome.scss */
.fa-hand-o-up:before {
  content: "\f0a6";
}

/* line 652, app/assets/stylesheets/font-awesome.scss */
.fa-hand-o-down:before {
  content: "\f0a7";
}

/* line 655, app/assets/stylesheets/font-awesome.scss */
.fa-arrow-circle-left:before {
  content: "\f0a8";
}

/* line 658, app/assets/stylesheets/font-awesome.scss */
.fa-arrow-circle-right:before {
  content: "\f0a9";
}

/* line 661, app/assets/stylesheets/font-awesome.scss */
.fa-arrow-circle-up:before {
  content: "\f0aa";
}

/* line 664, app/assets/stylesheets/font-awesome.scss */
.fa-arrow-circle-down:before {
  content: "\f0ab";
}

/* line 667, app/assets/stylesheets/font-awesome.scss */
.fa-globe:before {
  content: "\f0ac";
}

/* line 670, app/assets/stylesheets/font-awesome.scss */
.fa-wrench:before {
  content: "\f0ad";
}

/* line 673, app/assets/stylesheets/font-awesome.scss */
.fa-tasks:before {
  content: "\f0ae";
}

/* line 676, app/assets/stylesheets/font-awesome.scss */
.fa-filter:before {
  content: "\f0b0";
}

/* line 679, app/assets/stylesheets/font-awesome.scss */
.fa-briefcase:before {
  content: "\f0b1";
}

/* line 682, app/assets/stylesheets/font-awesome.scss */
.fa-arrows-alt:before {
  content: "\f0b2";
}

/* line 685, app/assets/stylesheets/font-awesome.scss */
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}

/* line 689, app/assets/stylesheets/font-awesome.scss */
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}

/* line 693, app/assets/stylesheets/font-awesome.scss */
.fa-cloud:before {
  content: "\f0c2";
}

/* line 696, app/assets/stylesheets/font-awesome.scss */
.fa-flask:before {
  content: "\f0c3";
}

/* line 699, app/assets/stylesheets/font-awesome.scss */
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}

/* line 703, app/assets/stylesheets/font-awesome.scss */
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}

/* line 707, app/assets/stylesheets/font-awesome.scss */
.fa-paperclip:before {
  content: "\f0c6";
}

/* line 710, app/assets/stylesheets/font-awesome.scss */
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}

/* line 714, app/assets/stylesheets/font-awesome.scss */
.fa-square:before {
  content: "\f0c8";
}

/* line 717, app/assets/stylesheets/font-awesome.scss */
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}

/* line 722, app/assets/stylesheets/font-awesome.scss */
.fa-list-ul:before {
  content: "\f0ca";
}

/* line 725, app/assets/stylesheets/font-awesome.scss */
.fa-list-ol:before {
  content: "\f0cb";
}

/* line 728, app/assets/stylesheets/font-awesome.scss */
.fa-strikethrough:before {
  content: "\f0cc";
}

/* line 731, app/assets/stylesheets/font-awesome.scss */
.fa-underline:before {
  content: "\f0cd";
}

/* line 734, app/assets/stylesheets/font-awesome.scss */
.fa-table:before {
  content: "\f0ce";
}

/* line 737, app/assets/stylesheets/font-awesome.scss */
.fa-magic:before {
  content: "\f0d0";
}

/* line 740, app/assets/stylesheets/font-awesome.scss */
.fa-truck:before {
  content: "\f0d1";
}

/* line 743, app/assets/stylesheets/font-awesome.scss */
.fa-pinterest:before {
  content: "\f0d2";
}

/* line 746, app/assets/stylesheets/font-awesome.scss */
.fa-pinterest-square:before {
  content: "\f0d3";
}

/* line 749, app/assets/stylesheets/font-awesome.scss */
.fa-google-plus-square:before {
  content: "\f0d4";
}

/* line 752, app/assets/stylesheets/font-awesome.scss */
.fa-google-plus:before {
  content: "\f0d5";
}

/* line 755, app/assets/stylesheets/font-awesome.scss */
.fa-money:before {
  content: "\f0d6";
}

/* line 758, app/assets/stylesheets/font-awesome.scss */
.fa-caret-down:before {
  content: "\f0d7";
}

/* line 761, app/assets/stylesheets/font-awesome.scss */
.fa-caret-up:before {
  content: "\f0d8";
}

/* line 764, app/assets/stylesheets/font-awesome.scss */
.fa-caret-left:before {
  content: "\f0d9";
}

/* line 767, app/assets/stylesheets/font-awesome.scss */
.fa-caret-right:before {
  content: "\f0da";
}

/* line 770, app/assets/stylesheets/font-awesome.scss */
.fa-columns:before {
  content: "\f0db";
}

/* line 773, app/assets/stylesheets/font-awesome.scss */
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}

/* line 777, app/assets/stylesheets/font-awesome.scss */
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}

/* line 781, app/assets/stylesheets/font-awesome.scss */
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}

/* line 785, app/assets/stylesheets/font-awesome.scss */
.fa-envelope:before {
  content: "\f0e0";
}

/* line 788, app/assets/stylesheets/font-awesome.scss */
.fa-linkedin:before {
  content: "\f0e1";
}

/* line 791, app/assets/stylesheets/font-awesome.scss */
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}

/* line 795, app/assets/stylesheets/font-awesome.scss */
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}

/* line 799, app/assets/stylesheets/font-awesome.scss */
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}

/* line 803, app/assets/stylesheets/font-awesome.scss */
.fa-comment-o:before {
  content: "\f0e5";
}

/* line 806, app/assets/stylesheets/font-awesome.scss */
.fa-comments-o:before {
  content: "\f0e6";
}

/* line 809, app/assets/stylesheets/font-awesome.scss */
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}

/* line 813, app/assets/stylesheets/font-awesome.scss */
.fa-sitemap:before {
  content: "\f0e8";
}

/* line 816, app/assets/stylesheets/font-awesome.scss */
.fa-umbrella:before {
  content: "\f0e9";
}

/* line 819, app/assets/stylesheets/font-awesome.scss */
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}

/* line 823, app/assets/stylesheets/font-awesome.scss */
.fa-lightbulb-o:before {
  content: "\f0eb";
}

/* line 826, app/assets/stylesheets/font-awesome.scss */
.fa-exchange:before {
  content: "\f0ec";
}

/* line 829, app/assets/stylesheets/font-awesome.scss */
.fa-cloud-download:before {
  content: "\f0ed";
}

/* line 832, app/assets/stylesheets/font-awesome.scss */
.fa-cloud-upload:before {
  content: "\f0ee";
}

/* line 835, app/assets/stylesheets/font-awesome.scss */
.fa-user-md:before {
  content: "\f0f0";
}

/* line 838, app/assets/stylesheets/font-awesome.scss */
.fa-stethoscope:before {
  content: "\f0f1";
}

/* line 841, app/assets/stylesheets/font-awesome.scss */
.fa-suitcase:before {
  content: "\f0f2";
}

/* line 844, app/assets/stylesheets/font-awesome.scss */
.fa-bell-o:before {
  content: "\f0a2";
}

/* line 847, app/assets/stylesheets/font-awesome.scss */
.fa-coffee:before {
  content: "\f0f4";
}

/* line 850, app/assets/stylesheets/font-awesome.scss */
.fa-cutlery:before {
  content: "\f0f5";
}

/* line 853, app/assets/stylesheets/font-awesome.scss */
.fa-file-text-o:before {
  content: "\f0f6";
}

/* line 856, app/assets/stylesheets/font-awesome.scss */
.fa-building-o:before {
  content: "\f0f7";
}

/* line 859, app/assets/stylesheets/font-awesome.scss */
.fa-hospital-o:before {
  content: "\f0f8";
}

/* line 862, app/assets/stylesheets/font-awesome.scss */
.fa-ambulance:before {
  content: "\f0f9";
}

/* line 865, app/assets/stylesheets/font-awesome.scss */
.fa-medkit:before {
  content: "\f0fa";
}

/* line 868, app/assets/stylesheets/font-awesome.scss */
.fa-fighter-jet:before {
  content: "\f0fb";
}

/* line 871, app/assets/stylesheets/font-awesome.scss */
.fa-beer:before {
  content: "\f0fc";
}

/* line 874, app/assets/stylesheets/font-awesome.scss */
.fa-h-square:before {
  content: "\f0fd";
}

/* line 877, app/assets/stylesheets/font-awesome.scss */
.fa-plus-square:before {
  content: "\f0fe";
}

/* line 880, app/assets/stylesheets/font-awesome.scss */
.fa-angle-double-left:before {
  content: "\f100";
}

/* line 883, app/assets/stylesheets/font-awesome.scss */
.fa-angle-double-right:before {
  content: "\f101";
}

/* line 886, app/assets/stylesheets/font-awesome.scss */
.fa-angle-double-up:before {
  content: "\f102";
}

/* line 889, app/assets/stylesheets/font-awesome.scss */
.fa-angle-double-down:before {
  content: "\f103";
}

/* line 892, app/assets/stylesheets/font-awesome.scss */
.fa-angle-left:before {
  content: "\f104";
}

/* line 895, app/assets/stylesheets/font-awesome.scss */
.fa-angle-right:before {
  content: "\f105";
}

/* line 898, app/assets/stylesheets/font-awesome.scss */
.fa-angle-up:before {
  content: "\f106";
}

/* line 901, app/assets/stylesheets/font-awesome.scss */
.fa-angle-down:before {
  content: "\f107";
}

/* line 904, app/assets/stylesheets/font-awesome.scss */
.fa-desktop:before {
  content: "\f108";
}

/* line 907, app/assets/stylesheets/font-awesome.scss */
.fa-laptop:before {
  content: "\f109";
}

/* line 910, app/assets/stylesheets/font-awesome.scss */
.fa-tablet:before {
  content: "\f10a";
}

/* line 913, app/assets/stylesheets/font-awesome.scss */
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}

/* line 917, app/assets/stylesheets/font-awesome.scss */
.fa-circle-o:before {
  content: "\f10c";
}

/* line 920, app/assets/stylesheets/font-awesome.scss */
.fa-quote-left:before {
  content: "\f10d";
}

/* line 923, app/assets/stylesheets/font-awesome.scss */
.fa-quote-right:before {
  content: "\f10e";
}

/* line 926, app/assets/stylesheets/font-awesome.scss */
.fa-spinner:before {
  content: "\f110";
}

/* line 929, app/assets/stylesheets/font-awesome.scss */
.fa-circle:before {
  content: "\f111";
}

/* line 932, app/assets/stylesheets/font-awesome.scss */
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}

/* line 936, app/assets/stylesheets/font-awesome.scss */
.fa-github-alt:before {
  content: "\f113";
}

/* line 939, app/assets/stylesheets/font-awesome.scss */
.fa-folder-o:before {
  content: "\f114";
}

/* line 942, app/assets/stylesheets/font-awesome.scss */
.fa-folder-open-o:before {
  content: "\f115";
}

/* line 945, app/assets/stylesheets/font-awesome.scss */
.fa-smile-o:before {
  content: "\f118";
}

/* line 948, app/assets/stylesheets/font-awesome.scss */
.fa-frown-o:before {
  content: "\f119";
}

/* line 951, app/assets/stylesheets/font-awesome.scss */
.fa-meh-o:before {
  content: "\f11a";
}

/* line 954, app/assets/stylesheets/font-awesome.scss */
.fa-gamepad:before {
  content: "\f11b";
}

/* line 957, app/assets/stylesheets/font-awesome.scss */
.fa-keyboard-o:before {
  content: "\f11c";
}

/* line 960, app/assets/stylesheets/font-awesome.scss */
.fa-flag-o:before {
  content: "\f11d";
}

/* line 963, app/assets/stylesheets/font-awesome.scss */
.fa-flag-checkered:before {
  content: "\f11e";
}

/* line 966, app/assets/stylesheets/font-awesome.scss */
.fa-terminal:before {
  content: "\f120";
}

/* line 969, app/assets/stylesheets/font-awesome.scss */
.fa-code:before {
  content: "\f121";
}

/* line 972, app/assets/stylesheets/font-awesome.scss */
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}

/* line 976, app/assets/stylesheets/font-awesome.scss */
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}

/* line 981, app/assets/stylesheets/font-awesome.scss */
.fa-location-arrow:before {
  content: "\f124";
}

/* line 984, app/assets/stylesheets/font-awesome.scss */
.fa-crop:before {
  content: "\f125";
}

/* line 987, app/assets/stylesheets/font-awesome.scss */
.fa-code-fork:before {
  content: "\f126";
}

/* line 990, app/assets/stylesheets/font-awesome.scss */
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}

/* line 994, app/assets/stylesheets/font-awesome.scss */
.fa-question:before {
  content: "\f128";
}

/* line 997, app/assets/stylesheets/font-awesome.scss */
.fa-info:before {
  content: "\f129";
}

/* line 1000, app/assets/stylesheets/font-awesome.scss */
.fa-exclamation:before {
  content: "\f12a";
}

/* line 1003, app/assets/stylesheets/font-awesome.scss */
.fa-superscript:before {
  content: "\f12b";
}

/* line 1006, app/assets/stylesheets/font-awesome.scss */
.fa-subscript:before {
  content: "\f12c";
}

/* line 1009, app/assets/stylesheets/font-awesome.scss */
.fa-eraser:before {
  content: "\f12d";
}

/* line 1012, app/assets/stylesheets/font-awesome.scss */
.fa-puzzle-piece:before {
  content: "\f12e";
}

/* line 1015, app/assets/stylesheets/font-awesome.scss */
.fa-microphone:before {
  content: "\f130";
}

/* line 1018, app/assets/stylesheets/font-awesome.scss */
.fa-microphone-slash:before {
  content: "\f131";
}

/* line 1021, app/assets/stylesheets/font-awesome.scss */
.fa-shield:before {
  content: "\f132";
}

/* line 1024, app/assets/stylesheets/font-awesome.scss */
.fa-calendar-o:before {
  content: "\f133";
}

/* line 1027, app/assets/stylesheets/font-awesome.scss */
.fa-fire-extinguisher:before {
  content: "\f134";
}

/* line 1030, app/assets/stylesheets/font-awesome.scss */
.fa-rocket:before {
  content: "\f135";
}

/* line 1033, app/assets/stylesheets/font-awesome.scss */
.fa-maxcdn:before {
  content: "\f136";
}

/* line 1036, app/assets/stylesheets/font-awesome.scss */
.fa-chevron-circle-left:before {
  content: "\f137";
}

/* line 1039, app/assets/stylesheets/font-awesome.scss */
.fa-chevron-circle-right:before {
  content: "\f138";
}

/* line 1042, app/assets/stylesheets/font-awesome.scss */
.fa-chevron-circle-up:before {
  content: "\f139";
}

/* line 1045, app/assets/stylesheets/font-awesome.scss */
.fa-chevron-circle-down:before {
  content: "\f13a";
}

/* line 1048, app/assets/stylesheets/font-awesome.scss */
.fa-html5:before {
  content: "\f13b";
}

/* line 1051, app/assets/stylesheets/font-awesome.scss */
.fa-css3:before {
  content: "\f13c";
}

/* line 1054, app/assets/stylesheets/font-awesome.scss */
.fa-anchor:before {
  content: "\f13d";
}

/* line 1057, app/assets/stylesheets/font-awesome.scss */
.fa-unlock-alt:before {
  content: "\f13e";
}

/* line 1060, app/assets/stylesheets/font-awesome.scss */
.fa-bullseye:before {
  content: "\f140";
}

/* line 1063, app/assets/stylesheets/font-awesome.scss */
.fa-ellipsis-h:before {
  content: "\f141";
}

/* line 1066, app/assets/stylesheets/font-awesome.scss */
.fa-ellipsis-v:before {
  content: "\f142";
}

/* line 1069, app/assets/stylesheets/font-awesome.scss */
.fa-rss-square:before {
  content: "\f143";
}

/* line 1072, app/assets/stylesheets/font-awesome.scss */
.fa-play-circle:before {
  content: "\f144";
}

/* line 1075, app/assets/stylesheets/font-awesome.scss */
.fa-ticket:before {
  content: "\f145";
}

/* line 1078, app/assets/stylesheets/font-awesome.scss */
.fa-minus-square:before {
  content: "\f146";
}

/* line 1081, app/assets/stylesheets/font-awesome.scss */
.fa-minus-square-o:before {
  content: "\f147";
}

/* line 1084, app/assets/stylesheets/font-awesome.scss */
.fa-level-up:before {
  content: "\f148";
}

/* line 1087, app/assets/stylesheets/font-awesome.scss */
.fa-level-down:before {
  content: "\f149";
}

/* line 1090, app/assets/stylesheets/font-awesome.scss */
.fa-check-square:before {
  content: "\f14a";
}

/* line 1093, app/assets/stylesheets/font-awesome.scss */
.fa-pencil-square:before {
  content: "\f14b";
}

/* line 1096, app/assets/stylesheets/font-awesome.scss */
.fa-external-link-square:before {
  content: "\f14c";
}

/* line 1099, app/assets/stylesheets/font-awesome.scss */
.fa-share-square:before {
  content: "\f14d";
}

/* line 1102, app/assets/stylesheets/font-awesome.scss */
.fa-compass:before {
  content: "\f14e";
}

/* line 1105, app/assets/stylesheets/font-awesome.scss */
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}

/* line 1109, app/assets/stylesheets/font-awesome.scss */
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}

/* line 1113, app/assets/stylesheets/font-awesome.scss */
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}

/* line 1117, app/assets/stylesheets/font-awesome.scss */
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}

/* line 1121, app/assets/stylesheets/font-awesome.scss */
.fa-gbp:before {
  content: "\f154";
}

/* line 1124, app/assets/stylesheets/font-awesome.scss */
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}

/* line 1128, app/assets/stylesheets/font-awesome.scss */
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}

/* line 1132, app/assets/stylesheets/font-awesome.scss */
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}

/* line 1138, app/assets/stylesheets/font-awesome.scss */
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}

/* line 1143, app/assets/stylesheets/font-awesome.scss */
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}

/* line 1147, app/assets/stylesheets/font-awesome.scss */
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}

/* line 1151, app/assets/stylesheets/font-awesome.scss */
.fa-file:before {
  content: "\f15b";
}

/* line 1154, app/assets/stylesheets/font-awesome.scss */
.fa-file-text:before {
  content: "\f15c";
}

/* line 1157, app/assets/stylesheets/font-awesome.scss */
.fa-sort-alpha-asc:before {
  content: "\f15d";
}

/* line 1160, app/assets/stylesheets/font-awesome.scss */
.fa-sort-alpha-desc:before {
  content: "\f15e";
}

/* line 1163, app/assets/stylesheets/font-awesome.scss */
.fa-sort-amount-asc:before {
  content: "\f160";
}

/* line 1166, app/assets/stylesheets/font-awesome.scss */
.fa-sort-amount-desc:before {
  content: "\f161";
}

/* line 1169, app/assets/stylesheets/font-awesome.scss */
.fa-sort-numeric-asc:before {
  content: "\f162";
}

/* line 1172, app/assets/stylesheets/font-awesome.scss */
.fa-sort-numeric-desc:before {
  content: "\f163";
}

/* line 1175, app/assets/stylesheets/font-awesome.scss */
.fa-thumbs-up:before {
  content: "\f164";
}

/* line 1178, app/assets/stylesheets/font-awesome.scss */
.fa-thumbs-down:before {
  content: "\f165";
}

/* line 1181, app/assets/stylesheets/font-awesome.scss */
.fa-youtube-square:before {
  content: "\f166";
}

/* line 1184, app/assets/stylesheets/font-awesome.scss */
.fa-youtube:before {
  content: "\f167";
}

/* line 1187, app/assets/stylesheets/font-awesome.scss */
.fa-xing:before {
  content: "\f168";
}

/* line 1190, app/assets/stylesheets/font-awesome.scss */
.fa-xing-square:before {
  content: "\f169";
}

/* line 1193, app/assets/stylesheets/font-awesome.scss */
.fa-youtube-play:before {
  content: "\f16a";
}

/* line 1196, app/assets/stylesheets/font-awesome.scss */
.fa-dropbox:before {
  content: "\f16b";
}

/* line 1199, app/assets/stylesheets/font-awesome.scss */
.fa-stack-overflow:before {
  content: "\f16c";
}

/* line 1202, app/assets/stylesheets/font-awesome.scss */
.fa-instagram:before {
  content: "\f16d";
}

/* line 1205, app/assets/stylesheets/font-awesome.scss */
.fa-flickr:before {
  content: "\f16e";
}

/* line 1208, app/assets/stylesheets/font-awesome.scss */
.fa-adn:before {
  content: "\f170";
}

/* line 1211, app/assets/stylesheets/font-awesome.scss */
.fa-bitbucket:before {
  content: "\f171";
}

/* line 1214, app/assets/stylesheets/font-awesome.scss */
.fa-bitbucket-square:before {
  content: "\f172";
}

/* line 1217, app/assets/stylesheets/font-awesome.scss */
.fa-tumblr:before {
  content: "\f173";
}

/* line 1220, app/assets/stylesheets/font-awesome.scss */
.fa-tumblr-square:before {
  content: "\f174";
}

/* line 1223, app/assets/stylesheets/font-awesome.scss */
.fa-long-arrow-down:before {
  content: "\f175";
}

/* line 1226, app/assets/stylesheets/font-awesome.scss */
.fa-long-arrow-up:before {
  content: "\f176";
}

/* line 1229, app/assets/stylesheets/font-awesome.scss */
.fa-long-arrow-left:before {
  content: "\f177";
}

/* line 1232, app/assets/stylesheets/font-awesome.scss */
.fa-long-arrow-right:before {
  content: "\f178";
}

/* line 1235, app/assets/stylesheets/font-awesome.scss */
.fa-apple:before {
  content: "\f179";
}

/* line 1238, app/assets/stylesheets/font-awesome.scss */
.fa-windows:before {
  content: "\f17a";
}

/* line 1241, app/assets/stylesheets/font-awesome.scss */
.fa-android:before {
  content: "\f17b";
}

/* line 1244, app/assets/stylesheets/font-awesome.scss */
.fa-linux:before {
  content: "\f17c";
}

/* line 1247, app/assets/stylesheets/font-awesome.scss */
.fa-dribbble:before {
  content: "\f17d";
}

/* line 1250, app/assets/stylesheets/font-awesome.scss */
.fa-skype:before {
  content: "\f17e";
}

/* line 1253, app/assets/stylesheets/font-awesome.scss */
.fa-foursquare:before {
  content: "\f180";
}

/* line 1256, app/assets/stylesheets/font-awesome.scss */
.fa-trello:before {
  content: "\f181";
}

/* line 1259, app/assets/stylesheets/font-awesome.scss */
.fa-female:before {
  content: "\f182";
}

/* line 1262, app/assets/stylesheets/font-awesome.scss */
.fa-male:before {
  content: "\f183";
}

/* line 1265, app/assets/stylesheets/font-awesome.scss */
.fa-gittip:before {
  content: "\f184";
}

/* line 1268, app/assets/stylesheets/font-awesome.scss */
.fa-sun-o:before {
  content: "\f185";
}

/* line 1271, app/assets/stylesheets/font-awesome.scss */
.fa-moon-o:before {
  content: "\f186";
}

/* line 1274, app/assets/stylesheets/font-awesome.scss */
.fa-archive:before {
  content: "\f187";
}

/* line 1277, app/assets/stylesheets/font-awesome.scss */
.fa-bug:before {
  content: "\f188";
}

/* line 1280, app/assets/stylesheets/font-awesome.scss */
.fa-vk:before {
  content: "\f189";
}

/* line 1283, app/assets/stylesheets/font-awesome.scss */
.fa-weibo:before {
  content: "\f18a";
}

/* line 1286, app/assets/stylesheets/font-awesome.scss */
.fa-renren:before {
  content: "\f18b";
}

/* line 1289, app/assets/stylesheets/font-awesome.scss */
.fa-pagelines:before {
  content: "\f18c";
}

/* line 1292, app/assets/stylesheets/font-awesome.scss */
.fa-stack-exchange:before {
  content: "\f18d";
}

/* line 1295, app/assets/stylesheets/font-awesome.scss */
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}

/* line 1298, app/assets/stylesheets/font-awesome.scss */
.fa-arrow-circle-o-left:before {
  content: "\f190";
}

/* line 1301, app/assets/stylesheets/font-awesome.scss */
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}

/* line 1305, app/assets/stylesheets/font-awesome.scss */
.fa-dot-circle-o:before {
  content: "\f192";
}

/* line 1308, app/assets/stylesheets/font-awesome.scss */
.fa-wheelchair:before {
  content: "\f193";
}

/* line 1311, app/assets/stylesheets/font-awesome.scss */
.fa-vimeo-square:before {
  content: "\f194";
}

/* line 1314, app/assets/stylesheets/font-awesome.scss */
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}

/* line 1318, app/assets/stylesheets/font-awesome.scss */
.fa-plus-square-o:before {
  content: "\f196";
}

/* line 1321, app/assets/stylesheets/font-awesome.scss */
.fa-space-shuttle:before {
  content: "\f197";
}

/* line 1324, app/assets/stylesheets/font-awesome.scss */
.fa-slack:before {
  content: "\f198";
}

/* line 1327, app/assets/stylesheets/font-awesome.scss */
.fa-envelope-square:before {
  content: "\f199";
}

/* line 1330, app/assets/stylesheets/font-awesome.scss */
.fa-wordpress:before {
  content: "\f19a";
}

/* line 1333, app/assets/stylesheets/font-awesome.scss */
.fa-openid:before {
  content: "\f19b";
}

/* line 1336, app/assets/stylesheets/font-awesome.scss */
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}

/* line 1341, app/assets/stylesheets/font-awesome.scss */
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}

/* line 1345, app/assets/stylesheets/font-awesome.scss */
.fa-yahoo:before {
  content: "\f19e";
}

/* line 1348, app/assets/stylesheets/font-awesome.scss */
.fa-google:before {
  content: "\f1a0";
}

/* line 1351, app/assets/stylesheets/font-awesome.scss */
.fa-reddit:before {
  content: "\f1a1";
}

/* line 1354, app/assets/stylesheets/font-awesome.scss */
.fa-reddit-square:before {
  content: "\f1a2";
}

/* line 1357, app/assets/stylesheets/font-awesome.scss */
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

/* line 1360, app/assets/stylesheets/font-awesome.scss */
.fa-stumbleupon:before {
  content: "\f1a4";
}

/* line 1363, app/assets/stylesheets/font-awesome.scss */
.fa-delicious:before {
  content: "\f1a5";
}

/* line 1366, app/assets/stylesheets/font-awesome.scss */
.fa-digg:before {
  content: "\f1a6";
}

/* line 1369, app/assets/stylesheets/font-awesome.scss */
.fa-pied-piper:before {
  content: "\f1a7";
}

/* line 1372, app/assets/stylesheets/font-awesome.scss */
.fa-pied-piper-alt:before {
  content: "\f1a8";
}

/* line 1375, app/assets/stylesheets/font-awesome.scss */
.fa-drupal:before {
  content: "\f1a9";
}

/* line 1378, app/assets/stylesheets/font-awesome.scss */
.fa-joomla:before {
  content: "\f1aa";
}

/* line 1381, app/assets/stylesheets/font-awesome.scss */
.fa-language:before {
  content: "\f1ab";
}

/* line 1384, app/assets/stylesheets/font-awesome.scss */
.fa-fax:before {
  content: "\f1ac";
}

/* line 1387, app/assets/stylesheets/font-awesome.scss */
.fa-building:before {
  content: "\f1ad";
}

/* line 1390, app/assets/stylesheets/font-awesome.scss */
.fa-child:before {
  content: "\f1ae";
}

/* line 1393, app/assets/stylesheets/font-awesome.scss */
.fa-paw:before {
  content: "\f1b0";
}

/* line 1396, app/assets/stylesheets/font-awesome.scss */
.fa-spoon:before {
  content: "\f1b1";
}

/* line 1399, app/assets/stylesheets/font-awesome.scss */
.fa-cube:before {
  content: "\f1b2";
}

/* line 1402, app/assets/stylesheets/font-awesome.scss */
.fa-cubes:before {
  content: "\f1b3";
}

/* line 1405, app/assets/stylesheets/font-awesome.scss */
.fa-behance:before {
  content: "\f1b4";
}

/* line 1408, app/assets/stylesheets/font-awesome.scss */
.fa-behance-square:before {
  content: "\f1b5";
}

/* line 1411, app/assets/stylesheets/font-awesome.scss */
.fa-steam:before {
  content: "\f1b6";
}

/* line 1414, app/assets/stylesheets/font-awesome.scss */
.fa-steam-square:before {
  content: "\f1b7";
}

/* line 1417, app/assets/stylesheets/font-awesome.scss */
.fa-recycle:before {
  content: "\f1b8";
}

/* line 1420, app/assets/stylesheets/font-awesome.scss */
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}

/* line 1424, app/assets/stylesheets/font-awesome.scss */
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}

/* line 1428, app/assets/stylesheets/font-awesome.scss */
.fa-tree:before {
  content: "\f1bb";
}

/* line 1431, app/assets/stylesheets/font-awesome.scss */
.fa-spotify:before {
  content: "\f1bc";
}

/* line 1434, app/assets/stylesheets/font-awesome.scss */
.fa-deviantart:before {
  content: "\f1bd";
}

/* line 1437, app/assets/stylesheets/font-awesome.scss */
.fa-soundcloud:before {
  content: "\f1be";
}

/* line 1440, app/assets/stylesheets/font-awesome.scss */
.fa-database:before {
  content: "\f1c0";
}

/* line 1443, app/assets/stylesheets/font-awesome.scss */
.fa-file-pdf-o:before {
  content: "\f1c1";
}

/* line 1446, app/assets/stylesheets/font-awesome.scss */
.fa-file-word-o:before {
  content: "\f1c2";
}

/* line 1449, app/assets/stylesheets/font-awesome.scss */
.fa-file-excel-o:before {
  content: "\f1c3";
}

/* line 1452, app/assets/stylesheets/font-awesome.scss */
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}

/* line 1455, app/assets/stylesheets/font-awesome.scss */
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}

/* line 1460, app/assets/stylesheets/font-awesome.scss */
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}

/* line 1464, app/assets/stylesheets/font-awesome.scss */
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}

/* line 1468, app/assets/stylesheets/font-awesome.scss */
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}

/* line 1472, app/assets/stylesheets/font-awesome.scss */
.fa-file-code-o:before {
  content: "\f1c9";
}

/* line 1475, app/assets/stylesheets/font-awesome.scss */
.fa-vine:before {
  content: "\f1ca";
}

/* line 1478, app/assets/stylesheets/font-awesome.scss */
.fa-codepen:before {
  content: "\f1cb";
}

/* line 1481, app/assets/stylesheets/font-awesome.scss */
.fa-jsfiddle:before {
  content: "\f1cc";
}

/* line 1484, app/assets/stylesheets/font-awesome.scss */
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}

/* line 1491, app/assets/stylesheets/font-awesome.scss */
.fa-circle-o-notch:before {
  content: "\f1ce";
}

/* line 1494, app/assets/stylesheets/font-awesome.scss */
.fa-ra:before,
.fa-rebel:before {
  content: "\f1d0";
}

/* line 1498, app/assets/stylesheets/font-awesome.scss */
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}

/* line 1502, app/assets/stylesheets/font-awesome.scss */
.fa-git-square:before {
  content: "\f1d2";
}

/* line 1505, app/assets/stylesheets/font-awesome.scss */
.fa-git:before {
  content: "\f1d3";
}

/* line 1508, app/assets/stylesheets/font-awesome.scss */
.fa-hacker-news:before {
  content: "\f1d4";
}

/* line 1511, app/assets/stylesheets/font-awesome.scss */
.fa-tencent-weibo:before {
  content: "\f1d5";
}

/* line 1514, app/assets/stylesheets/font-awesome.scss */
.fa-qq:before {
  content: "\f1d6";
}

/* line 1517, app/assets/stylesheets/font-awesome.scss */
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}

/* line 1521, app/assets/stylesheets/font-awesome.scss */
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}

/* line 1525, app/assets/stylesheets/font-awesome.scss */
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}

/* line 1529, app/assets/stylesheets/font-awesome.scss */
.fa-history:before {
  content: "\f1da";
}

/* line 1532, app/assets/stylesheets/font-awesome.scss */
.fa-circle-thin:before {
  content: "\f1db";
}

/* line 1535, app/assets/stylesheets/font-awesome.scss */
.fa-header:before {
  content: "\f1dc";
}

/* line 1538, app/assets/stylesheets/font-awesome.scss */
.fa-paragraph:before {
  content: "\f1dd";
}

/* line 1541, app/assets/stylesheets/font-awesome.scss */
.fa-sliders:before {
  content: "\f1de";
}

/* line 1544, app/assets/stylesheets/font-awesome.scss */
.fa-share-alt:before {
  content: "\f1e0";
}

/* line 1547, app/assets/stylesheets/font-awesome.scss */
.fa-share-alt-square:before {
  content: "\f1e1";
}

/* line 1550, app/assets/stylesheets/font-awesome.scss */
.fa-bomb:before {
  content: "\f1e2";
}

/* line 1553, app/assets/stylesheets/font-awesome.scss */
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}

/* line 1557, app/assets/stylesheets/font-awesome.scss */
.fa-tty:before {
  content: "\f1e4";
}

/* line 1560, app/assets/stylesheets/font-awesome.scss */
.fa-binoculars:before {
  content: "\f1e5";
}

/* line 1563, app/assets/stylesheets/font-awesome.scss */
.fa-plug:before {
  content: "\f1e6";
}

/* line 1566, app/assets/stylesheets/font-awesome.scss */
.fa-slideshare:before {
  content: "\f1e7";
}

/* line 1569, app/assets/stylesheets/font-awesome.scss */
.fa-twitch:before {
  content: "\f1e8";
}

/* line 1572, app/assets/stylesheets/font-awesome.scss */
.fa-yelp:before {
  content: "\f1e9";
}

/* line 1575, app/assets/stylesheets/font-awesome.scss */
.fa-newspaper-o:before {
  content: "\f1ea";
}

/* line 1578, app/assets/stylesheets/font-awesome.scss */
.fa-wifi:before {
  content: "\f1eb";
}

/* line 1581, app/assets/stylesheets/font-awesome.scss */
.fa-calculator:before {
  content: "\f1ec";
}

/* line 1584, app/assets/stylesheets/font-awesome.scss */
.fa-paypal:before {
  content: "\f1ed";
}

/* line 1587, app/assets/stylesheets/font-awesome.scss */
.fa-google-wallet:before {
  content: "\f1ee";
}

/* line 1590, app/assets/stylesheets/font-awesome.scss */
.fa-cc-visa:before {
  content: "\f1f0";
}

/* line 1593, app/assets/stylesheets/font-awesome.scss */
.fa-cc-mastercard:before {
  content: "\f1f1";
}

/* line 1596, app/assets/stylesheets/font-awesome.scss */
.fa-cc-discover:before {
  content: "\f1f2";
}

/* line 1599, app/assets/stylesheets/font-awesome.scss */
.fa-cc-amex:before {
  content: "\f1f3";
}

/* line 1602, app/assets/stylesheets/font-awesome.scss */
.fa-cc-paypal:before {
  content: "\f1f4";
}

/* line 1605, app/assets/stylesheets/font-awesome.scss */
.fa-cc-stripe:before {
  content: "\f1f5";
}

/* line 1608, app/assets/stylesheets/font-awesome.scss */
.fa-bell-slash:before {
  content: "\f1f6";
}

/* line 1611, app/assets/stylesheets/font-awesome.scss */
.fa-bell-slash-o:before {
  content: "\f1f7";
}

/* line 1614, app/assets/stylesheets/font-awesome.scss */
.fa-trash:before {
  content: "\f1f8";
}

/* line 1617, app/assets/stylesheets/font-awesome.scss */
.fa-copyright:before {
  content: "\f1f9";
}

/* line 1620, app/assets/stylesheets/font-awesome.scss */
.fa-at:before {
  content: "\f1fa";
}

/* line 1623, app/assets/stylesheets/font-awesome.scss */
.fa-eyedropper:before {
  content: "\f1fb";
}

/* line 1626, app/assets/stylesheets/font-awesome.scss */
.fa-paint-brush:before {
  content: "\f1fc";
}

/* line 1629, app/assets/stylesheets/font-awesome.scss */
.fa-birthday-cake:before {
  content: "\f1fd";
}

/* line 1632, app/assets/stylesheets/font-awesome.scss */
.fa-area-chart:before {
  content: "\f1fe";
}

/* line 1635, app/assets/stylesheets/font-awesome.scss */
.fa-pie-chart:before {
  content: "\f200";
}

/* line 1638, app/assets/stylesheets/font-awesome.scss */
.fa-line-chart:before {
  content: "\f201";
}

/* line 1641, app/assets/stylesheets/font-awesome.scss */
.fa-lastfm:before {
  content: "\f202";
}

/* line 1644, app/assets/stylesheets/font-awesome.scss */
.fa-lastfm-square:before {
  content: "\f203";
}

/* line 1647, app/assets/stylesheets/font-awesome.scss */
.fa-toggle-off:before {
  content: "\f204";
}

/* line 1650, app/assets/stylesheets/font-awesome.scss */
.fa-toggle-on:before {
  content: "\f205";
}

/* line 1653, app/assets/stylesheets/font-awesome.scss */
.fa-bicycle:before {
  content: "\f206";
}

/* line 1656, app/assets/stylesheets/font-awesome.scss */
.fa-bus:before {
  content: "\f207";
}

/* line 1659, app/assets/stylesheets/font-awesome.scss */
.fa-ioxhost:before {
  content: "\f208";
}

/* line 1662, app/assets/stylesheets/font-awesome.scss */
.fa-angellist:before {
  content: "\f209";
}

/* line 1665, app/assets/stylesheets/font-awesome.scss */
.fa-cc:before {
  content: "\f20a";
}

/* line 1668, app/assets/stylesheets/font-awesome.scss */
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}

/* line 1673, app/assets/stylesheets/font-awesome.scss */
.fa-meanpath:before {
  content: "\f20c";
}
[data-aos][data-aos][data-aos-duration="50"],body[data-aos-duration="50"] [data-aos]{transition-duration:50ms}[data-aos][data-aos][data-aos-delay="50"],body[data-aos-delay="50"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="50"].aos-animate,body[data-aos-delay="50"] [data-aos].aos-animate{transition-delay:50ms}[data-aos][data-aos][data-aos-duration="100"],body[data-aos-duration="100"] [data-aos]{transition-duration:.1s}[data-aos][data-aos][data-aos-delay="100"],body[data-aos-delay="100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="100"].aos-animate,body[data-aos-delay="100"] [data-aos].aos-animate{transition-delay:.1s}[data-aos][data-aos][data-aos-duration="150"],body[data-aos-duration="150"] [data-aos]{transition-duration:.15s}[data-aos][data-aos][data-aos-delay="150"],body[data-aos-delay="150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="150"].aos-animate,body[data-aos-delay="150"] [data-aos].aos-animate{transition-delay:.15s}[data-aos][data-aos][data-aos-duration="200"],body[data-aos-duration="200"] [data-aos]{transition-duration:.2s}[data-aos][data-aos][data-aos-delay="200"],body[data-aos-delay="200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="200"].aos-animate,body[data-aos-delay="200"] [data-aos].aos-animate{transition-delay:.2s}[data-aos][data-aos][data-aos-duration="250"],body[data-aos-duration="250"] [data-aos]{transition-duration:.25s}[data-aos][data-aos][data-aos-delay="250"],body[data-aos-delay="250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="250"].aos-animate,body[data-aos-delay="250"] [data-aos].aos-animate{transition-delay:.25s}[data-aos][data-aos][data-aos-duration="300"],body[data-aos-duration="300"] [data-aos]{transition-duration:.3s}[data-aos][data-aos][data-aos-delay="300"],body[data-aos-delay="300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="300"].aos-animate,body[data-aos-delay="300"] [data-aos].aos-animate{transition-delay:.3s}[data-aos][data-aos][data-aos-duration="350"],body[data-aos-duration="350"] [data-aos]{transition-duration:.35s}[data-aos][data-aos][data-aos-delay="350"],body[data-aos-delay="350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="350"].aos-animate,body[data-aos-delay="350"] [data-aos].aos-animate{transition-delay:.35s}[data-aos][data-aos][data-aos-duration="400"],body[data-aos-duration="400"] [data-aos]{transition-duration:.4s}[data-aos][data-aos][data-aos-delay="400"],body[data-aos-delay="400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="400"].aos-animate,body[data-aos-delay="400"] [data-aos].aos-animate{transition-delay:.4s}[data-aos][data-aos][data-aos-duration="450"],body[data-aos-duration="450"] [data-aos]{transition-duration:.45s}[data-aos][data-aos][data-aos-delay="450"],body[data-aos-delay="450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="450"].aos-animate,body[data-aos-delay="450"] [data-aos].aos-animate{transition-delay:.45s}[data-aos][data-aos][data-aos-duration="500"],body[data-aos-duration="500"] [data-aos]{transition-duration:.5s}[data-aos][data-aos][data-aos-delay="500"],body[data-aos-delay="500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="500"].aos-animate,body[data-aos-delay="500"] [data-aos].aos-animate{transition-delay:.5s}[data-aos][data-aos][data-aos-duration="550"],body[data-aos-duration="550"] [data-aos]{transition-duration:.55s}[data-aos][data-aos][data-aos-delay="550"],body[data-aos-delay="550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="550"].aos-animate,body[data-aos-delay="550"] [data-aos].aos-animate{transition-delay:.55s}[data-aos][data-aos][data-aos-duration="600"],body[data-aos-duration="600"] [data-aos]{transition-duration:.6s}[data-aos][data-aos][data-aos-delay="600"],body[data-aos-delay="600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="600"].aos-animate,body[data-aos-delay="600"] [data-aos].aos-animate{transition-delay:.6s}[data-aos][data-aos][data-aos-duration="650"],body[data-aos-duration="650"] [data-aos]{transition-duration:.65s}[data-aos][data-aos][data-aos-delay="650"],body[data-aos-delay="650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="650"].aos-animate,body[data-aos-delay="650"] [data-aos].aos-animate{transition-delay:.65s}[data-aos][data-aos][data-aos-duration="700"],body[data-aos-duration="700"] [data-aos]{transition-duration:.7s}[data-aos][data-aos][data-aos-delay="700"],body[data-aos-delay="700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="700"].aos-animate,body[data-aos-delay="700"] [data-aos].aos-animate{transition-delay:.7s}[data-aos][data-aos][data-aos-duration="750"],body[data-aos-duration="750"] [data-aos]{transition-duration:.75s}[data-aos][data-aos][data-aos-delay="750"],body[data-aos-delay="750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="750"].aos-animate,body[data-aos-delay="750"] [data-aos].aos-animate{transition-delay:.75s}[data-aos][data-aos][data-aos-duration="800"],body[data-aos-duration="800"] [data-aos]{transition-duration:.8s}[data-aos][data-aos][data-aos-delay="800"],body[data-aos-delay="800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="800"].aos-animate,body[data-aos-delay="800"] [data-aos].aos-animate{transition-delay:.8s}[data-aos][data-aos][data-aos-duration="850"],body[data-aos-duration="850"] [data-aos]{transition-duration:.85s}[data-aos][data-aos][data-aos-delay="850"],body[data-aos-delay="850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="850"].aos-animate,body[data-aos-delay="850"] [data-aos].aos-animate{transition-delay:.85s}[data-aos][data-aos][data-aos-duration="900"],body[data-aos-duration="900"] [data-aos]{transition-duration:.9s}[data-aos][data-aos][data-aos-delay="900"],body[data-aos-delay="900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="900"].aos-animate,body[data-aos-delay="900"] [data-aos].aos-animate{transition-delay:.9s}[data-aos][data-aos][data-aos-duration="950"],body[data-aos-duration="950"] [data-aos]{transition-duration:.95s}[data-aos][data-aos][data-aos-delay="950"],body[data-aos-delay="950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="950"].aos-animate,body[data-aos-delay="950"] [data-aos].aos-animate{transition-delay:.95s}[data-aos][data-aos][data-aos-duration="1000"],body[data-aos-duration="1000"] [data-aos]{transition-duration:1s}[data-aos][data-aos][data-aos-delay="1000"],body[data-aos-delay="1000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1000"].aos-animate,body[data-aos-delay="1000"] [data-aos].aos-animate{transition-delay:1s}[data-aos][data-aos][data-aos-duration="1050"],body[data-aos-duration="1050"] [data-aos]{transition-duration:1.05s}[data-aos][data-aos][data-aos-delay="1050"],body[data-aos-delay="1050"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1050"].aos-animate,body[data-aos-delay="1050"] [data-aos].aos-animate{transition-delay:1.05s}[data-aos][data-aos][data-aos-duration="1100"],body[data-aos-duration="1100"] [data-aos]{transition-duration:1.1s}[data-aos][data-aos][data-aos-delay="1100"],body[data-aos-delay="1100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1100"].aos-animate,body[data-aos-delay="1100"] [data-aos].aos-animate{transition-delay:1.1s}[data-aos][data-aos][data-aos-duration="1150"],body[data-aos-duration="1150"] [data-aos]{transition-duration:1.15s}[data-aos][data-aos][data-aos-delay="1150"],body[data-aos-delay="1150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1150"].aos-animate,body[data-aos-delay="1150"] [data-aos].aos-animate{transition-delay:1.15s}[data-aos][data-aos][data-aos-duration="1200"],body[data-aos-duration="1200"] [data-aos]{transition-duration:1.2s}[data-aos][data-aos][data-aos-delay="1200"],body[data-aos-delay="1200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1200"].aos-animate,body[data-aos-delay="1200"] [data-aos].aos-animate{transition-delay:1.2s}[data-aos][data-aos][data-aos-duration="1250"],body[data-aos-duration="1250"] [data-aos]{transition-duration:1.25s}[data-aos][data-aos][data-aos-delay="1250"],body[data-aos-delay="1250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1250"].aos-animate,body[data-aos-delay="1250"] [data-aos].aos-animate{transition-delay:1.25s}[data-aos][data-aos][data-aos-duration="1300"],body[data-aos-duration="1300"] [data-aos]{transition-duration:1.3s}[data-aos][data-aos][data-aos-delay="1300"],body[data-aos-delay="1300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1300"].aos-animate,body[data-aos-delay="1300"] [data-aos].aos-animate{transition-delay:1.3s}[data-aos][data-aos][data-aos-duration="1350"],body[data-aos-duration="1350"] [data-aos]{transition-duration:1.35s}[data-aos][data-aos][data-aos-delay="1350"],body[data-aos-delay="1350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1350"].aos-animate,body[data-aos-delay="1350"] [data-aos].aos-animate{transition-delay:1.35s}[data-aos][data-aos][data-aos-duration="1400"],body[data-aos-duration="1400"] [data-aos]{transition-duration:1.4s}[data-aos][data-aos][data-aos-delay="1400"],body[data-aos-delay="1400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1400"].aos-animate,body[data-aos-delay="1400"] [data-aos].aos-animate{transition-delay:1.4s}[data-aos][data-aos][data-aos-duration="1450"],body[data-aos-duration="1450"] [data-aos]{transition-duration:1.45s}[data-aos][data-aos][data-aos-delay="1450"],body[data-aos-delay="1450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1450"].aos-animate,body[data-aos-delay="1450"] [data-aos].aos-animate{transition-delay:1.45s}[data-aos][data-aos][data-aos-duration="1500"],body[data-aos-duration="1500"] [data-aos]{transition-duration:1.5s}[data-aos][data-aos][data-aos-delay="1500"],body[data-aos-delay="1500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1500"].aos-animate,body[data-aos-delay="1500"] [data-aos].aos-animate{transition-delay:1.5s}[data-aos][data-aos][data-aos-duration="1550"],body[data-aos-duration="1550"] [data-aos]{transition-duration:1.55s}[data-aos][data-aos][data-aos-delay="1550"],body[data-aos-delay="1550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1550"].aos-animate,body[data-aos-delay="1550"] [data-aos].aos-animate{transition-delay:1.55s}[data-aos][data-aos][data-aos-duration="1600"],body[data-aos-duration="1600"] [data-aos]{transition-duration:1.6s}[data-aos][data-aos][data-aos-delay="1600"],body[data-aos-delay="1600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1600"].aos-animate,body[data-aos-delay="1600"] [data-aos].aos-animate{transition-delay:1.6s}[data-aos][data-aos][data-aos-duration="1650"],body[data-aos-duration="1650"] [data-aos]{transition-duration:1.65s}[data-aos][data-aos][data-aos-delay="1650"],body[data-aos-delay="1650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1650"].aos-animate,body[data-aos-delay="1650"] [data-aos].aos-animate{transition-delay:1.65s}[data-aos][data-aos][data-aos-duration="1700"],body[data-aos-duration="1700"] [data-aos]{transition-duration:1.7s}[data-aos][data-aos][data-aos-delay="1700"],body[data-aos-delay="1700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1700"].aos-animate,body[data-aos-delay="1700"] [data-aos].aos-animate{transition-delay:1.7s}[data-aos][data-aos][data-aos-duration="1750"],body[data-aos-duration="1750"] [data-aos]{transition-duration:1.75s}[data-aos][data-aos][data-aos-delay="1750"],body[data-aos-delay="1750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1750"].aos-animate,body[data-aos-delay="1750"] [data-aos].aos-animate{transition-delay:1.75s}[data-aos][data-aos][data-aos-duration="1800"],body[data-aos-duration="1800"] [data-aos]{transition-duration:1.8s}[data-aos][data-aos][data-aos-delay="1800"],body[data-aos-delay="1800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1800"].aos-animate,body[data-aos-delay="1800"] [data-aos].aos-animate{transition-delay:1.8s}[data-aos][data-aos][data-aos-duration="1850"],body[data-aos-duration="1850"] [data-aos]{transition-duration:1.85s}[data-aos][data-aos][data-aos-delay="1850"],body[data-aos-delay="1850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1850"].aos-animate,body[data-aos-delay="1850"] [data-aos].aos-animate{transition-delay:1.85s}[data-aos][data-aos][data-aos-duration="1900"],body[data-aos-duration="1900"] [data-aos]{transition-duration:1.9s}[data-aos][data-aos][data-aos-delay="1900"],body[data-aos-delay="1900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1900"].aos-animate,body[data-aos-delay="1900"] [data-aos].aos-animate{transition-delay:1.9s}[data-aos][data-aos][data-aos-duration="1950"],body[data-aos-duration="1950"] [data-aos]{transition-duration:1.95s}[data-aos][data-aos][data-aos-delay="1950"],body[data-aos-delay="1950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1950"].aos-animate,body[data-aos-delay="1950"] [data-aos].aos-animate{transition-delay:1.95s}[data-aos][data-aos][data-aos-duration="2000"],body[data-aos-duration="2000"] [data-aos]{transition-duration:2s}[data-aos][data-aos][data-aos-delay="2000"],body[data-aos-delay="2000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2000"].aos-animate,body[data-aos-delay="2000"] [data-aos].aos-animate{transition-delay:2s}[data-aos][data-aos][data-aos-duration="2050"],body[data-aos-duration="2050"] [data-aos]{transition-duration:2.05s}[data-aos][data-aos][data-aos-delay="2050"],body[data-aos-delay="2050"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2050"].aos-animate,body[data-aos-delay="2050"] [data-aos].aos-animate{transition-delay:2.05s}[data-aos][data-aos][data-aos-duration="2100"],body[data-aos-duration="2100"] [data-aos]{transition-duration:2.1s}[data-aos][data-aos][data-aos-delay="2100"],body[data-aos-delay="2100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2100"].aos-animate,body[data-aos-delay="2100"] [data-aos].aos-animate{transition-delay:2.1s}[data-aos][data-aos][data-aos-duration="2150"],body[data-aos-duration="2150"] [data-aos]{transition-duration:2.15s}[data-aos][data-aos][data-aos-delay="2150"],body[data-aos-delay="2150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2150"].aos-animate,body[data-aos-delay="2150"] [data-aos].aos-animate{transition-delay:2.15s}[data-aos][data-aos][data-aos-duration="2200"],body[data-aos-duration="2200"] [data-aos]{transition-duration:2.2s}[data-aos][data-aos][data-aos-delay="2200"],body[data-aos-delay="2200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2200"].aos-animate,body[data-aos-delay="2200"] [data-aos].aos-animate{transition-delay:2.2s}[data-aos][data-aos][data-aos-duration="2250"],body[data-aos-duration="2250"] [data-aos]{transition-duration:2.25s}[data-aos][data-aos][data-aos-delay="2250"],body[data-aos-delay="2250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2250"].aos-animate,body[data-aos-delay="2250"] [data-aos].aos-animate{transition-delay:2.25s}[data-aos][data-aos][data-aos-duration="2300"],body[data-aos-duration="2300"] [data-aos]{transition-duration:2.3s}[data-aos][data-aos][data-aos-delay="2300"],body[data-aos-delay="2300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2300"].aos-animate,body[data-aos-delay="2300"] [data-aos].aos-animate{transition-delay:2.3s}[data-aos][data-aos][data-aos-duration="2350"],body[data-aos-duration="2350"] [data-aos]{transition-duration:2.35s}[data-aos][data-aos][data-aos-delay="2350"],body[data-aos-delay="2350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2350"].aos-animate,body[data-aos-delay="2350"] [data-aos].aos-animate{transition-delay:2.35s}[data-aos][data-aos][data-aos-duration="2400"],body[data-aos-duration="2400"] [data-aos]{transition-duration:2.4s}[data-aos][data-aos][data-aos-delay="2400"],body[data-aos-delay="2400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2400"].aos-animate,body[data-aos-delay="2400"] [data-aos].aos-animate{transition-delay:2.4s}[data-aos][data-aos][data-aos-duration="2450"],body[data-aos-duration="2450"] [data-aos]{transition-duration:2.45s}[data-aos][data-aos][data-aos-delay="2450"],body[data-aos-delay="2450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2450"].aos-animate,body[data-aos-delay="2450"] [data-aos].aos-animate{transition-delay:2.45s}[data-aos][data-aos][data-aos-duration="2500"],body[data-aos-duration="2500"] [data-aos]{transition-duration:2.5s}[data-aos][data-aos][data-aos-delay="2500"],body[data-aos-delay="2500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2500"].aos-animate,body[data-aos-delay="2500"] [data-aos].aos-animate{transition-delay:2.5s}[data-aos][data-aos][data-aos-duration="2550"],body[data-aos-duration="2550"] [data-aos]{transition-duration:2.55s}[data-aos][data-aos][data-aos-delay="2550"],body[data-aos-delay="2550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2550"].aos-animate,body[data-aos-delay="2550"] [data-aos].aos-animate{transition-delay:2.55s}[data-aos][data-aos][data-aos-duration="2600"],body[data-aos-duration="2600"] [data-aos]{transition-duration:2.6s}[data-aos][data-aos][data-aos-delay="2600"],body[data-aos-delay="2600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2600"].aos-animate,body[data-aos-delay="2600"] [data-aos].aos-animate{transition-delay:2.6s}[data-aos][data-aos][data-aos-duration="2650"],body[data-aos-duration="2650"] [data-aos]{transition-duration:2.65s}[data-aos][data-aos][data-aos-delay="2650"],body[data-aos-delay="2650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2650"].aos-animate,body[data-aos-delay="2650"] [data-aos].aos-animate{transition-delay:2.65s}[data-aos][data-aos][data-aos-duration="2700"],body[data-aos-duration="2700"] [data-aos]{transition-duration:2.7s}[data-aos][data-aos][data-aos-delay="2700"],body[data-aos-delay="2700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2700"].aos-animate,body[data-aos-delay="2700"] [data-aos].aos-animate{transition-delay:2.7s}[data-aos][data-aos][data-aos-duration="2750"],body[data-aos-duration="2750"] [data-aos]{transition-duration:2.75s}[data-aos][data-aos][data-aos-delay="2750"],body[data-aos-delay="2750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2750"].aos-animate,body[data-aos-delay="2750"] [data-aos].aos-animate{transition-delay:2.75s}[data-aos][data-aos][data-aos-duration="2800"],body[data-aos-duration="2800"] [data-aos]{transition-duration:2.8s}[data-aos][data-aos][data-aos-delay="2800"],body[data-aos-delay="2800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2800"].aos-animate,body[data-aos-delay="2800"] [data-aos].aos-animate{transition-delay:2.8s}[data-aos][data-aos][data-aos-duration="2850"],body[data-aos-duration="2850"] [data-aos]{transition-duration:2.85s}[data-aos][data-aos][data-aos-delay="2850"],body[data-aos-delay="2850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2850"].aos-animate,body[data-aos-delay="2850"] [data-aos].aos-animate{transition-delay:2.85s}[data-aos][data-aos][data-aos-duration="2900"],body[data-aos-duration="2900"] [data-aos]{transition-duration:2.9s}[data-aos][data-aos][data-aos-delay="2900"],body[data-aos-delay="2900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2900"].aos-animate,body[data-aos-delay="2900"] [data-aos].aos-animate{transition-delay:2.9s}[data-aos][data-aos][data-aos-duration="2950"],body[data-aos-duration="2950"] [data-aos]{transition-duration:2.95s}[data-aos][data-aos][data-aos-delay="2950"],body[data-aos-delay="2950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2950"].aos-animate,body[data-aos-delay="2950"] [data-aos].aos-animate{transition-delay:2.95s}[data-aos][data-aos][data-aos-duration="3000"],body[data-aos-duration="3000"] [data-aos]{transition-duration:3s}[data-aos][data-aos][data-aos-delay="3000"],body[data-aos-delay="3000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="3000"].aos-animate,body[data-aos-delay="3000"] [data-aos].aos-animate{transition-delay:3s}[data-aos][data-aos][data-aos-easing=linear],body[data-aos-easing=linear] [data-aos]{transition-timing-function:cubic-bezier(.25,.25,.75,.75)}[data-aos][data-aos][data-aos-easing=ease],body[data-aos-easing=ease] [data-aos]{transition-timing-function:ease}[data-aos][data-aos][data-aos-easing=ease-in],body[data-aos-easing=ease-in] [data-aos]{transition-timing-function:ease-in}[data-aos][data-aos][data-aos-easing=ease-out],body[data-aos-easing=ease-out] [data-aos]{transition-timing-function:ease-out}[data-aos][data-aos][data-aos-easing=ease-in-out],body[data-aos-easing=ease-in-out] [data-aos]{transition-timing-function:ease-in-out}[data-aos][data-aos][data-aos-easing=ease-in-back],body[data-aos-easing=ease-in-back] [data-aos]{transition-timing-function:cubic-bezier(.6,-.28,.735,.045)}[data-aos][data-aos][data-aos-easing=ease-out-back],body[data-aos-easing=ease-out-back] [data-aos]{transition-timing-function:cubic-bezier(.175,.885,.32,1.275)}[data-aos][data-aos][data-aos-easing=ease-in-out-back],body[data-aos-easing=ease-in-out-back] [data-aos]{transition-timing-function:cubic-bezier(.68,-.55,.265,1.55)}[data-aos][data-aos][data-aos-easing=ease-in-sine],body[data-aos-easing=ease-in-sine] [data-aos]{transition-timing-function:cubic-bezier(.47,0,.745,.715)}[data-aos][data-aos][data-aos-easing=ease-out-sine],body[data-aos-easing=ease-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.39,.575,.565,1)}[data-aos][data-aos][data-aos-easing=ease-in-out-sine],body[data-aos-easing=ease-in-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.445,.05,.55,.95)}[data-aos][data-aos][data-aos-easing=ease-in-quad],body[data-aos-easing=ease-in-quad] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quad],body[data-aos-easing=ease-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quad],body[data-aos-easing=ease-in-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-cubic],body[data-aos-easing=ease-in-cubic] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-cubic],body[data-aos-easing=ease-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-cubic],body[data-aos-easing=ease-in-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-quart],body[data-aos-easing=ease-in-quart] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quart],body[data-aos-easing=ease-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quart],body[data-aos-easing=ease-in-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos^=fade][data-aos^=fade]{opacity:0;transition-property:opacity,transform}[data-aos^=fade][data-aos^=fade].aos-animate{opacity:1;transform:translateZ(0)}[data-aos=fade-up]{transform:translate3d(0,100px,0)}[data-aos=fade-down]{transform:translate3d(0,-100px,0)}[data-aos=fade-right]{transform:translate3d(-100px,0,0)}[data-aos=fade-left]{transform:translate3d(100px,0,0)}[data-aos=fade-up-right]{transform:translate3d(-100px,100px,0)}[data-aos=fade-up-left]{transform:translate3d(100px,100px,0)}[data-aos=fade-down-right]{transform:translate3d(-100px,-100px,0)}[data-aos=fade-down-left]{transform:translate3d(100px,-100px,0)}[data-aos^=zoom][data-aos^=zoom]{opacity:0;transition-property:opacity,transform}[data-aos^=zoom][data-aos^=zoom].aos-animate{opacity:1;transform:translateZ(0) scale(1)}[data-aos=zoom-in]{transform:scale(.6)}[data-aos=zoom-in-up]{transform:translate3d(0,100px,0) scale(.6)}[data-aos=zoom-in-down]{transform:translate3d(0,-100px,0) scale(.6)}[data-aos=zoom-in-right]{transform:translate3d(-100px,0,0) scale(.6)}[data-aos=zoom-in-left]{transform:translate3d(100px,0,0) scale(.6)}[data-aos=zoom-out]{transform:scale(1.2)}[data-aos=zoom-out-up]{transform:translate3d(0,100px,0) scale(1.2)}[data-aos=zoom-out-down]{transform:translate3d(0,-100px,0) scale(1.2)}[data-aos=zoom-out-right]{transform:translate3d(-100px,0,0) scale(1.2)}[data-aos=zoom-out-left]{transform:translate3d(100px,0,0) scale(1.2)}[data-aos^=slide][data-aos^=slide]{transition-property:transform}[data-aos^=slide][data-aos^=slide].aos-animate{transform:translateZ(0)}[data-aos=slide-up]{transform:translate3d(0,100%,0)}[data-aos=slide-down]{transform:translate3d(0,-100%,0)}[data-aos=slide-right]{transform:translate3d(-100%,0,0)}[data-aos=slide-left]{transform:translate3d(100%,0,0)}[data-aos^=flip][data-aos^=flip]{backface-visibility:hidden;transition-property:transform}[data-aos=flip-left]{transform:perspective(2500px) rotateY(-100deg)}[data-aos=flip-left].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-right]{transform:perspective(2500px) rotateY(100deg)}[data-aos=flip-right].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-up]{transform:perspective(2500px) rotateX(-100deg)}[data-aos=flip-up].aos-animate{transform:perspective(2500px) rotateX(0)}[data-aos=flip-down]{transform:perspective(2500px) rotateX(100deg)}[data-aos=flip-down].aos-animate{transform:perspective(2500px) rotateX(0)}
.login.login-1 .login-aside .aside-img {
  min-height: 450px; }

.login.login-1 .login-signin,
.login.login-1 .login-signup,
.login.login-1 .login-forgot {
  display: none; }

.login.login-1.login-signin-on .login-signup {
  display: none; }

.login.login-1.login-signin-on .login-signin {
  display: block; }

.login.login-1.login-signin-on .login-forgot {
  display: none; }

.login.login-1.login-signup-on .login-signup {
  display: block; }

.login.login-1.login-signup-on .login-signin {
  display: none; }

.login.login-1.login-signup-on .login-forgot {
  display: none; }

.login.login-1.login-forgot-on .login-signup {
  display: none; }

.login.login-1.login-forgot-on .login-signin {
  display: none; }

.login.login-1.login-forgot-on .login-forgot {
  display: block; }

@media (min-width: 992px) {
  .login.login-1 .login-aside {
    width: 100%;
    max-width: 50%; }
  .login.login-1 .login-content {
    width: 100%;
    max-width: 600px; }
    .login.login-1 .login-content .login-form {
      width: 100%;
      max-width: 450px; } }

@media (min-width: 992px) and (max-width: 1399.98px) {
  .login.login-1 .login-aside {
    width: 100%;
    max-width: 50%; } }

@media (max-width: 991.98px) {
  .login.login-1 .login-content .login-form {
    width: 100%;
    max-width: 400px; } }

@media (max-width: 575.98px) {
  .login.login-1 .aside-img {
    min-height: 300px !important;
    background-size: 400px; }
  .login.login-1 .login-content .login-form {
    width: 100%;
    max-width: 100%; } }



.steps-sidebar .wizard-nav {
    padding: 0; }
    .steps-sidebar .wizard-nav .wizard-steps {
      display: flex;
      flex-direction: column;
      justify-content: center; }
      .steps-sidebar .wizard-nav .wizard-steps .wizard-step {
        padding: 0.75rem 0;
        transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
        margin-bottom: 1.5rem; }
        .steps-sidebar .wizard-nav .wizard-steps .wizard-step:last-child {
          margin-bottom: 0; }
        .steps-sidebar .wizard-nav .wizard-steps .wizard-step .wizard-wrapper {
          display: flex; }
        .steps-sidebar .wizard-nav .wizard-steps .wizard-step .wizard-icon {
          display: flex;
          align-items: center;
          justify-content: center;
          transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
          width: 40px;
          height: 40px;
          border-radius: 50px;
          background-color: #fff;
          border:1px solid #355694;
          margin-right: 1.4rem; }
          .steps-sidebar .wizard-nav .wizard-steps .wizard-step .wizard-icon .wizard-check {
            display: none;
            font-size: 1.4rem; }
          .steps-sidebar .wizard-nav .wizard-steps .wizard-step .wizard-icon .wizard-number {
            font-weight: 600;
            color: #3F4254;
            font-size: 1.35rem; }
        .steps-sidebar .wizard-nav .wizard-steps .wizard-step .wizard-label {
          display: flex;
          flex-direction: column;
          justify-content: center; }
          .steps-sidebar .wizard-nav .wizard-steps .wizard-step .wizard-label .wizard-title {
            color: #0F121D;
            font-weight: 500;
            font-size: 1.6rem;
            margin-bottom: 0px;
            font-family: 'IBM Plex Sans' , sans-serif !important;
            margin-left: 10px; }
          .steps-sidebar .wizard-nav .wizard-steps .wizard-step .wizard-label .wizard-desc {
            color: #B5B5C3;
            font-size: 1.08rem;
            font-weight: 500; }
        .steps-sidebar .wizard-nav .wizard-steps .wizard-step[data-wizard-state="done"] .wizard-icon {
          transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
          background-color: #C9F7F5; 
          background-color: #23C497;
          border-color: #23C497;
        }
          .steps-sidebar .wizard-nav .wizard-steps .wizard-step[data-wizard-state="done"] .wizard-icon .wizard-check {
            color: #fff;
            display: inline-block;}
          .steps-sidebar .wizard-nav .wizard-steps .wizard-step[data-wizard-state="done"] .wizard-icon .wizard-number {
            display: none; }
        .steps-sidebar .wizard-nav .wizard-steps .wizard-step[data-wizard-state="done"] .wizard-label .wizard-title {
          color: #0F121D; }
        .steps-sidebar .wizard-nav .wizard-steps .wizard-step[data-wizard-state="done"] .wizard-label .wizard-desc {
          color: #D1D3E0; }
        .steps-sidebar .wizard-nav .wizard-steps .wizard-step[data-wizard-state="current"] {
          transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease; }
          .steps-sidebar .wizard-nav .wizard-steps .wizard-step[data-wizard-state="current"] .wizard-icon {
            transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
            background-color: #355694;
            border-color: #355694;
            color: #fff; }
            .steps-sidebar .wizard-nav .wizard-steps .wizard-step[data-wizard-state="current"] .wizard-icon .wizard-check {
              color: #1BC5BD;
              display: none; }
            .steps-sidebar .wizard-nav .wizard-steps .wizard-step[data-wizard-state="current"] .wizard-icon .wizard-number {
              color: #fff; }
          .steps-sidebar .wizard-nav .wizard-steps .wizard-step[data-wizard-state="current"] .wizard-label .wizard-title {
            color: #355694;
            font-weight: bold; }
          .steps-sidebar .wizard-nav .wizard-steps .wizard-step[data-wizard-state="current"] .wizard-label .wizard-desc {
            color: #B5B5C3; }
  .steps-sidebar .aside-img-wizard {
    min-height: 320px !important;
    background-size: 400px; }

  .signup-content .form-group .fv-help-block {
    font-size: 1.1rem !important;
    padding-top: 3px; }

@media (min-width: 992px) {
  .steps-sidebar {
    width: 100%;
    max-width: 600px; }
    .steps-sidebar .aside-img {
      min-height: 550px !important;
      background-size: 630px; }
  .signup-content .top-signup {
    max-width: 650px;
    width: 100%; }
  .signup-content .top-signin {
    max-width: 450px;
    width: 100%; }
  .signup-content .top-forgot {
    max-width: 450px;
    width: 100%; }
  .signup-content div#step_1 {
    width: 100%;
    max-width: 450px; }
    .signup-content div#step_1 {
    max-width: 650px;
} }

@media (min-width: 992px) and (max-width: 1399.98px) {
  .steps-sidebar {
    width: 100%;
    max-width: 400px; } }

@media (max-width: 991.98px) {
  .steps-sidebar .aside-img {
    min-height: 500px !important;
    background-size: 500px; }
  .steps-sidebar .login-logo {
    text-align: center; }
  .steps-sidebar .wizard-nav {
    padding: 0;
    align-content: center; }
    .steps-sidebar .wizard-nav .wizard-steps .wizard-step {
      margin-bottom: .5rem; }
      .steps-sidebar .wizard-nav .wizard-steps .wizard-step:last-child {
        margin-bottom: 0; }
  .signup-content .top-signup {
    width: 100%;
    max-width: 400px; }
  .signup-content .top-signin {
    max-width: 400px;
    width: 100%; }
  .signup-content .top-forgot {
    max-width: 400px;
    width: 100%; }
  .signup-content div#step_1  {
    width: 100%;
    max-width: 400px; } }

@media (max-width: 575.98px) {
  .steps-sidebar .aside-img {
    min-height: 300px !important;
    background-size: 350px; } }
/* line 1, app/assets/stylesheets/intlTelInput.scss */
.iti {
  position: relative;
  display: inline-block;
}

/* line 4, app/assets/stylesheets/intlTelInput.scss */
.iti * {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

/* line 7, app/assets/stylesheets/intlTelInput.scss */
.iti__hide {
  display: none;
}

/* line 9, app/assets/stylesheets/intlTelInput.scss */
.iti__v-hide {
  visibility: hidden;
}

/* line 11, app/assets/stylesheets/intlTelInput.scss */
.iti input, .iti input[type=text], .iti input[type=tel] {
  position: relative;
  z-index: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-right: 36px;
  margin-right: 0;
}

/* line 18, app/assets/stylesheets/intlTelInput.scss */
.iti__flag-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 1px;
}

/* line 24, app/assets/stylesheets/intlTelInput.scss */
.iti__selected-flag {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 6px 0 8px;
}

/* line 31, app/assets/stylesheets/intlTelInput.scss */
.iti__arrow {
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #555;
}

/* line 38, app/assets/stylesheets/intlTelInput.scss */
.iti__arrow--up {
  border-top: none;
  border-bottom: 4px solid #555;
}

/* line 41, app/assets/stylesheets/intlTelInput.scss */
.iti__country-list {
  position: absolute;
  z-index: 2;
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0 0 0 -1px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  background-color: white;
  border: 1px solid #CCC;
  white-space: nowrap;
  max-height: 200px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

/* line 55, app/assets/stylesheets/intlTelInput.scss */
.iti__country-list--dropup {
  bottom: 100%;
  margin-bottom: -1px;
}

@media (max-width: 500px) {
  /* line 59, app/assets/stylesheets/intlTelInput.scss */
  .iti__country-list {
    white-space: normal;
  }
}

/* line 61, app/assets/stylesheets/intlTelInput.scss */
.iti__flag-box {
  display: inline-block;
  width: 20px;
}

/* line 64, app/assets/stylesheets/intlTelInput.scss */
.iti__divider {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #CCC;
}

/* line 68, app/assets/stylesheets/intlTelInput.scss */
.iti__country {
  padding: 5px 10px;
  outline: none;
}

/* line 71, app/assets/stylesheets/intlTelInput.scss */
.iti__dial-code {
  color: #999;
}

/* line 73, app/assets/stylesheets/intlTelInput.scss */
.iti__country.iti__highlight {
  background-color: rgba(0, 0, 0, 0.05);
}

/* line 75, app/assets/stylesheets/intlTelInput.scss */
.iti__flag-box, .iti__country-name, .iti__dial-code {
  vertical-align: middle;
}

/* line 77, app/assets/stylesheets/intlTelInput.scss */
.iti__flag-box, .iti__country-name {
  margin-right: 6px;
}

/* line 79, app/assets/stylesheets/intlTelInput.scss */
.iti--allow-dropdown input, .iti--allow-dropdown input[type=text], .iti--allow-dropdown input[type=tel], .iti--separate-dial-code input, .iti--separate-dial-code input[type=text], .iti--separate-dial-code input[type=tel] {
  padding-right: 6px;
  padding-left: 52px;
  margin-left: 0;
}

/* line 83, app/assets/stylesheets/intlTelInput.scss */
.iti--allow-dropdown .iti__flag-container, .iti--separate-dial-code .iti__flag-container {
  right: auto;
  left: 0;
}

/* line 86, app/assets/stylesheets/intlTelInput.scss */
.iti--allow-dropdown .iti__flag-container:hover {
  cursor: pointer;
}

/* line 88, app/assets/stylesheets/intlTelInput.scss */
.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
}

/* line 90, app/assets/stylesheets/intlTelInput.scss */
.iti--allow-dropdown input[disabled] + .iti__flag-container:hover,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover {
  cursor: default;
}

/* line 93, app/assets/stylesheets/intlTelInput.scss */
.iti--allow-dropdown input[disabled] + .iti__flag-container:hover .iti__selected-flag,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover .iti__selected-flag {
  background-color: transparent;
}

/* line 96, app/assets/stylesheets/intlTelInput.scss */
.iti--separate-dial-code .iti__selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
}

/* line 98, app/assets/stylesheets/intlTelInput.scss */
.iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 6px;
}

/* line 100, app/assets/stylesheets/intlTelInput.scss */
.iti--container {
  position: absolute;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: 1px;
}

/* line 106, app/assets/stylesheets/intlTelInput.scss */
.iti--container:hover {
  cursor: pointer;
}

/* line 109, app/assets/stylesheets/intlTelInput.scss */
.iti-mobile .iti--container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed;
}

/* line 116, app/assets/stylesheets/intlTelInput.scss */
.iti-mobile .iti__country-list {
  max-height: 100%;
  width: 100%;
}

/* line 120, app/assets/stylesheets/intlTelInput.scss */
.iti-mobile .iti__country {
  padding: 10px 10px;
  line-height: 1.5em;
}

/* line 124, app/assets/stylesheets/intlTelInput.scss */
.iti__flag {
  width: 20px;
}

/* line 126, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__be {
  width: 18px;
}

/* line 128, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ch {
  width: 15px;
}

/* line 130, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__mc {
  width: 19px;
}

/* line 132, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ne {
  width: 18px;
}

/* line 134, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__np {
  width: 13px;
}

/* line 136, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__va {
  width: 15px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* line 139, app/assets/stylesheets/intlTelInput.scss */
  .iti__flag {
    background-size: 5652px 15px;
  }
}

/* line 141, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ac {
  height: 10px;
  background-position: 0px 0px;
}

/* line 144, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ad {
  height: 14px;
  background-position: -22px 0px;
}

/* line 147, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ae {
  height: 10px;
  background-position: -44px 0px;
}

/* line 150, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__af {
  height: 14px;
  background-position: -66px 0px;
}

/* line 153, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ag {
  height: 14px;
  background-position: -88px 0px;
}

/* line 156, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ai {
  height: 10px;
  background-position: -110px 0px;
}

/* line 159, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__al {
  height: 15px;
  background-position: -132px 0px;
}

/* line 162, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__am {
  height: 10px;
  background-position: -154px 0px;
}

/* line 165, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ao {
  height: 14px;
  background-position: -176px 0px;
}

/* line 168, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__aq {
  height: 14px;
  background-position: -198px 0px;
}

/* line 171, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ar {
  height: 13px;
  background-position: -220px 0px;
}

/* line 174, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__as {
  height: 10px;
  background-position: -242px 0px;
}

/* line 177, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__at {
  height: 14px;
  background-position: -264px 0px;
}

/* line 180, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__au {
  height: 10px;
  background-position: -286px 0px;
}

/* line 183, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__aw {
  height: 14px;
  background-position: -308px 0px;
}

/* line 186, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ax {
  height: 13px;
  background-position: -330px 0px;
}

/* line 189, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__az {
  height: 10px;
  background-position: -352px 0px;
}

/* line 192, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ba {
  height: 10px;
  background-position: -374px 0px;
}

/* line 195, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__bb {
  height: 14px;
  background-position: -396px 0px;
}

/* line 198, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__bd {
  height: 12px;
  background-position: -418px 0px;
}

/* line 201, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__be {
  height: 15px;
  background-position: -440px 0px;
}

/* line 204, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__bf {
  height: 14px;
  background-position: -460px 0px;
}

/* line 207, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__bg {
  height: 12px;
  background-position: -482px 0px;
}

/* line 210, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__bh {
  height: 12px;
  background-position: -504px 0px;
}

/* line 213, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__bi {
  height: 12px;
  background-position: -526px 0px;
}

/* line 216, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__bj {
  height: 14px;
  background-position: -548px 0px;
}

/* line 219, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__bl {
  height: 14px;
  background-position: -570px 0px;
}

/* line 222, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__bm {
  height: 10px;
  background-position: -592px 0px;
}

/* line 225, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__bn {
  height: 10px;
  background-position: -614px 0px;
}

/* line 228, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__bo {
  height: 14px;
  background-position: -636px 0px;
}

/* line 231, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__bq {
  height: 14px;
  background-position: -658px 0px;
}

/* line 234, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__br {
  height: 14px;
  background-position: -680px 0px;
}

/* line 237, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__bs {
  height: 10px;
  background-position: -702px 0px;
}

/* line 240, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__bt {
  height: 14px;
  background-position: -724px 0px;
}

/* line 243, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__bv {
  height: 15px;
  background-position: -746px 0px;
}

/* line 246, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__bw {
  height: 14px;
  background-position: -768px 0px;
}

/* line 249, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__by {
  height: 10px;
  background-position: -790px 0px;
}

/* line 252, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__bz {
  height: 14px;
  background-position: -812px 0px;
}

/* line 255, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ca {
  height: 10px;
  background-position: -834px 0px;
}

/* line 258, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__cc {
  height: 10px;
  background-position: -856px 0px;
}

/* line 261, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__cd {
  height: 15px;
  background-position: -878px 0px;
}

/* line 264, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__cf {
  height: 14px;
  background-position: -900px 0px;
}

/* line 267, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__cg {
  height: 14px;
  background-position: -922px 0px;
}

/* line 270, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ch {
  height: 15px;
  background-position: -944px 0px;
}

/* line 273, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ci {
  height: 14px;
  background-position: -961px 0px;
}

/* line 276, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ck {
  height: 10px;
  background-position: -983px 0px;
}

/* line 279, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__cl {
  height: 14px;
  background-position: -1005px 0px;
}

/* line 282, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__cm {
  height: 14px;
  background-position: -1027px 0px;
}

/* line 285, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__cn {
  height: 14px;
  background-position: -1049px 0px;
}

/* line 288, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__co {
  height: 14px;
  background-position: -1071px 0px;
}

/* line 291, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__cp {
  height: 14px;
  background-position: -1093px 0px;
}

/* line 294, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__cr {
  height: 12px;
  background-position: -1115px 0px;
}

/* line 297, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__cu {
  height: 10px;
  background-position: -1137px 0px;
}

/* line 300, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__cv {
  height: 12px;
  background-position: -1159px 0px;
}

/* line 303, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__cw {
  height: 14px;
  background-position: -1181px 0px;
}

/* line 306, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__cx {
  height: 10px;
  background-position: -1203px 0px;
}

/* line 309, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__cy {
  height: 14px;
  background-position: -1225px 0px;
}

/* line 312, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__cz {
  height: 14px;
  background-position: -1247px 0px;
}

/* line 315, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__de {
  height: 12px;
  background-position: -1269px 0px;
}

/* line 318, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__dg {
  height: 10px;
  background-position: -1291px 0px;
}

/* line 321, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__dj {
  height: 14px;
  background-position: -1313px 0px;
}

/* line 324, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__dk {
  height: 15px;
  background-position: -1335px 0px;
}

/* line 327, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__dm {
  height: 10px;
  background-position: -1357px 0px;
}

/* line 330, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__do {
  height: 14px;
  background-position: -1379px 0px;
}

/* line 333, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__dz {
  height: 14px;
  background-position: -1401px 0px;
}

/* line 336, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ea {
  height: 14px;
  background-position: -1423px 0px;
}

/* line 339, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ec {
  height: 14px;
  background-position: -1445px 0px;
}

/* line 342, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ee {
  height: 13px;
  background-position: -1467px 0px;
}

/* line 345, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__eg {
  height: 14px;
  background-position: -1489px 0px;
}

/* line 348, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__eh {
  height: 10px;
  background-position: -1511px 0px;
}

/* line 351, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__er {
  height: 10px;
  background-position: -1533px 0px;
}

/* line 354, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__es {
  height: 14px;
  background-position: -1555px 0px;
}

/* line 357, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__et {
  height: 10px;
  background-position: -1577px 0px;
}

/* line 360, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__eu {
  height: 14px;
  background-position: -1599px 0px;
}

/* line 363, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__fi {
  height: 12px;
  background-position: -1621px 0px;
}

/* line 366, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__fj {
  height: 10px;
  background-position: -1643px 0px;
}

/* line 369, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__fk {
  height: 10px;
  background-position: -1665px 0px;
}

/* line 372, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__fm {
  height: 11px;
  background-position: -1687px 0px;
}

/* line 375, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__fo {
  height: 15px;
  background-position: -1709px 0px;
}

/* line 378, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__fr {
  height: 14px;
  background-position: -1731px 0px;
}

/* line 381, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ga {
  height: 15px;
  background-position: -1753px 0px;
}

/* line 384, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__gb {
  height: 10px;
  background-position: -1775px 0px;
}

/* line 387, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__gd {
  height: 12px;
  background-position: -1797px 0px;
}

/* line 390, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ge {
  height: 14px;
  background-position: -1819px 0px;
}

/* line 393, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__gf {
  height: 14px;
  background-position: -1841px 0px;
}

/* line 396, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__gg {
  height: 14px;
  background-position: -1863px 0px;
}

/* line 399, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__gh {
  height: 14px;
  background-position: -1885px 0px;
}

/* line 402, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__gi {
  height: 10px;
  background-position: -1907px 0px;
}

/* line 405, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__gl {
  height: 14px;
  background-position: -1929px 0px;
}

/* line 408, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__gm {
  height: 14px;
  background-position: -1951px 0px;
}

/* line 411, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__gn {
  height: 14px;
  background-position: -1973px 0px;
}

/* line 414, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__gp {
  height: 14px;
  background-position: -1995px 0px;
}

/* line 417, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__gq {
  height: 14px;
  background-position: -2017px 0px;
}

/* line 420, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__gr {
  height: 14px;
  background-position: -2039px 0px;
}

/* line 423, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__gs {
  height: 10px;
  background-position: -2061px 0px;
}

/* line 426, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__gt {
  height: 13px;
  background-position: -2083px 0px;
}

/* line 429, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__gu {
  height: 11px;
  background-position: -2105px 0px;
}

/* line 432, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__gw {
  height: 10px;
  background-position: -2127px 0px;
}

/* line 435, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__gy {
  height: 12px;
  background-position: -2149px 0px;
}

/* line 438, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__hk {
  height: 14px;
  background-position: -2171px 0px;
}

/* line 441, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__hm {
  height: 10px;
  background-position: -2193px 0px;
}

/* line 444, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__hn {
  height: 10px;
  background-position: -2215px 0px;
}

/* line 447, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__hr {
  height: 10px;
  background-position: -2237px 0px;
}

/* line 450, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ht {
  height: 12px;
  background-position: -2259px 0px;
}

/* line 453, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__hu {
  height: 10px;
  background-position: -2281px 0px;
}

/* line 456, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ic {
  height: 14px;
  background-position: -2303px 0px;
}

/* line 459, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__id {
  height: 14px;
  background-position: -2325px 0px;
}

/* line 462, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ie {
  height: 10px;
  background-position: -2347px 0px;
}

/* line 465, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__il {
  height: 15px;
  background-position: -2369px 0px;
}

/* line 468, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__im {
  height: 10px;
  background-position: -2391px 0px;
}

/* line 471, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__in {
  height: 14px;
  background-position: -2413px 0px;
}

/* line 474, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__io {
  height: 10px;
  background-position: -2435px 0px;
}

/* line 477, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__iq {
  height: 14px;
  background-position: -2457px 0px;
}

/* line 480, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ir {
  height: 12px;
  background-position: -2479px 0px;
}

/* line 483, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__is {
  height: 15px;
  background-position: -2501px 0px;
}

/* line 486, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__it {
  height: 14px;
  background-position: -2523px 0px;
}

/* line 489, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__je {
  height: 12px;
  background-position: -2545px 0px;
}

/* line 492, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__jm {
  height: 10px;
  background-position: -2567px 0px;
}

/* line 495, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__jo {
  height: 10px;
  background-position: -2589px 0px;
}

/* line 498, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__jp {
  height: 14px;
  background-position: -2611px 0px;
}

/* line 501, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ke {
  height: 14px;
  background-position: -2633px 0px;
}

/* line 504, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__kg {
  height: 12px;
  background-position: -2655px 0px;
}

/* line 507, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__kh {
  height: 13px;
  background-position: -2677px 0px;
}

/* line 510, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ki {
  height: 10px;
  background-position: -2699px 0px;
}

/* line 513, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__km {
  height: 12px;
  background-position: -2721px 0px;
}

/* line 516, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__kn {
  height: 14px;
  background-position: -2743px 0px;
}

/* line 519, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__kp {
  height: 10px;
  background-position: -2765px 0px;
}

/* line 522, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__kr {
  height: 14px;
  background-position: -2787px 0px;
}

/* line 525, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__kw {
  height: 10px;
  background-position: -2809px 0px;
}

/* line 528, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ky {
  height: 10px;
  background-position: -2831px 0px;
}

/* line 531, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__kz {
  height: 10px;
  background-position: -2853px 0px;
}

/* line 534, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__la {
  height: 14px;
  background-position: -2875px 0px;
}

/* line 537, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__lb {
  height: 14px;
  background-position: -2897px 0px;
}

/* line 540, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__lc {
  height: 10px;
  background-position: -2919px 0px;
}

/* line 543, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__li {
  height: 12px;
  background-position: -2941px 0px;
}

/* line 546, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__lk {
  height: 10px;
  background-position: -2963px 0px;
}

/* line 549, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__lr {
  height: 11px;
  background-position: -2985px 0px;
}

/* line 552, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ls {
  height: 14px;
  background-position: -3007px 0px;
}

/* line 555, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__lt {
  height: 12px;
  background-position: -3029px 0px;
}

/* line 558, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__lu {
  height: 12px;
  background-position: -3051px 0px;
}

/* line 561, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__lv {
  height: 10px;
  background-position: -3073px 0px;
}

/* line 564, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ly {
  height: 10px;
  background-position: -3095px 0px;
}

/* line 567, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ma {
  height: 14px;
  background-position: -3117px 0px;
}

/* line 570, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__mc {
  height: 15px;
  background-position: -3139px 0px;
}

/* line 573, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__md {
  height: 10px;
  background-position: -3160px 0px;
}

/* line 576, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__me {
  height: 10px;
  background-position: -3182px 0px;
}

/* line 579, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__mf {
  height: 14px;
  background-position: -3204px 0px;
}

/* line 582, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__mg {
  height: 14px;
  background-position: -3226px 0px;
}

/* line 585, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__mh {
  height: 11px;
  background-position: -3248px 0px;
}

/* line 588, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__mk {
  height: 10px;
  background-position: -3270px 0px;
}

/* line 591, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ml {
  height: 14px;
  background-position: -3292px 0px;
}

/* line 594, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__mm {
  height: 14px;
  background-position: -3314px 0px;
}

/* line 597, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__mn {
  height: 10px;
  background-position: -3336px 0px;
}

/* line 600, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__mo {
  height: 14px;
  background-position: -3358px 0px;
}

/* line 603, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__mp {
  height: 10px;
  background-position: -3380px 0px;
}

/* line 606, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__mq {
  height: 14px;
  background-position: -3402px 0px;
}

/* line 609, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__mr {
  height: 14px;
  background-position: -3424px 0px;
}

/* line 612, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ms {
  height: 10px;
  background-position: -3446px 0px;
}

/* line 615, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__mt {
  height: 14px;
  background-position: -3468px 0px;
}

/* line 618, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__mu {
  height: 14px;
  background-position: -3490px 0px;
}

/* line 621, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__mv {
  height: 14px;
  background-position: -3512px 0px;
}

/* line 624, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__mw {
  height: 14px;
  background-position: -3534px 0px;
}

/* line 627, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__mx {
  height: 12px;
  background-position: -3556px 0px;
}

/* line 630, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__my {
  height: 10px;
  background-position: -3578px 0px;
}

/* line 633, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__mz {
  height: 14px;
  background-position: -3600px 0px;
}

/* line 636, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__na {
  height: 14px;
  background-position: -3622px 0px;
}

/* line 639, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__nc {
  height: 10px;
  background-position: -3644px 0px;
}

/* line 642, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ne {
  height: 15px;
  background-position: -3666px 0px;
}

/* line 645, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__nf {
  height: 10px;
  background-position: -3686px 0px;
}

/* line 648, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ng {
  height: 10px;
  background-position: -3708px 0px;
}

/* line 651, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ni {
  height: 12px;
  background-position: -3730px 0px;
}

/* line 654, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__nl {
  height: 14px;
  background-position: -3752px 0px;
}

/* line 657, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__no {
  height: 15px;
  background-position: -3774px 0px;
}

/* line 660, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__np {
  height: 15px;
  background-position: -3796px 0px;
}

/* line 663, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__nr {
  height: 10px;
  background-position: -3811px 0px;
}

/* line 666, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__nu {
  height: 10px;
  background-position: -3833px 0px;
}

/* line 669, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__nz {
  height: 10px;
  background-position: -3855px 0px;
}

/* line 672, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__om {
  height: 10px;
  background-position: -3877px 0px;
}

/* line 675, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__pa {
  height: 14px;
  background-position: -3899px 0px;
}

/* line 678, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__pe {
  height: 14px;
  background-position: -3921px 0px;
}

/* line 681, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__pf {
  height: 14px;
  background-position: -3943px 0px;
}

/* line 684, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__pg {
  height: 15px;
  background-position: -3965px 0px;
}

/* line 687, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ph {
  height: 10px;
  background-position: -3987px 0px;
}

/* line 690, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__pk {
  height: 14px;
  background-position: -4009px 0px;
}

/* line 693, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__pl {
  height: 13px;
  background-position: -4031px 0px;
}

/* line 696, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__pm {
  height: 14px;
  background-position: -4053px 0px;
}

/* line 699, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__pn {
  height: 10px;
  background-position: -4075px 0px;
}

/* line 702, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__pr {
  height: 14px;
  background-position: -4097px 0px;
}

/* line 705, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ps {
  height: 10px;
  background-position: -4119px 0px;
}

/* line 708, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__pt {
  height: 14px;
  background-position: -4141px 0px;
}

/* line 711, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__pw {
  height: 13px;
  background-position: -4163px 0px;
}

/* line 714, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__py {
  height: 11px;
  background-position: -4185px 0px;
}

/* line 717, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__qa {
  height: 8px;
  background-position: -4207px 0px;
}

/* line 720, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__re {
  height: 14px;
  background-position: -4229px 0px;
}

/* line 723, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ro {
  height: 14px;
  background-position: -4251px 0px;
}

/* line 726, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__rs {
  height: 14px;
  background-position: -4273px 0px;
}

/* line 729, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ru {
  height: 14px;
  background-position: -4295px 0px;
}

/* line 732, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__rw {
  height: 14px;
  background-position: -4317px 0px;
}

/* line 735, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__sa {
  height: 14px;
  background-position: -4339px 0px;
}

/* line 738, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__sb {
  height: 10px;
  background-position: -4361px 0px;
}

/* line 741, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__sc {
  height: 10px;
  background-position: -4383px 0px;
}

/* line 744, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__sd {
  height: 10px;
  background-position: -4405px 0px;
}

/* line 747, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__se {
  height: 13px;
  background-position: -4427px 0px;
}

/* line 750, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__sg {
  height: 14px;
  background-position: -4449px 0px;
}

/* line 753, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__sh {
  height: 10px;
  background-position: -4471px 0px;
}

/* line 756, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__si {
  height: 10px;
  background-position: -4493px 0px;
}

/* line 759, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__sj {
  height: 15px;
  background-position: -4515px 0px;
}

/* line 762, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__sk {
  height: 14px;
  background-position: -4537px 0px;
}

/* line 765, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__sl {
  height: 14px;
  background-position: -4559px 0px;
}

/* line 768, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__sm {
  height: 15px;
  background-position: -4581px 0px;
}

/* line 771, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__sn {
  height: 14px;
  background-position: -4603px 0px;
}

/* line 774, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__so {
  height: 14px;
  background-position: -4625px 0px;
}

/* line 777, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__sr {
  height: 14px;
  background-position: -4647px 0px;
}

/* line 780, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ss {
  height: 10px;
  background-position: -4669px 0px;
}

/* line 783, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__st {
  height: 10px;
  background-position: -4691px 0px;
}

/* line 786, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__sv {
  height: 12px;
  background-position: -4713px 0px;
}

/* line 789, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__sx {
  height: 14px;
  background-position: -4735px 0px;
}

/* line 792, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__sy {
  height: 14px;
  background-position: -4757px 0px;
}

/* line 795, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__sz {
  height: 14px;
  background-position: -4779px 0px;
}

/* line 798, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ta {
  height: 10px;
  background-position: -4801px 0px;
}

/* line 801, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__tc {
  height: 10px;
  background-position: -4823px 0px;
}

/* line 804, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__td {
  height: 14px;
  background-position: -4845px 0px;
}

/* line 807, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__tf {
  height: 14px;
  background-position: -4867px 0px;
}

/* line 810, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__tg {
  height: 13px;
  background-position: -4889px 0px;
}

/* line 813, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__th {
  height: 14px;
  background-position: -4911px 0px;
}

/* line 816, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__tj {
  height: 10px;
  background-position: -4933px 0px;
}

/* line 819, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__tk {
  height: 10px;
  background-position: -4955px 0px;
}

/* line 822, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__tl {
  height: 10px;
  background-position: -4977px 0px;
}

/* line 825, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__tm {
  height: 14px;
  background-position: -4999px 0px;
}

/* line 828, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__tn {
  height: 14px;
  background-position: -5021px 0px;
}

/* line 831, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__to {
  height: 10px;
  background-position: -5043px 0px;
}

/* line 834, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__tr {
  height: 14px;
  background-position: -5065px 0px;
}

/* line 837, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__tt {
  height: 12px;
  background-position: -5087px 0px;
}

/* line 840, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__tv {
  height: 10px;
  background-position: -5109px 0px;
}

/* line 843, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__tw {
  height: 14px;
  background-position: -5131px 0px;
}

/* line 846, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__tz {
  height: 14px;
  background-position: -5153px 0px;
}

/* line 849, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ua {
  height: 14px;
  background-position: -5175px 0px;
}

/* line 852, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ug {
  height: 14px;
  background-position: -5197px 0px;
}

/* line 855, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__um {
  height: 11px;
  background-position: -5219px 0px;
}

/* line 858, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__un {
  height: 14px;
  background-position: -5241px 0px;
}

/* line 861, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__us {
  height: 11px;
  background-position: -5263px 0px;
}

/* line 864, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__uy {
  height: 14px;
  background-position: -5285px 0px;
}

/* line 867, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__uz {
  height: 10px;
  background-position: -5307px 0px;
}

/* line 870, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__va {
  height: 15px;
  background-position: -5329px 0px;
}

/* line 873, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__vc {
  height: 14px;
  background-position: -5346px 0px;
}

/* line 876, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ve {
  height: 14px;
  background-position: -5368px 0px;
}

/* line 879, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__vg {
  height: 10px;
  background-position: -5390px 0px;
}

/* line 882, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__vi {
  height: 14px;
  background-position: -5412px 0px;
}

/* line 885, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__vn {
  height: 14px;
  background-position: -5434px 0px;
}

/* line 888, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__vu {
  height: 12px;
  background-position: -5456px 0px;
}

/* line 891, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__wf {
  height: 14px;
  background-position: -5478px 0px;
}

/* line 894, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ws {
  height: 10px;
  background-position: -5500px 0px;
}

/* line 897, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__xk {
  height: 15px;
  background-position: -5522px 0px;
}

/* line 900, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__ye {
  height: 14px;
  background-position: -5544px 0px;
}

/* line 903, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__yt {
  height: 14px;
  background-position: -5566px 0px;
}

/* line 906, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__za {
  height: 14px;
  background-position: -5588px 0px;
}

/* line 909, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__zm {
  height: 14px;
  background-position: -5610px 0px;
}

/* line 912, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__zw {
  height: 10px;
  background-position: -5632px 0px;
}

/* line 916, app/assets/stylesheets/intlTelInput.scss */
.iti__flag {
  height: 15px;
  box-shadow: 0px 0px 1px 0px #888;
  background-image: url(/assets/flags-959070a9f002abd28383322dd455a851d1fd445974edb3f720d54ff79894e28b.png);
  background-repeat: no-repeat;
  background-color: #DBDBDB;
  background-position: 20px 0;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* line 924, app/assets/stylesheets/intlTelInput.scss */
  .iti__flag {
    background-image: url(/assets/flags@2x-d00ec77cf49d0c3fbd725dbcdcca661b5db35a02d12f8f4fcf8a3ce6065391bc.png);
  }
}

/* line 927, app/assets/stylesheets/intlTelInput.scss */
.iti__flag.iti__np {
  background-color: transparent;
}
.flex-root {
  flex: 1;
  -ms-flex: 1 0 0px; }

.flex-column-auto {
  flex: none; }

.flex-column-fluid {
  flex: 1 0 auto; }

.flex-row-auto {
  flex: 0 0 auto; }

.flex-row-fluid {
  flex: 1 auto;
  -ms-flex: 1 0 0px;
  min-width: 0; }
  @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .flex-row-fluid {
      min-width: none; } }

.flex-center {
  justify-content: center;
  align-items: center; }

@media (min-width: 576px) {
  .flex-sm-root {
    flex: 1;
    -ms-flex: 1 0 0px; }
  .flex-sm-column-auto {
    flex: none; }
  .flex-sm-column-fluid {
    flex: 1 0 auto; }
  .flex-sm-row-auto {
    flex: 0 0 auto; }
  .flex-sm-row-fluid {
    flex: 1 auto;
    -ms-flex: 1 0 0px;
    min-width: 0; } }
  @media screen and (min-width: 576px) and (-ms-high-contrast: active), (min-width: 576px) and (-ms-high-contrast: none) {
    .flex-sm-row-fluid {
      min-width: none; } }

@media (min-width: 576px) {
  .flex-sm-center {
    justify-content: center;
    align-items: center; } }

@media (min-width: 768px) {
  .flex-md-root {
    flex: 1;
    -ms-flex: 1 0 0px; }
  .flex-md-column-auto {
    flex: none; }
  .flex-md-column-fluid {
    flex: 1 0 auto; }
  .flex-md-row-auto {
    flex: 0 0 auto; }
  .flex-md-row-fluid {
    flex: 1 auto;
    -ms-flex: 1 0 0px;
    min-width: 0; } }
  @media screen and (min-width: 768px) and (-ms-high-contrast: active), (min-width: 768px) and (-ms-high-contrast: none) {
    .flex-md-row-fluid {
      min-width: none; } }

@media (min-width: 768px) {
  .flex-md-center {
    justify-content: center;
    align-items: center; } }

@media (min-width: 992px) {
  .flex-lg-root {
    flex: 1;
    -ms-flex: 1 0 0px; }
  .flex-lg-column-auto {
    flex: none; }
  .flex-lg-column-fluid {
    flex: 1 0 auto; }
  .flex-lg-row-auto {
    flex: 0 0 auto; }
  .flex-lg-row-fluid {
    flex: 1 auto;
    -ms-flex: 1 0 0px;
    min-width: 0; } }
  @media screen and (min-width: 992px) and (-ms-high-contrast: active), (min-width: 992px) and (-ms-high-contrast: none) {
    .flex-lg-row-fluid {
      min-width: none; } }

@media (min-width: 992px) {
  .flex-lg-center {
    justify-content: center;
    align-items: center; } }

@media (min-width: 1200px) {
  .flex-xl-root {
    flex: 1;
    -ms-flex: 1 0 0px; }
  .flex-xl-column-auto {
    flex: none; }
  .flex-xl-column-fluid {
    flex: 1 0 auto; }
  .flex-xl-row-auto {
    flex: 0 0 auto; }
  .flex-xl-row-fluid {
    flex: 1 auto;
    -ms-flex: 1 0 0px;
    min-width: 0; } }
  @media screen and (min-width: 1200px) and (-ms-high-contrast: active), (min-width: 1200px) and (-ms-high-contrast: none) {
    .flex-xl-row-fluid {
      min-width: none; } }

@media (min-width: 1200px) {
  .flex-xl-center {
    justify-content: center;
    align-items: center; } }

@media (min-width: 1400px) {
  .flex-xxl-root {
    flex: 1;
    -ms-flex: 1 0 0px; }
  .flex-xxl-column-auto {
    flex: none; }
  .flex-xxl-column-fluid {
    flex: 1 0 auto; }
  .flex-xxl-row-auto {
    flex: 0 0 auto; }
  .flex-xxl-row-fluid {
    flex: 1 auto;
    -ms-flex: 1 0 0px;
    min-width: 0; } }
  @media screen and (min-width: 1400px) and (-ms-high-contrast: active), (min-width: 1400px) and (-ms-high-contrast: none) {
    .flex-xxl-row-fluid {
      min-width: none; } }

@media (min-width: 1400px) {
  .flex-xxl-center {
    justify-content: center;
    align-items: center; } }
.btn {
  display: inline-block;
  font-weight: normal;
  color: #3F4254;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.65rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.42rem;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .btn {
      transition: none; } }
  .btn:hover {
    color: #3F4254;
    text-decoration: none; }
  .btn:focus, .btn.focus {
    outline: 0;
    box-shadow: none; }
  .btn.disabled, .btn:disabled {
    opacity: 0.6;
    box-shadow: none; }
  .btn:not(:disabled):not(.disabled) {
    cursor: pointer; }
    .btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active {
      box-shadow: none; }

a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none; }

.btn-primary {
  color: #ffffff;
  background-color: #3699FF;
  border-color: #3699FF;
  box-shadow: none; }
  .btn-primary:hover {
    color: #ffffff;
    background-color: #1086ff;
    border-color: #037fff; }
  .btn-primary:focus, .btn-primary.focus {
    color: #ffffff;
    background-color: #1086ff;
    border-color: #037fff;
    box-shadow: 0 0 0 0.2rem rgba(84, 168, 255, 0.5); }
  .btn-primary.disabled, .btn-primary:disabled {
    color: #ffffff;
    background-color: #3699FF;
    border-color: #3699FF; }
  .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
  .show > .btn-primary.dropdown-toggle {
    color: #ffffff;
    background-color: #037fff;
    border-color: #0079f5; }
    .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
    .show > .btn-primary.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(84, 168, 255, 0.5); }

.btn-secondary {
  color: #181C32;
  background-color: #E4E6EF;
  border-color: #E4E6EF;
  box-shadow: none; }
  .btn-secondary:hover {
    color: #181C32;
    background-color: #ccd0e1;
    border-color: #c4c8dc; }
  .btn-secondary:focus, .btn-secondary.focus {
    color: #181C32;
    background-color: #ccd0e1;
    border-color: #c4c8dc;
    box-shadow: 0 0 0 0.2rem rgba(197, 200, 211, 0.5); }
  .btn-secondary.disabled, .btn-secondary:disabled {
    color: #181C32;
    background-color: #E4E6EF;
    border-color: #E4E6EF; }
  .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
  .show > .btn-secondary.dropdown-toggle {
    color: #181C32;
    background-color: #c4c8dc;
    border-color: #bcc1d7; }
    .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,
    .show > .btn-secondary.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(197, 200, 211, 0.5); }

.btn-success {
  color: #ffffff;
  background-color: #1BC5BD;
  border-color: #1BC5BD;
  box-shadow: none; }
  .btn-success:hover {
    color: #ffffff;
    background-color: #16a39d;
    border-color: #159892; }
  .btn-success:focus, .btn-success.focus {
    color: #ffffff;
    background-color: #16a39d;
    border-color: #159892;
    box-shadow: 0 0 0 0.2rem rgba(61, 206, 199, 0.5); }
  .btn-success.disabled, .btn-success:disabled {
    color: #ffffff;
    background-color: #1BC5BD;
    border-color: #1BC5BD; }
  .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,
  .show > .btn-success.dropdown-toggle {
    color: #ffffff;
    background-color: #159892;
    border-color: #138d87; }
    .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,
    .show > .btn-success.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(61, 206, 199, 0.5); }

.btn-info {
  color: #ffffff;
  background-color: #8950FC;
  border-color: #8950FC;
  box-shadow: none; }
  .btn-info:hover {
    color: #ffffff;
    background-color: #702afb;
    border-color: #671efb; }
  .btn-info:focus, .btn-info.focus {
    color: #ffffff;
    background-color: #702afb;
    border-color: #671efb;
    box-shadow: 0 0 0 0.2rem rgba(155, 106, 252, 0.5); }
  .btn-info.disabled, .btn-info:disabled {
    color: #ffffff;
    background-color: #8950FC;
    border-color: #8950FC; }
  .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,
  .show > .btn-info.dropdown-toggle {
    color: #ffffff;
    background-color: #671efb;
    border-color: #5f11fb; }
    .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,
    .show > .btn-info.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(155, 106, 252, 0.5); }

.btn-warning {
  color: #181C32;
  background-color: #FFA800;
  border-color: #FFA800;
  box-shadow: none; }
  .btn-warning:hover {
    color: #ffffff;
    background-color: #d98f00;
    border-color: #cc8600; }
  .btn-warning:focus, .btn-warning.focus {
    color: #ffffff;
    background-color: #d98f00;
    border-color: #cc8600;
    box-shadow: 0 0 0 0.2rem rgba(220, 147, 8, 0.5); }
  .btn-warning.disabled, .btn-warning:disabled {
    color: #181C32;
    background-color: #FFA800;
    border-color: #FFA800; }
  .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,
  .show > .btn-warning.dropdown-toggle {
    color: #ffffff;
    background-color: #cc8600;
    border-color: #bf7e00; }
    .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,
    .show > .btn-warning.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(220, 147, 8, 0.5); }

.btn-danger {
  color: #ffffff;
  background-color: #F64E60;
  border-color: #F64E60;
  box-shadow: none; }
  .btn-danger:hover {
    color: #ffffff;
    background-color: #f42a3f;
    border-color: #f41d34; }
  .btn-danger:focus, .btn-danger.focus {
    color: #ffffff;
    background-color: #f42a3f;
    border-color: #f41d34;
    box-shadow: 0 0 0 0.2rem rgba(247, 105, 120, 0.5); }
  .btn-danger.disabled, .btn-danger:disabled {
    color: #ffffff;
    background-color: #F64E60;
    border-color: #F64E60; }
  .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,
  .show > .btn-danger.dropdown-toggle {
    color: #ffffff;
    background-color: #f41d34;
    border-color: #f3112a; }
    .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,
    .show > .btn-danger.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(247, 105, 120, 0.5); }

.btn-light {
  color: #181C32;
  background-color: #F3F6F9;
  border-color: #F3F6F9;
  box-shadow: none; }
  .btn-light:hover {
    color: #181C32;
    background-color: #dae3ec;
    border-color: #d1dde8; }
  .btn-light:focus, .btn-light.focus {
    color: #181C32;
    background-color: #dae3ec;
    border-color: #d1dde8;
    box-shadow: 0 0 0 0.2rem rgba(210, 213, 219, 0.5); }
  .btn-light.disabled, .btn-light:disabled {
    color: #181C32;
    background-color: #F3F6F9;
    border-color: #F3F6F9; }
  .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,
  .show > .btn-light.dropdown-toggle {
    color: #181C32;
    background-color: #d1dde8;
    border-color: #c9d6e4; }
    .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,
    .show > .btn-light.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(210, 213, 219, 0.5); }

.btn-dark {
  color: #ffffff;
  background-color: #181C32;
  border-color: #181C32;
  box-shadow: none; }
  .btn-dark:hover {
    color: #ffffff;
    background-color: #0c0e18;
    border-color: #070910; }
  .btn-dark:focus, .btn-dark.focus {
    color: #ffffff;
    background-color: #0c0e18;
    border-color: #070910;
    box-shadow: 0 0 0 0.2rem rgba(59, 62, 81, 0.5); }
  .btn-dark.disabled, .btn-dark:disabled {
    color: #ffffff;
    background-color: #181C32;
    border-color: #181C32; }
  .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,
  .show > .btn-dark.dropdown-toggle {
    color: #ffffff;
    background-color: #070910;
    border-color: #030407; }
    .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,
    .show > .btn-dark.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(59, 62, 81, 0.5); }

.btn-white {
  color: #181C32;
  background-color: #ffffff;
  border-color: #ffffff;
  box-shadow: none; }
  .btn-white:hover {
    color: #181C32;
    background-color: #ececec;
    border-color: #e6e6e6; }
  .btn-white:focus, .btn-white.focus {
    color: #181C32;
    background-color: #ececec;
    border-color: #e6e6e6;
    box-shadow: 0 0 0 0.2rem rgba(220, 221, 224, 0.5); }
  .btn-white.disabled, .btn-white:disabled {
    color: #181C32;
    background-color: #ffffff;
    border-color: #ffffff; }
  .btn-white:not(:disabled):not(.disabled):active, .btn-white:not(:disabled):not(.disabled).active,
  .show > .btn-white.dropdown-toggle {
    color: #181C32;
    background-color: #e6e6e6;
    border-color: #dfdfdf; }
    .btn-white:not(:disabled):not(.disabled):active:focus, .btn-white:not(:disabled):not(.disabled).active:focus,
    .show > .btn-white.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(220, 221, 224, 0.5); }

.btn-outline-primary {
  color: #3699FF;
  border-color: #3699FF; }
  .btn-outline-primary:hover {
    color: #ffffff;
    background-color: #3699FF;
    border-color: #3699FF; }
  .btn-outline-primary:focus, .btn-outline-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(54, 153, 255, 0.5); }
  .btn-outline-primary.disabled, .btn-outline-primary:disabled {
    color: #3699FF;
    background-color: transparent; }
  .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
  .show > .btn-outline-primary.dropdown-toggle {
    color: #ffffff;
    background-color: #3699FF;
    border-color: #3699FF; }
    .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-primary.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(54, 153, 255, 0.5); }

.btn-outline-secondary {
  color: #E4E6EF;
  border-color: #E4E6EF; }
  .btn-outline-secondary:hover {
    color: #181C32;
    background-color: #E4E6EF;
    border-color: #E4E6EF; }
  .btn-outline-secondary:focus, .btn-outline-secondary.focus {
    box-shadow: 0 0 0 0.2rem rgba(228, 230, 239, 0.5); }
  .btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
    color: #E4E6EF;
    background-color: transparent; }
  .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,
  .show > .btn-outline-secondary.dropdown-toggle {
    color: #181C32;
    background-color: #E4E6EF;
    border-color: #E4E6EF; }
    .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-secondary.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(228, 230, 239, 0.5); }

.btn-outline-success {
  color: #1BC5BD;
  border-color: #1BC5BD; }
  .btn-outline-success:hover {
    color: #ffffff;
    background-color: #1BC5BD;
    border-color: #1BC5BD; }
  .btn-outline-success:focus, .btn-outline-success.focus {
    box-shadow: 0 0 0 0.2rem rgba(27, 197, 189, 0.5); }
  .btn-outline-success.disabled, .btn-outline-success:disabled {
    color: #1BC5BD;
    background-color: transparent; }
  .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,
  .show > .btn-outline-success.dropdown-toggle {
    color: #ffffff;
    background-color: #1BC5BD;
    border-color: #1BC5BD; }
    .btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-success.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(27, 197, 189, 0.5); }

.btn-outline-info {
  color: #8950FC;
  border-color: #8950FC; }
  .btn-outline-info:hover {
    color: #ffffff;
    background-color: #8950FC;
    border-color: #8950FC; }
  .btn-outline-info:focus, .btn-outline-info.focus {
    box-shadow: 0 0 0 0.2rem rgba(137, 80, 252, 0.5); }
  .btn-outline-info.disabled, .btn-outline-info:disabled {
    color: #8950FC;
    background-color: transparent; }
  .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active,
  .show > .btn-outline-info.dropdown-toggle {
    color: #ffffff;
    background-color: #8950FC;
    border-color: #8950FC; }
    .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-info.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(137, 80, 252, 0.5); }

.btn-outline-warning {
  color: #FFA800;
  border-color: #FFA800; }
  .btn-outline-warning:hover {
    color: #181C32;
    background-color: #FFA800;
    border-color: #FFA800; }
  .btn-outline-warning:focus, .btn-outline-warning.focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 168, 0, 0.5); }
  .btn-outline-warning.disabled, .btn-outline-warning:disabled {
    color: #FFA800;
    background-color: transparent; }
  .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,
  .show > .btn-outline-warning.dropdown-toggle {
    color: #181C32;
    background-color: #FFA800;
    border-color: #FFA800; }
    .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-warning.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(255, 168, 0, 0.5); }

.btn-outline-danger {
  color: #F64E60;
  border-color: #F64E60; }
  .btn-outline-danger:hover {
    color: #ffffff;
    background-color: #F64E60;
    border-color: #F64E60; }
  .btn-outline-danger:focus, .btn-outline-danger.focus {
    box-shadow: 0 0 0 0.2rem rgba(246, 78, 96, 0.5); }
  .btn-outline-danger.disabled, .btn-outline-danger:disabled {
    color: #F64E60;
    background-color: transparent; }
  .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,
  .show > .btn-outline-danger.dropdown-toggle {
    color: #ffffff;
    background-color: #F64E60;
    border-color: #F64E60; }
    .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-danger.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(246, 78, 96, 0.5); }

.btn-outline-light {
  color: #F3F6F9;
  border-color: #F3F6F9; }
  .btn-outline-light:hover {
    color: #181C32;
    background-color: #F3F6F9;
    border-color: #F3F6F9; }
  .btn-outline-light:focus, .btn-outline-light.focus {
    box-shadow: 0 0 0 0.2rem rgba(243, 246, 249, 0.5); }
  .btn-outline-light.disabled, .btn-outline-light:disabled {
    color: #F3F6F9;
    background-color: transparent; }
  .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,
  .show > .btn-outline-light.dropdown-toggle {
    color: #181C32;
    background-color: #F3F6F9;
    border-color: #F3F6F9; }
    .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-light.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(243, 246, 249, 0.5); }

.btn-outline-dark {
  color: #181C32;
  border-color: #181C32; }
  .btn-outline-dark:hover {
    color: #ffffff;
    background-color: #181C32;
    border-color: #181C32; }
  .btn-outline-dark:focus, .btn-outline-dark.focus {
    box-shadow: 0 0 0 0.2rem rgba(24, 28, 50, 0.5); }
  .btn-outline-dark.disabled, .btn-outline-dark:disabled {
    color: #181C32;
    background-color: transparent; }
  .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,
  .show > .btn-outline-dark.dropdown-toggle {
    color: #ffffff;
    background-color: #181C32;
    border-color: #181C32; }
    .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-dark.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(24, 28, 50, 0.5); }

.btn-outline-white {
  color: #ffffff;
  border-color: #ffffff; }
  .btn-outline-white:hover {
    color: #181C32;
    background-color: #ffffff;
    border-color: #ffffff; }
  .btn-outline-white:focus, .btn-outline-white.focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
  .btn-outline-white.disabled, .btn-outline-white:disabled {
    color: #ffffff;
    background-color: transparent; }
  .btn-outline-white:not(:disabled):not(.disabled):active, .btn-outline-white:not(:disabled):not(.disabled).active,
  .show > .btn-outline-white.dropdown-toggle {
    color: #181C32;
    background-color: #ffffff;
    border-color: #ffffff; }
    .btn-outline-white:not(:disabled):not(.disabled):active:focus, .btn-outline-white:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-white.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }

.btn-link {
  font-weight: 400;
  color: #3699FF;
  text-decoration: none; }
  .btn-link:hover {
    color: #0073e9;
    text-decoration: underline; }
  .btn-link:focus, .btn-link.focus {
    text-decoration: underline; }
  .btn-link:disabled, .btn-link.disabled {
    color: #7E8299;
    pointer-events: none; }

.btn-lg, .btn-group-lg > .btn {
  padding: 0.825rem 1.42rem;
  font-size: 1.08rem;
  line-height: 1.5;
  border-radius: 0.42rem; }

.btn-sm, .btn-group-sm > .btn {
  padding: 0.55rem 0.75rem;
  font-size: 0.925rem;
  line-height: 1.35;
  border-radius: 0.42rem; }

.btn-block {
  display: block;
  width: 100%; }
  .btn-block + .btn-block {
    margin-top: 0.5rem; }

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

.align-baseline {
  vertical-align: baseline !important; }

.align-top {
  vertical-align: top !important; }

.align-middle {
  vertical-align: middle !important; }

.align-bottom {
  vertical-align: bottom !important; }

.align-text-bottom {
  vertical-align: text-bottom !important; }

.align-text-top {
  vertical-align: text-top !important; }

.bg-primary {
  background-color: #3699FF !important; }

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #037fff !important; }

.bg-secondary {
  background-color: #E4E6EF !important; }

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #c4c8dc !important; }

.bg-success {
  background-color: #1BC5BD !important; }

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #159892 !important; }

.bg-info {
  background-color: #8950FC !important; }

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #671efb !important; }

.bg-warning {
  background-color: #FFA800 !important; }

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #cc8600 !important; }

.bg-danger {
  background-color: #F64E60 !important; }

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #f41d34 !important; }

.bg-light {
  background-color: #F3F6F9 !important; }

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #d1dde8 !important; }

.bg-dark {
  background-color: #181C32 !important; }

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #070910 !important; }

.bg-white {
  background-color: #ffffff !important; }

a.bg-white:hover, a.bg-white:focus,
button.bg-white:hover,
button.bg-white:focus {
  background-color: #e6e6e6 !important; }

.bg-white {
  background-color: #ffffff !important; }

.bg-transparent {
  background-color: transparent !important; }

.border {
  border: 1px solid #EBEDF3 !important; }

.border-top {
  border-top: 1px solid #EBEDF3 !important; }

.border-right {
  border-right: 1px solid #EBEDF3 !important; }

.border-bottom {
  border-bottom: 1px solid #EBEDF3 !important; }

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

.border-0 {
  border: 0 !important; }

.border-top-0 {
  border-top: 0 !important; }

.border-right-0 {
  border-right: 0 !important; }

.border-bottom-0 {
  border-bottom: 0 !important; }

.border-left-0 {
  border-left: 0 !important; }

.border-primary {
  border-color: #3699FF !important; }

.border-secondary {
  border-color: #E4E6EF !important; }

.border-success {
  border-color: #1BC5BD !important; }

.border-info {
  border-color: #8950FC !important; }

.border-warning {
  border-color: #FFA800 !important; }

.border-danger {
  border-color: #F64E60 !important; }

.border-light {
  border-color: #F3F6F9 !important; }

.border-dark {
  border-color: #181C32 !important; }

.border-white {
  border-color: #ffffff !important; }

.border-white {
  border-color: #ffffff !important; }

.rounded-sm {
  border-radius: 0.28rem !important; }

.rounded {
  border-radius: 0.42rem !important; }

.rounded-top {
  border-top-left-radius: 0.42rem !important;
  border-top-right-radius: 0.42rem !important; }

.rounded-right {
  border-top-right-radius: 0.42rem !important;
  border-bottom-right-radius: 0.42rem !important; }

.rounded-bottom {
  border-bottom-right-radius: 0.42rem !important;
  border-bottom-left-radius: 0.42rem !important; }

.rounded-left {
  border-top-left-radius: 0.42rem !important;
  border-bottom-left-radius: 0.42rem !important; }

.rounded-lg {
  border-radius: 0.85rem !important; }

.rounded-circle {
  border-radius: 50% !important; }

.rounded-pill {
  border-radius: 50rem !important; }

.rounded-0 {
  border-radius: 0 !important; }

.clearfix::after {
  display: block;
  clear: both;
  content: ""; }

.d-none {
  display: none !important; }

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

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

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

.d-table {
  display: table !important; }

.d-table-row {
  display: table-row !important; }

.d-table-cell {
  display: table-cell !important; }

.d-flex {
  display: flex !important; }

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

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important; }
  .d-sm-inline {
    display: inline !important; }
  .d-sm-inline-block {
    display: inline-block !important; }
  .d-sm-block {
    display: block !important; }
  .d-sm-table {
    display: table !important; }
  .d-sm-table-row {
    display: table-row !important; }
  .d-sm-table-cell {
    display: table-cell !important; }
  .d-sm-flex {
    display: flex !important; }
  .d-sm-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 768px) {
  .d-md-none {
    display: none !important; }
  .d-md-inline {
    display: inline !important; }
  .d-md-inline-block {
    display: inline-block !important; }
  .d-md-block {
    display: block !important; }
  .d-md-table {
    display: table !important; }
  .d-md-table-row {
    display: table-row !important; }
  .d-md-table-cell {
    display: table-cell !important; }
  .d-md-flex {
    display: flex !important; }
  .d-md-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important; }
  .d-lg-inline {
    display: inline !important; }
  .d-lg-inline-block {
    display: inline-block !important; }
  .d-lg-block {
    display: block !important; }
  .d-lg-table {
    display: table !important; }
  .d-lg-table-row {
    display: table-row !important; }
  .d-lg-table-cell {
    display: table-cell !important; }
  .d-lg-flex {
    display: flex !important; }
  .d-lg-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important; }
  .d-xl-inline {
    display: inline !important; }
  .d-xl-inline-block {
    display: inline-block !important; }
  .d-xl-block {
    display: block !important; }
  .d-xl-table {
    display: table !important; }
  .d-xl-table-row {
    display: table-row !important; }
  .d-xl-table-cell {
    display: table-cell !important; }
  .d-xl-flex {
    display: flex !important; }
  .d-xl-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 1400px) {
  .d-xxl-none {
    display: none !important; }
  .d-xxl-inline {
    display: inline !important; }
  .d-xxl-inline-block {
    display: inline-block !important; }
  .d-xxl-block {
    display: block !important; }
  .d-xxl-table {
    display: table !important; }
  .d-xxl-table-row {
    display: table-row !important; }
  .d-xxl-table-cell {
    display: table-cell !important; }
  .d-xxl-flex {
    display: flex !important; }
  .d-xxl-inline-flex {
    display: inline-flex !important; } }

@media print {
  .d-print-none {
    display: none !important; }
  .d-print-inline {
    display: inline !important; }
  .d-print-inline-block {
    display: inline-block !important; }
  .d-print-block {
    display: block !important; }
  .d-print-table {
    display: table !important; }
  .d-print-table-row {
    display: table-row !important; }
  .d-print-table-cell {
    display: table-cell !important; }
  .d-print-flex {
    display: flex !important; }
  .d-print-inline-flex {
    display: inline-flex !important; } }

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

.embed-responsive-21by9::before {
  padding-top: 42.85714%; }

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

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

.embed-responsive-1by1::before {
  padding-top: 100%; }

.flex-row {
  flex-direction: row !important; }

.flex-column {
  flex-direction: column !important; }

.flex-row-reverse {
  flex-direction: row-reverse !important; }

.flex-column-reverse {
  flex-direction: column-reverse !important; }

.flex-wrap {
  flex-wrap: wrap !important; }

.flex-nowrap {
  flex-wrap: nowrap !important; }

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important; }

.flex-fill {
  flex: 1 1 auto !important; }

.flex-grow-0 {
  flex-grow: 0 !important; }

.flex-grow-1 {
  flex-grow: 1 !important; }

.flex-shrink-0 {
  flex-shrink: 0 !important; }

.flex-shrink-1 {
  flex-shrink: 1 !important; }

.justify-content-start {
  justify-content: flex-start !important; }

.justify-content-end {
  justify-content: flex-end !important; }

.justify-content-center {
  justify-content: center !important; }

.justify-content-between {
  justify-content: space-between !important; }

.justify-content-around {
  justify-content: space-around !important; }

.align-items-start {
  align-items: flex-start !important; }

.align-items-end {
  align-items: flex-end !important; }

.align-items-center {
  align-items: center !important; }

.align-items-baseline {
  align-items: baseline !important; }

.align-items-stretch {
  align-items: stretch !important; }

.align-content-start {
  align-content: flex-start !important; }

.align-content-end {
  align-content: flex-end !important; }

.align-content-center {
  align-content: center !important; }

.align-content-between {
  align-content: space-between !important; }

.align-content-around {
  align-content: space-around !important; }

.align-content-stretch {
  align-content: stretch !important; }

.align-self-auto {
  align-self: auto !important; }

.align-self-start {
  align-self: flex-start !important; }

.align-self-end {
  align-self: flex-end !important; }

.align-self-center {
  align-self: center !important; }

.align-self-baseline {
  align-self: baseline !important; }

.align-self-stretch {
  align-self: stretch !important; }

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important; }
  .flex-sm-column {
    flex-direction: column !important; }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-sm-wrap {
    flex-wrap: wrap !important; }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important; }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .flex-sm-fill {
    flex: 1 1 auto !important; }
  .flex-sm-grow-0 {
    flex-grow: 0 !important; }
  .flex-sm-grow-1 {
    flex-grow: 1 !important; }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important; }
  .justify-content-sm-start {
    justify-content: flex-start !important; }
  .justify-content-sm-end {
    justify-content: flex-end !important; }
  .justify-content-sm-center {
    justify-content: center !important; }
  .justify-content-sm-between {
    justify-content: space-between !important; }
  .justify-content-sm-around {
    justify-content: space-around !important; }
  .align-items-sm-start {
    align-items: flex-start !important; }
  .align-items-sm-end {
    align-items: flex-end !important; }
  .align-items-sm-center {
    align-items: center !important; }
  .align-items-sm-baseline {
    align-items: baseline !important; }
  .align-items-sm-stretch {
    align-items: stretch !important; }
  .align-content-sm-start {
    align-content: flex-start !important; }
  .align-content-sm-end {
    align-content: flex-end !important; }
  .align-content-sm-center {
    align-content: center !important; }
  .align-content-sm-between {
    align-content: space-between !important; }
  .align-content-sm-around {
    align-content: space-around !important; }
  .align-content-sm-stretch {
    align-content: stretch !important; }
  .align-self-sm-auto {
    align-self: auto !important; }
  .align-self-sm-start {
    align-self: flex-start !important; }
  .align-self-sm-end {
    align-self: flex-end !important; }
  .align-self-sm-center {
    align-self: center !important; }
  .align-self-sm-baseline {
    align-self: baseline !important; }
  .align-self-sm-stretch {
    align-self: stretch !important; } }

@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important; }
  .flex-md-column {
    flex-direction: column !important; }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-md-wrap {
    flex-wrap: wrap !important; }
  .flex-md-nowrap {
    flex-wrap: nowrap !important; }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .flex-md-fill {
    flex: 1 1 auto !important; }
  .flex-md-grow-0 {
    flex-grow: 0 !important; }
  .flex-md-grow-1 {
    flex-grow: 1 !important; }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important; }
  .justify-content-md-start {
    justify-content: flex-start !important; }
  .justify-content-md-end {
    justify-content: flex-end !important; }
  .justify-content-md-center {
    justify-content: center !important; }
  .justify-content-md-between {
    justify-content: space-between !important; }
  .justify-content-md-around {
    justify-content: space-around !important; }
  .align-items-md-start {
    align-items: flex-start !important; }
  .align-items-md-end {
    align-items: flex-end !important; }
  .align-items-md-center {
    align-items: center !important; }
  .align-items-md-baseline {
    align-items: baseline !important; }
  .align-items-md-stretch {
    align-items: stretch !important; }
  .align-content-md-start {
    align-content: flex-start !important; }
  .align-content-md-end {
    align-content: flex-end !important; }
  .align-content-md-center {
    align-content: center !important; }
  .align-content-md-between {
    align-content: space-between !important; }
  .align-content-md-around {
    align-content: space-around !important; }
  .align-content-md-stretch {
    align-content: stretch !important; }
  .align-self-md-auto {
    align-self: auto !important; }
  .align-self-md-start {
    align-self: flex-start !important; }
  .align-self-md-end {
    align-self: flex-end !important; }
  .align-self-md-center {
    align-self: center !important; }
  .align-self-md-baseline {
    align-self: baseline !important; }
  .align-self-md-stretch {
    align-self: stretch !important; } }

@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important; }
  .flex-lg-column {
    flex-direction: column !important; }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-lg-wrap {
    flex-wrap: wrap !important; }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important; }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .flex-lg-fill {
    flex: 1 1 auto !important; }
  .flex-lg-grow-0 {
    flex-grow: 0 !important; }
  .flex-lg-grow-1 {
    flex-grow: 1 !important; }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important; }
  .justify-content-lg-start {
    justify-content: flex-start !important; }
  .justify-content-lg-end {
    justify-content: flex-end !important; }
  .justify-content-lg-center {
    justify-content: center !important; }
  .justify-content-lg-between {
    justify-content: space-between !important; }
  .justify-content-lg-around {
    justify-content: space-around !important; }
  .align-items-lg-start {
    align-items: flex-start !important; }
  .align-items-lg-end {
    align-items: flex-end !important; }
  .align-items-lg-center {
    align-items: center !important; }
  .align-items-lg-baseline {
    align-items: baseline !important; }
  .align-items-lg-stretch {
    align-items: stretch !important; }
  .align-content-lg-start {
    align-content: flex-start !important; }
  .align-content-lg-end {
    align-content: flex-end !important; }
  .align-content-lg-center {
    align-content: center !important; }
  .align-content-lg-between {
    align-content: space-between !important; }
  .align-content-lg-around {
    align-content: space-around !important; }
  .align-content-lg-stretch {
    align-content: stretch !important; }
  .align-self-lg-auto {
    align-self: auto !important; }
  .align-self-lg-start {
    align-self: flex-start !important; }
  .align-self-lg-end {
    align-self: flex-end !important; }
  .align-self-lg-center {
    align-self: center !important; }
  .align-self-lg-baseline {
    align-self: baseline !important; }
  .align-self-lg-stretch {
    align-self: stretch !important; } }

@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important; }
  .flex-xl-column {
    flex-direction: column !important; }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-xl-wrap {
    flex-wrap: wrap !important; }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important; }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .flex-xl-fill {
    flex: 1 1 auto !important; }
  .flex-xl-grow-0 {
    flex-grow: 0 !important; }
  .flex-xl-grow-1 {
    flex-grow: 1 !important; }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important; }
  .justify-content-xl-start {
    justify-content: flex-start !important; }
  .justify-content-xl-end {
    justify-content: flex-end !important; }
  .justify-content-xl-center {
    justify-content: center !important; }
  .justify-content-xl-between {
    justify-content: space-between !important; }
  .justify-content-xl-around {
    justify-content: space-around !important; }
  .align-items-xl-start {
    align-items: flex-start !important; }
  .align-items-xl-end {
    align-items: flex-end !important; }
  .align-items-xl-center {
    align-items: center !important; }
  .align-items-xl-baseline {
    align-items: baseline !important; }
  .align-items-xl-stretch {
    align-items: stretch !important; }
  .align-content-xl-start {
    align-content: flex-start !important; }
  .align-content-xl-end {
    align-content: flex-end !important; }
  .align-content-xl-center {
    align-content: center !important; }
  .align-content-xl-between {
    align-content: space-between !important; }
  .align-content-xl-around {
    align-content: space-around !important; }
  .align-content-xl-stretch {
    align-content: stretch !important; }
  .align-self-xl-auto {
    align-self: auto !important; }
  .align-self-xl-start {
    align-self: flex-start !important; }
  .align-self-xl-end {
    align-self: flex-end !important; }
  .align-self-xl-center {
    align-self: center !important; }
  .align-self-xl-baseline {
    align-self: baseline !important; }
  .align-self-xl-stretch {
    align-self: stretch !important; } }

@media (min-width: 1400px) {
  .flex-xxl-row {
    flex-direction: row !important; }
  .flex-xxl-column {
    flex-direction: column !important; }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-xxl-wrap {
    flex-wrap: wrap !important; }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important; }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .flex-xxl-fill {
    flex: 1 1 auto !important; }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important; }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important; }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important; }
  .justify-content-xxl-start {
    justify-content: flex-start !important; }
  .justify-content-xxl-end {
    justify-content: flex-end !important; }
  .justify-content-xxl-center {
    justify-content: center !important; }
  .justify-content-xxl-between {
    justify-content: space-between !important; }
  .justify-content-xxl-around {
    justify-content: space-around !important; }
  .align-items-xxl-start {
    align-items: flex-start !important; }
  .align-items-xxl-end {
    align-items: flex-end !important; }
  .align-items-xxl-center {
    align-items: center !important; }
  .align-items-xxl-baseline {
    align-items: baseline !important; }
  .align-items-xxl-stretch {
    align-items: stretch !important; }
  .align-content-xxl-start {
    align-content: flex-start !important; }
  .align-content-xxl-end {
    align-content: flex-end !important; }
  .align-content-xxl-center {
    align-content: center !important; }
  .align-content-xxl-between {
    align-content: space-between !important; }
  .align-content-xxl-around {
    align-content: space-around !important; }
  .align-content-xxl-stretch {
    align-content: stretch !important; }
  .align-self-xxl-auto {
    align-self: auto !important; }
  .align-self-xxl-start {
    align-self: flex-start !important; }
  .align-self-xxl-end {
    align-self: flex-end !important; }
  .align-self-xxl-center {
    align-self: center !important; }
  .align-self-xxl-baseline {
    align-self: baseline !important; }
  .align-self-xxl-stretch {
    align-self: stretch !important; } }

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

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

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

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important; }
  .float-sm-right {
    float: right !important; }
  .float-sm-none {
    float: none !important; } }

@media (min-width: 768px) {
  .float-md-left {
    float: left !important; }
  .float-md-right {
    float: right !important; }
  .float-md-none {
    float: none !important; } }

@media (min-width: 992px) {
  .float-lg-left {
    float: left !important; }
  .float-lg-right {
    float: right !important; }
  .float-lg-none {
    float: none !important; } }

@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important; }
  .float-xl-right {
    float: right !important; }
  .float-xl-none {
    float: none !important; } }

@media (min-width: 1400px) {
  .float-xxl-left {
    float: left !important; }
  .float-xxl-right {
    float: right !important; }
  .float-xxl-none {
    float: none !important; } }

.user-select-all {
  user-select: all !important; }

.user-select-auto {
  user-select: auto !important; }

.user-select-none {
  user-select: none !important; }

.overflow-auto {
  overflow: auto !important; }

.overflow-hidden {
  overflow: hidden !important; }

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

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

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

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

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

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030; }

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030; }

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020; } }

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

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

.shadow-sm {
  box-shadow: 0 0.1rem 1rem 0.25rem rgba(0, 0, 0, 0.05) !important; }

.shadow {
  box-shadow: 0 0.5rem 1.5rem 0.5rem rgba(0, 0, 0, 0.075) !important; }

.shadow-lg {
  box-shadow: 0 1rem 2rem 1rem rgba(0, 0, 0, 0.1) !important; }

.shadow-none {
  box-shadow: none !important; }

.w-25 {
  width: 25% !important; }

.w-50 {
  width: 50% !important; }

.w-75 {
  width: 75% !important; }

.w-100 {
  width: 100% !important; }

.w-auto {
  width: auto !important; }

.h-25 {
  height: 25% !important; }

.h-50 {
  height: 50% !important; }

.h-75 {
  height: 75% !important; }

.h-100 {
  height: 100% !important; }

.h-auto {
  height: auto !important; }

.mw-100 {
  max-width: 100% !important; }

.mh-100 {
  max-height: 100% !important; }

.min-vw-100 {
  min-width: 100vw !important; }

.min-vh-100 {
  min-height: 100vh !important; }

.vw-100 {
  width: 100vw !important; }

.vh-100 {
  height: 100vh !important; }

.m-0 {
  margin: 0 !important; }

.mt-0,
.my-0 {
  margin-top: 0 !important; }

.mr-0,
.mx-0 {
  margin-right: 0 !important; }

.mb-0,
.my-0 {
  margin-bottom: 0 !important; }

.ml-0,
.mx-0 {
  margin-left: 0 !important; }

.m-1 {
  margin: 0.25rem !important; }

.mt-1,
.my-1 {
  margin-top: 0.25rem !important; }

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important; }

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important; }

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important; }

.m-2 {
  margin: 0.5rem !important; }

.mt-2,
.my-2 {
  margin-top: 0.5rem !important; }

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important; }

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important; }

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important; }

.m-3 {
  margin: 0.75rem !important; }

.mt-3,
.my-3 {
  margin-top: 0.75rem !important; }

.mr-3,
.mx-3 {
  margin-right: 0.75rem !important; }

.mb-3,
.my-3 {
  margin-bottom: 0.75rem !important; }

.ml-3,
.mx-3 {
  margin-left: 0.75rem !important; }

.m-4 {
  margin: 1rem !important; }

.mt-4,
.my-4 {
  margin-top: 1rem !important; }

.mr-4,
.mx-4 {
  margin-right: 1rem !important; }

.mb-4,
.my-4 {
  margin-bottom: 1rem !important; }

.ml-4,
.mx-4 {
  margin-left: 1rem !important; }

.m-5 {
  margin: 1.25rem !important; }

.mt-5,
.my-5 {
  margin-top: 1.25rem !important; }

.mr-5,
.mx-5 {
  margin-right: 1.25rem !important; }

.mb-5,
.my-5 {
  margin-bottom: 1.25rem !important; }

.ml-5,
.mx-5 {
  margin-left: 1.25rem !important; }

.m-6 {
  margin: 1.5rem !important; }

.mt-6,
.my-6 {
  margin-top: 1.5rem !important; }

.mr-6,
.mx-6 {
  margin-right: 1.5rem !important; }

.mb-6,
.my-6 {
  margin-bottom: 1.5rem !important; }

.ml-6,
.mx-6 {
  margin-left: 1.5rem !important; }

.m-7 {
  margin: 1.75rem !important; }

.mt-7,
.my-7 {
  margin-top: 1.75rem !important; }

.mr-7,
.mx-7 {
  margin-right: 1.75rem !important; }

.mb-7,
.my-7 {
  margin-bottom: 1.75rem !important; }

.ml-7,
.mx-7 {
  margin-left: 1.75rem !important; }

.m-8 {
  margin: 2rem !important; }

.mt-8,
.my-8 {
  margin-top: 2rem !important; }

.mr-8,
.mx-8 {
  margin-right: 2rem !important; }

.mb-8,
.my-8 {
  margin-bottom: 2rem !important; }

.ml-8,
.mx-8 {
  margin-left: 2rem !important; }

.m-9 {
  margin: 2.25rem !important; }

.mt-9,
.my-9 {
  margin-top: 2.25rem !important; }

.mr-9,
.mx-9 {
  margin-right: 2.25rem !important; }

.mb-9,
.my-9 {
  margin-bottom: 2.25rem !important; }

.ml-9,
.mx-9 {
  margin-left: 2.25rem !important; }

.m-10 {
  margin: 2.5rem !important; }

.mt-10,
.my-10 {
  margin-top: 2.5rem !important; }

.mr-10,
.mx-10 {
  margin-right: 2.5rem !important; }

.mb-10,
.my-10 {
  margin-bottom: 2.5rem !important; }

.ml-10,
.mx-10 {
  margin-left: 2.5rem !important; }

.m-11 {
  margin: 2.75rem !important; }

.mt-11,
.my-11 {
  margin-top: 2.75rem !important; }

.mr-11,
.mx-11 {
  margin-right: 2.75rem !important; }

.mb-11,
.my-11 {
  margin-bottom: 2.75rem !important; }

.ml-11,
.mx-11 {
  margin-left: 2.75rem !important; }

.m-12 {
  margin: 3rem !important; }

.mt-12,
.my-12 {
  margin-top: 3rem !important; }

.mr-12,
.mx-12 {
  margin-right: 3rem !important; }

.mb-12,
.my-12 {
  margin-bottom: 3rem !important; }

.ml-12,
.mx-12 {
  margin-left: 3rem !important; }

.m-13 {
  margin: 3.25rem !important; }

.mt-13,
.my-13 {
  margin-top: 3.25rem !important; }

.mr-13,
.mx-13 {
  margin-right: 3.25rem !important; }

.mb-13,
.my-13 {
  margin-bottom: 3.25rem !important; }

.ml-13,
.mx-13 {
  margin-left: 3.25rem !important; }

.m-14 {
  margin: 3.5rem !important; }

.mt-14,
.my-14 {
  margin-top: 3.5rem !important; }

.mr-14,
.mx-14 {
  margin-right: 3.5rem !important; }

.mb-14,
.my-14 {
  margin-bottom: 3.5rem !important; }

.ml-14,
.mx-14 {
  margin-left: 3.5rem !important; }

.m-15 {
  margin: 3.75rem !important; }

.mt-15,
.my-15 {
  margin-top: 3.75rem !important; }

.mr-15,
.mx-15 {
  margin-right: 3.75rem !important; }

.mb-15,
.my-15 {
  margin-bottom: 3.75rem !important; }

.ml-15,
.mx-15 {
  margin-left: 3.75rem !important; }

.m-16 {
  margin: 4rem !important; }

.mt-16,
.my-16 {
  margin-top: 4rem !important; }

.mr-16,
.mx-16 {
  margin-right: 4rem !important; }

.mb-16,
.my-16 {
  margin-bottom: 4rem !important; }

.ml-16,
.mx-16 {
  margin-left: 4rem !important; }

.m-17 {
  margin: 4.25rem !important; }

.mt-17,
.my-17 {
  margin-top: 4.25rem !important; }

.mr-17,
.mx-17 {
  margin-right: 4.25rem !important; }

.mb-17,
.my-17 {
  margin-bottom: 4.25rem !important; }

.ml-17,
.mx-17 {
  margin-left: 4.25rem !important; }

.m-18 {
  margin: 4.5rem !important; }

.mt-18,
.my-18 {
  margin-top: 4.5rem !important; }

.mr-18,
.mx-18 {
  margin-right: 4.5rem !important; }

.mb-18,
.my-18 {
  margin-bottom: 4.5rem !important; }

.ml-18,
.mx-18 {
  margin-left: 4.5rem !important; }

.m-19 {
  margin: 4.75rem !important; }

.mt-19,
.my-19 {
  margin-top: 4.75rem !important; }

.mr-19,
.mx-19 {
  margin-right: 4.75rem !important; }

.mb-19,
.my-19 {
  margin-bottom: 4.75rem !important; }

.ml-19,
.mx-19 {
  margin-left: 4.75rem !important; }

.m-20 {
  margin: 5rem !important; }

.mt-20,
.my-20 {
  margin-top: 5rem !important; }

.mr-20,
.mx-20 {
  margin-right: 5rem !important; }

.mb-20,
.my-20 {
  margin-bottom: 5rem !important; }

.ml-20,
.mx-20 {
  margin-left: 5rem !important; }

.m-21 {
  margin: 5.25rem !important; }

.mt-21,
.my-21 {
  margin-top: 5.25rem !important; }

.mr-21,
.mx-21 {
  margin-right: 5.25rem !important; }

.mb-21,
.my-21 {
  margin-bottom: 5.25rem !important; }

.ml-21,
.mx-21 {
  margin-left: 5.25rem !important; }

.m-22 {
  margin: 5.5rem !important; }

.mt-22,
.my-22 {
  margin-top: 5.5rem !important; }

.mr-22,
.mx-22 {
  margin-right: 5.5rem !important; }

.mb-22,
.my-22 {
  margin-bottom: 5.5rem !important; }

.ml-22,
.mx-22 {
  margin-left: 5.5rem !important; }

.m-23 {
  margin: 5.75rem !important; }

.mt-23,
.my-23 {
  margin-top: 5.75rem !important; }

.mr-23,
.mx-23 {
  margin-right: 5.75rem !important; }

.mb-23,
.my-23 {
  margin-bottom: 5.75rem !important; }

.ml-23,
.mx-23 {
  margin-left: 5.75rem !important; }

.m-24 {
  margin: 6rem !important; }

.mt-24,
.my-24 {
  margin-top: 6rem !important; }

.mr-24,
.mx-24 {
  margin-right: 6rem !important; }

.mb-24,
.my-24 {
  margin-bottom: 6rem !important; }

.ml-24,
.mx-24 {
  margin-left: 6rem !important; }

.m-25 {
  margin: 6.25rem !important; }

.mt-25,
.my-25 {
  margin-top: 6.25rem !important; }

.mr-25,
.mx-25 {
  margin-right: 6.25rem !important; }

.mb-25,
.my-25 {
  margin-bottom: 6.25rem !important; }

.ml-25,
.mx-25 {
  margin-left: 6.25rem !important; }

.m-26 {
  margin: 6.5rem !important; }

.mt-26,
.my-26 {
  margin-top: 6.5rem !important; }

.mr-26,
.mx-26 {
  margin-right: 6.5rem !important; }

.mb-26,
.my-26 {
  margin-bottom: 6.5rem !important; }

.ml-26,
.mx-26 {
  margin-left: 6.5rem !important; }

.m-27 {
  margin: 6.75rem !important; }

.mt-27,
.my-27 {
  margin-top: 6.75rem !important; }

.mr-27,
.mx-27 {
  margin-right: 6.75rem !important; }

.mb-27,
.my-27 {
  margin-bottom: 6.75rem !important; }

.ml-27,
.mx-27 {
  margin-left: 6.75rem !important; }

.m-28 {
  margin: 7rem !important; }

.mt-28,
.my-28 {
  margin-top: 7rem !important; }

.mr-28,
.mx-28 {
  margin-right: 7rem !important; }

.mb-28,
.my-28 {
  margin-bottom: 7rem !important; }

.ml-28,
.mx-28 {
  margin-left: 7rem !important; }

.m-29 {
  margin: 7.25rem !important; }

.mt-29,
.my-29 {
  margin-top: 7.25rem !important; }

.mr-29,
.mx-29 {
  margin-right: 7.25rem !important; }

.mb-29,
.my-29 {
  margin-bottom: 7.25rem !important; }

.ml-29,
.mx-29 {
  margin-left: 7.25rem !important; }

.m-30 {
  margin: 7.5rem !important; }

.mt-30,
.my-30 {
  margin-top: 7.5rem !important; }

.mr-30,
.mx-30 {
  margin-right: 7.5rem !important; }

.mb-30,
.my-30 {
  margin-bottom: 7.5rem !important; }

.ml-30,
.mx-30 {
  margin-left: 7.5rem !important; }

.m-31 {
  margin: 7.75rem !important; }

.mt-31,
.my-31 {
  margin-top: 7.75rem !important; }

.mr-31,
.mx-31 {
  margin-right: 7.75rem !important; }

.mb-31,
.my-31 {
  margin-bottom: 7.75rem !important; }

.ml-31,
.mx-31 {
  margin-left: 7.75rem !important; }

.m-32 {
  margin: 8rem !important; }

.mt-32,
.my-32 {
  margin-top: 8rem !important; }

.mr-32,
.mx-32 {
  margin-right: 8rem !important; }

.mb-32,
.my-32 {
  margin-bottom: 8rem !important; }

.ml-32,
.mx-32 {
  margin-left: 8rem !important; }

.m-33 {
  margin: 8.25rem !important; }

.mt-33,
.my-33 {
  margin-top: 8.25rem !important; }

.mr-33,
.mx-33 {
  margin-right: 8.25rem !important; }

.mb-33,
.my-33 {
  margin-bottom: 8.25rem !important; }

.ml-33,
.mx-33 {
  margin-left: 8.25rem !important; }

.m-34 {
  margin: 8.5rem !important; }

.mt-34,
.my-34 {
  margin-top: 8.5rem !important; }

.mr-34,
.mx-34 {
  margin-right: 8.5rem !important; }

.mb-34,
.my-34 {
  margin-bottom: 8.5rem !important; }

.ml-34,
.mx-34 {
  margin-left: 8.5rem !important; }

.m-35 {
  margin: 8.75rem !important; }

.mt-35,
.my-35 {
  margin-top: 8.75rem !important; }

.mr-35,
.mx-35 {
  margin-right: 8.75rem !important; }

.mb-35,
.my-35 {
  margin-bottom: 8.75rem !important; }

.ml-35,
.mx-35 {
  margin-left: 8.75rem !important; }

.m-36 {
  margin: 9rem !important; }

.mt-36,
.my-36 {
  margin-top: 9rem !important; }

.mr-36,
.mx-36 {
  margin-right: 9rem !important; }

.mb-36,
.my-36 {
  margin-bottom: 9rem !important; }

.ml-36,
.mx-36 {
  margin-left: 9rem !important; }

.m-37 {
  margin: 9.25rem !important; }

.mt-37,
.my-37 {
  margin-top: 9.25rem !important; }

.mr-37,
.mx-37 {
  margin-right: 9.25rem !important; }

.mb-37,
.my-37 {
  margin-bottom: 9.25rem !important; }

.ml-37,
.mx-37 {
  margin-left: 9.25rem !important; }

.m-48 {
  margin: 9.5rem !important; }

.mt-48,
.my-48 {
  margin-top: 9.5rem !important; }

.mr-48,
.mx-48 {
  margin-right: 9.5rem !important; }

.mb-48,
.my-48 {
  margin-bottom: 9.5rem !important; }

.ml-48,
.mx-48 {
  margin-left: 9.5rem !important; }

.m-39 {
  margin: 9.75rem !important; }

.mt-39,
.my-39 {
  margin-top: 9.75rem !important; }

.mr-39,
.mx-39 {
  margin-right: 9.75rem !important; }

.mb-39,
.my-39 {
  margin-bottom: 9.75rem !important; }

.ml-39,
.mx-39 {
  margin-left: 9.75rem !important; }

.m-40 {
  margin: 10rem !important; }

.mt-40,
.my-40 {
  margin-top: 10rem !important; }

.mr-40,
.mx-40 {
  margin-right: 10rem !important; }

.mb-40,
.my-40 {
  margin-bottom: 10rem !important; }

.ml-40,
.mx-40 {
  margin-left: 10rem !important; }

.p-0 {
  padding: 0 !important; }

.pt-0,
.py-0 {
  padding-top: 0 !important; }

.pr-0,
.px-0 {
  padding-right: 0 !important; }

.pb-0,
.py-0 {
  padding-bottom: 0 !important; }

.pl-0,
.px-0 {
  padding-left: 0 !important; }

.p-1 {
  padding: 0.25rem !important; }

.pt-1,
.py-1 {
  padding-top: 0.25rem !important; }

.pr-1,
.px-1 {
  padding-right: 0.25rem !important; }

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important; }

.pl-1,
.px-1 {
  padding-left: 0.25rem !important; }

.p-2 {
  padding: 0.5rem !important; }

.pt-2,
.py-2 {
  padding-top: 0.5rem !important; }

.pr-2,
.px-2 {
  padding-right: 0.5rem !important; }

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important; }

.pl-2,
.px-2 {
  padding-left: 0.5rem !important; }

.p-3 {
  padding: 0.75rem !important; }

.pt-3,
.py-3 {
  padding-top: 0.75rem !important; }

.pr-3,
.px-3 {
  padding-right: 0.75rem !important; }

.pb-3,
.py-3 {
  padding-bottom: 0.75rem !important; }

.pl-3,
.px-3 {
  padding-left: 0.75rem !important; }

.p-4 {
  padding: 1rem !important; }

.pt-4,
.py-4 {
  padding-top: 1rem !important; }

.pr-4,
.px-4 {
  padding-right: 1rem !important; }

.pb-4,
.py-4 {
  padding-bottom: 1rem !important; }

.pl-4,
.px-4 {
  padding-left: 1rem !important; }

.p-5 {
  padding: 1.25rem !important; }

.pt-5,
.py-5 {
  padding-top: 1.25rem !important; }

.pr-5,
.px-5 {
  padding-right: 1.25rem !important; }

.pb-5,
.py-5 {
  padding-bottom: 1.25rem !important; }

.pl-5,
.px-5 {
  padding-left: 1.25rem !important; }

.p-6 {
  padding: 1.5rem !important; }

.pt-6,
.py-6 {
  padding-top: 1.5rem !important; }

.pr-6,
.px-6 {
  padding-right: 1.5rem !important; }

.pb-6,
.py-6 {
  padding-bottom: 1.5rem !important; }

.pl-6,
.px-6 {
  padding-left: 1.5rem !important; }

.p-7 {
  padding: 1.75rem !important; }

.pt-7,
.py-7 {
  padding-top: 1.75rem !important; }

.pr-7,
.px-7 {
  padding-right: 1.75rem !important; }

.pb-7,
.py-7 {
  padding-bottom: 1.75rem !important; }

.pl-7,
.px-7 {
  padding-left: 1.75rem !important; }

.p-8 {
  padding: 2rem !important; }

.pt-8,
.py-8 {
  padding-top: 2rem !important; }

.pr-8,
.px-8 {
  padding-right: 2rem !important; }

.pb-8,
.py-8 {
  padding-bottom: 2rem !important; }

.pl-8,
.px-8 {
  padding-left: 2rem !important; }

.p-9 {
  padding: 2.25rem !important; }

.pt-9,
.py-9 {
  padding-top: 2.25rem !important; }

.pr-9,
.px-9 {
  padding-right: 2.25rem !important; }

.pb-9,
.py-9 {
  padding-bottom: 2.25rem !important; }

.pl-9,
.px-9 {
  padding-left: 2.25rem !important; }

.p-10 {
  padding: 2.5rem !important; }

.pt-10,
.py-10 {
  padding-top: 2.5rem !important; }

.pr-10,
.px-10 {
  padding-right: 2.5rem !important; }

.pb-10,
.py-10 {
  padding-bottom: 2.5rem !important; }

.pl-10,
.px-10 {
  padding-left: 2.5rem !important; }

.p-11 {
  padding: 2.75rem !important; }

.pt-11,
.py-11 {
  padding-top: 2.75rem !important; }

.pr-11,
.px-11 {
  padding-right: 2.75rem !important; }

.pb-11,
.py-11 {
  padding-bottom: 2.75rem !important; }

.pl-11,
.px-11 {
  padding-left: 2.75rem !important; }

.p-12 {
  padding: 3rem !important; }

.pt-12,
.py-12 {
  padding-top: 3rem !important; }

.pr-12,
.px-12 {
  padding-right: 3rem !important; }

.pb-12,
.py-12 {
  padding-bottom: 3rem !important; }

.pl-12,
.px-12 {
  padding-left: 3rem !important; }

.p-13 {
  padding: 3.25rem !important; }

.pt-13,
.py-13 {
  padding-top: 3.25rem !important; }

.pr-13,
.px-13 {
  padding-right: 3.25rem !important; }

.pb-13,
.py-13 {
  padding-bottom: 3.25rem !important; }

.pl-13,
.px-13 {
  padding-left: 3.25rem !important; }

.p-14 {
  padding: 3.5rem !important; }

.pt-14,
.py-14 {
  padding-top: 3.5rem !important; }

.pr-14,
.px-14 {
  padding-right: 3.5rem !important; }

.pb-14,
.py-14 {
  padding-bottom: 3.5rem !important; }

.pl-14,
.px-14 {
  padding-left: 3.5rem !important; }

.p-15 {
  padding: 3.75rem !important; }

.pt-15,
.py-15 {
  padding-top: 3.75rem !important; }

.pr-15,
.px-15 {
  padding-right: 3.75rem !important; }

.pb-15,
.py-15 {
  padding-bottom: 3.75rem !important; }

.pl-15,
.px-15 {
  padding-left: 3.75rem !important; }

.p-16 {
  padding: 4rem !important; }

.pt-16,
.py-16 {
  padding-top: 4rem !important; }

.pr-16,
.px-16 {
  padding-right: 4rem !important; }

.pb-16,
.py-16 {
  padding-bottom: 4rem !important; }

.pl-16,
.px-16 {
  padding-left: 4rem !important; }

.p-17 {
  padding: 4.25rem !important; }

.pt-17,
.py-17 {
  padding-top: 4.25rem !important; }

.pr-17,
.px-17 {
  padding-right: 4.25rem !important; }

.pb-17,
.py-17 {
  padding-bottom: 4.25rem !important; }

.pl-17,
.px-17 {
  padding-left: 4.25rem !important; }

.p-18 {
  padding: 4.5rem !important; }

.pt-18,
.py-18 {
  padding-top: 4.5rem !important; }

.pr-18,
.px-18 {
  padding-right: 4.5rem !important; }

.pb-18,
.py-18 {
  padding-bottom: 4.5rem !important; }

.pl-18,
.px-18 {
  padding-left: 4.5rem !important; }

.p-19 {
  padding: 4.75rem !important; }

.pt-19,
.py-19 {
  padding-top: 4.75rem !important; }

.pr-19,
.px-19 {
  padding-right: 4.75rem !important; }

.pb-19,
.py-19 {
  padding-bottom: 4.75rem !important; }

.pl-19,
.px-19 {
  padding-left: 4.75rem !important; }

.p-20 {
  padding: 5rem !important; }

.pt-20,
.py-20 {
  padding-top: 5rem !important; }

.pr-20,
.px-20 {
  padding-right: 5rem !important; }

.pb-20,
.py-20 {
  padding-bottom: 5rem !important; }

.pl-20,
.px-20 {
  padding-left: 5rem !important; }

.p-21 {
  padding: 5.25rem !important; }

.pt-21,
.py-21 {
  padding-top: 5.25rem !important; }

.pr-21,
.px-21 {
  padding-right: 5.25rem !important; }

.pb-21,
.py-21 {
  padding-bottom: 5.25rem !important; }

.pl-21,
.px-21 {
  padding-left: 5.25rem !important; }

.p-22 {
  padding: 5.5rem !important; }

.pt-22,
.py-22 {
  padding-top: 5.5rem !important; }

.pr-22,
.px-22 {
  padding-right: 5.5rem !important; }

.pb-22,
.py-22 {
  padding-bottom: 5.5rem !important; }

.pl-22,
.px-22 {
  padding-left: 5.5rem !important; }

.p-23 {
  padding: 5.75rem !important; }

.pt-23,
.py-23 {
  padding-top: 5.75rem !important; }

.pr-23,
.px-23 {
  padding-right: 5.75rem !important; }

.pb-23,
.py-23 {
  padding-bottom: 5.75rem !important; }

.pl-23,
.px-23 {
  padding-left: 5.75rem !important; }

.p-24 {
  padding: 6rem !important; }

.pt-24,
.py-24 {
  padding-top: 6rem !important; }

.pr-24,
.px-24 {
  padding-right: 6rem !important; }

.pb-24,
.py-24 {
  padding-bottom: 6rem !important; }

.pl-24,
.px-24 {
  padding-left: 6rem !important; }

.p-25 {
  padding: 6.25rem !important; }

.pt-25,
.py-25 {
  padding-top: 6.25rem !important; }

.pr-25,
.px-25 {
  padding-right: 6.25rem !important; }

.pb-25,
.py-25 {
  padding-bottom: 6.25rem !important; }

.pl-25,
.px-25 {
  padding-left: 6.25rem !important; }

.p-26 {
  padding: 6.5rem !important; }

.pt-26,
.py-26 {
  padding-top: 6.5rem !important; }

.pr-26,
.px-26 {
  padding-right: 6.5rem !important; }

.pb-26,
.py-26 {
  padding-bottom: 6.5rem !important; }

.pl-26,
.px-26 {
  padding-left: 6.5rem !important; }

.p-27 {
  padding: 6.75rem !important; }

.pt-27,
.py-27 {
  padding-top: 6.75rem !important; }

.pr-27,
.px-27 {
  padding-right: 6.75rem !important; }

.pb-27,
.py-27 {
  padding-bottom: 6.75rem !important; }

.pl-27,
.px-27 {
  padding-left: 6.75rem !important; }

.p-28 {
  padding: 7rem !important; }

.pt-28,
.py-28 {
  padding-top: 7rem !important; }

.pr-28,
.px-28 {
  padding-right: 7rem !important; }

.pb-28,
.py-28 {
  padding-bottom: 7rem !important; }

.pl-28,
.px-28 {
  padding-left: 7rem !important; }

.p-29 {
  padding: 7.25rem !important; }

.pt-29,
.py-29 {
  padding-top: 7.25rem !important; }

.pr-29,
.px-29 {
  padding-right: 7.25rem !important; }

.pb-29,
.py-29 {
  padding-bottom: 7.25rem !important; }

.pl-29,
.px-29 {
  padding-left: 7.25rem !important; }

.p-30 {
  padding: 7.5rem !important; }

.pt-30,
.py-30 {
  padding-top: 7.5rem !important; }

.pr-30,
.px-30 {
  padding-right: 7.5rem !important; }

.pb-30,
.py-30 {
  padding-bottom: 7.5rem !important; }

.pl-30,
.px-30 {
  padding-left: 7.5rem !important; }

.p-31 {
  padding: 7.75rem !important; }

.pt-31,
.py-31 {
  padding-top: 7.75rem !important; }

.pr-31,
.px-31 {
  padding-right: 7.75rem !important; }

.pb-31,
.py-31 {
  padding-bottom: 7.75rem !important; }

.pl-31,
.px-31 {
  padding-left: 7.75rem !important; }

.p-32 {
  padding: 8rem !important; }

.pt-32,
.py-32 {
  padding-top: 8rem !important; }

.pr-32,
.px-32 {
  padding-right: 8rem !important; }

.pb-32,
.py-32 {
  padding-bottom: 8rem !important; }

.pl-32,
.px-32 {
  padding-left: 8rem !important; }

.p-33 {
  padding: 8.25rem !important; }

.pt-33,
.py-33 {
  padding-top: 8.25rem !important; }

.pr-33,
.px-33 {
  padding-right: 8.25rem !important; }

.pb-33,
.py-33 {
  padding-bottom: 8.25rem !important; }

.pl-33,
.px-33 {
  padding-left: 8.25rem !important; }

.p-34 {
  padding: 8.5rem !important; }

.pt-34,
.py-34 {
  padding-top: 8.5rem !important; }

.pr-34,
.px-34 {
  padding-right: 8.5rem !important; }

.pb-34,
.py-34 {
  padding-bottom: 8.5rem !important; }

.pl-34,
.px-34 {
  padding-left: 8.5rem !important; }

.p-35 {
  padding: 8.75rem !important; }

.pt-35,
.py-35 {
  padding-top: 8.75rem !important; }

.pr-35,
.px-35 {
  padding-right: 8.75rem !important; }

.pb-35,
.py-35 {
  padding-bottom: 8.75rem !important; }

.pl-35,
.px-35 {
  padding-left: 8.75rem !important; }

.p-36 {
  padding: 9rem !important; }

.pt-36,
.py-36 {
  padding-top: 9rem !important; }

.pr-36,
.px-36 {
  padding-right: 9rem !important; }

.pb-36,
.py-36 {
  padding-bottom: 9rem !important; }

.pl-36,
.px-36 {
  padding-left: 9rem !important; }

.p-37 {
  padding: 9.25rem !important; }

.pt-37,
.py-37 {
  padding-top: 9.25rem !important; }

.pr-37,
.px-37 {
  padding-right: 9.25rem !important; }

.pb-37,
.py-37 {
  padding-bottom: 9.25rem !important; }

.pl-37,
.px-37 {
  padding-left: 9.25rem !important; }

.p-48 {
  padding: 9.5rem !important; }

.pt-48,
.py-48 {
  padding-top: 9.5rem !important; }

.pr-48,
.px-48 {
  padding-right: 9.5rem !important; }

.pb-48,
.py-48 {
  padding-bottom: 9.5rem !important; }

.pl-48,
.px-48 {
  padding-left: 9.5rem !important; }

.p-39 {
  padding: 9.75rem !important; }

.pt-39,
.py-39 {
  padding-top: 9.75rem !important; }

.pr-39,
.px-39 {
  padding-right: 9.75rem !important; }

.pb-39,
.py-39 {
  padding-bottom: 9.75rem !important; }

.pl-39,
.px-39 {
  padding-left: 9.75rem !important; }

.p-40 {
  padding: 10rem !important; }

.pt-40,
.py-40 {
  padding-top: 10rem !important; }

.pr-40,
.px-40 {
  padding-right: 10rem !important; }

.pb-40,
.py-40 {
  padding-bottom: 10rem !important; }

.pl-40,
.px-40 {
  padding-left: 10rem !important; }

.m-n1 {
  margin: -0.25rem !important; }

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important; }

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important; }

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important; }

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important; }

.m-n2 {
  margin: -0.5rem !important; }

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important; }

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important; }

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important; }

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important; }

.m-n3 {
  margin: -0.75rem !important; }

.mt-n3,
.my-n3 {
  margin-top: -0.75rem !important; }

.mr-n3,
.mx-n3 {
  margin-right: -0.75rem !important; }

.mb-n3,
.my-n3 {
  margin-bottom: -0.75rem !important; }

.ml-n3,
.mx-n3 {
  margin-left: -0.75rem !important; }

.m-n4 {
  margin: -1rem !important; }

.mt-n4,
.my-n4 {
  margin-top: -1rem !important; }

.mr-n4,
.mx-n4 {
  margin-right: -1rem !important; }

.mb-n4,
.my-n4 {
  margin-bottom: -1rem !important; }

.ml-n4,
.mx-n4 {
  margin-left: -1rem !important; }

.m-n5 {
  margin: -1.25rem !important; }

.mt-n5,
.my-n5 {
  margin-top: -1.25rem !important; }

.mr-n5,
.mx-n5 {
  margin-right: -1.25rem !important; }

.mb-n5,
.my-n5 {
  margin-bottom: -1.25rem !important; }

.ml-n5,
.mx-n5 {
  margin-left: -1.25rem !important; }

.m-n6 {
  margin: -1.5rem !important; }

.mt-n6,
.my-n6 {
  margin-top: -1.5rem !important; }

.mr-n6,
.mx-n6 {
  margin-right: -1.5rem !important; }

.mb-n6,
.my-n6 {
  margin-bottom: -1.5rem !important; }

.ml-n6,
.mx-n6 {
  margin-left: -1.5rem !important; }

.m-n7 {
  margin: -1.75rem !important; }

.mt-n7,
.my-n7 {
  margin-top: -1.75rem !important; }

.mr-n7,
.mx-n7 {
  margin-right: -1.75rem !important; }

.mb-n7,
.my-n7 {
  margin-bottom: -1.75rem !important; }

.ml-n7,
.mx-n7 {
  margin-left: -1.75rem !important; }

.m-n8 {
  margin: -2rem !important; }

.mt-n8,
.my-n8 {
  margin-top: -2rem !important; }

.mr-n8,
.mx-n8 {
  margin-right: -2rem !important; }

.mb-n8,
.my-n8 {
  margin-bottom: -2rem !important; }

.ml-n8,
.mx-n8 {
  margin-left: -2rem !important; }

.m-n9 {
  margin: -2.25rem !important; }

.mt-n9,
.my-n9 {
  margin-top: -2.25rem !important; }

.mr-n9,
.mx-n9 {
  margin-right: -2.25rem !important; }

.mb-n9,
.my-n9 {
  margin-bottom: -2.25rem !important; }

.ml-n9,
.mx-n9 {
  margin-left: -2.25rem !important; }

.m-n10 {
  margin: -2.5rem !important; }

.mt-n10,
.my-n10 {
  margin-top: -2.5rem !important; }

.mr-n10,
.mx-n10 {
  margin-right: -2.5rem !important; }

.mb-n10,
.my-n10 {
  margin-bottom: -2.5rem !important; }

.ml-n10,
.mx-n10 {
  margin-left: -2.5rem !important; }

.m-n11 {
  margin: -2.75rem !important; }

.mt-n11,
.my-n11 {
  margin-top: -2.75rem !important; }

.mr-n11,
.mx-n11 {
  margin-right: -2.75rem !important; }

.mb-n11,
.my-n11 {
  margin-bottom: -2.75rem !important; }

.ml-n11,
.mx-n11 {
  margin-left: -2.75rem !important; }

.m-n12 {
  margin: -3rem !important; }

.mt-n12,
.my-n12 {
  margin-top: -3rem !important; }

.mr-n12,
.mx-n12 {
  margin-right: -3rem !important; }

.mb-n12,
.my-n12 {
  margin-bottom: -3rem !important; }

.ml-n12,
.mx-n12 {
  margin-left: -3rem !important; }

.m-n13 {
  margin: -3.25rem !important; }

.mt-n13,
.my-n13 {
  margin-top: -3.25rem !important; }

.mr-n13,
.mx-n13 {
  margin-right: -3.25rem !important; }

.mb-n13,
.my-n13 {
  margin-bottom: -3.25rem !important; }

.ml-n13,
.mx-n13 {
  margin-left: -3.25rem !important; }

.m-n14 {
  margin: -3.5rem !important; }

.mt-n14,
.my-n14 {
  margin-top: -3.5rem !important; }

.mr-n14,
.mx-n14 {
  margin-right: -3.5rem !important; }

.mb-n14,
.my-n14 {
  margin-bottom: -3.5rem !important; }

.ml-n14,
.mx-n14 {
  margin-left: -3.5rem !important; }

.m-n15 {
  margin: -3.75rem !important; }

.mt-n15,
.my-n15 {
  margin-top: -3.75rem !important; }

.mr-n15,
.mx-n15 {
  margin-right: -3.75rem !important; }

.mb-n15,
.my-n15 {
  margin-bottom: -3.75rem !important; }

.ml-n15,
.mx-n15 {
  margin-left: -3.75rem !important; }

.m-n16 {
  margin: -4rem !important; }

.mt-n16,
.my-n16 {
  margin-top: -4rem !important; }

.mr-n16,
.mx-n16 {
  margin-right: -4rem !important; }

.mb-n16,
.my-n16 {
  margin-bottom: -4rem !important; }

.ml-n16,
.mx-n16 {
  margin-left: -4rem !important; }

.m-n17 {
  margin: -4.25rem !important; }

.mt-n17,
.my-n17 {
  margin-top: -4.25rem !important; }

.mr-n17,
.mx-n17 {
  margin-right: -4.25rem !important; }

.mb-n17,
.my-n17 {
  margin-bottom: -4.25rem !important; }

.ml-n17,
.mx-n17 {
  margin-left: -4.25rem !important; }

.m-n18 {
  margin: -4.5rem !important; }

.mt-n18,
.my-n18 {
  margin-top: -4.5rem !important; }

.mr-n18,
.mx-n18 {
  margin-right: -4.5rem !important; }

.mb-n18,
.my-n18 {
  margin-bottom: -4.5rem !important; }

.ml-n18,
.mx-n18 {
  margin-left: -4.5rem !important; }

.m-n19 {
  margin: -4.75rem !important; }

.mt-n19,
.my-n19 {
  margin-top: -4.75rem !important; }

.mr-n19,
.mx-n19 {
  margin-right: -4.75rem !important; }

.mb-n19,
.my-n19 {
  margin-bottom: -4.75rem !important; }

.ml-n19,
.mx-n19 {
  margin-left: -4.75rem !important; }

.m-n20 {
  margin: -5rem !important; }

.mt-n20,
.my-n20 {
  margin-top: -5rem !important; }

.mr-n20,
.mx-n20 {
  margin-right: -5rem !important; }

.mb-n20,
.my-n20 {
  margin-bottom: -5rem !important; }

.ml-n20,
.mx-n20 {
  margin-left: -5rem !important; }

.m-n21 {
  margin: -5.25rem !important; }

.mt-n21,
.my-n21 {
  margin-top: -5.25rem !important; }

.mr-n21,
.mx-n21 {
  margin-right: -5.25rem !important; }

.mb-n21,
.my-n21 {
  margin-bottom: -5.25rem !important; }

.ml-n21,
.mx-n21 {
  margin-left: -5.25rem !important; }

.m-n22 {
  margin: -5.5rem !important; }

.mt-n22,
.my-n22 {
  margin-top: -5.5rem !important; }

.mr-n22,
.mx-n22 {
  margin-right: -5.5rem !important; }

.mb-n22,
.my-n22 {
  margin-bottom: -5.5rem !important; }

.ml-n22,
.mx-n22 {
  margin-left: -5.5rem !important; }

.m-n23 {
  margin: -5.75rem !important; }

.mt-n23,
.my-n23 {
  margin-top: -5.75rem !important; }

.mr-n23,
.mx-n23 {
  margin-right: -5.75rem !important; }

.mb-n23,
.my-n23 {
  margin-bottom: -5.75rem !important; }

.ml-n23,
.mx-n23 {
  margin-left: -5.75rem !important; }

.m-n24 {
  margin: -6rem !important; }

.mt-n24,
.my-n24 {
  margin-top: -6rem !important; }

.mr-n24,
.mx-n24 {
  margin-right: -6rem !important; }

.mb-n24,
.my-n24 {
  margin-bottom: -6rem !important; }

.ml-n24,
.mx-n24 {
  margin-left: -6rem !important; }

.m-n25 {
  margin: -6.25rem !important; }

.mt-n25,
.my-n25 {
  margin-top: -6.25rem !important; }

.mr-n25,
.mx-n25 {
  margin-right: -6.25rem !important; }

.mb-n25,
.my-n25 {
  margin-bottom: -6.25rem !important; }

.ml-n25,
.mx-n25 {
  margin-left: -6.25rem !important; }

.m-n26 {
  margin: -6.5rem !important; }

.mt-n26,
.my-n26 {
  margin-top: -6.5rem !important; }

.mr-n26,
.mx-n26 {
  margin-right: -6.5rem !important; }

.mb-n26,
.my-n26 {
  margin-bottom: -6.5rem !important; }

.ml-n26,
.mx-n26 {
  margin-left: -6.5rem !important; }

.m-n27 {
  margin: -6.75rem !important; }

.mt-n27,
.my-n27 {
  margin-top: -6.75rem !important; }

.mr-n27,
.mx-n27 {
  margin-right: -6.75rem !important; }

.mb-n27,
.my-n27 {
  margin-bottom: -6.75rem !important; }

.ml-n27,
.mx-n27 {
  margin-left: -6.75rem !important; }

.m-n28 {
  margin: -7rem !important; }

.mt-n28,
.my-n28 {
  margin-top: -7rem !important; }

.mr-n28,
.mx-n28 {
  margin-right: -7rem !important; }

.mb-n28,
.my-n28 {
  margin-bottom: -7rem !important; }

.ml-n28,
.mx-n28 {
  margin-left: -7rem !important; }

.m-n29 {
  margin: -7.25rem !important; }

.mt-n29,
.my-n29 {
  margin-top: -7.25rem !important; }

.mr-n29,
.mx-n29 {
  margin-right: -7.25rem !important; }

.mb-n29,
.my-n29 {
  margin-bottom: -7.25rem !important; }

.ml-n29,
.mx-n29 {
  margin-left: -7.25rem !important; }

.m-n30 {
  margin: -7.5rem !important; }

.mt-n30,
.my-n30 {
  margin-top: -7.5rem !important; }

.mr-n30,
.mx-n30 {
  margin-right: -7.5rem !important; }

.mb-n30,
.my-n30 {
  margin-bottom: -7.5rem !important; }

.ml-n30,
.mx-n30 {
  margin-left: -7.5rem !important; }

.m-n31 {
  margin: -7.75rem !important; }

.mt-n31,
.my-n31 {
  margin-top: -7.75rem !important; }

.mr-n31,
.mx-n31 {
  margin-right: -7.75rem !important; }

.mb-n31,
.my-n31 {
  margin-bottom: -7.75rem !important; }

.ml-n31,
.mx-n31 {
  margin-left: -7.75rem !important; }

.m-n32 {
  margin: -8rem !important; }

.mt-n32,
.my-n32 {
  margin-top: -8rem !important; }

.mr-n32,
.mx-n32 {
  margin-right: -8rem !important; }

.mb-n32,
.my-n32 {
  margin-bottom: -8rem !important; }

.ml-n32,
.mx-n32 {
  margin-left: -8rem !important; }

.m-n33 {
  margin: -8.25rem !important; }

.mt-n33,
.my-n33 {
  margin-top: -8.25rem !important; }

.mr-n33,
.mx-n33 {
  margin-right: -8.25rem !important; }

.mb-n33,
.my-n33 {
  margin-bottom: -8.25rem !important; }

.ml-n33,
.mx-n33 {
  margin-left: -8.25rem !important; }

.m-n34 {
  margin: -8.5rem !important; }

.mt-n34,
.my-n34 {
  margin-top: -8.5rem !important; }

.mr-n34,
.mx-n34 {
  margin-right: -8.5rem !important; }

.mb-n34,
.my-n34 {
  margin-bottom: -8.5rem !important; }

.ml-n34,
.mx-n34 {
  margin-left: -8.5rem !important; }

.m-n35 {
  margin: -8.75rem !important; }

.mt-n35,
.my-n35 {
  margin-top: -8.75rem !important; }

.mr-n35,
.mx-n35 {
  margin-right: -8.75rem !important; }

.mb-n35,
.my-n35 {
  margin-bottom: -8.75rem !important; }

.ml-n35,
.mx-n35 {
  margin-left: -8.75rem !important; }

.m-n36 {
  margin: -9rem !important; }

.mt-n36,
.my-n36 {
  margin-top: -9rem !important; }

.mr-n36,
.mx-n36 {
  margin-right: -9rem !important; }

.mb-n36,
.my-n36 {
  margin-bottom: -9rem !important; }

.ml-n36,
.mx-n36 {
  margin-left: -9rem !important; }

.m-n37 {
  margin: -9.25rem !important; }

.mt-n37,
.my-n37 {
  margin-top: -9.25rem !important; }

.mr-n37,
.mx-n37 {
  margin-right: -9.25rem !important; }

.mb-n37,
.my-n37 {
  margin-bottom: -9.25rem !important; }

.ml-n37,
.mx-n37 {
  margin-left: -9.25rem !important; }

.m-n48 {
  margin: -9.5rem !important; }

.mt-n48,
.my-n48 {
  margin-top: -9.5rem !important; }

.mr-n48,
.mx-n48 {
  margin-right: -9.5rem !important; }

.mb-n48,
.my-n48 {
  margin-bottom: -9.5rem !important; }

.ml-n48,
.mx-n48 {
  margin-left: -9.5rem !important; }

.m-n39 {
  margin: -9.75rem !important; }

.mt-n39,
.my-n39 {
  margin-top: -9.75rem !important; }

.mr-n39,
.mx-n39 {
  margin-right: -9.75rem !important; }

.mb-n39,
.my-n39 {
  margin-bottom: -9.75rem !important; }

.ml-n39,
.mx-n39 {
  margin-left: -9.75rem !important; }

.m-n40 {
  margin: -10rem !important; }

.mt-n40,
.my-n40 {
  margin-top: -10rem !important; }

.mr-n40,
.mx-n40 {
  margin-right: -10rem !important; }

.mb-n40,
.my-n40 {
  margin-bottom: -10rem !important; }

.ml-n40,
.mx-n40 {
  margin-left: -10rem !important; }

.m-auto {
  margin: auto !important; }

.mt-auto,
.my-auto {
  margin-top: auto !important; }

.mr-auto,
.mx-auto {
  margin-right: auto !important; }

.mb-auto,
.my-auto {
  margin-bottom: auto !important; }

.ml-auto,
.mx-auto {
  margin-left: auto !important; }

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important; }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important; }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important; }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important; }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important; }
  .m-sm-1 {
    margin: 0.25rem !important; }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important; }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important; }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important; }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important; }
  .m-sm-2 {
    margin: 0.5rem !important; }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important; }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important; }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important; }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important; }
  .m-sm-3 {
    margin: 0.75rem !important; }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 0.75rem !important; }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 0.75rem !important; }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 0.75rem !important; }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 0.75rem !important; }
  .m-sm-4 {
    margin: 1rem !important; }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1rem !important; }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1rem !important; }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1rem !important; }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1rem !important; }
  .m-sm-5 {
    margin: 1.25rem !important; }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 1.25rem !important; }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 1.25rem !important; }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 1.25rem !important; }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 1.25rem !important; }
  .m-sm-6 {
    margin: 1.5rem !important; }
  .mt-sm-6,
  .my-sm-6 {
    margin-top: 1.5rem !important; }
  .mr-sm-6,
  .mx-sm-6 {
    margin-right: 1.5rem !important; }
  .mb-sm-6,
  .my-sm-6 {
    margin-bottom: 1.5rem !important; }
  .ml-sm-6,
  .mx-sm-6 {
    margin-left: 1.5rem !important; }
  .m-sm-7 {
    margin: 1.75rem !important; }
  .mt-sm-7,
  .my-sm-7 {
    margin-top: 1.75rem !important; }
  .mr-sm-7,
  .mx-sm-7 {
    margin-right: 1.75rem !important; }
  .mb-sm-7,
  .my-sm-7 {
    margin-bottom: 1.75rem !important; }
  .ml-sm-7,
  .mx-sm-7 {
    margin-left: 1.75rem !important; }
  .m-sm-8 {
    margin: 2rem !important; }
  .mt-sm-8,
  .my-sm-8 {
    margin-top: 2rem !important; }
  .mr-sm-8,
  .mx-sm-8 {
    margin-right: 2rem !important; }
  .mb-sm-8,
  .my-sm-8 {
    margin-bottom: 2rem !important; }
  .ml-sm-8,
  .mx-sm-8 {
    margin-left: 2rem !important; }
  .m-sm-9 {
    margin: 2.25rem !important; }
  .mt-sm-9,
  .my-sm-9 {
    margin-top: 2.25rem !important; }
  .mr-sm-9,
  .mx-sm-9 {
    margin-right: 2.25rem !important; }
  .mb-sm-9,
  .my-sm-9 {
    margin-bottom: 2.25rem !important; }
  .ml-sm-9,
  .mx-sm-9 {
    margin-left: 2.25rem !important; }
  .m-sm-10 {
    margin: 2.5rem !important; }
  .mt-sm-10,
  .my-sm-10 {
    margin-top: 2.5rem !important; }
  .mr-sm-10,
  .mx-sm-10 {
    margin-right: 2.5rem !important; }
  .mb-sm-10,
  .my-sm-10 {
    margin-bottom: 2.5rem !important; }
  .ml-sm-10,
  .mx-sm-10 {
    margin-left: 2.5rem !important; }
  .m-sm-11 {
    margin: 2.75rem !important; }
  .mt-sm-11,
  .my-sm-11 {
    margin-top: 2.75rem !important; }
  .mr-sm-11,
  .mx-sm-11 {
    margin-right: 2.75rem !important; }
  .mb-sm-11,
  .my-sm-11 {
    margin-bottom: 2.75rem !important; }
  .ml-sm-11,
  .mx-sm-11 {
    margin-left: 2.75rem !important; }
  .m-sm-12 {
    margin: 3rem !important; }
  .mt-sm-12,
  .my-sm-12 {
    margin-top: 3rem !important; }
  .mr-sm-12,
  .mx-sm-12 {
    margin-right: 3rem !important; }
  .mb-sm-12,
  .my-sm-12 {
    margin-bottom: 3rem !important; }
  .ml-sm-12,
  .mx-sm-12 {
    margin-left: 3rem !important; }
  .m-sm-13 {
    margin: 3.25rem !important; }
  .mt-sm-13,
  .my-sm-13 {
    margin-top: 3.25rem !important; }
  .mr-sm-13,
  .mx-sm-13 {
    margin-right: 3.25rem !important; }
  .mb-sm-13,
  .my-sm-13 {
    margin-bottom: 3.25rem !important; }
  .ml-sm-13,
  .mx-sm-13 {
    margin-left: 3.25rem !important; }
  .m-sm-14 {
    margin: 3.5rem !important; }
  .mt-sm-14,
  .my-sm-14 {
    margin-top: 3.5rem !important; }
  .mr-sm-14,
  .mx-sm-14 {
    margin-right: 3.5rem !important; }
  .mb-sm-14,
  .my-sm-14 {
    margin-bottom: 3.5rem !important; }
  .ml-sm-14,
  .mx-sm-14 {
    margin-left: 3.5rem !important; }
  .m-sm-15 {
    margin: 3.75rem !important; }
  .mt-sm-15,
  .my-sm-15 {
    margin-top: 3.75rem !important; }
  .mr-sm-15,
  .mx-sm-15 {
    margin-right: 3.75rem !important; }
  .mb-sm-15,
  .my-sm-15 {
    margin-bottom: 3.75rem !important; }
  .ml-sm-15,
  .mx-sm-15 {
    margin-left: 3.75rem !important; }
  .m-sm-16 {
    margin: 4rem !important; }
  .mt-sm-16,
  .my-sm-16 {
    margin-top: 4rem !important; }
  .mr-sm-16,
  .mx-sm-16 {
    margin-right: 4rem !important; }
  .mb-sm-16,
  .my-sm-16 {
    margin-bottom: 4rem !important; }
  .ml-sm-16,
  .mx-sm-16 {
    margin-left: 4rem !important; }
  .m-sm-17 {
    margin: 4.25rem !important; }
  .mt-sm-17,
  .my-sm-17 {
    margin-top: 4.25rem !important; }
  .mr-sm-17,
  .mx-sm-17 {
    margin-right: 4.25rem !important; }
  .mb-sm-17,
  .my-sm-17 {
    margin-bottom: 4.25rem !important; }
  .ml-sm-17,
  .mx-sm-17 {
    margin-left: 4.25rem !important; }
  .m-sm-18 {
    margin: 4.5rem !important; }
  .mt-sm-18,
  .my-sm-18 {
    margin-top: 4.5rem !important; }
  .mr-sm-18,
  .mx-sm-18 {
    margin-right: 4.5rem !important; }
  .mb-sm-18,
  .my-sm-18 {
    margin-bottom: 4.5rem !important; }
  .ml-sm-18,
  .mx-sm-18 {
    margin-left: 4.5rem !important; }
  .m-sm-19 {
    margin: 4.75rem !important; }
  .mt-sm-19,
  .my-sm-19 {
    margin-top: 4.75rem !important; }
  .mr-sm-19,
  .mx-sm-19 {
    margin-right: 4.75rem !important; }
  .mb-sm-19,
  .my-sm-19 {
    margin-bottom: 4.75rem !important; }
  .ml-sm-19,
  .mx-sm-19 {
    margin-left: 4.75rem !important; }
  .m-sm-20 {
    margin: 5rem !important; }
  .mt-sm-20,
  .my-sm-20 {
    margin-top: 5rem !important; }
  .mr-sm-20,
  .mx-sm-20 {
    margin-right: 5rem !important; }
  .mb-sm-20,
  .my-sm-20 {
    margin-bottom: 5rem !important; }
  .ml-sm-20,
  .mx-sm-20 {
    margin-left: 5rem !important; }
  .m-sm-21 {
    margin: 5.25rem !important; }
  .mt-sm-21,
  .my-sm-21 {
    margin-top: 5.25rem !important; }
  .mr-sm-21,
  .mx-sm-21 {
    margin-right: 5.25rem !important; }
  .mb-sm-21,
  .my-sm-21 {
    margin-bottom: 5.25rem !important; }
  .ml-sm-21,
  .mx-sm-21 {
    margin-left: 5.25rem !important; }
  .m-sm-22 {
    margin: 5.5rem !important; }
  .mt-sm-22,
  .my-sm-22 {
    margin-top: 5.5rem !important; }
  .mr-sm-22,
  .mx-sm-22 {
    margin-right: 5.5rem !important; }
  .mb-sm-22,
  .my-sm-22 {
    margin-bottom: 5.5rem !important; }
  .ml-sm-22,
  .mx-sm-22 {
    margin-left: 5.5rem !important; }
  .m-sm-23 {
    margin: 5.75rem !important; }
  .mt-sm-23,
  .my-sm-23 {
    margin-top: 5.75rem !important; }
  .mr-sm-23,
  .mx-sm-23 {
    margin-right: 5.75rem !important; }
  .mb-sm-23,
  .my-sm-23 {
    margin-bottom: 5.75rem !important; }
  .ml-sm-23,
  .mx-sm-23 {
    margin-left: 5.75rem !important; }
  .m-sm-24 {
    margin: 6rem !important; }
  .mt-sm-24,
  .my-sm-24 {
    margin-top: 6rem !important; }
  .mr-sm-24,
  .mx-sm-24 {
    margin-right: 6rem !important; }
  .mb-sm-24,
  .my-sm-24 {
    margin-bottom: 6rem !important; }
  .ml-sm-24,
  .mx-sm-24 {
    margin-left: 6rem !important; }
  .m-sm-25 {
    margin: 6.25rem !important; }
  .mt-sm-25,
  .my-sm-25 {
    margin-top: 6.25rem !important; }
  .mr-sm-25,
  .mx-sm-25 {
    margin-right: 6.25rem !important; }
  .mb-sm-25,
  .my-sm-25 {
    margin-bottom: 6.25rem !important; }
  .ml-sm-25,
  .mx-sm-25 {
    margin-left: 6.25rem !important; }
  .m-sm-26 {
    margin: 6.5rem !important; }
  .mt-sm-26,
  .my-sm-26 {
    margin-top: 6.5rem !important; }
  .mr-sm-26,
  .mx-sm-26 {
    margin-right: 6.5rem !important; }
  .mb-sm-26,
  .my-sm-26 {
    margin-bottom: 6.5rem !important; }
  .ml-sm-26,
  .mx-sm-26 {
    margin-left: 6.5rem !important; }
  .m-sm-27 {
    margin: 6.75rem !important; }
  .mt-sm-27,
  .my-sm-27 {
    margin-top: 6.75rem !important; }
  .mr-sm-27,
  .mx-sm-27 {
    margin-right: 6.75rem !important; }
  .mb-sm-27,
  .my-sm-27 {
    margin-bottom: 6.75rem !important; }
  .ml-sm-27,
  .mx-sm-27 {
    margin-left: 6.75rem !important; }
  .m-sm-28 {
    margin: 7rem !important; }
  .mt-sm-28,
  .my-sm-28 {
    margin-top: 7rem !important; }
  .mr-sm-28,
  .mx-sm-28 {
    margin-right: 7rem !important; }
  .mb-sm-28,
  .my-sm-28 {
    margin-bottom: 7rem !important; }
  .ml-sm-28,
  .mx-sm-28 {
    margin-left: 7rem !important; }
  .m-sm-29 {
    margin: 7.25rem !important; }
  .mt-sm-29,
  .my-sm-29 {
    margin-top: 7.25rem !important; }
  .mr-sm-29,
  .mx-sm-29 {
    margin-right: 7.25rem !important; }
  .mb-sm-29,
  .my-sm-29 {
    margin-bottom: 7.25rem !important; }
  .ml-sm-29,
  .mx-sm-29 {
    margin-left: 7.25rem !important; }
  .m-sm-30 {
    margin: 7.5rem !important; }
  .mt-sm-30,
  .my-sm-30 {
    margin-top: 7.5rem !important; }
  .mr-sm-30,
  .mx-sm-30 {
    margin-right: 7.5rem !important; }
  .mb-sm-30,
  .my-sm-30 {
    margin-bottom: 7.5rem !important; }
  .ml-sm-30,
  .mx-sm-30 {
    margin-left: 7.5rem !important; }
  .m-sm-31 {
    margin: 7.75rem !important; }
  .mt-sm-31,
  .my-sm-31 {
    margin-top: 7.75rem !important; }
  .mr-sm-31,
  .mx-sm-31 {
    margin-right: 7.75rem !important; }
  .mb-sm-31,
  .my-sm-31 {
    margin-bottom: 7.75rem !important; }
  .ml-sm-31,
  .mx-sm-31 {
    margin-left: 7.75rem !important; }
  .m-sm-32 {
    margin: 8rem !important; }
  .mt-sm-32,
  .my-sm-32 {
    margin-top: 8rem !important; }
  .mr-sm-32,
  .mx-sm-32 {
    margin-right: 8rem !important; }
  .mb-sm-32,
  .my-sm-32 {
    margin-bottom: 8rem !important; }
  .ml-sm-32,
  .mx-sm-32 {
    margin-left: 8rem !important; }
  .m-sm-33 {
    margin: 8.25rem !important; }
  .mt-sm-33,
  .my-sm-33 {
    margin-top: 8.25rem !important; }
  .mr-sm-33,
  .mx-sm-33 {
    margin-right: 8.25rem !important; }
  .mb-sm-33,
  .my-sm-33 {
    margin-bottom: 8.25rem !important; }
  .ml-sm-33,
  .mx-sm-33 {
    margin-left: 8.25rem !important; }
  .m-sm-34 {
    margin: 8.5rem !important; }
  .mt-sm-34,
  .my-sm-34 {
    margin-top: 8.5rem !important; }
  .mr-sm-34,
  .mx-sm-34 {
    margin-right: 8.5rem !important; }
  .mb-sm-34,
  .my-sm-34 {
    margin-bottom: 8.5rem !important; }
  .ml-sm-34,
  .mx-sm-34 {
    margin-left: 8.5rem !important; }
  .m-sm-35 {
    margin: 8.75rem !important; }
  .mt-sm-35,
  .my-sm-35 {
    margin-top: 8.75rem !important; }
  .mr-sm-35,
  .mx-sm-35 {
    margin-right: 8.75rem !important; }
  .mb-sm-35,
  .my-sm-35 {
    margin-bottom: 8.75rem !important; }
  .ml-sm-35,
  .mx-sm-35 {
    margin-left: 8.75rem !important; }
  .m-sm-36 {
    margin: 9rem !important; }
  .mt-sm-36,
  .my-sm-36 {
    margin-top: 9rem !important; }
  .mr-sm-36,
  .mx-sm-36 {
    margin-right: 9rem !important; }
  .mb-sm-36,
  .my-sm-36 {
    margin-bottom: 9rem !important; }
  .ml-sm-36,
  .mx-sm-36 {
    margin-left: 9rem !important; }
  .m-sm-37 {
    margin: 9.25rem !important; }
  .mt-sm-37,
  .my-sm-37 {
    margin-top: 9.25rem !important; }
  .mr-sm-37,
  .mx-sm-37 {
    margin-right: 9.25rem !important; }
  .mb-sm-37,
  .my-sm-37 {
    margin-bottom: 9.25rem !important; }
  .ml-sm-37,
  .mx-sm-37 {
    margin-left: 9.25rem !important; }
  .m-sm-48 {
    margin: 9.5rem !important; }
  .mt-sm-48,
  .my-sm-48 {
    margin-top: 9.5rem !important; }
  .mr-sm-48,
  .mx-sm-48 {
    margin-right: 9.5rem !important; }
  .mb-sm-48,
  .my-sm-48 {
    margin-bottom: 9.5rem !important; }
  .ml-sm-48,
  .mx-sm-48 {
    margin-left: 9.5rem !important; }
  .m-sm-39 {
    margin: 9.75rem !important; }
  .mt-sm-39,
  .my-sm-39 {
    margin-top: 9.75rem !important; }
  .mr-sm-39,
  .mx-sm-39 {
    margin-right: 9.75rem !important; }
  .mb-sm-39,
  .my-sm-39 {
    margin-bottom: 9.75rem !important; }
  .ml-sm-39,
  .mx-sm-39 {
    margin-left: 9.75rem !important; }
  .m-sm-40 {
    margin: 10rem !important; }
  .mt-sm-40,
  .my-sm-40 {
    margin-top: 10rem !important; }
  .mr-sm-40,
  .mx-sm-40 {
    margin-right: 10rem !important; }
  .mb-sm-40,
  .my-sm-40 {
    margin-bottom: 10rem !important; }
  .ml-sm-40,
  .mx-sm-40 {
    margin-left: 10rem !important; }
  .p-sm-0 {
    padding: 0 !important; }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important; }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important; }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important; }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important; }
  .p-sm-1 {
    padding: 0.25rem !important; }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important; }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important; }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important; }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important; }
  .p-sm-2 {
    padding: 0.5rem !important; }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important; }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important; }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important; }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important; }
  .p-sm-3 {
    padding: 0.75rem !important; }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 0.75rem !important; }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 0.75rem !important; }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 0.75rem !important; }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 0.75rem !important; }
  .p-sm-4 {
    padding: 1rem !important; }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1rem !important; }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1rem !important; }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1rem !important; }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1rem !important; }
  .p-sm-5 {
    padding: 1.25rem !important; }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 1.25rem !important; }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 1.25rem !important; }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 1.25rem !important; }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 1.25rem !important; }
  .p-sm-6 {
    padding: 1.5rem !important; }
  .pt-sm-6,
  .py-sm-6 {
    padding-top: 1.5rem !important; }
  .pr-sm-6,
  .px-sm-6 {
    padding-right: 1.5rem !important; }
  .pb-sm-6,
  .py-sm-6 {
    padding-bottom: 1.5rem !important; }
  .pl-sm-6,
  .px-sm-6 {
    padding-left: 1.5rem !important; }
  .p-sm-7 {
    padding: 1.75rem !important; }
  .pt-sm-7,
  .py-sm-7 {
    padding-top: 1.75rem !important; }
  .pr-sm-7,
  .px-sm-7 {
    padding-right: 1.75rem !important; }
  .pb-sm-7,
  .py-sm-7 {
    padding-bottom: 1.75rem !important; }
  .pl-sm-7,
  .px-sm-7 {
    padding-left: 1.75rem !important; }
  .p-sm-8 {
    padding: 2rem !important; }
  .pt-sm-8,
  .py-sm-8 {
    padding-top: 2rem !important; }
  .pr-sm-8,
  .px-sm-8 {
    padding-right: 2rem !important; }
  .pb-sm-8,
  .py-sm-8 {
    padding-bottom: 2rem !important; }
  .pl-sm-8,
  .px-sm-8 {
    padding-left: 2rem !important; }
  .p-sm-9 {
    padding: 2.25rem !important; }
  .pt-sm-9,
  .py-sm-9 {
    padding-top: 2.25rem !important; }
  .pr-sm-9,
  .px-sm-9 {
    padding-right: 2.25rem !important; }
  .pb-sm-9,
  .py-sm-9 {
    padding-bottom: 2.25rem !important; }
  .pl-sm-9,
  .px-sm-9 {
    padding-left: 2.25rem !important; }
  .p-sm-10 {
    padding: 2.5rem !important; }
  .pt-sm-10,
  .py-sm-10 {
    padding-top: 2.5rem !important; }
  .pr-sm-10,
  .px-sm-10 {
    padding-right: 2.5rem !important; }
  .pb-sm-10,
  .py-sm-10 {
    padding-bottom: 2.5rem !important; }
  .pl-sm-10,
  .px-sm-10 {
    padding-left: 2.5rem !important; }
  .p-sm-11 {
    padding: 2.75rem !important; }
  .pt-sm-11,
  .py-sm-11 {
    padding-top: 2.75rem !important; }
  .pr-sm-11,
  .px-sm-11 {
    padding-right: 2.75rem !important; }
  .pb-sm-11,
  .py-sm-11 {
    padding-bottom: 2.75rem !important; }
  .pl-sm-11,
  .px-sm-11 {
    padding-left: 2.75rem !important; }
  .p-sm-12 {
    padding: 3rem !important; }
  .pt-sm-12,
  .py-sm-12 {
    padding-top: 3rem !important; }
  .pr-sm-12,
  .px-sm-12 {
    padding-right: 3rem !important; }
  .pb-sm-12,
  .py-sm-12 {
    padding-bottom: 3rem !important; }
  .pl-sm-12,
  .px-sm-12 {
    padding-left: 3rem !important; }
  .p-sm-13 {
    padding: 3.25rem !important; }
  .pt-sm-13,
  .py-sm-13 {
    padding-top: 3.25rem !important; }
  .pr-sm-13,
  .px-sm-13 {
    padding-right: 3.25rem !important; }
  .pb-sm-13,
  .py-sm-13 {
    padding-bottom: 3.25rem !important; }
  .pl-sm-13,
  .px-sm-13 {
    padding-left: 3.25rem !important; }
  .p-sm-14 {
    padding: 3.5rem !important; }
  .pt-sm-14,
  .py-sm-14 {
    padding-top: 3.5rem !important; }
  .pr-sm-14,
  .px-sm-14 {
    padding-right: 3.5rem !important; }
  .pb-sm-14,
  .py-sm-14 {
    padding-bottom: 3.5rem !important; }
  .pl-sm-14,
  .px-sm-14 {
    padding-left: 3.5rem !important; }
  .p-sm-15 {
    padding: 3.75rem !important; }
  .pt-sm-15,
  .py-sm-15 {
    padding-top: 3.75rem !important; }
  .pr-sm-15,
  .px-sm-15 {
    padding-right: 3.75rem !important; }
  .pb-sm-15,
  .py-sm-15 {
    padding-bottom: 3.75rem !important; }
  .pl-sm-15,
  .px-sm-15 {
    padding-left: 3.75rem !important; }
  .p-sm-16 {
    padding: 4rem !important; }
  .pt-sm-16,
  .py-sm-16 {
    padding-top: 4rem !important; }
  .pr-sm-16,
  .px-sm-16 {
    padding-right: 4rem !important; }
  .pb-sm-16,
  .py-sm-16 {
    padding-bottom: 4rem !important; }
  .pl-sm-16,
  .px-sm-16 {
    padding-left: 4rem !important; }
  .p-sm-17 {
    padding: 4.25rem !important; }
  .pt-sm-17,
  .py-sm-17 {
    padding-top: 4.25rem !important; }
  .pr-sm-17,
  .px-sm-17 {
    padding-right: 4.25rem !important; }
  .pb-sm-17,
  .py-sm-17 {
    padding-bottom: 4.25rem !important; }
  .pl-sm-17,
  .px-sm-17 {
    padding-left: 4.25rem !important; }
  .p-sm-18 {
    padding: 4.5rem !important; }
  .pt-sm-18,
  .py-sm-18 {
    padding-top: 4.5rem !important; }
  .pr-sm-18,
  .px-sm-18 {
    padding-right: 4.5rem !important; }
  .pb-sm-18,
  .py-sm-18 {
    padding-bottom: 4.5rem !important; }
  .pl-sm-18,
  .px-sm-18 {
    padding-left: 4.5rem !important; }
  .p-sm-19 {
    padding: 4.75rem !important; }
  .pt-sm-19,
  .py-sm-19 {
    padding-top: 4.75rem !important; }
  .pr-sm-19,
  .px-sm-19 {
    padding-right: 4.75rem !important; }
  .pb-sm-19,
  .py-sm-19 {
    padding-bottom: 4.75rem !important; }
  .pl-sm-19,
  .px-sm-19 {
    padding-left: 4.75rem !important; }
  .p-sm-20 {
    padding: 5rem !important; }
  .pt-sm-20,
  .py-sm-20 {
    padding-top: 5rem !important; }
  .pr-sm-20,
  .px-sm-20 {
    padding-right: 5rem !important; }
  .pb-sm-20,
  .py-sm-20 {
    padding-bottom: 5rem !important; }
  .pl-sm-20,
  .px-sm-20 {
    padding-left: 5rem !important; }
  .p-sm-21 {
    padding: 5.25rem !important; }
  .pt-sm-21,
  .py-sm-21 {
    padding-top: 5.25rem !important; }
  .pr-sm-21,
  .px-sm-21 {
    padding-right: 5.25rem !important; }
  .pb-sm-21,
  .py-sm-21 {
    padding-bottom: 5.25rem !important; }
  .pl-sm-21,
  .px-sm-21 {
    padding-left: 5.25rem !important; }
  .p-sm-22 {
    padding: 5.5rem !important; }
  .pt-sm-22,
  .py-sm-22 {
    padding-top: 5.5rem !important; }
  .pr-sm-22,
  .px-sm-22 {
    padding-right: 5.5rem !important; }
  .pb-sm-22,
  .py-sm-22 {
    padding-bottom: 5.5rem !important; }
  .pl-sm-22,
  .px-sm-22 {
    padding-left: 5.5rem !important; }
  .p-sm-23 {
    padding: 5.75rem !important; }
  .pt-sm-23,
  .py-sm-23 {
    padding-top: 5.75rem !important; }
  .pr-sm-23,
  .px-sm-23 {
    padding-right: 5.75rem !important; }
  .pb-sm-23,
  .py-sm-23 {
    padding-bottom: 5.75rem !important; }
  .pl-sm-23,
  .px-sm-23 {
    padding-left: 5.75rem !important; }
  .p-sm-24 {
    padding: 6rem !important; }
  .pt-sm-24,
  .py-sm-24 {
    padding-top: 6rem !important; }
  .pr-sm-24,
  .px-sm-24 {
    padding-right: 6rem !important; }
  .pb-sm-24,
  .py-sm-24 {
    padding-bottom: 6rem !important; }
  .pl-sm-24,
  .px-sm-24 {
    padding-left: 6rem !important; }
  .p-sm-25 {
    padding: 6.25rem !important; }
  .pt-sm-25,
  .py-sm-25 {
    padding-top: 6.25rem !important; }
  .pr-sm-25,
  .px-sm-25 {
    padding-right: 6.25rem !important; }
  .pb-sm-25,
  .py-sm-25 {
    padding-bottom: 6.25rem !important; }
  .pl-sm-25,
  .px-sm-25 {
    padding-left: 6.25rem !important; }
  .p-sm-26 {
    padding: 6.5rem !important; }
  .pt-sm-26,
  .py-sm-26 {
    padding-top: 6.5rem !important; }
  .pr-sm-26,
  .px-sm-26 {
    padding-right: 6.5rem !important; }
  .pb-sm-26,
  .py-sm-26 {
    padding-bottom: 6.5rem !important; }
  .pl-sm-26,
  .px-sm-26 {
    padding-left: 6.5rem !important; }
  .p-sm-27 {
    padding: 6.75rem !important; }
  .pt-sm-27,
  .py-sm-27 {
    padding-top: 6.75rem !important; }
  .pr-sm-27,
  .px-sm-27 {
    padding-right: 6.75rem !important; }
  .pb-sm-27,
  .py-sm-27 {
    padding-bottom: 6.75rem !important; }
  .pl-sm-27,
  .px-sm-27 {
    padding-left: 6.75rem !important; }
  .p-sm-28 {
    padding: 7rem !important; }
  .pt-sm-28,
  .py-sm-28 {
    padding-top: 7rem !important; }
  .pr-sm-28,
  .px-sm-28 {
    padding-right: 7rem !important; }
  .pb-sm-28,
  .py-sm-28 {
    padding-bottom: 7rem !important; }
  .pl-sm-28,
  .px-sm-28 {
    padding-left: 7rem !important; }
  .p-sm-29 {
    padding: 7.25rem !important; }
  .pt-sm-29,
  .py-sm-29 {
    padding-top: 7.25rem !important; }
  .pr-sm-29,
  .px-sm-29 {
    padding-right: 7.25rem !important; }
  .pb-sm-29,
  .py-sm-29 {
    padding-bottom: 7.25rem !important; }
  .pl-sm-29,
  .px-sm-29 {
    padding-left: 7.25rem !important; }
  .p-sm-30 {
    padding: 7.5rem !important; }
  .pt-sm-30,
  .py-sm-30 {
    padding-top: 7.5rem !important; }
  .pr-sm-30,
  .px-sm-30 {
    padding-right: 7.5rem !important; }
  .pb-sm-30,
  .py-sm-30 {
    padding-bottom: 7.5rem !important; }
  .pl-sm-30,
  .px-sm-30 {
    padding-left: 7.5rem !important; }
  .p-sm-31 {
    padding: 7.75rem !important; }
  .pt-sm-31,
  .py-sm-31 {
    padding-top: 7.75rem !important; }
  .pr-sm-31,
  .px-sm-31 {
    padding-right: 7.75rem !important; }
  .pb-sm-31,
  .py-sm-31 {
    padding-bottom: 7.75rem !important; }
  .pl-sm-31,
  .px-sm-31 {
    padding-left: 7.75rem !important; }
  .p-sm-32 {
    padding: 8rem !important; }
  .pt-sm-32,
  .py-sm-32 {
    padding-top: 8rem !important; }
  .pr-sm-32,
  .px-sm-32 {
    padding-right: 8rem !important; }
  .pb-sm-32,
  .py-sm-32 {
    padding-bottom: 8rem !important; }
  .pl-sm-32,
  .px-sm-32 {
    padding-left: 8rem !important; }
  .p-sm-33 {
    padding: 8.25rem !important; }
  .pt-sm-33,
  .py-sm-33 {
    padding-top: 8.25rem !important; }
  .pr-sm-33,
  .px-sm-33 {
    padding-right: 8.25rem !important; }
  .pb-sm-33,
  .py-sm-33 {
    padding-bottom: 8.25rem !important; }
  .pl-sm-33,
  .px-sm-33 {
    padding-left: 8.25rem !important; }
  .p-sm-34 {
    padding: 8.5rem !important; }
  .pt-sm-34,
  .py-sm-34 {
    padding-top: 8.5rem !important; }
  .pr-sm-34,
  .px-sm-34 {
    padding-right: 8.5rem !important; }
  .pb-sm-34,
  .py-sm-34 {
    padding-bottom: 8.5rem !important; }
  .pl-sm-34,
  .px-sm-34 {
    padding-left: 8.5rem !important; }
  .p-sm-35 {
    padding: 8.75rem !important; }
  .pt-sm-35,
  .py-sm-35 {
    padding-top: 8.75rem !important; }
  .pr-sm-35,
  .px-sm-35 {
    padding-right: 8.75rem !important; }
  .pb-sm-35,
  .py-sm-35 {
    padding-bottom: 8.75rem !important; }
  .pl-sm-35,
  .px-sm-35 {
    padding-left: 8.75rem !important; }
  .p-sm-36 {
    padding: 9rem !important; }
  .pt-sm-36,
  .py-sm-36 {
    padding-top: 9rem !important; }
  .pr-sm-36,
  .px-sm-36 {
    padding-right: 9rem !important; }
  .pb-sm-36,
  .py-sm-36 {
    padding-bottom: 9rem !important; }
  .pl-sm-36,
  .px-sm-36 {
    padding-left: 9rem !important; }
  .p-sm-37 {
    padding: 9.25rem !important; }
  .pt-sm-37,
  .py-sm-37 {
    padding-top: 9.25rem !important; }
  .pr-sm-37,
  .px-sm-37 {
    padding-right: 9.25rem !important; }
  .pb-sm-37,
  .py-sm-37 {
    padding-bottom: 9.25rem !important; }
  .pl-sm-37,
  .px-sm-37 {
    padding-left: 9.25rem !important; }
  .p-sm-48 {
    padding: 9.5rem !important; }
  .pt-sm-48,
  .py-sm-48 {
    padding-top: 9.5rem !important; }
  .pr-sm-48,
  .px-sm-48 {
    padding-right: 9.5rem !important; }
  .pb-sm-48,
  .py-sm-48 {
    padding-bottom: 9.5rem !important; }
  .pl-sm-48,
  .px-sm-48 {
    padding-left: 9.5rem !important; }
  .p-sm-39 {
    padding: 9.75rem !important; }
  .pt-sm-39,
  .py-sm-39 {
    padding-top: 9.75rem !important; }
  .pr-sm-39,
  .px-sm-39 {
    padding-right: 9.75rem !important; }
  .pb-sm-39,
  .py-sm-39 {
    padding-bottom: 9.75rem !important; }
  .pl-sm-39,
  .px-sm-39 {
    padding-left: 9.75rem !important; }
  .p-sm-40 {
    padding: 10rem !important; }
  .pt-sm-40,
  .py-sm-40 {
    padding-top: 10rem !important; }
  .pr-sm-40,
  .px-sm-40 {
    padding-right: 10rem !important; }
  .pb-sm-40,
  .py-sm-40 {
    padding-bottom: 10rem !important; }
  .pl-sm-40,
  .px-sm-40 {
    padding-left: 10rem !important; }
  .m-sm-n1 {
    margin: -0.25rem !important; }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important; }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important; }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important; }
  .m-sm-n2 {
    margin: -0.5rem !important; }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important; }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important; }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important; }
  .m-sm-n3 {
    margin: -0.75rem !important; }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -0.75rem !important; }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -0.75rem !important; }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -0.75rem !important; }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -0.75rem !important; }
  .m-sm-n4 {
    margin: -1rem !important; }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1rem !important; }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1rem !important; }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1rem !important; }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1rem !important; }
  .m-sm-n5 {
    margin: -1.25rem !important; }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -1.25rem !important; }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -1.25rem !important; }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -1.25rem !important; }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -1.25rem !important; }
  .m-sm-n6 {
    margin: -1.5rem !important; }
  .mt-sm-n6,
  .my-sm-n6 {
    margin-top: -1.5rem !important; }
  .mr-sm-n6,
  .mx-sm-n6 {
    margin-right: -1.5rem !important; }
  .mb-sm-n6,
  .my-sm-n6 {
    margin-bottom: -1.5rem !important; }
  .ml-sm-n6,
  .mx-sm-n6 {
    margin-left: -1.5rem !important; }
  .m-sm-n7 {
    margin: -1.75rem !important; }
  .mt-sm-n7,
  .my-sm-n7 {
    margin-top: -1.75rem !important; }
  .mr-sm-n7,
  .mx-sm-n7 {
    margin-right: -1.75rem !important; }
  .mb-sm-n7,
  .my-sm-n7 {
    margin-bottom: -1.75rem !important; }
  .ml-sm-n7,
  .mx-sm-n7 {
    margin-left: -1.75rem !important; }
  .m-sm-n8 {
    margin: -2rem !important; }
  .mt-sm-n8,
  .my-sm-n8 {
    margin-top: -2rem !important; }
  .mr-sm-n8,
  .mx-sm-n8 {
    margin-right: -2rem !important; }
  .mb-sm-n8,
  .my-sm-n8 {
    margin-bottom: -2rem !important; }
  .ml-sm-n8,
  .mx-sm-n8 {
    margin-left: -2rem !important; }
  .m-sm-n9 {
    margin: -2.25rem !important; }
  .mt-sm-n9,
  .my-sm-n9 {
    margin-top: -2.25rem !important; }
  .mr-sm-n9,
  .mx-sm-n9 {
    margin-right: -2.25rem !important; }
  .mb-sm-n9,
  .my-sm-n9 {
    margin-bottom: -2.25rem !important; }
  .ml-sm-n9,
  .mx-sm-n9 {
    margin-left: -2.25rem !important; }
  .m-sm-n10 {
    margin: -2.5rem !important; }
  .mt-sm-n10,
  .my-sm-n10 {
    margin-top: -2.5rem !important; }
  .mr-sm-n10,
  .mx-sm-n10 {
    margin-right: -2.5rem !important; }
  .mb-sm-n10,
  .my-sm-n10 {
    margin-bottom: -2.5rem !important; }
  .ml-sm-n10,
  .mx-sm-n10 {
    margin-left: -2.5rem !important; }
  .m-sm-n11 {
    margin: -2.75rem !important; }
  .mt-sm-n11,
  .my-sm-n11 {
    margin-top: -2.75rem !important; }
  .mr-sm-n11,
  .mx-sm-n11 {
    margin-right: -2.75rem !important; }
  .mb-sm-n11,
  .my-sm-n11 {
    margin-bottom: -2.75rem !important; }
  .ml-sm-n11,
  .mx-sm-n11 {
    margin-left: -2.75rem !important; }
  .m-sm-n12 {
    margin: -3rem !important; }
  .mt-sm-n12,
  .my-sm-n12 {
    margin-top: -3rem !important; }
  .mr-sm-n12,
  .mx-sm-n12 {
    margin-right: -3rem !important; }
  .mb-sm-n12,
  .my-sm-n12 {
    margin-bottom: -3rem !important; }
  .ml-sm-n12,
  .mx-sm-n12 {
    margin-left: -3rem !important; }
  .m-sm-n13 {
    margin: -3.25rem !important; }
  .mt-sm-n13,
  .my-sm-n13 {
    margin-top: -3.25rem !important; }
  .mr-sm-n13,
  .mx-sm-n13 {
    margin-right: -3.25rem !important; }
  .mb-sm-n13,
  .my-sm-n13 {
    margin-bottom: -3.25rem !important; }
  .ml-sm-n13,
  .mx-sm-n13 {
    margin-left: -3.25rem !important; }
  .m-sm-n14 {
    margin: -3.5rem !important; }
  .mt-sm-n14,
  .my-sm-n14 {
    margin-top: -3.5rem !important; }
  .mr-sm-n14,
  .mx-sm-n14 {
    margin-right: -3.5rem !important; }
  .mb-sm-n14,
  .my-sm-n14 {
    margin-bottom: -3.5rem !important; }
  .ml-sm-n14,
  .mx-sm-n14 {
    margin-left: -3.5rem !important; }
  .m-sm-n15 {
    margin: -3.75rem !important; }
  .mt-sm-n15,
  .my-sm-n15 {
    margin-top: -3.75rem !important; }
  .mr-sm-n15,
  .mx-sm-n15 {
    margin-right: -3.75rem !important; }
  .mb-sm-n15,
  .my-sm-n15 {
    margin-bottom: -3.75rem !important; }
  .ml-sm-n15,
  .mx-sm-n15 {
    margin-left: -3.75rem !important; }
  .m-sm-n16 {
    margin: -4rem !important; }
  .mt-sm-n16,
  .my-sm-n16 {
    margin-top: -4rem !important; }
  .mr-sm-n16,
  .mx-sm-n16 {
    margin-right: -4rem !important; }
  .mb-sm-n16,
  .my-sm-n16 {
    margin-bottom: -4rem !important; }
  .ml-sm-n16,
  .mx-sm-n16 {
    margin-left: -4rem !important; }
  .m-sm-n17 {
    margin: -4.25rem !important; }
  .mt-sm-n17,
  .my-sm-n17 {
    margin-top: -4.25rem !important; }
  .mr-sm-n17,
  .mx-sm-n17 {
    margin-right: -4.25rem !important; }
  .mb-sm-n17,
  .my-sm-n17 {
    margin-bottom: -4.25rem !important; }
  .ml-sm-n17,
  .mx-sm-n17 {
    margin-left: -4.25rem !important; }
  .m-sm-n18 {
    margin: -4.5rem !important; }
  .mt-sm-n18,
  .my-sm-n18 {
    margin-top: -4.5rem !important; }
  .mr-sm-n18,
  .mx-sm-n18 {
    margin-right: -4.5rem !important; }
  .mb-sm-n18,
  .my-sm-n18 {
    margin-bottom: -4.5rem !important; }
  .ml-sm-n18,
  .mx-sm-n18 {
    margin-left: -4.5rem !important; }
  .m-sm-n19 {
    margin: -4.75rem !important; }
  .mt-sm-n19,
  .my-sm-n19 {
    margin-top: -4.75rem !important; }
  .mr-sm-n19,
  .mx-sm-n19 {
    margin-right: -4.75rem !important; }
  .mb-sm-n19,
  .my-sm-n19 {
    margin-bottom: -4.75rem !important; }
  .ml-sm-n19,
  .mx-sm-n19 {
    margin-left: -4.75rem !important; }
  .m-sm-n20 {
    margin: -5rem !important; }
  .mt-sm-n20,
  .my-sm-n20 {
    margin-top: -5rem !important; }
  .mr-sm-n20,
  .mx-sm-n20 {
    margin-right: -5rem !important; }
  .mb-sm-n20,
  .my-sm-n20 {
    margin-bottom: -5rem !important; }
  .ml-sm-n20,
  .mx-sm-n20 {
    margin-left: -5rem !important; }
  .m-sm-n21 {
    margin: -5.25rem !important; }
  .mt-sm-n21,
  .my-sm-n21 {
    margin-top: -5.25rem !important; }
  .mr-sm-n21,
  .mx-sm-n21 {
    margin-right: -5.25rem !important; }
  .mb-sm-n21,
  .my-sm-n21 {
    margin-bottom: -5.25rem !important; }
  .ml-sm-n21,
  .mx-sm-n21 {
    margin-left: -5.25rem !important; }
  .m-sm-n22 {
    margin: -5.5rem !important; }
  .mt-sm-n22,
  .my-sm-n22 {
    margin-top: -5.5rem !important; }
  .mr-sm-n22,
  .mx-sm-n22 {
    margin-right: -5.5rem !important; }
  .mb-sm-n22,
  .my-sm-n22 {
    margin-bottom: -5.5rem !important; }
  .ml-sm-n22,
  .mx-sm-n22 {
    margin-left: -5.5rem !important; }
  .m-sm-n23 {
    margin: -5.75rem !important; }
  .mt-sm-n23,
  .my-sm-n23 {
    margin-top: -5.75rem !important; }
  .mr-sm-n23,
  .mx-sm-n23 {
    margin-right: -5.75rem !important; }
  .mb-sm-n23,
  .my-sm-n23 {
    margin-bottom: -5.75rem !important; }
  .ml-sm-n23,
  .mx-sm-n23 {
    margin-left: -5.75rem !important; }
  .m-sm-n24 {
    margin: -6rem !important; }
  .mt-sm-n24,
  .my-sm-n24 {
    margin-top: -6rem !important; }
  .mr-sm-n24,
  .mx-sm-n24 {
    margin-right: -6rem !important; }
  .mb-sm-n24,
  .my-sm-n24 {
    margin-bottom: -6rem !important; }
  .ml-sm-n24,
  .mx-sm-n24 {
    margin-left: -6rem !important; }
  .m-sm-n25 {
    margin: -6.25rem !important; }
  .mt-sm-n25,
  .my-sm-n25 {
    margin-top: -6.25rem !important; }
  .mr-sm-n25,
  .mx-sm-n25 {
    margin-right: -6.25rem !important; }
  .mb-sm-n25,
  .my-sm-n25 {
    margin-bottom: -6.25rem !important; }
  .ml-sm-n25,
  .mx-sm-n25 {
    margin-left: -6.25rem !important; }
  .m-sm-n26 {
    margin: -6.5rem !important; }
  .mt-sm-n26,
  .my-sm-n26 {
    margin-top: -6.5rem !important; }
  .mr-sm-n26,
  .mx-sm-n26 {
    margin-right: -6.5rem !important; }
  .mb-sm-n26,
  .my-sm-n26 {
    margin-bottom: -6.5rem !important; }
  .ml-sm-n26,
  .mx-sm-n26 {
    margin-left: -6.5rem !important; }
  .m-sm-n27 {
    margin: -6.75rem !important; }
  .mt-sm-n27,
  .my-sm-n27 {
    margin-top: -6.75rem !important; }
  .mr-sm-n27,
  .mx-sm-n27 {
    margin-right: -6.75rem !important; }
  .mb-sm-n27,
  .my-sm-n27 {
    margin-bottom: -6.75rem !important; }
  .ml-sm-n27,
  .mx-sm-n27 {
    margin-left: -6.75rem !important; }
  .m-sm-n28 {
    margin: -7rem !important; }
  .mt-sm-n28,
  .my-sm-n28 {
    margin-top: -7rem !important; }
  .mr-sm-n28,
  .mx-sm-n28 {
    margin-right: -7rem !important; }
  .mb-sm-n28,
  .my-sm-n28 {
    margin-bottom: -7rem !important; }
  .ml-sm-n28,
  .mx-sm-n28 {
    margin-left: -7rem !important; }
  .m-sm-n29 {
    margin: -7.25rem !important; }
  .mt-sm-n29,
  .my-sm-n29 {
    margin-top: -7.25rem !important; }
  .mr-sm-n29,
  .mx-sm-n29 {
    margin-right: -7.25rem !important; }
  .mb-sm-n29,
  .my-sm-n29 {
    margin-bottom: -7.25rem !important; }
  .ml-sm-n29,
  .mx-sm-n29 {
    margin-left: -7.25rem !important; }
  .m-sm-n30 {
    margin: -7.5rem !important; }
  .mt-sm-n30,
  .my-sm-n30 {
    margin-top: -7.5rem !important; }
  .mr-sm-n30,
  .mx-sm-n30 {
    margin-right: -7.5rem !important; }
  .mb-sm-n30,
  .my-sm-n30 {
    margin-bottom: -7.5rem !important; }
  .ml-sm-n30,
  .mx-sm-n30 {
    margin-left: -7.5rem !important; }
  .m-sm-n31 {
    margin: -7.75rem !important; }
  .mt-sm-n31,
  .my-sm-n31 {
    margin-top: -7.75rem !important; }
  .mr-sm-n31,
  .mx-sm-n31 {
    margin-right: -7.75rem !important; }
  .mb-sm-n31,
  .my-sm-n31 {
    margin-bottom: -7.75rem !important; }
  .ml-sm-n31,
  .mx-sm-n31 {
    margin-left: -7.75rem !important; }
  .m-sm-n32 {
    margin: -8rem !important; }
  .mt-sm-n32,
  .my-sm-n32 {
    margin-top: -8rem !important; }
  .mr-sm-n32,
  .mx-sm-n32 {
    margin-right: -8rem !important; }
  .mb-sm-n32,
  .my-sm-n32 {
    margin-bottom: -8rem !important; }
  .ml-sm-n32,
  .mx-sm-n32 {
    margin-left: -8rem !important; }
  .m-sm-n33 {
    margin: -8.25rem !important; }
  .mt-sm-n33,
  .my-sm-n33 {
    margin-top: -8.25rem !important; }
  .mr-sm-n33,
  .mx-sm-n33 {
    margin-right: -8.25rem !important; }
  .mb-sm-n33,
  .my-sm-n33 {
    margin-bottom: -8.25rem !important; }
  .ml-sm-n33,
  .mx-sm-n33 {
    margin-left: -8.25rem !important; }
  .m-sm-n34 {
    margin: -8.5rem !important; }
  .mt-sm-n34,
  .my-sm-n34 {
    margin-top: -8.5rem !important; }
  .mr-sm-n34,
  .mx-sm-n34 {
    margin-right: -8.5rem !important; }
  .mb-sm-n34,
  .my-sm-n34 {
    margin-bottom: -8.5rem !important; }
  .ml-sm-n34,
  .mx-sm-n34 {
    margin-left: -8.5rem !important; }
  .m-sm-n35 {
    margin: -8.75rem !important; }
  .mt-sm-n35,
  .my-sm-n35 {
    margin-top: -8.75rem !important; }
  .mr-sm-n35,
  .mx-sm-n35 {
    margin-right: -8.75rem !important; }
  .mb-sm-n35,
  .my-sm-n35 {
    margin-bottom: -8.75rem !important; }
  .ml-sm-n35,
  .mx-sm-n35 {
    margin-left: -8.75rem !important; }
  .m-sm-n36 {
    margin: -9rem !important; }
  .mt-sm-n36,
  .my-sm-n36 {
    margin-top: -9rem !important; }
  .mr-sm-n36,
  .mx-sm-n36 {
    margin-right: -9rem !important; }
  .mb-sm-n36,
  .my-sm-n36 {
    margin-bottom: -9rem !important; }
  .ml-sm-n36,
  .mx-sm-n36 {
    margin-left: -9rem !important; }
  .m-sm-n37 {
    margin: -9.25rem !important; }
  .mt-sm-n37,
  .my-sm-n37 {
    margin-top: -9.25rem !important; }
  .mr-sm-n37,
  .mx-sm-n37 {
    margin-right: -9.25rem !important; }
  .mb-sm-n37,
  .my-sm-n37 {
    margin-bottom: -9.25rem !important; }
  .ml-sm-n37,
  .mx-sm-n37 {
    margin-left: -9.25rem !important; }
  .m-sm-n48 {
    margin: -9.5rem !important; }
  .mt-sm-n48,
  .my-sm-n48 {
    margin-top: -9.5rem !important; }
  .mr-sm-n48,
  .mx-sm-n48 {
    margin-right: -9.5rem !important; }
  .mb-sm-n48,
  .my-sm-n48 {
    margin-bottom: -9.5rem !important; }
  .ml-sm-n48,
  .mx-sm-n48 {
    margin-left: -9.5rem !important; }
  .m-sm-n39 {
    margin: -9.75rem !important; }
  .mt-sm-n39,
  .my-sm-n39 {
    margin-top: -9.75rem !important; }
  .mr-sm-n39,
  .mx-sm-n39 {
    margin-right: -9.75rem !important; }
  .mb-sm-n39,
  .my-sm-n39 {
    margin-bottom: -9.75rem !important; }
  .ml-sm-n39,
  .mx-sm-n39 {
    margin-left: -9.75rem !important; }
  .m-sm-n40 {
    margin: -10rem !important; }
  .mt-sm-n40,
  .my-sm-n40 {
    margin-top: -10rem !important; }
  .mr-sm-n40,
  .mx-sm-n40 {
    margin-right: -10rem !important; }
  .mb-sm-n40,
  .my-sm-n40 {
    margin-bottom: -10rem !important; }
  .ml-sm-n40,
  .mx-sm-n40 {
    margin-left: -10rem !important; }
  .m-sm-auto {
    margin: auto !important; }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important; }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important; }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important; }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important; } }

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important; }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important; }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important; }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important; }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important; }
  .m-md-1 {
    margin: 0.25rem !important; }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important; }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important; }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important; }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important; }
  .m-md-2 {
    margin: 0.5rem !important; }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important; }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important; }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important; }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important; }
  .m-md-3 {
    margin: 0.75rem !important; }
  .mt-md-3,
  .my-md-3 {
    margin-top: 0.75rem !important; }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 0.75rem !important; }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 0.75rem !important; }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 0.75rem !important; }
  .m-md-4 {
    margin: 1rem !important; }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1rem !important; }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1rem !important; }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1rem !important; }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1rem !important; }
  .m-md-5 {
    margin: 1.25rem !important; }
  .mt-md-5,
  .my-md-5 {
    margin-top: 1.25rem !important; }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 1.25rem !important; }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 1.25rem !important; }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 1.25rem !important; }
  .m-md-6 {
    margin: 1.5rem !important; }
  .mt-md-6,
  .my-md-6 {
    margin-top: 1.5rem !important; }
  .mr-md-6,
  .mx-md-6 {
    margin-right: 1.5rem !important; }
  .mb-md-6,
  .my-md-6 {
    margin-bottom: 1.5rem !important; }
  .ml-md-6,
  .mx-md-6 {
    margin-left: 1.5rem !important; }
  .m-md-7 {
    margin: 1.75rem !important; }
  .mt-md-7,
  .my-md-7 {
    margin-top: 1.75rem !important; }
  .mr-md-7,
  .mx-md-7 {
    margin-right: 1.75rem !important; }
  .mb-md-7,
  .my-md-7 {
    margin-bottom: 1.75rem !important; }
  .ml-md-7,
  .mx-md-7 {
    margin-left: 1.75rem !important; }
  .m-md-8 {
    margin: 2rem !important; }
  .mt-md-8,
  .my-md-8 {
    margin-top: 2rem !important; }
  .mr-md-8,
  .mx-md-8 {
    margin-right: 2rem !important; }
  .mb-md-8,
  .my-md-8 {
    margin-bottom: 2rem !important; }
  .ml-md-8,
  .mx-md-8 {
    margin-left: 2rem !important; }
  .m-md-9 {
    margin: 2.25rem !important; }
  .mt-md-9,
  .my-md-9 {
    margin-top: 2.25rem !important; }
  .mr-md-9,
  .mx-md-9 {
    margin-right: 2.25rem !important; }
  .mb-md-9,
  .my-md-9 {
    margin-bottom: 2.25rem !important; }
  .ml-md-9,
  .mx-md-9 {
    margin-left: 2.25rem !important; }
  .m-md-10 {
    margin: 2.5rem !important; }
  .mt-md-10,
  .my-md-10 {
    margin-top: 2.5rem !important; }
  .mr-md-10,
  .mx-md-10 {
    margin-right: 2.5rem !important; }
  .mb-md-10,
  .my-md-10 {
    margin-bottom: 2.5rem !important; }
  .ml-md-10,
  .mx-md-10 {
    margin-left: 2.5rem !important; }
  .m-md-11 {
    margin: 2.75rem !important; }
  .mt-md-11,
  .my-md-11 {
    margin-top: 2.75rem !important; }
  .mr-md-11,
  .mx-md-11 {
    margin-right: 2.75rem !important; }
  .mb-md-11,
  .my-md-11 {
    margin-bottom: 2.75rem !important; }
  .ml-md-11,
  .mx-md-11 {
    margin-left: 2.75rem !important; }
  .m-md-12 {
    margin: 3rem !important; }
  .mt-md-12,
  .my-md-12 {
    margin-top: 3rem !important; }
  .mr-md-12,
  .mx-md-12 {
    margin-right: 3rem !important; }
  .mb-md-12,
  .my-md-12 {
    margin-bottom: 3rem !important; }
  .ml-md-12,
  .mx-md-12 {
    margin-left: 3rem !important; }
  .m-md-13 {
    margin: 3.25rem !important; }
  .mt-md-13,
  .my-md-13 {
    margin-top: 3.25rem !important; }
  .mr-md-13,
  .mx-md-13 {
    margin-right: 3.25rem !important; }
  .mb-md-13,
  .my-md-13 {
    margin-bottom: 3.25rem !important; }
  .ml-md-13,
  .mx-md-13 {
    margin-left: 3.25rem !important; }
  .m-md-14 {
    margin: 3.5rem !important; }
  .mt-md-14,
  .my-md-14 {
    margin-top: 3.5rem !important; }
  .mr-md-14,
  .mx-md-14 {
    margin-right: 3.5rem !important; }
  .mb-md-14,
  .my-md-14 {
    margin-bottom: 3.5rem !important; }
  .ml-md-14,
  .mx-md-14 {
    margin-left: 3.5rem !important; }
  .m-md-15 {
    margin: 3.75rem !important; }
  .mt-md-15,
  .my-md-15 {
    margin-top: 3.75rem !important; }
  .mr-md-15,
  .mx-md-15 {
    margin-right: 3.75rem !important; }
  .mb-md-15,
  .my-md-15 {
    margin-bottom: 3.75rem !important; }
  .ml-md-15,
  .mx-md-15 {
    margin-left: 3.75rem !important; }
  .m-md-16 {
    margin: 4rem !important; }
  .mt-md-16,
  .my-md-16 {
    margin-top: 4rem !important; }
  .mr-md-16,
  .mx-md-16 {
    margin-right: 4rem !important; }
  .mb-md-16,
  .my-md-16 {
    margin-bottom: 4rem !important; }
  .ml-md-16,
  .mx-md-16 {
    margin-left: 4rem !important; }
  .m-md-17 {
    margin: 4.25rem !important; }
  .mt-md-17,
  .my-md-17 {
    margin-top: 4.25rem !important; }
  .mr-md-17,
  .mx-md-17 {
    margin-right: 4.25rem !important; }
  .mb-md-17,
  .my-md-17 {
    margin-bottom: 4.25rem !important; }
  .ml-md-17,
  .mx-md-17 {
    margin-left: 4.25rem !important; }
  .m-md-18 {
    margin: 4.5rem !important; }
  .mt-md-18,
  .my-md-18 {
    margin-top: 4.5rem !important; }
  .mr-md-18,
  .mx-md-18 {
    margin-right: 4.5rem !important; }
  .mb-md-18,
  .my-md-18 {
    margin-bottom: 4.5rem !important; }
  .ml-md-18,
  .mx-md-18 {
    margin-left: 4.5rem !important; }
  .m-md-19 {
    margin: 4.75rem !important; }
  .mt-md-19,
  .my-md-19 {
    margin-top: 4.75rem !important; }
  .mr-md-19,
  .mx-md-19 {
    margin-right: 4.75rem !important; }
  .mb-md-19,
  .my-md-19 {
    margin-bottom: 4.75rem !important; }
  .ml-md-19,
  .mx-md-19 {
    margin-left: 4.75rem !important; }
  .m-md-20 {
    margin: 5rem !important; }
  .mt-md-20,
  .my-md-20 {
    margin-top: 5rem !important; }
  .mr-md-20,
  .mx-md-20 {
    margin-right: 5rem !important; }
  .mb-md-20,
  .my-md-20 {
    margin-bottom: 5rem !important; }
  .ml-md-20,
  .mx-md-20 {
    margin-left: 5rem !important; }
  .m-md-21 {
    margin: 5.25rem !important; }
  .mt-md-21,
  .my-md-21 {
    margin-top: 5.25rem !important; }
  .mr-md-21,
  .mx-md-21 {
    margin-right: 5.25rem !important; }
  .mb-md-21,
  .my-md-21 {
    margin-bottom: 5.25rem !important; }
  .ml-md-21,
  .mx-md-21 {
    margin-left: 5.25rem !important; }
  .m-md-22 {
    margin: 5.5rem !important; }
  .mt-md-22,
  .my-md-22 {
    margin-top: 5.5rem !important; }
  .mr-md-22,
  .mx-md-22 {
    margin-right: 5.5rem !important; }
  .mb-md-22,
  .my-md-22 {
    margin-bottom: 5.5rem !important; }
  .ml-md-22,
  .mx-md-22 {
    margin-left: 5.5rem !important; }
  .m-md-23 {
    margin: 5.75rem !important; }
  .mt-md-23,
  .my-md-23 {
    margin-top: 5.75rem !important; }
  .mr-md-23,
  .mx-md-23 {
    margin-right: 5.75rem !important; }
  .mb-md-23,
  .my-md-23 {
    margin-bottom: 5.75rem !important; }
  .ml-md-23,
  .mx-md-23 {
    margin-left: 5.75rem !important; }
  .m-md-24 {
    margin: 6rem !important; }
  .mt-md-24,
  .my-md-24 {
    margin-top: 6rem !important; }
  .mr-md-24,
  .mx-md-24 {
    margin-right: 6rem !important; }
  .mb-md-24,
  .my-md-24 {
    margin-bottom: 6rem !important; }
  .ml-md-24,
  .mx-md-24 {
    margin-left: 6rem !important; }
  .m-md-25 {
    margin: 6.25rem !important; }
  .mt-md-25,
  .my-md-25 {
    margin-top: 6.25rem !important; }
  .mr-md-25,
  .mx-md-25 {
    margin-right: 6.25rem !important; }
  .mb-md-25,
  .my-md-25 {
    margin-bottom: 6.25rem !important; }
  .ml-md-25,
  .mx-md-25 {
    margin-left: 6.25rem !important; }
  .m-md-26 {
    margin: 6.5rem !important; }
  .mt-md-26,
  .my-md-26 {
    margin-top: 6.5rem !important; }
  .mr-md-26,
  .mx-md-26 {
    margin-right: 6.5rem !important; }
  .mb-md-26,
  .my-md-26 {
    margin-bottom: 6.5rem !important; }
  .ml-md-26,
  .mx-md-26 {
    margin-left: 6.5rem !important; }
  .m-md-27 {
    margin: 6.75rem !important; }
  .mt-md-27,
  .my-md-27 {
    margin-top: 6.75rem !important; }
  .mr-md-27,
  .mx-md-27 {
    margin-right: 6.75rem !important; }
  .mb-md-27,
  .my-md-27 {
    margin-bottom: 6.75rem !important; }
  .ml-md-27,
  .mx-md-27 {
    margin-left: 6.75rem !important; }
  .m-md-28 {
    margin: 7rem !important; }
  .mt-md-28,
  .my-md-28 {
    margin-top: 7rem !important; }
  .mr-md-28,
  .mx-md-28 {
    margin-right: 7rem !important; }
  .mb-md-28,
  .my-md-28 {
    margin-bottom: 7rem !important; }
  .ml-md-28,
  .mx-md-28 {
    margin-left: 7rem !important; }
  .m-md-29 {
    margin: 7.25rem !important; }
  .mt-md-29,
  .my-md-29 {
    margin-top: 7.25rem !important; }
  .mr-md-29,
  .mx-md-29 {
    margin-right: 7.25rem !important; }
  .mb-md-29,
  .my-md-29 {
    margin-bottom: 7.25rem !important; }
  .ml-md-29,
  .mx-md-29 {
    margin-left: 7.25rem !important; }
  .m-md-30 {
    margin: 7.5rem !important; }
  .mt-md-30,
  .my-md-30 {
    margin-top: 7.5rem !important; }
  .mr-md-30,
  .mx-md-30 {
    margin-right: 7.5rem !important; }
  .mb-md-30,
  .my-md-30 {
    margin-bottom: 7.5rem !important; }
  .ml-md-30,
  .mx-md-30 {
    margin-left: 7.5rem !important; }
  .m-md-31 {
    margin: 7.75rem !important; }
  .mt-md-31,
  .my-md-31 {
    margin-top: 7.75rem !important; }
  .mr-md-31,
  .mx-md-31 {
    margin-right: 7.75rem !important; }
  .mb-md-31,
  .my-md-31 {
    margin-bottom: 7.75rem !important; }
  .ml-md-31,
  .mx-md-31 {
    margin-left: 7.75rem !important; }
  .m-md-32 {
    margin: 8rem !important; }
  .mt-md-32,
  .my-md-32 {
    margin-top: 8rem !important; }
  .mr-md-32,
  .mx-md-32 {
    margin-right: 8rem !important; }
  .mb-md-32,
  .my-md-32 {
    margin-bottom: 8rem !important; }
  .ml-md-32,
  .mx-md-32 {
    margin-left: 8rem !important; }
  .m-md-33 {
    margin: 8.25rem !important; }
  .mt-md-33,
  .my-md-33 {
    margin-top: 8.25rem !important; }
  .mr-md-33,
  .mx-md-33 {
    margin-right: 8.25rem !important; }
  .mb-md-33,
  .my-md-33 {
    margin-bottom: 8.25rem !important; }
  .ml-md-33,
  .mx-md-33 {
    margin-left: 8.25rem !important; }
  .m-md-34 {
    margin: 8.5rem !important; }
  .mt-md-34,
  .my-md-34 {
    margin-top: 8.5rem !important; }
  .mr-md-34,
  .mx-md-34 {
    margin-right: 8.5rem !important; }
  .mb-md-34,
  .my-md-34 {
    margin-bottom: 8.5rem !important; }
  .ml-md-34,
  .mx-md-34 {
    margin-left: 8.5rem !important; }
  .m-md-35 {
    margin: 8.75rem !important; }
  .mt-md-35,
  .my-md-35 {
    margin-top: 8.75rem !important; }
  .mr-md-35,
  .mx-md-35 {
    margin-right: 8.75rem !important; }
  .mb-md-35,
  .my-md-35 {
    margin-bottom: 8.75rem !important; }
  .ml-md-35,
  .mx-md-35 {
    margin-left: 8.75rem !important; }
  .m-md-36 {
    margin: 9rem !important; }
  .mt-md-36,
  .my-md-36 {
    margin-top: 9rem !important; }
  .mr-md-36,
  .mx-md-36 {
    margin-right: 9rem !important; }
  .mb-md-36,
  .my-md-36 {
    margin-bottom: 9rem !important; }
  .ml-md-36,
  .mx-md-36 {
    margin-left: 9rem !important; }
  .m-md-37 {
    margin: 9.25rem !important; }
  .mt-md-37,
  .my-md-37 {
    margin-top: 9.25rem !important; }
  .mr-md-37,
  .mx-md-37 {
    margin-right: 9.25rem !important; }
  .mb-md-37,
  .my-md-37 {
    margin-bottom: 9.25rem !important; }
  .ml-md-37,
  .mx-md-37 {
    margin-left: 9.25rem !important; }
  .m-md-48 {
    margin: 9.5rem !important; }
  .mt-md-48,
  .my-md-48 {
    margin-top: 9.5rem !important; }
  .mr-md-48,
  .mx-md-48 {
    margin-right: 9.5rem !important; }
  .mb-md-48,
  .my-md-48 {
    margin-bottom: 9.5rem !important; }
  .ml-md-48,
  .mx-md-48 {
    margin-left: 9.5rem !important; }
  .m-md-39 {
    margin: 9.75rem !important; }
  .mt-md-39,
  .my-md-39 {
    margin-top: 9.75rem !important; }
  .mr-md-39,
  .mx-md-39 {
    margin-right: 9.75rem !important; }
  .mb-md-39,
  .my-md-39 {
    margin-bottom: 9.75rem !important; }
  .ml-md-39,
  .mx-md-39 {
    margin-left: 9.75rem !important; }
  .m-md-40 {
    margin: 10rem !important; }
  .mt-md-40,
  .my-md-40 {
    margin-top: 10rem !important; }
  .mr-md-40,
  .mx-md-40 {
    margin-right: 10rem !important; }
  .mb-md-40,
  .my-md-40 {
    margin-bottom: 10rem !important; }
  .ml-md-40,
  .mx-md-40 {
    margin-left: 10rem !important; }
  .p-md-0 {
    padding: 0 !important; }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important; }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important; }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important; }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important; }
  .p-md-1 {
    padding: 0.25rem !important; }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important; }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important; }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important; }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important; }
  .p-md-2 {
    padding: 0.5rem !important; }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important; }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important; }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important; }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important; }
  .p-md-3 {
    padding: 0.75rem !important; }
  .pt-md-3,
  .py-md-3 {
    padding-top: 0.75rem !important; }
  .pr-md-3,
  .px-md-3 {
    padding-right: 0.75rem !important; }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 0.75rem !important; }
  .pl-md-3,
  .px-md-3 {
    padding-left: 0.75rem !important; }
  .p-md-4 {
    padding: 1rem !important; }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1rem !important; }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1rem !important; }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1rem !important; }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1rem !important; }
  .p-md-5 {
    padding: 1.25rem !important; }
  .pt-md-5,
  .py-md-5 {
    padding-top: 1.25rem !important; }
  .pr-md-5,
  .px-md-5 {
    padding-right: 1.25rem !important; }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 1.25rem !important; }
  .pl-md-5,
  .px-md-5 {
    padding-left: 1.25rem !important; }
  .p-md-6 {
    padding: 1.5rem !important; }
  .pt-md-6,
  .py-md-6 {
    padding-top: 1.5rem !important; }
  .pr-md-6,
  .px-md-6 {
    padding-right: 1.5rem !important; }
  .pb-md-6,
  .py-md-6 {
    padding-bottom: 1.5rem !important; }
  .pl-md-6,
  .px-md-6 {
    padding-left: 1.5rem !important; }
  .p-md-7 {
    padding: 1.75rem !important; }
  .pt-md-7,
  .py-md-7 {
    padding-top: 1.75rem !important; }
  .pr-md-7,
  .px-md-7 {
    padding-right: 1.75rem !important; }
  .pb-md-7,
  .py-md-7 {
    padding-bottom: 1.75rem !important; }
  .pl-md-7,
  .px-md-7 {
    padding-left: 1.75rem !important; }
  .p-md-8 {
    padding: 2rem !important; }
  .pt-md-8,
  .py-md-8 {
    padding-top: 2rem !important; }
  .pr-md-8,
  .px-md-8 {
    padding-right: 2rem !important; }
  .pb-md-8,
  .py-md-8 {
    padding-bottom: 2rem !important; }
  .pl-md-8,
  .px-md-8 {
    padding-left: 2rem !important; }
  .p-md-9 {
    padding: 2.25rem !important; }
  .pt-md-9,
  .py-md-9 {
    padding-top: 2.25rem !important; }
  .pr-md-9,
  .px-md-9 {
    padding-right: 2.25rem !important; }
  .pb-md-9,
  .py-md-9 {
    padding-bottom: 2.25rem !important; }
  .pl-md-9,
  .px-md-9 {
    padding-left: 2.25rem !important; }
  .p-md-10 {
    padding: 2.5rem !important; }
  .pt-md-10,
  .py-md-10 {
    padding-top: 2.5rem !important; }
  .pr-md-10,
  .px-md-10 {
    padding-right: 2.5rem !important; }
  .pb-md-10,
  .py-md-10 {
    padding-bottom: 2.5rem !important; }
  .pl-md-10,
  .px-md-10 {
    padding-left: 2.5rem !important; }
  .p-md-11 {
    padding: 2.75rem !important; }
  .pt-md-11,
  .py-md-11 {
    padding-top: 2.75rem !important; }
  .pr-md-11,
  .px-md-11 {
    padding-right: 2.75rem !important; }
  .pb-md-11,
  .py-md-11 {
    padding-bottom: 2.75rem !important; }
  .pl-md-11,
  .px-md-11 {
    padding-left: 2.75rem !important; }
  .p-md-12 {
    padding: 3rem !important; }
  .pt-md-12,
  .py-md-12 {
    padding-top: 3rem !important; }
  .pr-md-12,
  .px-md-12 {
    padding-right: 3rem !important; }
  .pb-md-12,
  .py-md-12 {
    padding-bottom: 3rem !important; }
  .pl-md-12,
  .px-md-12 {
    padding-left: 3rem !important; }
  .p-md-13 {
    padding: 3.25rem !important; }
  .pt-md-13,
  .py-md-13 {
    padding-top: 3.25rem !important; }
  .pr-md-13,
  .px-md-13 {
    padding-right: 3.25rem !important; }
  .pb-md-13,
  .py-md-13 {
    padding-bottom: 3.25rem !important; }
  .pl-md-13,
  .px-md-13 {
    padding-left: 3.25rem !important; }
  .p-md-14 {
    padding: 3.5rem !important; }
  .pt-md-14,
  .py-md-14 {
    padding-top: 3.5rem !important; }
  .pr-md-14,
  .px-md-14 {
    padding-right: 3.5rem !important; }
  .pb-md-14,
  .py-md-14 {
    padding-bottom: 3.5rem !important; }
  .pl-md-14,
  .px-md-14 {
    padding-left: 3.5rem !important; }
  .p-md-15 {
    padding: 3.75rem !important; }
  .pt-md-15,
  .py-md-15 {
    padding-top: 3.75rem !important; }
  .pr-md-15,
  .px-md-15 {
    padding-right: 3.75rem !important; }
  .pb-md-15,
  .py-md-15 {
    padding-bottom: 3.75rem !important; }
  .pl-md-15,
  .px-md-15 {
    padding-left: 3.75rem !important; }
  .p-md-16 {
    padding: 4rem !important; }
  .pt-md-16,
  .py-md-16 {
    padding-top: 4rem !important; }
  .pr-md-16,
  .px-md-16 {
    padding-right: 4rem !important; }
  .pb-md-16,
  .py-md-16 {
    padding-bottom: 4rem !important; }
  .pl-md-16,
  .px-md-16 {
    padding-left: 4rem !important; }
  .p-md-17 {
    padding: 4.25rem !important; }
  .pt-md-17,
  .py-md-17 {
    padding-top: 4.25rem !important; }
  .pr-md-17,
  .px-md-17 {
    padding-right: 4.25rem !important; }
  .pb-md-17,
  .py-md-17 {
    padding-bottom: 4.25rem !important; }
  .pl-md-17,
  .px-md-17 {
    padding-left: 4.25rem !important; }
  .p-md-18 {
    padding: 4.5rem !important; }
  .pt-md-18,
  .py-md-18 {
    padding-top: 4.5rem !important; }
  .pr-md-18,
  .px-md-18 {
    padding-right: 4.5rem !important; }
  .pb-md-18,
  .py-md-18 {
    padding-bottom: 4.5rem !important; }
  .pl-md-18,
  .px-md-18 {
    padding-left: 4.5rem !important; }
  .p-md-19 {
    padding: 4.75rem !important; }
  .pt-md-19,
  .py-md-19 {
    padding-top: 4.75rem !important; }
  .pr-md-19,
  .px-md-19 {
    padding-right: 4.75rem !important; }
  .pb-md-19,
  .py-md-19 {
    padding-bottom: 4.75rem !important; }
  .pl-md-19,
  .px-md-19 {
    padding-left: 4.75rem !important; }
  .p-md-20 {
    padding: 5rem !important; }
  .pt-md-20,
  .py-md-20 {
    padding-top: 5rem !important; }
  .pr-md-20,
  .px-md-20 {
    padding-right: 5rem !important; }
  .pb-md-20,
  .py-md-20 {
    padding-bottom: 5rem !important; }
  .pl-md-20,
  .px-md-20 {
    padding-left: 5rem !important; }
  .p-md-21 {
    padding: 5.25rem !important; }
  .pt-md-21,
  .py-md-21 {
    padding-top: 5.25rem !important; }
  .pr-md-21,
  .px-md-21 {
    padding-right: 5.25rem !important; }
  .pb-md-21,
  .py-md-21 {
    padding-bottom: 5.25rem !important; }
  .pl-md-21,
  .px-md-21 {
    padding-left: 5.25rem !important; }
  .p-md-22 {
    padding: 5.5rem !important; }
  .pt-md-22,
  .py-md-22 {
    padding-top: 5.5rem !important; }
  .pr-md-22,
  .px-md-22 {
    padding-right: 5.5rem !important; }
  .pb-md-22,
  .py-md-22 {
    padding-bottom: 5.5rem !important; }
  .pl-md-22,
  .px-md-22 {
    padding-left: 5.5rem !important; }
  .p-md-23 {
    padding: 5.75rem !important; }
  .pt-md-23,
  .py-md-23 {
    padding-top: 5.75rem !important; }
  .pr-md-23,
  .px-md-23 {
    padding-right: 5.75rem !important; }
  .pb-md-23,
  .py-md-23 {
    padding-bottom: 5.75rem !important; }
  .pl-md-23,
  .px-md-23 {
    padding-left: 5.75rem !important; }
  .p-md-24 {
    padding: 6rem !important; }
  .pt-md-24,
  .py-md-24 {
    padding-top: 6rem !important; }
  .pr-md-24,
  .px-md-24 {
    padding-right: 6rem !important; }
  .pb-md-24,
  .py-md-24 {
    padding-bottom: 6rem !important; }
  .pl-md-24,
  .px-md-24 {
    padding-left: 6rem !important; }
  .p-md-25 {
    padding: 6.25rem !important; }
  .pt-md-25,
  .py-md-25 {
    padding-top: 6.25rem !important; }
  .pr-md-25,
  .px-md-25 {
    padding-right: 6.25rem !important; }
  .pb-md-25,
  .py-md-25 {
    padding-bottom: 6.25rem !important; }
  .pl-md-25,
  .px-md-25 {
    padding-left: 6.25rem !important; }
  .p-md-26 {
    padding: 6.5rem !important; }
  .pt-md-26,
  .py-md-26 {
    padding-top: 6.5rem !important; }
  .pr-md-26,
  .px-md-26 {
    padding-right: 6.5rem !important; }
  .pb-md-26,
  .py-md-26 {
    padding-bottom: 6.5rem !important; }
  .pl-md-26,
  .px-md-26 {
    padding-left: 6.5rem !important; }
  .p-md-27 {
    padding: 6.75rem !important; }
  .pt-md-27,
  .py-md-27 {
    padding-top: 6.75rem !important; }
  .pr-md-27,
  .px-md-27 {
    padding-right: 6.75rem !important; }
  .pb-md-27,
  .py-md-27 {
    padding-bottom: 6.75rem !important; }
  .pl-md-27,
  .px-md-27 {
    padding-left: 6.75rem !important; }
  .p-md-28 {
    padding: 7rem !important; }
  .pt-md-28,
  .py-md-28 {
    padding-top: 7rem !important; }
  .pr-md-28,
  .px-md-28 {
    padding-right: 7rem !important; }
  .pb-md-28,
  .py-md-28 {
    padding-bottom: 7rem !important; }
  .pl-md-28,
  .px-md-28 {
    padding-left: 7rem !important; }
  .p-md-29 {
    padding: 7.25rem !important; }
  .pt-md-29,
  .py-md-29 {
    padding-top: 7.25rem !important; }
  .pr-md-29,
  .px-md-29 {
    padding-right: 7.25rem !important; }
  .pb-md-29,
  .py-md-29 {
    padding-bottom: 7.25rem !important; }
  .pl-md-29,
  .px-md-29 {
    padding-left: 7.25rem !important; }
  .p-md-30 {
    padding: 7.5rem !important; }
  .pt-md-30,
  .py-md-30 {
    padding-top: 7.5rem !important; }
  .pr-md-30,
  .px-md-30 {
    padding-right: 7.5rem !important; }
  .pb-md-30,
  .py-md-30 {
    padding-bottom: 7.5rem !important; }
  .pl-md-30,
  .px-md-30 {
    padding-left: 7.5rem !important; }
  .p-md-31 {
    padding: 7.75rem !important; }
  .pt-md-31,
  .py-md-31 {
    padding-top: 7.75rem !important; }
  .pr-md-31,
  .px-md-31 {
    padding-right: 7.75rem !important; }
  .pb-md-31,
  .py-md-31 {
    padding-bottom: 7.75rem !important; }
  .pl-md-31,
  .px-md-31 {
    padding-left: 7.75rem !important; }
  .p-md-32 {
    padding: 8rem !important; }
  .pt-md-32,
  .py-md-32 {
    padding-top: 8rem !important; }
  .pr-md-32,
  .px-md-32 {
    padding-right: 8rem !important; }
  .pb-md-32,
  .py-md-32 {
    padding-bottom: 8rem !important; }
  .pl-md-32,
  .px-md-32 {
    padding-left: 8rem !important; }
  .p-md-33 {
    padding: 8.25rem !important; }
  .pt-md-33,
  .py-md-33 {
    padding-top: 8.25rem !important; }
  .pr-md-33,
  .px-md-33 {
    padding-right: 8.25rem !important; }
  .pb-md-33,
  .py-md-33 {
    padding-bottom: 8.25rem !important; }
  .pl-md-33,
  .px-md-33 {
    padding-left: 8.25rem !important; }
  .p-md-34 {
    padding: 8.5rem !important; }
  .pt-md-34,
  .py-md-34 {
    padding-top: 8.5rem !important; }
  .pr-md-34,
  .px-md-34 {
    padding-right: 8.5rem !important; }
  .pb-md-34,
  .py-md-34 {
    padding-bottom: 8.5rem !important; }
  .pl-md-34,
  .px-md-34 {
    padding-left: 8.5rem !important; }
  .p-md-35 {
    padding: 8.75rem !important; }
  .pt-md-35,
  .py-md-35 {
    padding-top: 8.75rem !important; }
  .pr-md-35,
  .px-md-35 {
    padding-right: 8.75rem !important; }
  .pb-md-35,
  .py-md-35 {
    padding-bottom: 8.75rem !important; }
  .pl-md-35,
  .px-md-35 {
    padding-left: 8.75rem !important; }
  .p-md-36 {
    padding: 9rem !important; }
  .pt-md-36,
  .py-md-36 {
    padding-top: 9rem !important; }
  .pr-md-36,
  .px-md-36 {
    padding-right: 9rem !important; }
  .pb-md-36,
  .py-md-36 {
    padding-bottom: 9rem !important; }
  .pl-md-36,
  .px-md-36 {
    padding-left: 9rem !important; }
  .p-md-37 {
    padding: 9.25rem !important; }
  .pt-md-37,
  .py-md-37 {
    padding-top: 9.25rem !important; }
  .pr-md-37,
  .px-md-37 {
    padding-right: 9.25rem !important; }
  .pb-md-37,
  .py-md-37 {
    padding-bottom: 9.25rem !important; }
  .pl-md-37,
  .px-md-37 {
    padding-left: 9.25rem !important; }
  .p-md-48 {
    padding: 9.5rem !important; }
  .pt-md-48,
  .py-md-48 {
    padding-top: 9.5rem !important; }
  .pr-md-48,
  .px-md-48 {
    padding-right: 9.5rem !important; }
  .pb-md-48,
  .py-md-48 {
    padding-bottom: 9.5rem !important; }
  .pl-md-48,
  .px-md-48 {
    padding-left: 9.5rem !important; }
  .p-md-39 {
    padding: 9.75rem !important; }
  .pt-md-39,
  .py-md-39 {
    padding-top: 9.75rem !important; }
  .pr-md-39,
  .px-md-39 {
    padding-right: 9.75rem !important; }
  .pb-md-39,
  .py-md-39 {
    padding-bottom: 9.75rem !important; }
  .pl-md-39,
  .px-md-39 {
    padding-left: 9.75rem !important; }
  .p-md-40 {
    padding: 10rem !important; }
  .pt-md-40,
  .py-md-40 {
    padding-top: 10rem !important; }
  .pr-md-40,
  .px-md-40 {
    padding-right: 10rem !important; }
  .pb-md-40,
  .py-md-40 {
    padding-bottom: 10rem !important; }
  .pl-md-40,
  .px-md-40 {
    padding-left: 10rem !important; }
  .m-md-n1 {
    margin: -0.25rem !important; }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important; }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important; }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important; }
  .m-md-n2 {
    margin: -0.5rem !important; }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important; }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important; }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important; }
  .m-md-n3 {
    margin: -0.75rem !important; }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -0.75rem !important; }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -0.75rem !important; }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -0.75rem !important; }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -0.75rem !important; }
  .m-md-n4 {
    margin: -1rem !important; }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1rem !important; }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1rem !important; }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1rem !important; }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1rem !important; }
  .m-md-n5 {
    margin: -1.25rem !important; }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -1.25rem !important; }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -1.25rem !important; }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -1.25rem !important; }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -1.25rem !important; }
  .m-md-n6 {
    margin: -1.5rem !important; }
  .mt-md-n6,
  .my-md-n6 {
    margin-top: -1.5rem !important; }
  .mr-md-n6,
  .mx-md-n6 {
    margin-right: -1.5rem !important; }
  .mb-md-n6,
  .my-md-n6 {
    margin-bottom: -1.5rem !important; }
  .ml-md-n6,
  .mx-md-n6 {
    margin-left: -1.5rem !important; }
  .m-md-n7 {
    margin: -1.75rem !important; }
  .mt-md-n7,
  .my-md-n7 {
    margin-top: -1.75rem !important; }
  .mr-md-n7,
  .mx-md-n7 {
    margin-right: -1.75rem !important; }
  .mb-md-n7,
  .my-md-n7 {
    margin-bottom: -1.75rem !important; }
  .ml-md-n7,
  .mx-md-n7 {
    margin-left: -1.75rem !important; }
  .m-md-n8 {
    margin: -2rem !important; }
  .mt-md-n8,
  .my-md-n8 {
    margin-top: -2rem !important; }
  .mr-md-n8,
  .mx-md-n8 {
    margin-right: -2rem !important; }
  .mb-md-n8,
  .my-md-n8 {
    margin-bottom: -2rem !important; }
  .ml-md-n8,
  .mx-md-n8 {
    margin-left: -2rem !important; }
  .m-md-n9 {
    margin: -2.25rem !important; }
  .mt-md-n9,
  .my-md-n9 {
    margin-top: -2.25rem !important; }
  .mr-md-n9,
  .mx-md-n9 {
    margin-right: -2.25rem !important; }
  .mb-md-n9,
  .my-md-n9 {
    margin-bottom: -2.25rem !important; }
  .ml-md-n9,
  .mx-md-n9 {
    margin-left: -2.25rem !important; }
  .m-md-n10 {
    margin: -2.5rem !important; }
  .mt-md-n10,
  .my-md-n10 {
    margin-top: -2.5rem !important; }
  .mr-md-n10,
  .mx-md-n10 {
    margin-right: -2.5rem !important; }
  .mb-md-n10,
  .my-md-n10 {
    margin-bottom: -2.5rem !important; }
  .ml-md-n10,
  .mx-md-n10 {
    margin-left: -2.5rem !important; }
  .m-md-n11 {
    margin: -2.75rem !important; }
  .mt-md-n11,
  .my-md-n11 {
    margin-top: -2.75rem !important; }
  .mr-md-n11,
  .mx-md-n11 {
    margin-right: -2.75rem !important; }
  .mb-md-n11,
  .my-md-n11 {
    margin-bottom: -2.75rem !important; }
  .ml-md-n11,
  .mx-md-n11 {
    margin-left: -2.75rem !important; }
  .m-md-n12 {
    margin: -3rem !important; }
  .mt-md-n12,
  .my-md-n12 {
    margin-top: -3rem !important; }
  .mr-md-n12,
  .mx-md-n12 {
    margin-right: -3rem !important; }
  .mb-md-n12,
  .my-md-n12 {
    margin-bottom: -3rem !important; }
  .ml-md-n12,
  .mx-md-n12 {
    margin-left: -3rem !important; }
  .m-md-n13 {
    margin: -3.25rem !important; }
  .mt-md-n13,
  .my-md-n13 {
    margin-top: -3.25rem !important; }
  .mr-md-n13,
  .mx-md-n13 {
    margin-right: -3.25rem !important; }
  .mb-md-n13,
  .my-md-n13 {
    margin-bottom: -3.25rem !important; }
  .ml-md-n13,
  .mx-md-n13 {
    margin-left: -3.25rem !important; }
  .m-md-n14 {
    margin: -3.5rem !important; }
  .mt-md-n14,
  .my-md-n14 {
    margin-top: -3.5rem !important; }
  .mr-md-n14,
  .mx-md-n14 {
    margin-right: -3.5rem !important; }
  .mb-md-n14,
  .my-md-n14 {
    margin-bottom: -3.5rem !important; }
  .ml-md-n14,
  .mx-md-n14 {
    margin-left: -3.5rem !important; }
  .m-md-n15 {
    margin: -3.75rem !important; }
  .mt-md-n15,
  .my-md-n15 {
    margin-top: -3.75rem !important; }
  .mr-md-n15,
  .mx-md-n15 {
    margin-right: -3.75rem !important; }
  .mb-md-n15,
  .my-md-n15 {
    margin-bottom: -3.75rem !important; }
  .ml-md-n15,
  .mx-md-n15 {
    margin-left: -3.75rem !important; }
  .m-md-n16 {
    margin: -4rem !important; }
  .mt-md-n16,
  .my-md-n16 {
    margin-top: -4rem !important; }
  .mr-md-n16,
  .mx-md-n16 {
    margin-right: -4rem !important; }
  .mb-md-n16,
  .my-md-n16 {
    margin-bottom: -4rem !important; }
  .ml-md-n16,
  .mx-md-n16 {
    margin-left: -4rem !important; }
  .m-md-n17 {
    margin: -4.25rem !important; }
  .mt-md-n17,
  .my-md-n17 {
    margin-top: -4.25rem !important; }
  .mr-md-n17,
  .mx-md-n17 {
    margin-right: -4.25rem !important; }
  .mb-md-n17,
  .my-md-n17 {
    margin-bottom: -4.25rem !important; }
  .ml-md-n17,
  .mx-md-n17 {
    margin-left: -4.25rem !important; }
  .m-md-n18 {
    margin: -4.5rem !important; }
  .mt-md-n18,
  .my-md-n18 {
    margin-top: -4.5rem !important; }
  .mr-md-n18,
  .mx-md-n18 {
    margin-right: -4.5rem !important; }
  .mb-md-n18,
  .my-md-n18 {
    margin-bottom: -4.5rem !important; }
  .ml-md-n18,
  .mx-md-n18 {
    margin-left: -4.5rem !important; }
  .m-md-n19 {
    margin: -4.75rem !important; }
  .mt-md-n19,
  .my-md-n19 {
    margin-top: -4.75rem !important; }
  .mr-md-n19,
  .mx-md-n19 {
    margin-right: -4.75rem !important; }
  .mb-md-n19,
  .my-md-n19 {
    margin-bottom: -4.75rem !important; }
  .ml-md-n19,
  .mx-md-n19 {
    margin-left: -4.75rem !important; }
  .m-md-n20 {
    margin: -5rem !important; }
  .mt-md-n20,
  .my-md-n20 {
    margin-top: -5rem !important; }
  .mr-md-n20,
  .mx-md-n20 {
    margin-right: -5rem !important; }
  .mb-md-n20,
  .my-md-n20 {
    margin-bottom: -5rem !important; }
  .ml-md-n20,
  .mx-md-n20 {
    margin-left: -5rem !important; }
  .m-md-n21 {
    margin: -5.25rem !important; }
  .mt-md-n21,
  .my-md-n21 {
    margin-top: -5.25rem !important; }
  .mr-md-n21,
  .mx-md-n21 {
    margin-right: -5.25rem !important; }
  .mb-md-n21,
  .my-md-n21 {
    margin-bottom: -5.25rem !important; }
  .ml-md-n21,
  .mx-md-n21 {
    margin-left: -5.25rem !important; }
  .m-md-n22 {
    margin: -5.5rem !important; }
  .mt-md-n22,
  .my-md-n22 {
    margin-top: -5.5rem !important; }
  .mr-md-n22,
  .mx-md-n22 {
    margin-right: -5.5rem !important; }
  .mb-md-n22,
  .my-md-n22 {
    margin-bottom: -5.5rem !important; }
  .ml-md-n22,
  .mx-md-n22 {
    margin-left: -5.5rem !important; }
  .m-md-n23 {
    margin: -5.75rem !important; }
  .mt-md-n23,
  .my-md-n23 {
    margin-top: -5.75rem !important; }
  .mr-md-n23,
  .mx-md-n23 {
    margin-right: -5.75rem !important; }
  .mb-md-n23,
  .my-md-n23 {
    margin-bottom: -5.75rem !important; }
  .ml-md-n23,
  .mx-md-n23 {
    margin-left: -5.75rem !important; }
  .m-md-n24 {
    margin: -6rem !important; }
  .mt-md-n24,
  .my-md-n24 {
    margin-top: -6rem !important; }
  .mr-md-n24,
  .mx-md-n24 {
    margin-right: -6rem !important; }
  .mb-md-n24,
  .my-md-n24 {
    margin-bottom: -6rem !important; }
  .ml-md-n24,
  .mx-md-n24 {
    margin-left: -6rem !important; }
  .m-md-n25 {
    margin: -6.25rem !important; }
  .mt-md-n25,
  .my-md-n25 {
    margin-top: -6.25rem !important; }
  .mr-md-n25,
  .mx-md-n25 {
    margin-right: -6.25rem !important; }
  .mb-md-n25,
  .my-md-n25 {
    margin-bottom: -6.25rem !important; }
  .ml-md-n25,
  .mx-md-n25 {
    margin-left: -6.25rem !important; }
  .m-md-n26 {
    margin: -6.5rem !important; }
  .mt-md-n26,
  .my-md-n26 {
    margin-top: -6.5rem !important; }
  .mr-md-n26,
  .mx-md-n26 {
    margin-right: -6.5rem !important; }
  .mb-md-n26,
  .my-md-n26 {
    margin-bottom: -6.5rem !important; }
  .ml-md-n26,
  .mx-md-n26 {
    margin-left: -6.5rem !important; }
  .m-md-n27 {
    margin: -6.75rem !important; }
  .mt-md-n27,
  .my-md-n27 {
    margin-top: -6.75rem !important; }
  .mr-md-n27,
  .mx-md-n27 {
    margin-right: -6.75rem !important; }
  .mb-md-n27,
  .my-md-n27 {
    margin-bottom: -6.75rem !important; }
  .ml-md-n27,
  .mx-md-n27 {
    margin-left: -6.75rem !important; }
  .m-md-n28 {
    margin: -7rem !important; }
  .mt-md-n28,
  .my-md-n28 {
    margin-top: -7rem !important; }
  .mr-md-n28,
  .mx-md-n28 {
    margin-right: -7rem !important; }
  .mb-md-n28,
  .my-md-n28 {
    margin-bottom: -7rem !important; }
  .ml-md-n28,
  .mx-md-n28 {
    margin-left: -7rem !important; }
  .m-md-n29 {
    margin: -7.25rem !important; }
  .mt-md-n29,
  .my-md-n29 {
    margin-top: -7.25rem !important; }
  .mr-md-n29,
  .mx-md-n29 {
    margin-right: -7.25rem !important; }
  .mb-md-n29,
  .my-md-n29 {
    margin-bottom: -7.25rem !important; }
  .ml-md-n29,
  .mx-md-n29 {
    margin-left: -7.25rem !important; }
  .m-md-n30 {
    margin: -7.5rem !important; }
  .mt-md-n30,
  .my-md-n30 {
    margin-top: -7.5rem !important; }
  .mr-md-n30,
  .mx-md-n30 {
    margin-right: -7.5rem !important; }
  .mb-md-n30,
  .my-md-n30 {
    margin-bottom: -7.5rem !important; }
  .ml-md-n30,
  .mx-md-n30 {
    margin-left: -7.5rem !important; }
  .m-md-n31 {
    margin: -7.75rem !important; }
  .mt-md-n31,
  .my-md-n31 {
    margin-top: -7.75rem !important; }
  .mr-md-n31,
  .mx-md-n31 {
    margin-right: -7.75rem !important; }
  .mb-md-n31,
  .my-md-n31 {
    margin-bottom: -7.75rem !important; }
  .ml-md-n31,
  .mx-md-n31 {
    margin-left: -7.75rem !important; }
  .m-md-n32 {
    margin: -8rem !important; }
  .mt-md-n32,
  .my-md-n32 {
    margin-top: -8rem !important; }
  .mr-md-n32,
  .mx-md-n32 {
    margin-right: -8rem !important; }
  .mb-md-n32,
  .my-md-n32 {
    margin-bottom: -8rem !important; }
  .ml-md-n32,
  .mx-md-n32 {
    margin-left: -8rem !important; }
  .m-md-n33 {
    margin: -8.25rem !important; }
  .mt-md-n33,
  .my-md-n33 {
    margin-top: -8.25rem !important; }
  .mr-md-n33,
  .mx-md-n33 {
    margin-right: -8.25rem !important; }
  .mb-md-n33,
  .my-md-n33 {
    margin-bottom: -8.25rem !important; }
  .ml-md-n33,
  .mx-md-n33 {
    margin-left: -8.25rem !important; }
  .m-md-n34 {
    margin: -8.5rem !important; }
  .mt-md-n34,
  .my-md-n34 {
    margin-top: -8.5rem !important; }
  .mr-md-n34,
  .mx-md-n34 {
    margin-right: -8.5rem !important; }
  .mb-md-n34,
  .my-md-n34 {
    margin-bottom: -8.5rem !important; }
  .ml-md-n34,
  .mx-md-n34 {
    margin-left: -8.5rem !important; }
  .m-md-n35 {
    margin: -8.75rem !important; }
  .mt-md-n35,
  .my-md-n35 {
    margin-top: -8.75rem !important; }
  .mr-md-n35,
  .mx-md-n35 {
    margin-right: -8.75rem !important; }
  .mb-md-n35,
  .my-md-n35 {
    margin-bottom: -8.75rem !important; }
  .ml-md-n35,
  .mx-md-n35 {
    margin-left: -8.75rem !important; }
  .m-md-n36 {
    margin: -9rem !important; }
  .mt-md-n36,
  .my-md-n36 {
    margin-top: -9rem !important; }
  .mr-md-n36,
  .mx-md-n36 {
    margin-right: -9rem !important; }
  .mb-md-n36,
  .my-md-n36 {
    margin-bottom: -9rem !important; }
  .ml-md-n36,
  .mx-md-n36 {
    margin-left: -9rem !important; }
  .m-md-n37 {
    margin: -9.25rem !important; }
  .mt-md-n37,
  .my-md-n37 {
    margin-top: -9.25rem !important; }
  .mr-md-n37,
  .mx-md-n37 {
    margin-right: -9.25rem !important; }
  .mb-md-n37,
  .my-md-n37 {
    margin-bottom: -9.25rem !important; }
  .ml-md-n37,
  .mx-md-n37 {
    margin-left: -9.25rem !important; }
  .m-md-n48 {
    margin: -9.5rem !important; }
  .mt-md-n48,
  .my-md-n48 {
    margin-top: -9.5rem !important; }
  .mr-md-n48,
  .mx-md-n48 {
    margin-right: -9.5rem !important; }
  .mb-md-n48,
  .my-md-n48 {
    margin-bottom: -9.5rem !important; }
  .ml-md-n48,
  .mx-md-n48 {
    margin-left: -9.5rem !important; }
  .m-md-n39 {
    margin: -9.75rem !important; }
  .mt-md-n39,
  .my-md-n39 {
    margin-top: -9.75rem !important; }
  .mr-md-n39,
  .mx-md-n39 {
    margin-right: -9.75rem !important; }
  .mb-md-n39,
  .my-md-n39 {
    margin-bottom: -9.75rem !important; }
  .ml-md-n39,
  .mx-md-n39 {
    margin-left: -9.75rem !important; }
  .m-md-n40 {
    margin: -10rem !important; }
  .mt-md-n40,
  .my-md-n40 {
    margin-top: -10rem !important; }
  .mr-md-n40,
  .mx-md-n40 {
    margin-right: -10rem !important; }
  .mb-md-n40,
  .my-md-n40 {
    margin-bottom: -10rem !important; }
  .ml-md-n40,
  .mx-md-n40 {
    margin-left: -10rem !important; }
  .m-md-auto {
    margin: auto !important; }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important; }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important; }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important; }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important; } }

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important; }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important; }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important; }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important; }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important; }
  .m-lg-1 {
    margin: 0.25rem !important; }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important; }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important; }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important; }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important; }
  .m-lg-2 {
    margin: 0.5rem !important; }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important; }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important; }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important; }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important; }
  .m-lg-3 {
    margin: 0.75rem !important; }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 0.75rem !important; }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 0.75rem !important; }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 0.75rem !important; }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 0.75rem !important; }
  .m-lg-4 {
    margin: 1rem !important; }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1rem !important; }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1rem !important; }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1rem !important; }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1rem !important; }
  .m-lg-5 {
    margin: 1.25rem !important; }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 1.25rem !important; }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 1.25rem !important; }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 1.25rem !important; }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 1.25rem !important; }
  .m-lg-6 {
    margin: 1.5rem !important; }
  .mt-lg-6,
  .my-lg-6 {
    margin-top: 1.5rem !important; }
  .mr-lg-6,
  .mx-lg-6 {
    margin-right: 1.5rem !important; }
  .mb-lg-6,
  .my-lg-6 {
    margin-bottom: 1.5rem !important; }
  .ml-lg-6,
  .mx-lg-6 {
    margin-left: 1.5rem !important; }
  .m-lg-7 {
    margin: 1.75rem !important; }
  .mt-lg-7,
  .my-lg-7 {
    margin-top: 1.75rem !important; }
  .mr-lg-7,
  .mx-lg-7 {
    margin-right: 1.75rem !important; }
  .mb-lg-7,
  .my-lg-7 {
    margin-bottom: 1.75rem !important; }
  .ml-lg-7,
  .mx-lg-7 {
    margin-left: 1.75rem !important; }
  .m-lg-8 {
    margin: 2rem !important; }
  .mt-lg-8,
  .my-lg-8 {
    margin-top: 2rem !important; }
  .mr-lg-8,
  .mx-lg-8 {
    margin-right: 2rem !important; }
  .mb-lg-8,
  .my-lg-8 {
    margin-bottom: 2rem !important; }
  .ml-lg-8,
  .mx-lg-8 {
    margin-left: 2rem !important; }
  .m-lg-9 {
    margin: 2.25rem !important; }
  .mt-lg-9,
  .my-lg-9 {
    margin-top: 2.25rem !important; }
  .mr-lg-9,
  .mx-lg-9 {
    margin-right: 2.25rem !important; }
  .mb-lg-9,
  .my-lg-9 {
    margin-bottom: 2.25rem !important; }
  .ml-lg-9,
  .mx-lg-9 {
    margin-left: 2.25rem !important; }
  .m-lg-10 {
    margin: 2.5rem !important; }
  .mt-lg-10,
  .my-lg-10 {
    margin-top: 2.5rem !important; }
  .mr-lg-10,
  .mx-lg-10 {
    margin-right: 2.5rem !important; }
  .mb-lg-10,
  .my-lg-10 {
    margin-bottom: 2.5rem !important; }
  .ml-lg-10,
  .mx-lg-10 {
    margin-left: 2.5rem !important; }
  .m-lg-11 {
    margin: 2.75rem !important; }
  .mt-lg-11,
  .my-lg-11 {
    margin-top: 2.75rem !important; }
  .mr-lg-11,
  .mx-lg-11 {
    margin-right: 2.75rem !important; }
  .mb-lg-11,
  .my-lg-11 {
    margin-bottom: 2.75rem !important; }
  .ml-lg-11,
  .mx-lg-11 {
    margin-left: 2.75rem !important; }
  .m-lg-12 {
    margin: 3rem !important; }
  .mt-lg-12,
  .my-lg-12 {
    margin-top: 3rem !important; }
  .mr-lg-12,
  .mx-lg-12 {
    margin-right: 3rem !important; }
  .mb-lg-12,
  .my-lg-12 {
    margin-bottom: 3rem !important; }
  .ml-lg-12,
  .mx-lg-12 {
    margin-left: 3rem !important; }
  .m-lg-13 {
    margin: 3.25rem !important; }
  .mt-lg-13,
  .my-lg-13 {
    margin-top: 3.25rem !important; }
  .mr-lg-13,
  .mx-lg-13 {
    margin-right: 3.25rem !important; }
  .mb-lg-13,
  .my-lg-13 {
    margin-bottom: 3.25rem !important; }
  .ml-lg-13,
  .mx-lg-13 {
    margin-left: 3.25rem !important; }
  .m-lg-14 {
    margin: 3.5rem !important; }
  .mt-lg-14,
  .my-lg-14 {
    margin-top: 3.5rem !important; }
  .mr-lg-14,
  .mx-lg-14 {
    margin-right: 3.5rem !important; }
  .mb-lg-14,
  .my-lg-14 {
    margin-bottom: 3.5rem !important; }
  .ml-lg-14,
  .mx-lg-14 {
    margin-left: 3.5rem !important; }
  .m-lg-15 {
    margin: 3.75rem !important; }
  .mt-lg-15,
  .my-lg-15 {
    margin-top: 3.75rem !important; }
  .mr-lg-15,
  .mx-lg-15 {
    margin-right: 3.75rem !important; }
  .mb-lg-15,
  .my-lg-15 {
    margin-bottom: 3.75rem !important; }
  .ml-lg-15,
  .mx-lg-15 {
    margin-left: 3.75rem !important; }
  .m-lg-16 {
    margin: 4rem !important; }
  .mt-lg-16,
  .my-lg-16 {
    margin-top: 4rem !important; }
  .mr-lg-16,
  .mx-lg-16 {
    margin-right: 4rem !important; }
  .mb-lg-16,
  .my-lg-16 {
    margin-bottom: 4rem !important; }
  .ml-lg-16,
  .mx-lg-16 {
    margin-left: 4rem !important; }
  .m-lg-17 {
    margin: 4.25rem !important; }
  .mt-lg-17,
  .my-lg-17 {
    margin-top: 4.25rem !important; }
  .mr-lg-17,
  .mx-lg-17 {
    margin-right: 4.25rem !important; }
  .mb-lg-17,
  .my-lg-17 {
    margin-bottom: 4.25rem !important; }
  .ml-lg-17,
  .mx-lg-17 {
    margin-left: 4.25rem !important; }
  .m-lg-18 {
    margin: 4.5rem !important; }
  .mt-lg-18,
  .my-lg-18 {
    margin-top: 4.5rem !important; }
  .mr-lg-18,
  .mx-lg-18 {
    margin-right: 4.5rem !important; }
  .mb-lg-18,
  .my-lg-18 {
    margin-bottom: 4.5rem !important; }
  .ml-lg-18,
  .mx-lg-18 {
    margin-left: 4.5rem !important; }
  .m-lg-19 {
    margin: 4.75rem !important; }
  .mt-lg-19,
  .my-lg-19 {
    margin-top: 4.75rem !important; }
  .mr-lg-19,
  .mx-lg-19 {
    margin-right: 4.75rem !important; }
  .mb-lg-19,
  .my-lg-19 {
    margin-bottom: 4.75rem !important; }
  .ml-lg-19,
  .mx-lg-19 {
    margin-left: 4.75rem !important; }
  .m-lg-20 {
    margin: 5rem !important; }
  .mt-lg-20,
  .my-lg-20 {
    margin-top: 5rem !important; }
  .mr-lg-20,
  .mx-lg-20 {
    margin-right: 5rem !important; }
  .mb-lg-20,
  .my-lg-20 {
    margin-bottom: 5rem !important; }
  .ml-lg-20,
  .mx-lg-20 {
    margin-left: 5rem !important; }
  .m-lg-21 {
    margin: 5.25rem !important; }
  .mt-lg-21,
  .my-lg-21 {
    margin-top: 5.25rem !important; }
  .mr-lg-21,
  .mx-lg-21 {
    margin-right: 5.25rem !important; }
  .mb-lg-21,
  .my-lg-21 {
    margin-bottom: 5.25rem !important; }
  .ml-lg-21,
  .mx-lg-21 {
    margin-left: 5.25rem !important; }
  .m-lg-22 {
    margin: 5.5rem !important; }
  .mt-lg-22,
  .my-lg-22 {
    margin-top: 5.5rem !important; }
  .mr-lg-22,
  .mx-lg-22 {
    margin-right: 5.5rem !important; }
  .mb-lg-22,
  .my-lg-22 {
    margin-bottom: 5.5rem !important; }
  .ml-lg-22,
  .mx-lg-22 {
    margin-left: 5.5rem !important; }
  .m-lg-23 {
    margin: 5.75rem !important; }
  .mt-lg-23,
  .my-lg-23 {
    margin-top: 5.75rem !important; }
  .mr-lg-23,
  .mx-lg-23 {
    margin-right: 5.75rem !important; }
  .mb-lg-23,
  .my-lg-23 {
    margin-bottom: 5.75rem !important; }
  .ml-lg-23,
  .mx-lg-23 {
    margin-left: 5.75rem !important; }
  .m-lg-24 {
    margin: 6rem !important; }
  .mt-lg-24,
  .my-lg-24 {
    margin-top: 6rem !important; }
  .mr-lg-24,
  .mx-lg-24 {
    margin-right: 6rem !important; }
  .mb-lg-24,
  .my-lg-24 {
    margin-bottom: 6rem !important; }
  .ml-lg-24,
  .mx-lg-24 {
    margin-left: 6rem !important; }
  .m-lg-25 {
    margin: 6.25rem !important; }
  .mt-lg-25,
  .my-lg-25 {
    margin-top: 6.25rem !important; }
  .mr-lg-25,
  .mx-lg-25 {
    margin-right: 6.25rem !important; }
  .mb-lg-25,
  .my-lg-25 {
    margin-bottom: 6.25rem !important; }
  .ml-lg-25,
  .mx-lg-25 {
    margin-left: 6.25rem !important; }
  .m-lg-26 {
    margin: 6.5rem !important; }
  .mt-lg-26,
  .my-lg-26 {
    margin-top: 6.5rem !important; }
  .mr-lg-26,
  .mx-lg-26 {
    margin-right: 6.5rem !important; }
  .mb-lg-26,
  .my-lg-26 {
    margin-bottom: 6.5rem !important; }
  .ml-lg-26,
  .mx-lg-26 {
    margin-left: 6.5rem !important; }
  .m-lg-27 {
    margin: 6.75rem !important; }
  .mt-lg-27,
  .my-lg-27 {
    margin-top: 6.75rem !important; }
  .mr-lg-27,
  .mx-lg-27 {
    margin-right: 6.75rem !important; }
  .mb-lg-27,
  .my-lg-27 {
    margin-bottom: 6.75rem !important; }
  .ml-lg-27,
  .mx-lg-27 {
    margin-left: 6.75rem !important; }
  .m-lg-28 {
    margin: 7rem !important; }
  .mt-lg-28,
  .my-lg-28 {
    margin-top: 7rem !important; }
  .mr-lg-28,
  .mx-lg-28 {
    margin-right: 7rem !important; }
  .mb-lg-28,
  .my-lg-28 {
    margin-bottom: 7rem !important; }
  .ml-lg-28,
  .mx-lg-28 {
    margin-left: 7rem !important; }
  .m-lg-29 {
    margin: 7.25rem !important; }
  .mt-lg-29,
  .my-lg-29 {
    margin-top: 7.25rem !important; }
  .mr-lg-29,
  .mx-lg-29 {
    margin-right: 7.25rem !important; }
  .mb-lg-29,
  .my-lg-29 {
    margin-bottom: 7.25rem !important; }
  .ml-lg-29,
  .mx-lg-29 {
    margin-left: 7.25rem !important; }
  .m-lg-30 {
    margin: 7.5rem !important; }
  .mt-lg-30,
  .my-lg-30 {
    margin-top: 7.5rem !important; }
  .mr-lg-30,
  .mx-lg-30 {
    margin-right: 7.5rem !important; }
  .mb-lg-30,
  .my-lg-30 {
    margin-bottom: 7.5rem !important; }
  .ml-lg-30,
  .mx-lg-30 {
    margin-left: 7.5rem !important; }
  .m-lg-31 {
    margin: 7.75rem !important; }
  .mt-lg-31,
  .my-lg-31 {
    margin-top: 7.75rem !important; }
  .mr-lg-31,
  .mx-lg-31 {
    margin-right: 7.75rem !important; }
  .mb-lg-31,
  .my-lg-31 {
    margin-bottom: 7.75rem !important; }
  .ml-lg-31,
  .mx-lg-31 {
    margin-left: 7.75rem !important; }
  .m-lg-32 {
    margin: 8rem !important; }
  .mt-lg-32,
  .my-lg-32 {
    margin-top: 8rem !important; }
  .mr-lg-32,
  .mx-lg-32 {
    margin-right: 8rem !important; }
  .mb-lg-32,
  .my-lg-32 {
    margin-bottom: 8rem !important; }
  .ml-lg-32,
  .mx-lg-32 {
    margin-left: 8rem !important; }
  .m-lg-33 {
    margin: 8.25rem !important; }
  .mt-lg-33,
  .my-lg-33 {
    margin-top: 8.25rem !important; }
  .mr-lg-33,
  .mx-lg-33 {
    margin-right: 8.25rem !important; }
  .mb-lg-33,
  .my-lg-33 {
    margin-bottom: 8.25rem !important; }
  .ml-lg-33,
  .mx-lg-33 {
    margin-left: 8.25rem !important; }
  .m-lg-34 {
    margin: 8.5rem !important; }
  .mt-lg-34,
  .my-lg-34 {
    margin-top: 8.5rem !important; }
  .mr-lg-34,
  .mx-lg-34 {
    margin-right: 8.5rem !important; }
  .mb-lg-34,
  .my-lg-34 {
    margin-bottom: 8.5rem !important; }
  .ml-lg-34,
  .mx-lg-34 {
    margin-left: 8.5rem !important; }
  .m-lg-35 {
    margin: 8.75rem !important; }
  .mt-lg-35,
  .my-lg-35 {
    margin-top: 8.75rem !important; }
  .mr-lg-35,
  .mx-lg-35 {
    margin-right: 8.75rem !important; }
  .mb-lg-35,
  .my-lg-35 {
    margin-bottom: 8.75rem !important; }
  .ml-lg-35,
  .mx-lg-35 {
    margin-left: 8.75rem !important; }
  .m-lg-36 {
    margin: 9rem !important; }
  .mt-lg-36,
  .my-lg-36 {
    margin-top: 9rem !important; }
  .mr-lg-36,
  .mx-lg-36 {
    margin-right: 9rem !important; }
  .mb-lg-36,
  .my-lg-36 {
    margin-bottom: 9rem !important; }
  .ml-lg-36,
  .mx-lg-36 {
    margin-left: 9rem !important; }
  .m-lg-37 {
    margin: 9.25rem !important; }
  .mt-lg-37,
  .my-lg-37 {
    margin-top: 9.25rem !important; }
  .mr-lg-37,
  .mx-lg-37 {
    margin-right: 9.25rem !important; }
  .mb-lg-37,
  .my-lg-37 {
    margin-bottom: 9.25rem !important; }
  .ml-lg-37,
  .mx-lg-37 {
    margin-left: 9.25rem !important; }
  .m-lg-48 {
    margin: 9.5rem !important; }
  .mt-lg-48,
  .my-lg-48 {
    margin-top: 9.5rem !important; }
  .mr-lg-48,
  .mx-lg-48 {
    margin-right: 9.5rem !important; }
  .mb-lg-48,
  .my-lg-48 {
    margin-bottom: 9.5rem !important; }
  .ml-lg-48,
  .mx-lg-48 {
    margin-left: 9.5rem !important; }
  .m-lg-39 {
    margin: 9.75rem !important; }
  .mt-lg-39,
  .my-lg-39 {
    margin-top: 9.75rem !important; }
  .mr-lg-39,
  .mx-lg-39 {
    margin-right: 9.75rem !important; }
  .mb-lg-39,
  .my-lg-39 {
    margin-bottom: 9.75rem !important; }
  .ml-lg-39,
  .mx-lg-39 {
    margin-left: 9.75rem !important; }
  .m-lg-40 {
    margin: 10rem !important; }
  .mt-lg-40,
  .my-lg-40 {
    margin-top: 10rem !important; }
  .mr-lg-40,
  .mx-lg-40 {
    margin-right: 10rem !important; }
  .mb-lg-40,
  .my-lg-40 {
    margin-bottom: 10rem !important; }
  .ml-lg-40,
  .mx-lg-40 {
    margin-left: 10rem !important; }
  .p-lg-0 {
    padding: 0 !important; }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important; }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important; }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important; }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important; }
  .p-lg-1 {
    padding: 0.25rem !important; }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important; }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important; }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important; }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important; }
  .p-lg-2 {
    padding: 0.5rem !important; }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important; }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important; }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important; }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important; }
  .p-lg-3 {
    padding: 0.75rem !important; }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 0.75rem !important; }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 0.75rem !important; }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 0.75rem !important; }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 0.75rem !important; }
  .p-lg-4 {
    padding: 1rem !important; }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1rem !important; }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1rem !important; }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1rem !important; }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1rem !important; }
  .p-lg-5 {
    padding: 1.25rem !important; }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 1.25rem !important; }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 1.25rem !important; }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 1.25rem !important; }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 1.25rem !important; }
  .p-lg-6 {
    padding: 1.5rem !important; }
  .pt-lg-6,
  .py-lg-6 {
    padding-top: 1.5rem !important; }
  .pr-lg-6,
  .px-lg-6 {
    padding-right: 1.5rem !important; }
  .pb-lg-6,
  .py-lg-6 {
    padding-bottom: 1.5rem !important; }
  .pl-lg-6,
  .px-lg-6 {
    padding-left: 1.5rem !important; }
  .p-lg-7 {
    padding: 1.75rem !important; }
  .pt-lg-7,
  .py-lg-7 {
    padding-top: 1.75rem !important; }
  .pr-lg-7,
  .px-lg-7 {
    padding-right: 1.75rem !important; }
  .pb-lg-7,
  .py-lg-7 {
    padding-bottom: 1.75rem !important; }
  .pl-lg-7,
  .px-lg-7 {
    padding-left: 1.75rem !important; }
  .p-lg-8 {
    padding: 2rem !important; }
  .pt-lg-8,
  .py-lg-8 {
    padding-top: 2rem !important; }
  .pr-lg-8,
  .px-lg-8 {
    padding-right: 2rem !important; }
  .pb-lg-8,
  .py-lg-8 {
    padding-bottom: 2rem !important; }
  .pl-lg-8,
  .px-lg-8 {
    padding-left: 2rem !important; }
  .p-lg-9 {
    padding: 2.25rem !important; }
  .pt-lg-9,
  .py-lg-9 {
    padding-top: 2.25rem !important; }
  .pr-lg-9,
  .px-lg-9 {
    padding-right: 2.25rem !important; }
  .pb-lg-9,
  .py-lg-9 {
    padding-bottom: 2.25rem !important; }
  .pl-lg-9,
  .px-lg-9 {
    padding-left: 2.25rem !important; }
  .p-lg-10 {
    padding: 2.5rem !important; }
  .pt-lg-10,
  .py-lg-10 {
    padding-top: 2.5rem !important; }
  .pr-lg-10,
  .px-lg-10 {
    padding-right: 2.5rem !important; }
  .pb-lg-10,
  .py-lg-10 {
    padding-bottom: 2.5rem !important; }
  .pl-lg-10,
  .px-lg-10 {
    padding-left: 2.5rem !important; }
  .p-lg-11 {
    padding: 2.75rem !important; }
  .pt-lg-11,
  .py-lg-11 {
    padding-top: 2.75rem !important; }
  .pr-lg-11,
  .px-lg-11 {
    padding-right: 2.75rem !important; }
  .pb-lg-11,
  .py-lg-11 {
    padding-bottom: 2.75rem !important; }
  .pl-lg-11,
  .px-lg-11 {
    padding-left: 2.75rem !important; }
  .p-lg-12 {
    padding: 3rem !important; }
  .pt-lg-12,
  .py-lg-12 {
    padding-top: 3rem !important; }
  .pr-lg-12,
  .px-lg-12 {
    padding-right: 3rem !important; }
  .pb-lg-12,
  .py-lg-12 {
    padding-bottom: 3rem !important; }
  .pl-lg-12,
  .px-lg-12 {
    padding-left: 3rem !important; }
  .p-lg-13 {
    padding: 3.25rem !important; }
  .pt-lg-13,
  .py-lg-13 {
    padding-top: 3.25rem !important; }
  .pr-lg-13,
  .px-lg-13 {
    padding-right: 3.25rem !important; }
  .pb-lg-13,
  .py-lg-13 {
    padding-bottom: 3.25rem !important; }
  .pl-lg-13,
  .px-lg-13 {
    padding-left: 3.25rem !important; }
  .p-lg-14 {
    padding: 3.5rem !important; }
  .pt-lg-14,
  .py-lg-14 {
    padding-top: 3.5rem !important; }
  .pr-lg-14,
  .px-lg-14 {
    padding-right: 3.5rem !important; }
  .pb-lg-14,
  .py-lg-14 {
    padding-bottom: 3.5rem !important; }
  .pl-lg-14,
  .px-lg-14 {
    padding-left: 3.5rem !important; }
  .p-lg-15 {
    padding: 3.75rem !important; }
  .pt-lg-15,
  .py-lg-15 {
    padding-top: 3.75rem !important; }
  .pr-lg-15,
  .px-lg-15 {
    padding-right: 3.75rem !important; }
  .pb-lg-15,
  .py-lg-15 {
    padding-bottom: 3.75rem !important; }
  .pl-lg-15,
  .px-lg-15 {
    padding-left: 3.75rem !important; }
  .p-lg-16 {
    padding: 4rem !important; }
  .pt-lg-16,
  .py-lg-16 {
    padding-top: 4rem !important; }
  .pr-lg-16,
  .px-lg-16 {
    padding-right: 4rem !important; }
  .pb-lg-16,
  .py-lg-16 {
    padding-bottom: 4rem !important; }
  .pl-lg-16,
  .px-lg-16 {
    padding-left: 4rem !important; }
  .p-lg-17 {
    padding: 4.25rem !important; }
  .pt-lg-17,
  .py-lg-17 {
    padding-top: 4.25rem !important; }
  .pr-lg-17,
  .px-lg-17 {
    padding-right: 4.25rem !important; }
  .pb-lg-17,
  .py-lg-17 {
    padding-bottom: 4.25rem !important; }
  .pl-lg-17,
  .px-lg-17 {
    padding-left: 4.25rem !important; }
  .p-lg-18 {
    padding: 4.5rem !important; }
  .pt-lg-18,
  .py-lg-18 {
    padding-top: 4.5rem !important; }
  .pr-lg-18,
  .px-lg-18 {
    padding-right: 4.5rem !important; }
  .pb-lg-18,
  .py-lg-18 {
    padding-bottom: 4.5rem !important; }
  .pl-lg-18,
  .px-lg-18 {
    padding-left: 4.5rem !important; }
  .p-lg-19 {
    padding: 4.75rem !important; }
  .pt-lg-19,
  .py-lg-19 {
    padding-top: 4.75rem !important; }
  .pr-lg-19,
  .px-lg-19 {
    padding-right: 4.75rem !important; }
  .pb-lg-19,
  .py-lg-19 {
    padding-bottom: 4.75rem !important; }
  .pl-lg-19,
  .px-lg-19 {
    padding-left: 4.75rem !important; }
  .p-lg-20 {
    padding: 5rem !important; }
  .pt-lg-20,
  .py-lg-20 {
    padding-top: 5rem !important; }
  .pr-lg-20,
  .px-lg-20 {
    padding-right: 5rem !important; }
  .pb-lg-20,
  .py-lg-20 {
    padding-bottom: 5rem !important; }
  .pl-lg-20,
  .px-lg-20 {
    padding-left: 5rem !important; }
  .p-lg-21 {
    padding: 5.25rem !important; }
  .pt-lg-21,
  .py-lg-21 {
    padding-top: 5.25rem !important; }
  .pr-lg-21,
  .px-lg-21 {
    padding-right: 5.25rem !important; }
  .pb-lg-21,
  .py-lg-21 {
    padding-bottom: 5.25rem !important; }
  .pl-lg-21,
  .px-lg-21 {
    padding-left: 5.25rem !important; }
  .p-lg-22 {
    padding: 5.5rem !important; }
  .pt-lg-22,
  .py-lg-22 {
    padding-top: 5.5rem !important; }
  .pr-lg-22,
  .px-lg-22 {
    padding-right: 5.5rem !important; }
  .pb-lg-22,
  .py-lg-22 {
    padding-bottom: 5.5rem !important; }
  .pl-lg-22,
  .px-lg-22 {
    padding-left: 5.5rem !important; }
  .p-lg-23 {
    padding: 5.75rem !important; }
  .pt-lg-23,
  .py-lg-23 {
    padding-top: 5.75rem !important; }
  .pr-lg-23,
  .px-lg-23 {
    padding-right: 5.75rem !important; }
  .pb-lg-23,
  .py-lg-23 {
    padding-bottom: 5.75rem !important; }
  .pl-lg-23,
  .px-lg-23 {
    padding-left: 5.75rem !important; }
  .p-lg-24 {
    padding: 6rem !important; }
  .pt-lg-24,
  .py-lg-24 {
    padding-top: 6rem !important; }
  .pr-lg-24,
  .px-lg-24 {
    padding-right: 6rem !important; }
  .pb-lg-24,
  .py-lg-24 {
    padding-bottom: 6rem !important; }
  .pl-lg-24,
  .px-lg-24 {
    padding-left: 6rem !important; }
  .p-lg-25 {
    padding: 6.25rem !important; }
  .pt-lg-25,
  .py-lg-25 {
    padding-top: 6.25rem !important; }
  .pr-lg-25,
  .px-lg-25 {
    padding-right: 6.25rem !important; }
  .pb-lg-25,
  .py-lg-25 {
    padding-bottom: 6.25rem !important; }
  .pl-lg-25,
  .px-lg-25 {
    padding-left: 6.25rem !important; }
  .p-lg-26 {
    padding: 6.5rem !important; }
  .pt-lg-26,
  .py-lg-26 {
    padding-top: 6.5rem !important; }
  .pr-lg-26,
  .px-lg-26 {
    padding-right: 6.5rem !important; }
  .pb-lg-26,
  .py-lg-26 {
    padding-bottom: 6.5rem !important; }
  .pl-lg-26,
  .px-lg-26 {
    padding-left: 6.5rem !important; }
  .p-lg-27 {
    padding: 6.75rem !important; }
  .pt-lg-27,
  .py-lg-27 {
    padding-top: 6.75rem !important; }
  .pr-lg-27,
  .px-lg-27 {
    padding-right: 6.75rem !important; }
  .pb-lg-27,
  .py-lg-27 {
    padding-bottom: 6.75rem !important; }
  .pl-lg-27,
  .px-lg-27 {
    padding-left: 6.75rem !important; }
  .p-lg-28 {
    padding: 7rem !important; }
  .pt-lg-28,
  .py-lg-28 {
    padding-top: 7rem !important; }
  .pr-lg-28,
  .px-lg-28 {
    padding-right: 7rem !important; }
  .pb-lg-28,
  .py-lg-28 {
    padding-bottom: 7rem !important; }
  .pl-lg-28,
  .px-lg-28 {
    padding-left: 7rem !important; }
  .p-lg-29 {
    padding: 7.25rem !important; }
  .pt-lg-29,
  .py-lg-29 {
    padding-top: 7.25rem !important; }
  .pr-lg-29,
  .px-lg-29 {
    padding-right: 7.25rem !important; }
  .pb-lg-29,
  .py-lg-29 {
    padding-bottom: 7.25rem !important; }
  .pl-lg-29,
  .px-lg-29 {
    padding-left: 7.25rem !important; }
  .p-lg-30 {
    padding: 7.5rem !important; }
  .pt-lg-30,
  .py-lg-30 {
    padding-top: 7.5rem !important; }
  .pr-lg-30,
  .px-lg-30 {
    padding-right: 7.5rem !important; }
  .pb-lg-30,
  .py-lg-30 {
    padding-bottom: 7.5rem !important; }
  .pl-lg-30,
  .px-lg-30 {
    padding-left: 7.5rem !important; }
  .p-lg-31 {
    padding: 7.75rem !important; }
  .pt-lg-31,
  .py-lg-31 {
    padding-top: 7.75rem !important; }
  .pr-lg-31,
  .px-lg-31 {
    padding-right: 7.75rem !important; }
  .pb-lg-31,
  .py-lg-31 {
    padding-bottom: 7.75rem !important; }
  .pl-lg-31,
  .px-lg-31 {
    padding-left: 7.75rem !important; }
  .p-lg-32 {
    padding: 8rem !important; }
  .pt-lg-32,
  .py-lg-32 {
    padding-top: 8rem !important; }
  .pr-lg-32,
  .px-lg-32 {
    padding-right: 8rem !important; }
  .pb-lg-32,
  .py-lg-32 {
    padding-bottom: 8rem !important; }
  .pl-lg-32,
  .px-lg-32 {
    padding-left: 8rem !important; }
  .p-lg-33 {
    padding: 8.25rem !important; }
  .pt-lg-33,
  .py-lg-33 {
    padding-top: 8.25rem !important; }
  .pr-lg-33,
  .px-lg-33 {
    padding-right: 8.25rem !important; }
  .pb-lg-33,
  .py-lg-33 {
    padding-bottom: 8.25rem !important; }
  .pl-lg-33,
  .px-lg-33 {
    padding-left: 8.25rem !important; }
  .p-lg-34 {
    padding: 8.5rem !important; }
  .pt-lg-34,
  .py-lg-34 {
    padding-top: 8.5rem !important; }
  .pr-lg-34,
  .px-lg-34 {
    padding-right: 8.5rem !important; }
  .pb-lg-34,
  .py-lg-34 {
    padding-bottom: 8.5rem !important; }
  .pl-lg-34,
  .px-lg-34 {
    padding-left: 8.5rem !important; }
  .p-lg-35 {
    padding: 8.75rem !important; }
  .pt-lg-35,
  .py-lg-35 {
    padding-top: 8.75rem !important; }
  .pr-lg-35,
  .px-lg-35 {
    padding-right: 8.75rem !important; }
  .pb-lg-35,
  .py-lg-35 {
    padding-bottom: 8.75rem !important; }
  .pl-lg-35,
  .px-lg-35 {
    padding-left: 8.75rem !important; }
  .p-lg-36 {
    padding: 9rem !important; }
  .pt-lg-36,
  .py-lg-36 {
    padding-top: 9rem !important; }
  .pr-lg-36,
  .px-lg-36 {
    padding-right: 9rem !important; }
  .pb-lg-36,
  .py-lg-36 {
    padding-bottom: 9rem !important; }
  .pl-lg-36,
  .px-lg-36 {
    padding-left: 9rem !important; }
  .p-lg-37 {
    padding: 9.25rem !important; }
  .pt-lg-37,
  .py-lg-37 {
    padding-top: 9.25rem !important; }
  .pr-lg-37,
  .px-lg-37 {
    padding-right: 9.25rem !important; }
  .pb-lg-37,
  .py-lg-37 {
    padding-bottom: 9.25rem !important; }
  .pl-lg-37,
  .px-lg-37 {
    padding-left: 9.25rem !important; }
  .p-lg-48 {
    padding: 9.5rem !important; }
  .pt-lg-48,
  .py-lg-48 {
    padding-top: 9.5rem !important; }
  .pr-lg-48,
  .px-lg-48 {
    padding-right: 9.5rem !important; }
  .pb-lg-48,
  .py-lg-48 {
    padding-bottom: 9.5rem !important; }
  .pl-lg-48,
  .px-lg-48 {
    padding-left: 9.5rem !important; }
  .p-lg-39 {
    padding: 9.75rem !important; }
  .pt-lg-39,
  .py-lg-39 {
    padding-top: 9.75rem !important; }
  .pr-lg-39,
  .px-lg-39 {
    padding-right: 9.75rem !important; }
  .pb-lg-39,
  .py-lg-39 {
    padding-bottom: 9.75rem !important; }
  .pl-lg-39,
  .px-lg-39 {
    padding-left: 9.75rem !important; }
  .p-lg-40 {
    padding: 10rem !important; }
  .pt-lg-40,
  .py-lg-40 {
    padding-top: 10rem !important; }
  .pr-lg-40,
  .px-lg-40 {
    padding-right: 10rem !important; }
  .pb-lg-40,
  .py-lg-40 {
    padding-bottom: 10rem !important; }
  .pl-lg-40,
  .px-lg-40 {
    padding-left: 10rem !important; }
  .m-lg-n1 {
    margin: -0.25rem !important; }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important; }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important; }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important; }
  .m-lg-n2 {
    margin: -0.5rem !important; }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important; }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important; }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important; }
  .m-lg-n3 {
    margin: -0.75rem !important; }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -0.75rem !important; }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -0.75rem !important; }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -0.75rem !important; }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -0.75rem !important; }
  .m-lg-n4 {
    margin: -1rem !important; }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1rem !important; }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1rem !important; }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1rem !important; }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1rem !important; }
  .m-lg-n5 {
    margin: -1.25rem !important; }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -1.25rem !important; }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -1.25rem !important; }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -1.25rem !important; }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -1.25rem !important; }
  .m-lg-n6 {
    margin: -1.5rem !important; }
  .mt-lg-n6,
  .my-lg-n6 {
    margin-top: -1.5rem !important; }
  .mr-lg-n6,
  .mx-lg-n6 {
    margin-right: -1.5rem !important; }
  .mb-lg-n6,
  .my-lg-n6 {
    margin-bottom: -1.5rem !important; }
  .ml-lg-n6,
  .mx-lg-n6 {
    margin-left: -1.5rem !important; }
  .m-lg-n7 {
    margin: -1.75rem !important; }
  .mt-lg-n7,
  .my-lg-n7 {
    margin-top: -1.75rem !important; }
  .mr-lg-n7,
  .mx-lg-n7 {
    margin-right: -1.75rem !important; }
  .mb-lg-n7,
  .my-lg-n7 {
    margin-bottom: -1.75rem !important; }
  .ml-lg-n7,
  .mx-lg-n7 {
    margin-left: -1.75rem !important; }
  .m-lg-n8 {
    margin: -2rem !important; }
  .mt-lg-n8,
  .my-lg-n8 {
    margin-top: -2rem !important; }
  .mr-lg-n8,
  .mx-lg-n8 {
    margin-right: -2rem !important; }
  .mb-lg-n8,
  .my-lg-n8 {
    margin-bottom: -2rem !important; }
  .ml-lg-n8,
  .mx-lg-n8 {
    margin-left: -2rem !important; }
  .m-lg-n9 {
    margin: -2.25rem !important; }
  .mt-lg-n9,
  .my-lg-n9 {
    margin-top: -2.25rem !important; }
  .mr-lg-n9,
  .mx-lg-n9 {
    margin-right: -2.25rem !important; }
  .mb-lg-n9,
  .my-lg-n9 {
    margin-bottom: -2.25rem !important; }
  .ml-lg-n9,
  .mx-lg-n9 {
    margin-left: -2.25rem !important; }
  .m-lg-n10 {
    margin: -2.5rem !important; }
  .mt-lg-n10,
  .my-lg-n10 {
    margin-top: -2.5rem !important; }
  .mr-lg-n10,
  .mx-lg-n10 {
    margin-right: -2.5rem !important; }
  .mb-lg-n10,
  .my-lg-n10 {
    margin-bottom: -2.5rem !important; }
  .ml-lg-n10,
  .mx-lg-n10 {
    margin-left: -2.5rem !important; }
  .m-lg-n11 {
    margin: -2.75rem !important; }
  .mt-lg-n11,
  .my-lg-n11 {
    margin-top: -2.75rem !important; }
  .mr-lg-n11,
  .mx-lg-n11 {
    margin-right: -2.75rem !important; }
  .mb-lg-n11,
  .my-lg-n11 {
    margin-bottom: -2.75rem !important; }
  .ml-lg-n11,
  .mx-lg-n11 {
    margin-left: -2.75rem !important; }
  .m-lg-n12 {
    margin: -3rem !important; }
  .mt-lg-n12,
  .my-lg-n12 {
    margin-top: -3rem !important; }
  .mr-lg-n12,
  .mx-lg-n12 {
    margin-right: -3rem !important; }
  .mb-lg-n12,
  .my-lg-n12 {
    margin-bottom: -3rem !important; }
  .ml-lg-n12,
  .mx-lg-n12 {
    margin-left: -3rem !important; }
  .m-lg-n13 {
    margin: -3.25rem !important; }
  .mt-lg-n13,
  .my-lg-n13 {
    margin-top: -3.25rem !important; }
  .mr-lg-n13,
  .mx-lg-n13 {
    margin-right: -3.25rem !important; }
  .mb-lg-n13,
  .my-lg-n13 {
    margin-bottom: -3.25rem !important; }
  .ml-lg-n13,
  .mx-lg-n13 {
    margin-left: -3.25rem !important; }
  .m-lg-n14 {
    margin: -3.5rem !important; }
  .mt-lg-n14,
  .my-lg-n14 {
    margin-top: -3.5rem !important; }
  .mr-lg-n14,
  .mx-lg-n14 {
    margin-right: -3.5rem !important; }
  .mb-lg-n14,
  .my-lg-n14 {
    margin-bottom: -3.5rem !important; }
  .ml-lg-n14,
  .mx-lg-n14 {
    margin-left: -3.5rem !important; }
  .m-lg-n15 {
    margin: -3.75rem !important; }
  .mt-lg-n15,
  .my-lg-n15 {
    margin-top: -3.75rem !important; }
  .mr-lg-n15,
  .mx-lg-n15 {
    margin-right: -3.75rem !important; }
  .mb-lg-n15,
  .my-lg-n15 {
    margin-bottom: -3.75rem !important; }
  .ml-lg-n15,
  .mx-lg-n15 {
    margin-left: -3.75rem !important; }
  .m-lg-n16 {
    margin: -4rem !important; }
  .mt-lg-n16,
  .my-lg-n16 {
    margin-top: -4rem !important; }
  .mr-lg-n16,
  .mx-lg-n16 {
    margin-right: -4rem !important; }
  .mb-lg-n16,
  .my-lg-n16 {
    margin-bottom: -4rem !important; }
  .ml-lg-n16,
  .mx-lg-n16 {
    margin-left: -4rem !important; }
  .m-lg-n17 {
    margin: -4.25rem !important; }
  .mt-lg-n17,
  .my-lg-n17 {
    margin-top: -4.25rem !important; }
  .mr-lg-n17,
  .mx-lg-n17 {
    margin-right: -4.25rem !important; }
  .mb-lg-n17,
  .my-lg-n17 {
    margin-bottom: -4.25rem !important; }
  .ml-lg-n17,
  .mx-lg-n17 {
    margin-left: -4.25rem !important; }
  .m-lg-n18 {
    margin: -4.5rem !important; }
  .mt-lg-n18,
  .my-lg-n18 {
    margin-top: -4.5rem !important; }
  .mr-lg-n18,
  .mx-lg-n18 {
    margin-right: -4.5rem !important; }
  .mb-lg-n18,
  .my-lg-n18 {
    margin-bottom: -4.5rem !important; }
  .ml-lg-n18,
  .mx-lg-n18 {
    margin-left: -4.5rem !important; }
  .m-lg-n19 {
    margin: -4.75rem !important; }
  .mt-lg-n19,
  .my-lg-n19 {
    margin-top: -4.75rem !important; }
  .mr-lg-n19,
  .mx-lg-n19 {
    margin-right: -4.75rem !important; }
  .mb-lg-n19,
  .my-lg-n19 {
    margin-bottom: -4.75rem !important; }
  .ml-lg-n19,
  .mx-lg-n19 {
    margin-left: -4.75rem !important; }
  .m-lg-n20 {
    margin: -5rem !important; }
  .mt-lg-n20,
  .my-lg-n20 {
    margin-top: -5rem !important; }
  .mr-lg-n20,
  .mx-lg-n20 {
    margin-right: -5rem !important; }
  .mb-lg-n20,
  .my-lg-n20 {
    margin-bottom: -5rem !important; }
  .ml-lg-n20,
  .mx-lg-n20 {
    margin-left: -5rem !important; }
  .m-lg-n21 {
    margin: -5.25rem !important; }
  .mt-lg-n21,
  .my-lg-n21 {
    margin-top: -5.25rem !important; }
  .mr-lg-n21,
  .mx-lg-n21 {
    margin-right: -5.25rem !important; }
  .mb-lg-n21,
  .my-lg-n21 {
    margin-bottom: -5.25rem !important; }
  .ml-lg-n21,
  .mx-lg-n21 {
    margin-left: -5.25rem !important; }
  .m-lg-n22 {
    margin: -5.5rem !important; }
  .mt-lg-n22,
  .my-lg-n22 {
    margin-top: -5.5rem !important; }
  .mr-lg-n22,
  .mx-lg-n22 {
    margin-right: -5.5rem !important; }
  .mb-lg-n22,
  .my-lg-n22 {
    margin-bottom: -5.5rem !important; }
  .ml-lg-n22,
  .mx-lg-n22 {
    margin-left: -5.5rem !important; }
  .m-lg-n23 {
    margin: -5.75rem !important; }
  .mt-lg-n23,
  .my-lg-n23 {
    margin-top: -5.75rem !important; }
  .mr-lg-n23,
  .mx-lg-n23 {
    margin-right: -5.75rem !important; }
  .mb-lg-n23,
  .my-lg-n23 {
    margin-bottom: -5.75rem !important; }
  .ml-lg-n23,
  .mx-lg-n23 {
    margin-left: -5.75rem !important; }
  .m-lg-n24 {
    margin: -6rem !important; }
  .mt-lg-n24,
  .my-lg-n24 {
    margin-top: -6rem !important; }
  .mr-lg-n24,
  .mx-lg-n24 {
    margin-right: -6rem !important; }
  .mb-lg-n24,
  .my-lg-n24 {
    margin-bottom: -6rem !important; }
  .ml-lg-n24,
  .mx-lg-n24 {
    margin-left: -6rem !important; }
  .m-lg-n25 {
    margin: -6.25rem !important; }
  .mt-lg-n25,
  .my-lg-n25 {
    margin-top: -6.25rem !important; }
  .mr-lg-n25,
  .mx-lg-n25 {
    margin-right: -6.25rem !important; }
  .mb-lg-n25,
  .my-lg-n25 {
    margin-bottom: -6.25rem !important; }
  .ml-lg-n25,
  .mx-lg-n25 {
    margin-left: -6.25rem !important; }
  .m-lg-n26 {
    margin: -6.5rem !important; }
  .mt-lg-n26,
  .my-lg-n26 {
    margin-top: -6.5rem !important; }
  .mr-lg-n26,
  .mx-lg-n26 {
    margin-right: -6.5rem !important; }
  .mb-lg-n26,
  .my-lg-n26 {
    margin-bottom: -6.5rem !important; }
  .ml-lg-n26,
  .mx-lg-n26 {
    margin-left: -6.5rem !important; }
  .m-lg-n27 {
    margin: -6.75rem !important; }
  .mt-lg-n27,
  .my-lg-n27 {
    margin-top: -6.75rem !important; }
  .mr-lg-n27,
  .mx-lg-n27 {
    margin-right: -6.75rem !important; }
  .mb-lg-n27,
  .my-lg-n27 {
    margin-bottom: -6.75rem !important; }
  .ml-lg-n27,
  .mx-lg-n27 {
    margin-left: -6.75rem !important; }
  .m-lg-n28 {
    margin: -7rem !important; }
  .mt-lg-n28,
  .my-lg-n28 {
    margin-top: -7rem !important; }
  .mr-lg-n28,
  .mx-lg-n28 {
    margin-right: -7rem !important; }
  .mb-lg-n28,
  .my-lg-n28 {
    margin-bottom: -7rem !important; }
  .ml-lg-n28,
  .mx-lg-n28 {
    margin-left: -7rem !important; }
  .m-lg-n29 {
    margin: -7.25rem !important; }
  .mt-lg-n29,
  .my-lg-n29 {
    margin-top: -7.25rem !important; }
  .mr-lg-n29,
  .mx-lg-n29 {
    margin-right: -7.25rem !important; }
  .mb-lg-n29,
  .my-lg-n29 {
    margin-bottom: -7.25rem !important; }
  .ml-lg-n29,
  .mx-lg-n29 {
    margin-left: -7.25rem !important; }
  .m-lg-n30 {
    margin: -7.5rem !important; }
  .mt-lg-n30,
  .my-lg-n30 {
    margin-top: -7.5rem !important; }
  .mr-lg-n30,
  .mx-lg-n30 {
    margin-right: -7.5rem !important; }
  .mb-lg-n30,
  .my-lg-n30 {
    margin-bottom: -7.5rem !important; }
  .ml-lg-n30,
  .mx-lg-n30 {
    margin-left: -7.5rem !important; }
  .m-lg-n31 {
    margin: -7.75rem !important; }
  .mt-lg-n31,
  .my-lg-n31 {
    margin-top: -7.75rem !important; }
  .mr-lg-n31,
  .mx-lg-n31 {
    margin-right: -7.75rem !important; }
  .mb-lg-n31,
  .my-lg-n31 {
    margin-bottom: -7.75rem !important; }
  .ml-lg-n31,
  .mx-lg-n31 {
    margin-left: -7.75rem !important; }
  .m-lg-n32 {
    margin: -8rem !important; }
  .mt-lg-n32,
  .my-lg-n32 {
    margin-top: -8rem !important; }
  .mr-lg-n32,
  .mx-lg-n32 {
    margin-right: -8rem !important; }
  .mb-lg-n32,
  .my-lg-n32 {
    margin-bottom: -8rem !important; }
  .ml-lg-n32,
  .mx-lg-n32 {
    margin-left: -8rem !important; }
  .m-lg-n33 {
    margin: -8.25rem !important; }
  .mt-lg-n33,
  .my-lg-n33 {
    margin-top: -8.25rem !important; }
  .mr-lg-n33,
  .mx-lg-n33 {
    margin-right: -8.25rem !important; }
  .mb-lg-n33,
  .my-lg-n33 {
    margin-bottom: -8.25rem !important; }
  .ml-lg-n33,
  .mx-lg-n33 {
    margin-left: -8.25rem !important; }
  .m-lg-n34 {
    margin: -8.5rem !important; }
  .mt-lg-n34,
  .my-lg-n34 {
    margin-top: -8.5rem !important; }
  .mr-lg-n34,
  .mx-lg-n34 {
    margin-right: -8.5rem !important; }
  .mb-lg-n34,
  .my-lg-n34 {
    margin-bottom: -8.5rem !important; }
  .ml-lg-n34,
  .mx-lg-n34 {
    margin-left: -8.5rem !important; }
  .m-lg-n35 {
    margin: -8.75rem !important; }
  .mt-lg-n35,
  .my-lg-n35 {
    margin-top: -8.75rem !important; }
  .mr-lg-n35,
  .mx-lg-n35 {
    margin-right: -8.75rem !important; }
  .mb-lg-n35,
  .my-lg-n35 {
    margin-bottom: -8.75rem !important; }
  .ml-lg-n35,
  .mx-lg-n35 {
    margin-left: -8.75rem !important; }
  .m-lg-n36 {
    margin: -9rem !important; }
  .mt-lg-n36,
  .my-lg-n36 {
    margin-top: -9rem !important; }
  .mr-lg-n36,
  .mx-lg-n36 {
    margin-right: -9rem !important; }
  .mb-lg-n36,
  .my-lg-n36 {
    margin-bottom: -9rem !important; }
  .ml-lg-n36,
  .mx-lg-n36 {
    margin-left: -9rem !important; }
  .m-lg-n37 {
    margin: -9.25rem !important; }
  .mt-lg-n37,
  .my-lg-n37 {
    margin-top: -9.25rem !important; }
  .mr-lg-n37,
  .mx-lg-n37 {
    margin-right: -9.25rem !important; }
  .mb-lg-n37,
  .my-lg-n37 {
    margin-bottom: -9.25rem !important; }
  .ml-lg-n37,
  .mx-lg-n37 {
    margin-left: -9.25rem !important; }
  .m-lg-n48 {
    margin: -9.5rem !important; }
  .mt-lg-n48,
  .my-lg-n48 {
    margin-top: -9.5rem !important; }
  .mr-lg-n48,
  .mx-lg-n48 {
    margin-right: -9.5rem !important; }
  .mb-lg-n48,
  .my-lg-n48 {
    margin-bottom: -9.5rem !important; }
  .ml-lg-n48,
  .mx-lg-n48 {
    margin-left: -9.5rem !important; }
  .m-lg-n39 {
    margin: -9.75rem !important; }
  .mt-lg-n39,
  .my-lg-n39 {
    margin-top: -9.75rem !important; }
  .mr-lg-n39,
  .mx-lg-n39 {
    margin-right: -9.75rem !important; }
  .mb-lg-n39,
  .my-lg-n39 {
    margin-bottom: -9.75rem !important; }
  .ml-lg-n39,
  .mx-lg-n39 {
    margin-left: -9.75rem !important; }
  .m-lg-n40 {
    margin: -10rem !important; }
  .mt-lg-n40,
  .my-lg-n40 {
    margin-top: -10rem !important; }
  .mr-lg-n40,
  .mx-lg-n40 {
    margin-right: -10rem !important; }
  .mb-lg-n40,
  .my-lg-n40 {
    margin-bottom: -10rem !important; }
  .ml-lg-n40,
  .mx-lg-n40 {
    margin-left: -10rem !important; }
  .m-lg-auto {
    margin: auto !important; }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important; }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important; }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important; }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important; } }

@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important; }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important; }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important; }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important; }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important; }
  .m-xl-1 {
    margin: 0.25rem !important; }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important; }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important; }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important; }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important; }
  .m-xl-2 {
    margin: 0.5rem !important; }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important; }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important; }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important; }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important; }
  .m-xl-3 {
    margin: 0.75rem !important; }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 0.75rem !important; }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 0.75rem !important; }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 0.75rem !important; }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 0.75rem !important; }
  .m-xl-4 {
    margin: 1rem !important; }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1rem !important; }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1rem !important; }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1rem !important; }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1rem !important; }
  .m-xl-5 {
    margin: 1.25rem !important; }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 1.25rem !important; }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 1.25rem !important; }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 1.25rem !important; }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 1.25rem !important; }
  .m-xl-6 {
    margin: 1.5rem !important; }
  .mt-xl-6,
  .my-xl-6 {
    margin-top: 1.5rem !important; }
  .mr-xl-6,
  .mx-xl-6 {
    margin-right: 1.5rem !important; }
  .mb-xl-6,
  .my-xl-6 {
    margin-bottom: 1.5rem !important; }
  .ml-xl-6,
  .mx-xl-6 {
    margin-left: 1.5rem !important; }
  .m-xl-7 {
    margin: 1.75rem !important; }
  .mt-xl-7,
  .my-xl-7 {
    margin-top: 1.75rem !important; }
  .mr-xl-7,
  .mx-xl-7 {
    margin-right: 1.75rem !important; }
  .mb-xl-7,
  .my-xl-7 {
    margin-bottom: 1.75rem !important; }
  .ml-xl-7,
  .mx-xl-7 {
    margin-left: 1.75rem !important; }
  .m-xl-8 {
    margin: 2rem !important; }
  .mt-xl-8,
  .my-xl-8 {
    margin-top: 2rem !important; }
  .mr-xl-8,
  .mx-xl-8 {
    margin-right: 2rem !important; }
  .mb-xl-8,
  .my-xl-8 {
    margin-bottom: 2rem !important; }
  .ml-xl-8,
  .mx-xl-8 {
    margin-left: 2rem !important; }
  .m-xl-9 {
    margin: 2.25rem !important; }
  .mt-xl-9,
  .my-xl-9 {
    margin-top: 2.25rem !important; }
  .mr-xl-9,
  .mx-xl-9 {
    margin-right: 2.25rem !important; }
  .mb-xl-9,
  .my-xl-9 {
    margin-bottom: 2.25rem !important; }
  .ml-xl-9,
  .mx-xl-9 {
    margin-left: 2.25rem !important; }
  .m-xl-10 {
    margin: 2.5rem !important; }
  .mt-xl-10,
  .my-xl-10 {
    margin-top: 2.5rem !important; }
  .mr-xl-10,
  .mx-xl-10 {
    margin-right: 2.5rem !important; }
  .mb-xl-10,
  .my-xl-10 {
    margin-bottom: 2.5rem !important; }
  .ml-xl-10,
  .mx-xl-10 {
    margin-left: 2.5rem !important; }
  .m-xl-11 {
    margin: 2.75rem !important; }
  .mt-xl-11,
  .my-xl-11 {
    margin-top: 2.75rem !important; }
  .mr-xl-11,
  .mx-xl-11 {
    margin-right: 2.75rem !important; }
  .mb-xl-11,
  .my-xl-11 {
    margin-bottom: 2.75rem !important; }
  .ml-xl-11,
  .mx-xl-11 {
    margin-left: 2.75rem !important; }
  .m-xl-12 {
    margin: 3rem !important; }
  .mt-xl-12,
  .my-xl-12 {
    margin-top: 3rem !important; }
  .mr-xl-12,
  .mx-xl-12 {
    margin-right: 3rem !important; }
  .mb-xl-12,
  .my-xl-12 {
    margin-bottom: 3rem !important; }
  .ml-xl-12,
  .mx-xl-12 {
    margin-left: 3rem !important; }
  .m-xl-13 {
    margin: 3.25rem !important; }
  .mt-xl-13,
  .my-xl-13 {
    margin-top: 3.25rem !important; }
  .mr-xl-13,
  .mx-xl-13 {
    margin-right: 3.25rem !important; }
  .mb-xl-13,
  .my-xl-13 {
    margin-bottom: 3.25rem !important; }
  .ml-xl-13,
  .mx-xl-13 {
    margin-left: 3.25rem !important; }
  .m-xl-14 {
    margin: 3.5rem !important; }
  .mt-xl-14,
  .my-xl-14 {
    margin-top: 3.5rem !important; }
  .mr-xl-14,
  .mx-xl-14 {
    margin-right: 3.5rem !important; }
  .mb-xl-14,
  .my-xl-14 {
    margin-bottom: 3.5rem !important; }
  .ml-xl-14,
  .mx-xl-14 {
    margin-left: 3.5rem !important; }
  .m-xl-15 {
    margin: 3.75rem !important; }
  .mt-xl-15,
  .my-xl-15 {
    margin-top: 3.75rem !important; }
  .mr-xl-15,
  .mx-xl-15 {
    margin-right: 3.75rem !important; }
  .mb-xl-15,
  .my-xl-15 {
    margin-bottom: 3.75rem !important; }
  .ml-xl-15,
  .mx-xl-15 {
    margin-left: 3.75rem !important; }
  .m-xl-16 {
    margin: 4rem !important; }
  .mt-xl-16,
  .my-xl-16 {
    margin-top: 4rem !important; }
  .mr-xl-16,
  .mx-xl-16 {
    margin-right: 4rem !important; }
  .mb-xl-16,
  .my-xl-16 {
    margin-bottom: 4rem !important; }
  .ml-xl-16,
  .mx-xl-16 {
    margin-left: 4rem !important; }
  .m-xl-17 {
    margin: 4.25rem !important; }
  .mt-xl-17,
  .my-xl-17 {
    margin-top: 4.25rem !important; }
  .mr-xl-17,
  .mx-xl-17 {
    margin-right: 4.25rem !important; }
  .mb-xl-17,
  .my-xl-17 {
    margin-bottom: 4.25rem !important; }
  .ml-xl-17,
  .mx-xl-17 {
    margin-left: 4.25rem !important; }
  .m-xl-18 {
    margin: 4.5rem !important; }
  .mt-xl-18,
  .my-xl-18 {
    margin-top: 4.5rem !important; }
  .mr-xl-18,
  .mx-xl-18 {
    margin-right: 4.5rem !important; }
  .mb-xl-18,
  .my-xl-18 {
    margin-bottom: 4.5rem !important; }
  .ml-xl-18,
  .mx-xl-18 {
    margin-left: 4.5rem !important; }
  .m-xl-19 {
    margin: 4.75rem !important; }
  .mt-xl-19,
  .my-xl-19 {
    margin-top: 4.75rem !important; }
  .mr-xl-19,
  .mx-xl-19 {
    margin-right: 4.75rem !important; }
  .mb-xl-19,
  .my-xl-19 {
    margin-bottom: 4.75rem !important; }
  .ml-xl-19,
  .mx-xl-19 {
    margin-left: 4.75rem !important; }
  .m-xl-20 {
    margin: 5rem !important; }
  .mt-xl-20,
  .my-xl-20 {
    margin-top: 5rem !important; }
  .mr-xl-20,
  .mx-xl-20 {
    margin-right: 5rem !important; }
  .mb-xl-20,
  .my-xl-20 {
    margin-bottom: 5rem !important; }
  .ml-xl-20,
  .mx-xl-20 {
    margin-left: 5rem !important; }
  .m-xl-21 {
    margin: 5.25rem !important; }
  .mt-xl-21,
  .my-xl-21 {
    margin-top: 5.25rem !important; }
  .mr-xl-21,
  .mx-xl-21 {
    margin-right: 5.25rem !important; }
  .mb-xl-21,
  .my-xl-21 {
    margin-bottom: 5.25rem !important; }
  .ml-xl-21,
  .mx-xl-21 {
    margin-left: 5.25rem !important; }
  .m-xl-22 {
    margin: 5.5rem !important; }
  .mt-xl-22,
  .my-xl-22 {
    margin-top: 5.5rem !important; }
  .mr-xl-22,
  .mx-xl-22 {
    margin-right: 5.5rem !important; }
  .mb-xl-22,
  .my-xl-22 {
    margin-bottom: 5.5rem !important; }
  .ml-xl-22,
  .mx-xl-22 {
    margin-left: 5.5rem !important; }
  .m-xl-23 {
    margin: 5.75rem !important; }
  .mt-xl-23,
  .my-xl-23 {
    margin-top: 5.75rem !important; }
  .mr-xl-23,
  .mx-xl-23 {
    margin-right: 5.75rem !important; }
  .mb-xl-23,
  .my-xl-23 {
    margin-bottom: 5.75rem !important; }
  .ml-xl-23,
  .mx-xl-23 {
    margin-left: 5.75rem !important; }
  .m-xl-24 {
    margin: 6rem !important; }
  .mt-xl-24,
  .my-xl-24 {
    margin-top: 6rem !important; }
  .mr-xl-24,
  .mx-xl-24 {
    margin-right: 6rem !important; }
  .mb-xl-24,
  .my-xl-24 {
    margin-bottom: 6rem !important; }
  .ml-xl-24,
  .mx-xl-24 {
    margin-left: 6rem !important; }
  .m-xl-25 {
    margin: 6.25rem !important; }
  .mt-xl-25,
  .my-xl-25 {
    margin-top: 6.25rem !important; }
  .mr-xl-25,
  .mx-xl-25 {
    margin-right: 6.25rem !important; }
  .mb-xl-25,
  .my-xl-25 {
    margin-bottom: 6.25rem !important; }
  .ml-xl-25,
  .mx-xl-25 {
    margin-left: 6.25rem !important; }
  .m-xl-26 {
    margin: 6.5rem !important; }
  .mt-xl-26,
  .my-xl-26 {
    margin-top: 6.5rem !important; }
  .mr-xl-26,
  .mx-xl-26 {
    margin-right: 6.5rem !important; }
  .mb-xl-26,
  .my-xl-26 {
    margin-bottom: 6.5rem !important; }
  .ml-xl-26,
  .mx-xl-26 {
    margin-left: 6.5rem !important; }
  .m-xl-27 {
    margin: 6.75rem !important; }
  .mt-xl-27,
  .my-xl-27 {
    margin-top: 6.75rem !important; }
  .mr-xl-27,
  .mx-xl-27 {
    margin-right: 6.75rem !important; }
  .mb-xl-27,
  .my-xl-27 {
    margin-bottom: 6.75rem !important; }
  .ml-xl-27,
  .mx-xl-27 {
    margin-left: 6.75rem !important; }
  .m-xl-28 {
    margin: 7rem !important; }
  .mt-xl-28,
  .my-xl-28 {
    margin-top: 7rem !important; }
  .mr-xl-28,
  .mx-xl-28 {
    margin-right: 7rem !important; }
  .mb-xl-28,
  .my-xl-28 {
    margin-bottom: 7rem !important; }
  .ml-xl-28,
  .mx-xl-28 {
    margin-left: 7rem !important; }
  .m-xl-29 {
    margin: 7.25rem !important; }
  .mt-xl-29,
  .my-xl-29 {
    margin-top: 7.25rem !important; }
  .mr-xl-29,
  .mx-xl-29 {
    margin-right: 7.25rem !important; }
  .mb-xl-29,
  .my-xl-29 {
    margin-bottom: 7.25rem !important; }
  .ml-xl-29,
  .mx-xl-29 {
    margin-left: 7.25rem !important; }
  .m-xl-30 {
    margin: 7.5rem !important; }
  .mt-xl-30,
  .my-xl-30 {
    margin-top: 7.5rem !important; }
  .mr-xl-30,
  .mx-xl-30 {
    margin-right: 7.5rem !important; }
  .mb-xl-30,
  .my-xl-30 {
    margin-bottom: 7.5rem !important; }
  .ml-xl-30,
  .mx-xl-30 {
    margin-left: 7.5rem !important; }
  .m-xl-31 {
    margin: 7.75rem !important; }
  .mt-xl-31,
  .my-xl-31 {
    margin-top: 7.75rem !important; }
  .mr-xl-31,
  .mx-xl-31 {
    margin-right: 7.75rem !important; }
  .mb-xl-31,
  .my-xl-31 {
    margin-bottom: 7.75rem !important; }
  .ml-xl-31,
  .mx-xl-31 {
    margin-left: 7.75rem !important; }
  .m-xl-32 {
    margin: 8rem !important; }
  .mt-xl-32,
  .my-xl-32 {
    margin-top: 8rem !important; }
  .mr-xl-32,
  .mx-xl-32 {
    margin-right: 8rem !important; }
  .mb-xl-32,
  .my-xl-32 {
    margin-bottom: 8rem !important; }
  .ml-xl-32,
  .mx-xl-32 {
    margin-left: 8rem !important; }
  .m-xl-33 {
    margin: 8.25rem !important; }
  .mt-xl-33,
  .my-xl-33 {
    margin-top: 8.25rem !important; }
  .mr-xl-33,
  .mx-xl-33 {
    margin-right: 8.25rem !important; }
  .mb-xl-33,
  .my-xl-33 {
    margin-bottom: 8.25rem !important; }
  .ml-xl-33,
  .mx-xl-33 {
    margin-left: 8.25rem !important; }
  .m-xl-34 {
    margin: 8.5rem !important; }
  .mt-xl-34,
  .my-xl-34 {
    margin-top: 8.5rem !important; }
  .mr-xl-34,
  .mx-xl-34 {
    margin-right: 8.5rem !important; }
  .mb-xl-34,
  .my-xl-34 {
    margin-bottom: 8.5rem !important; }
  .ml-xl-34,
  .mx-xl-34 {
    margin-left: 8.5rem !important; }
  .m-xl-35 {
    margin: 8.75rem !important; }
  .mt-xl-35,
  .my-xl-35 {
    margin-top: 8.75rem !important; }
  .mr-xl-35,
  .mx-xl-35 {
    margin-right: 8.75rem !important; }
  .mb-xl-35,
  .my-xl-35 {
    margin-bottom: 8.75rem !important; }
  .ml-xl-35,
  .mx-xl-35 {
    margin-left: 8.75rem !important; }
  .m-xl-36 {
    margin: 9rem !important; }
  .mt-xl-36,
  .my-xl-36 {
    margin-top: 9rem !important; }
  .mr-xl-36,
  .mx-xl-36 {
    margin-right: 9rem !important; }
  .mb-xl-36,
  .my-xl-36 {
    margin-bottom: 9rem !important; }
  .ml-xl-36,
  .mx-xl-36 {
    margin-left: 9rem !important; }
  .m-xl-37 {
    margin: 9.25rem !important; }
  .mt-xl-37,
  .my-xl-37 {
    margin-top: 9.25rem !important; }
  .mr-xl-37,
  .mx-xl-37 {
    margin-right: 9.25rem !important; }
  .mb-xl-37,
  .my-xl-37 {
    margin-bottom: 9.25rem !important; }
  .ml-xl-37,
  .mx-xl-37 {
    margin-left: 9.25rem !important; }
  .m-xl-48 {
    margin: 9.5rem !important; }
  .mt-xl-48,
  .my-xl-48 {
    margin-top: 9.5rem !important; }
  .mr-xl-48,
  .mx-xl-48 {
    margin-right: 9.5rem !important; }
  .mb-xl-48,
  .my-xl-48 {
    margin-bottom: 9.5rem !important; }
  .ml-xl-48,
  .mx-xl-48 {
    margin-left: 9.5rem !important; }
  .m-xl-39 {
    margin: 9.75rem !important; }
  .mt-xl-39,
  .my-xl-39 {
    margin-top: 9.75rem !important; }
  .mr-xl-39,
  .mx-xl-39 {
    margin-right: 9.75rem !important; }
  .mb-xl-39,
  .my-xl-39 {
    margin-bottom: 9.75rem !important; }
  .ml-xl-39,
  .mx-xl-39 {
    margin-left: 9.75rem !important; }
  .m-xl-40 {
    margin: 10rem !important; }
  .mt-xl-40,
  .my-xl-40 {
    margin-top: 10rem !important; }
  .mr-xl-40,
  .mx-xl-40 {
    margin-right: 10rem !important; }
  .mb-xl-40,
  .my-xl-40 {
    margin-bottom: 10rem !important; }
  .ml-xl-40,
  .mx-xl-40 {
    margin-left: 10rem !important; }
  .p-xl-0 {
    padding: 0 !important; }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important; }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important; }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important; }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important; }
  .p-xl-1 {
    padding: 0.25rem !important; }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important; }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important; }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important; }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important; }
  .p-xl-2 {
    padding: 0.5rem !important; }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important; }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important; }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important; }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important; }
  .p-xl-3 {
    padding: 0.75rem !important; }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 0.75rem !important; }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 0.75rem !important; }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 0.75rem !important; }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 0.75rem !important; }
  .p-xl-4 {
    padding: 1rem !important; }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1rem !important; }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1rem !important; }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1rem !important; }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1rem !important; }
  .p-xl-5 {
    padding: 1.25rem !important; }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 1.25rem !important; }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 1.25rem !important; }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 1.25rem !important; }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 1.25rem !important; }
  .p-xl-6 {
    padding: 1.5rem !important; }
  .pt-xl-6,
  .py-xl-6 {
    padding-top: 1.5rem !important; }
  .pr-xl-6,
  .px-xl-6 {
    padding-right: 1.5rem !important; }
  .pb-xl-6,
  .py-xl-6 {
    padding-bottom: 1.5rem !important; }
  .pl-xl-6,
  .px-xl-6 {
    padding-left: 1.5rem !important; }
  .p-xl-7 {
    padding: 1.75rem !important; }
  .pt-xl-7,
  .py-xl-7 {
    padding-top: 1.75rem !important; }
  .pr-xl-7,
  .px-xl-7 {
    padding-right: 1.75rem !important; }
  .pb-xl-7,
  .py-xl-7 {
    padding-bottom: 1.75rem !important; }
  .pl-xl-7,
  .px-xl-7 {
    padding-left: 1.75rem !important; }
  .p-xl-8 {
    padding: 2rem !important; }
  .pt-xl-8,
  .py-xl-8 {
    padding-top: 2rem !important; }
  .pr-xl-8,
  .px-xl-8 {
    padding-right: 2rem !important; }
  .pb-xl-8,
  .py-xl-8 {
    padding-bottom: 2rem !important; }
  .pl-xl-8,
  .px-xl-8 {
    padding-left: 2rem !important; }
  .p-xl-9 {
    padding: 2.25rem !important; }
  .pt-xl-9,
  .py-xl-9 {
    padding-top: 2.25rem !important; }
  .pr-xl-9,
  .px-xl-9 {
    padding-right: 2.25rem !important; }
  .pb-xl-9,
  .py-xl-9 {
    padding-bottom: 2.25rem !important; }
  .pl-xl-9,
  .px-xl-9 {
    padding-left: 2.25rem !important; }
  .p-xl-10 {
    padding: 2.5rem !important; }
  .pt-xl-10,
  .py-xl-10 {
    padding-top: 2.5rem !important; }
  .pr-xl-10,
  .px-xl-10 {
    padding-right: 2.5rem !important; }
  .pb-xl-10,
  .py-xl-10 {
    padding-bottom: 2.5rem !important; }
  .pl-xl-10,
  .px-xl-10 {
    padding-left: 2.5rem !important; }
  .p-xl-11 {
    padding: 2.75rem !important; }
  .pt-xl-11,
  .py-xl-11 {
    padding-top: 2.75rem !important; }
  .pr-xl-11,
  .px-xl-11 {
    padding-right: 2.75rem !important; }
  .pb-xl-11,
  .py-xl-11 {
    padding-bottom: 2.75rem !important; }
  .pl-xl-11,
  .px-xl-11 {
    padding-left: 2.75rem !important; }
  .p-xl-12 {
    padding: 3rem !important; }
  .pt-xl-12,
  .py-xl-12 {
    padding-top: 3rem !important; }
  .pr-xl-12,
  .px-xl-12 {
    padding-right: 3rem !important; }
  .pb-xl-12,
  .py-xl-12 {
    padding-bottom: 3rem !important; }
  .pl-xl-12,
  .px-xl-12 {
    padding-left: 3rem !important; }
  .p-xl-13 {
    padding: 3.25rem !important; }
  .pt-xl-13,
  .py-xl-13 {
    padding-top: 3.25rem !important; }
  .pr-xl-13,
  .px-xl-13 {
    padding-right: 3.25rem !important; }
  .pb-xl-13,
  .py-xl-13 {
    padding-bottom: 3.25rem !important; }
  .pl-xl-13,
  .px-xl-13 {
    padding-left: 3.25rem !important; }
  .p-xl-14 {
    padding: 3.5rem !important; }
  .pt-xl-14,
  .py-xl-14 {
    padding-top: 3.5rem !important; }
  .pr-xl-14,
  .px-xl-14 {
    padding-right: 3.5rem !important; }
  .pb-xl-14,
  .py-xl-14 {
    padding-bottom: 3.5rem !important; }
  .pl-xl-14,
  .px-xl-14 {
    padding-left: 3.5rem !important; }
  .p-xl-15 {
    padding: 3.75rem !important; }
  .pt-xl-15,
  .py-xl-15 {
    padding-top: 3.75rem !important; }
  .pr-xl-15,
  .px-xl-15 {
    padding-right: 3.75rem !important; }
  .pb-xl-15,
  .py-xl-15 {
    padding-bottom: 3.75rem !important; }
  .pl-xl-15,
  .px-xl-15 {
    padding-left: 3.75rem !important; }
  .p-xl-16 {
    padding: 4rem !important; }
  .pt-xl-16,
  .py-xl-16 {
    padding-top: 4rem !important; }
  .pr-xl-16,
  .px-xl-16 {
    padding-right: 4rem !important; }
  .pb-xl-16,
  .py-xl-16 {
    padding-bottom: 4rem !important; }
  .pl-xl-16,
  .px-xl-16 {
    padding-left: 4rem !important; }
  .p-xl-17 {
    padding: 4.25rem !important; }
  .pt-xl-17,
  .py-xl-17 {
    padding-top: 4.25rem !important; }
  .pr-xl-17,
  .px-xl-17 {
    padding-right: 4.25rem !important; }
  .pb-xl-17,
  .py-xl-17 {
    padding-bottom: 4.25rem !important; }
  .pl-xl-17,
  .px-xl-17 {
    padding-left: 4.25rem !important; }
  .p-xl-18 {
    padding: 4.5rem !important; }
  .pt-xl-18,
  .py-xl-18 {
    padding-top: 4.5rem !important; }
  .pr-xl-18,
  .px-xl-18 {
    padding-right: 4.5rem !important; }
  .pb-xl-18,
  .py-xl-18 {
    padding-bottom: 4.5rem !important; }
  .pl-xl-18,
  .px-xl-18 {
    padding-left: 4.5rem !important; }
  .p-xl-19 {
    padding: 4.75rem !important; }
  .pt-xl-19,
  .py-xl-19 {
    padding-top: 4.75rem !important; }
  .pr-xl-19,
  .px-xl-19 {
    padding-right: 4.75rem !important; }
  .pb-xl-19,
  .py-xl-19 {
    padding-bottom: 4.75rem !important; }
  .pl-xl-19,
  .px-xl-19 {
    padding-left: 4.75rem !important; }
  .p-xl-20 {
    padding: 5rem !important; }
  .pt-xl-20,
  .py-xl-20 {
    padding-top: 5rem !important; }
  .pr-xl-20,
  .px-xl-20 {
    padding-right: 5rem !important; }
  .pb-xl-20,
  .py-xl-20 {
    padding-bottom: 5rem !important; }
  .pl-xl-20,
  .px-xl-20 {
    padding-left: 5rem !important; }
  .p-xl-21 {
    padding: 5.25rem !important; }
  .pt-xl-21,
  .py-xl-21 {
    padding-top: 5.25rem !important; }
  .pr-xl-21,
  .px-xl-21 {
    padding-right: 5.25rem !important; }
  .pb-xl-21,
  .py-xl-21 {
    padding-bottom: 5.25rem !important; }
  .pl-xl-21,
  .px-xl-21 {
    padding-left: 5.25rem !important; }
  .p-xl-22 {
    padding: 5.5rem !important; }
  .pt-xl-22,
  .py-xl-22 {
    padding-top: 5.5rem !important; }
  .pr-xl-22,
  .px-xl-22 {
    padding-right: 5.5rem !important; }
  .pb-xl-22,
  .py-xl-22 {
    padding-bottom: 5.5rem !important; }
  .pl-xl-22,
  .px-xl-22 {
    padding-left: 5.5rem !important; }
  .p-xl-23 {
    padding: 5.75rem !important; }
  .pt-xl-23,
  .py-xl-23 {
    padding-top: 5.75rem !important; }
  .pr-xl-23,
  .px-xl-23 {
    padding-right: 5.75rem !important; }
  .pb-xl-23,
  .py-xl-23 {
    padding-bottom: 5.75rem !important; }
  .pl-xl-23,
  .px-xl-23 {
    padding-left: 5.75rem !important; }
  .p-xl-24 {
    padding: 6rem !important; }
  .pt-xl-24,
  .py-xl-24 {
    padding-top: 6rem !important; }
  .pr-xl-24,
  .px-xl-24 {
    padding-right: 6rem !important; }
  .pb-xl-24,
  .py-xl-24 {
    padding-bottom: 6rem !important; }
  .pl-xl-24,
  .px-xl-24 {
    padding-left: 6rem !important; }
  .p-xl-25 {
    padding: 6.25rem !important; }
  .pt-xl-25,
  .py-xl-25 {
    padding-top: 6.25rem !important; }
  .pr-xl-25,
  .px-xl-25 {
    padding-right: 6.25rem !important; }
  .pb-xl-25,
  .py-xl-25 {
    padding-bottom: 6.25rem !important; }
  .pl-xl-25,
  .px-xl-25 {
    padding-left: 6.25rem !important; }
  .p-xl-26 {
    padding: 6.5rem !important; }
  .pt-xl-26,
  .py-xl-26 {
    padding-top: 6.5rem !important; }
  .pr-xl-26,
  .px-xl-26 {
    padding-right: 6.5rem !important; }
  .pb-xl-26,
  .py-xl-26 {
    padding-bottom: 6.5rem !important; }
  .pl-xl-26,
  .px-xl-26 {
    padding-left: 6.5rem !important; }
  .p-xl-27 {
    padding: 6.75rem !important; }
  .pt-xl-27,
  .py-xl-27 {
    padding-top: 6.75rem !important; }
  .pr-xl-27,
  .px-xl-27 {
    padding-right: 6.75rem !important; }
  .pb-xl-27,
  .py-xl-27 {
    padding-bottom: 6.75rem !important; }
  .pl-xl-27,
  .px-xl-27 {
    padding-left: 6.75rem !important; }
  .p-xl-28 {
    padding: 7rem !important; }
  .pt-xl-28,
  .py-xl-28 {
    padding-top: 7rem !important; }
  .pr-xl-28,
  .px-xl-28 {
    padding-right: 7rem !important; }
  .pb-xl-28,
  .py-xl-28 {
    padding-bottom: 7rem !important; }
  .pl-xl-28,
  .px-xl-28 {
    padding-left: 7rem !important; }
  .p-xl-29 {
    padding: 7.25rem !important; }
  .pt-xl-29,
  .py-xl-29 {
    padding-top: 7.25rem !important; }
  .pr-xl-29,
  .px-xl-29 {
    padding-right: 7.25rem !important; }
  .pb-xl-29,
  .py-xl-29 {
    padding-bottom: 7.25rem !important; }
  .pl-xl-29,
  .px-xl-29 {
    padding-left: 7.25rem !important; }
  .p-xl-30 {
    padding: 7.5rem !important; }
  .pt-xl-30,
  .py-xl-30 {
    padding-top: 7.5rem !important; }
  .pr-xl-30,
  .px-xl-30 {
    padding-right: 7.5rem !important; }
  .pb-xl-30,
  .py-xl-30 {
    padding-bottom: 7.5rem !important; }
  .pl-xl-30,
  .px-xl-30 {
    padding-left: 7.5rem !important; }
  .p-xl-31 {
    padding: 7.75rem !important; }
  .pt-xl-31,
  .py-xl-31 {
    padding-top: 7.75rem !important; }
  .pr-xl-31,
  .px-xl-31 {
    padding-right: 7.75rem !important; }
  .pb-xl-31,
  .py-xl-31 {
    padding-bottom: 7.75rem !important; }
  .pl-xl-31,
  .px-xl-31 {
    padding-left: 7.75rem !important; }
  .p-xl-32 {
    padding: 8rem !important; }
  .pt-xl-32,
  .py-xl-32 {
    padding-top: 8rem !important; }
  .pr-xl-32,
  .px-xl-32 {
    padding-right: 8rem !important; }
  .pb-xl-32,
  .py-xl-32 {
    padding-bottom: 8rem !important; }
  .pl-xl-32,
  .px-xl-32 {
    padding-left: 8rem !important; }
  .p-xl-33 {
    padding: 8.25rem !important; }
  .pt-xl-33,
  .py-xl-33 {
    padding-top: 8.25rem !important; }
  .pr-xl-33,
  .px-xl-33 {
    padding-right: 8.25rem !important; }
  .pb-xl-33,
  .py-xl-33 {
    padding-bottom: 8.25rem !important; }
  .pl-xl-33,
  .px-xl-33 {
    padding-left: 8.25rem !important; }
  .p-xl-34 {
    padding: 8.5rem !important; }
  .pt-xl-34,
  .py-xl-34 {
    padding-top: 8.5rem !important; }
  .pr-xl-34,
  .px-xl-34 {
    padding-right: 8.5rem !important; }
  .pb-xl-34,
  .py-xl-34 {
    padding-bottom: 8.5rem !important; }
  .pl-xl-34,
  .px-xl-34 {
    padding-left: 8.5rem !important; }
  .p-xl-35 {
    padding: 8.75rem !important; }
  .pt-xl-35,
  .py-xl-35 {
    padding-top: 8.75rem !important; }
  .pr-xl-35,
  .px-xl-35 {
    padding-right: 8.75rem !important; }
  .pb-xl-35,
  .py-xl-35 {
    padding-bottom: 8.75rem !important; }
  .pl-xl-35,
  .px-xl-35 {
    padding-left: 8.75rem !important; }
  .p-xl-36 {
    padding: 9rem !important; }
  .pt-xl-36,
  .py-xl-36 {
    padding-top: 9rem !important; }
  .pr-xl-36,
  .px-xl-36 {
    padding-right: 9rem !important; }
  .pb-xl-36,
  .py-xl-36 {
    padding-bottom: 9rem !important; }
  .pl-xl-36,
  .px-xl-36 {
    padding-left: 9rem !important; }
  .p-xl-37 {
    padding: 9.25rem !important; }
  .pt-xl-37,
  .py-xl-37 {
    padding-top: 9.25rem !important; }
  .pr-xl-37,
  .px-xl-37 {
    padding-right: 9.25rem !important; }
  .pb-xl-37,
  .py-xl-37 {
    padding-bottom: 9.25rem !important; }
  .pl-xl-37,
  .px-xl-37 {
    padding-left: 9.25rem !important; }
  .p-xl-48 {
    padding: 9.5rem !important; }
  .pt-xl-48,
  .py-xl-48 {
    padding-top: 9.5rem !important; }
  .pr-xl-48,
  .px-xl-48 {
    padding-right: 9.5rem !important; }
  .pb-xl-48,
  .py-xl-48 {
    padding-bottom: 9.5rem !important; }
  .pl-xl-48,
  .px-xl-48 {
    padding-left: 9.5rem !important; }
  .p-xl-39 {
    padding: 9.75rem !important; }
  .pt-xl-39,
  .py-xl-39 {
    padding-top: 9.75rem !important; }
  .pr-xl-39,
  .px-xl-39 {
    padding-right: 9.75rem !important; }
  .pb-xl-39,
  .py-xl-39 {
    padding-bottom: 9.75rem !important; }
  .pl-xl-39,
  .px-xl-39 {
    padding-left: 9.75rem !important; }
  .p-xl-40 {
    padding: 10rem !important; }
  .pt-xl-40,
  .py-xl-40 {
    padding-top: 10rem !important; }
  .pr-xl-40,
  .px-xl-40 {
    padding-right: 10rem !important; }
  .pb-xl-40,
  .py-xl-40 {
    padding-bottom: 10rem !important; }
  .pl-xl-40,
  .px-xl-40 {
    padding-left: 10rem !important; }
  .m-xl-n1 {
    margin: -0.25rem !important; }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important; }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important; }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important; }
  .m-xl-n2 {
    margin: -0.5rem !important; }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important; }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important; }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important; }
  .m-xl-n3 {
    margin: -0.75rem !important; }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -0.75rem !important; }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -0.75rem !important; }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -0.75rem !important; }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -0.75rem !important; }
  .m-xl-n4 {
    margin: -1rem !important; }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1rem !important; }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1rem !important; }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1rem !important; }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1rem !important; }
  .m-xl-n5 {
    margin: -1.25rem !important; }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -1.25rem !important; }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -1.25rem !important; }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -1.25rem !important; }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -1.25rem !important; }
  .m-xl-n6 {
    margin: -1.5rem !important; }
  .mt-xl-n6,
  .my-xl-n6 {
    margin-top: -1.5rem !important; }
  .mr-xl-n6,
  .mx-xl-n6 {
    margin-right: -1.5rem !important; }
  .mb-xl-n6,
  .my-xl-n6 {
    margin-bottom: -1.5rem !important; }
  .ml-xl-n6,
  .mx-xl-n6 {
    margin-left: -1.5rem !important; }
  .m-xl-n7 {
    margin: -1.75rem !important; }
  .mt-xl-n7,
  .my-xl-n7 {
    margin-top: -1.75rem !important; }
  .mr-xl-n7,
  .mx-xl-n7 {
    margin-right: -1.75rem !important; }
  .mb-xl-n7,
  .my-xl-n7 {
    margin-bottom: -1.75rem !important; }
  .ml-xl-n7,
  .mx-xl-n7 {
    margin-left: -1.75rem !important; }
  .m-xl-n8 {
    margin: -2rem !important; }
  .mt-xl-n8,
  .my-xl-n8 {
    margin-top: -2rem !important; }
  .mr-xl-n8,
  .mx-xl-n8 {
    margin-right: -2rem !important; }
  .mb-xl-n8,
  .my-xl-n8 {
    margin-bottom: -2rem !important; }
  .ml-xl-n8,
  .mx-xl-n8 {
    margin-left: -2rem !important; }
  .m-xl-n9 {
    margin: -2.25rem !important; }
  .mt-xl-n9,
  .my-xl-n9 {
    margin-top: -2.25rem !important; }
  .mr-xl-n9,
  .mx-xl-n9 {
    margin-right: -2.25rem !important; }
  .mb-xl-n9,
  .my-xl-n9 {
    margin-bottom: -2.25rem !important; }
  .ml-xl-n9,
  .mx-xl-n9 {
    margin-left: -2.25rem !important; }
  .m-xl-n10 {
    margin: -2.5rem !important; }
  .mt-xl-n10,
  .my-xl-n10 {
    margin-top: -2.5rem !important; }
  .mr-xl-n10,
  .mx-xl-n10 {
    margin-right: -2.5rem !important; }
  .mb-xl-n10,
  .my-xl-n10 {
    margin-bottom: -2.5rem !important; }
  .ml-xl-n10,
  .mx-xl-n10 {
    margin-left: -2.5rem !important; }
  .m-xl-n11 {
    margin: -2.75rem !important; }
  .mt-xl-n11,
  .my-xl-n11 {
    margin-top: -2.75rem !important; }
  .mr-xl-n11,
  .mx-xl-n11 {
    margin-right: -2.75rem !important; }
  .mb-xl-n11,
  .my-xl-n11 {
    margin-bottom: -2.75rem !important; }
  .ml-xl-n11,
  .mx-xl-n11 {
    margin-left: -2.75rem !important; }
  .m-xl-n12 {
    margin: -3rem !important; }
  .mt-xl-n12,
  .my-xl-n12 {
    margin-top: -3rem !important; }
  .mr-xl-n12,
  .mx-xl-n12 {
    margin-right: -3rem !important; }
  .mb-xl-n12,
  .my-xl-n12 {
    margin-bottom: -3rem !important; }
  .ml-xl-n12,
  .mx-xl-n12 {
    margin-left: -3rem !important; }
  .m-xl-n13 {
    margin: -3.25rem !important; }
  .mt-xl-n13,
  .my-xl-n13 {
    margin-top: -3.25rem !important; }
  .mr-xl-n13,
  .mx-xl-n13 {
    margin-right: -3.25rem !important; }
  .mb-xl-n13,
  .my-xl-n13 {
    margin-bottom: -3.25rem !important; }
  .ml-xl-n13,
  .mx-xl-n13 {
    margin-left: -3.25rem !important; }
  .m-xl-n14 {
    margin: -3.5rem !important; }
  .mt-xl-n14,
  .my-xl-n14 {
    margin-top: -3.5rem !important; }
  .mr-xl-n14,
  .mx-xl-n14 {
    margin-right: -3.5rem !important; }
  .mb-xl-n14,
  .my-xl-n14 {
    margin-bottom: -3.5rem !important; }
  .ml-xl-n14,
  .mx-xl-n14 {
    margin-left: -3.5rem !important; }
  .m-xl-n15 {
    margin: -3.75rem !important; }
  .mt-xl-n15,
  .my-xl-n15 {
    margin-top: -3.75rem !important; }
  .mr-xl-n15,
  .mx-xl-n15 {
    margin-right: -3.75rem !important; }
  .mb-xl-n15,
  .my-xl-n15 {
    margin-bottom: -3.75rem !important; }
  .ml-xl-n15,
  .mx-xl-n15 {
    margin-left: -3.75rem !important; }
  .m-xl-n16 {
    margin: -4rem !important; }
  .mt-xl-n16,
  .my-xl-n16 {
    margin-top: -4rem !important; }
  .mr-xl-n16,
  .mx-xl-n16 {
    margin-right: -4rem !important; }
  .mb-xl-n16,
  .my-xl-n16 {
    margin-bottom: -4rem !important; }
  .ml-xl-n16,
  .mx-xl-n16 {
    margin-left: -4rem !important; }
  .m-xl-n17 {
    margin: -4.25rem !important; }
  .mt-xl-n17,
  .my-xl-n17 {
    margin-top: -4.25rem !important; }
  .mr-xl-n17,
  .mx-xl-n17 {
    margin-right: -4.25rem !important; }
  .mb-xl-n17,
  .my-xl-n17 {
    margin-bottom: -4.25rem !important; }
  .ml-xl-n17,
  .mx-xl-n17 {
    margin-left: -4.25rem !important; }
  .m-xl-n18 {
    margin: -4.5rem !important; }
  .mt-xl-n18,
  .my-xl-n18 {
    margin-top: -4.5rem !important; }
  .mr-xl-n18,
  .mx-xl-n18 {
    margin-right: -4.5rem !important; }
  .mb-xl-n18,
  .my-xl-n18 {
    margin-bottom: -4.5rem !important; }
  .ml-xl-n18,
  .mx-xl-n18 {
    margin-left: -4.5rem !important; }
  .m-xl-n19 {
    margin: -4.75rem !important; }
  .mt-xl-n19,
  .my-xl-n19 {
    margin-top: -4.75rem !important; }
  .mr-xl-n19,
  .mx-xl-n19 {
    margin-right: -4.75rem !important; }
  .mb-xl-n19,
  .my-xl-n19 {
    margin-bottom: -4.75rem !important; }
  .ml-xl-n19,
  .mx-xl-n19 {
    margin-left: -4.75rem !important; }
  .m-xl-n20 {
    margin: -5rem !important; }
  .mt-xl-n20,
  .my-xl-n20 {
    margin-top: -5rem !important; }
  .mr-xl-n20,
  .mx-xl-n20 {
    margin-right: -5rem !important; }
  .mb-xl-n20,
  .my-xl-n20 {
    margin-bottom: -5rem !important; }
  .ml-xl-n20,
  .mx-xl-n20 {
    margin-left: -5rem !important; }
  .m-xl-n21 {
    margin: -5.25rem !important; }
  .mt-xl-n21,
  .my-xl-n21 {
    margin-top: -5.25rem !important; }
  .mr-xl-n21,
  .mx-xl-n21 {
    margin-right: -5.25rem !important; }
  .mb-xl-n21,
  .my-xl-n21 {
    margin-bottom: -5.25rem !important; }
  .ml-xl-n21,
  .mx-xl-n21 {
    margin-left: -5.25rem !important; }
  .m-xl-n22 {
    margin: -5.5rem !important; }
  .mt-xl-n22,
  .my-xl-n22 {
    margin-top: -5.5rem !important; }
  .mr-xl-n22,
  .mx-xl-n22 {
    margin-right: -5.5rem !important; }
  .mb-xl-n22,
  .my-xl-n22 {
    margin-bottom: -5.5rem !important; }
  .ml-xl-n22,
  .mx-xl-n22 {
    margin-left: -5.5rem !important; }
  .m-xl-n23 {
    margin: -5.75rem !important; }
  .mt-xl-n23,
  .my-xl-n23 {
    margin-top: -5.75rem !important; }
  .mr-xl-n23,
  .mx-xl-n23 {
    margin-right: -5.75rem !important; }
  .mb-xl-n23,
  .my-xl-n23 {
    margin-bottom: -5.75rem !important; }
  .ml-xl-n23,
  .mx-xl-n23 {
    margin-left: -5.75rem !important; }
  .m-xl-n24 {
    margin: -6rem !important; }
  .mt-xl-n24,
  .my-xl-n24 {
    margin-top: -6rem !important; }
  .mr-xl-n24,
  .mx-xl-n24 {
    margin-right: -6rem !important; }
  .mb-xl-n24,
  .my-xl-n24 {
    margin-bottom: -6rem !important; }
  .ml-xl-n24,
  .mx-xl-n24 {
    margin-left: -6rem !important; }
  .m-xl-n25 {
    margin: -6.25rem !important; }
  .mt-xl-n25,
  .my-xl-n25 {
    margin-top: -6.25rem !important; }
  .mr-xl-n25,
  .mx-xl-n25 {
    margin-right: -6.25rem !important; }
  .mb-xl-n25,
  .my-xl-n25 {
    margin-bottom: -6.25rem !important; }
  .ml-xl-n25,
  .mx-xl-n25 {
    margin-left: -6.25rem !important; }
  .m-xl-n26 {
    margin: -6.5rem !important; }
  .mt-xl-n26,
  .my-xl-n26 {
    margin-top: -6.5rem !important; }
  .mr-xl-n26,
  .mx-xl-n26 {
    margin-right: -6.5rem !important; }
  .mb-xl-n26,
  .my-xl-n26 {
    margin-bottom: -6.5rem !important; }
  .ml-xl-n26,
  .mx-xl-n26 {
    margin-left: -6.5rem !important; }
  .m-xl-n27 {
    margin: -6.75rem !important; }
  .mt-xl-n27,
  .my-xl-n27 {
    margin-top: -6.75rem !important; }
  .mr-xl-n27,
  .mx-xl-n27 {
    margin-right: -6.75rem !important; }
  .mb-xl-n27,
  .my-xl-n27 {
    margin-bottom: -6.75rem !important; }
  .ml-xl-n27,
  .mx-xl-n27 {
    margin-left: -6.75rem !important; }
  .m-xl-n28 {
    margin: -7rem !important; }
  .mt-xl-n28,
  .my-xl-n28 {
    margin-top: -7rem !important; }
  .mr-xl-n28,
  .mx-xl-n28 {
    margin-right: -7rem !important; }
  .mb-xl-n28,
  .my-xl-n28 {
    margin-bottom: -7rem !important; }
  .ml-xl-n28,
  .mx-xl-n28 {
    margin-left: -7rem !important; }
  .m-xl-n29 {
    margin: -7.25rem !important; }
  .mt-xl-n29,
  .my-xl-n29 {
    margin-top: -7.25rem !important; }
  .mr-xl-n29,
  .mx-xl-n29 {
    margin-right: -7.25rem !important; }
  .mb-xl-n29,
  .my-xl-n29 {
    margin-bottom: -7.25rem !important; }
  .ml-xl-n29,
  .mx-xl-n29 {
    margin-left: -7.25rem !important; }
  .m-xl-n30 {
    margin: -7.5rem !important; }
  .mt-xl-n30,
  .my-xl-n30 {
    margin-top: -7.5rem !important; }
  .mr-xl-n30,
  .mx-xl-n30 {
    margin-right: -7.5rem !important; }
  .mb-xl-n30,
  .my-xl-n30 {
    margin-bottom: -7.5rem !important; }
  .ml-xl-n30,
  .mx-xl-n30 {
    margin-left: -7.5rem !important; }
  .m-xl-n31 {
    margin: -7.75rem !important; }
  .mt-xl-n31,
  .my-xl-n31 {
    margin-top: -7.75rem !important; }
  .mr-xl-n31,
  .mx-xl-n31 {
    margin-right: -7.75rem !important; }
  .mb-xl-n31,
  .my-xl-n31 {
    margin-bottom: -7.75rem !important; }
  .ml-xl-n31,
  .mx-xl-n31 {
    margin-left: -7.75rem !important; }
  .m-xl-n32 {
    margin: -8rem !important; }
  .mt-xl-n32,
  .my-xl-n32 {
    margin-top: -8rem !important; }
  .mr-xl-n32,
  .mx-xl-n32 {
    margin-right: -8rem !important; }
  .mb-xl-n32,
  .my-xl-n32 {
    margin-bottom: -8rem !important; }
  .ml-xl-n32,
  .mx-xl-n32 {
    margin-left: -8rem !important; }
  .m-xl-n33 {
    margin: -8.25rem !important; }
  .mt-xl-n33,
  .my-xl-n33 {
    margin-top: -8.25rem !important; }
  .mr-xl-n33,
  .mx-xl-n33 {
    margin-right: -8.25rem !important; }
  .mb-xl-n33,
  .my-xl-n33 {
    margin-bottom: -8.25rem !important; }
  .ml-xl-n33,
  .mx-xl-n33 {
    margin-left: -8.25rem !important; }
  .m-xl-n34 {
    margin: -8.5rem !important; }
  .mt-xl-n34,
  .my-xl-n34 {
    margin-top: -8.5rem !important; }
  .mr-xl-n34,
  .mx-xl-n34 {
    margin-right: -8.5rem !important; }
  .mb-xl-n34,
  .my-xl-n34 {
    margin-bottom: -8.5rem !important; }
  .ml-xl-n34,
  .mx-xl-n34 {
    margin-left: -8.5rem !important; }
  .m-xl-n35 {
    margin: -8.75rem !important; }
  .mt-xl-n35,
  .my-xl-n35 {
    margin-top: -8.75rem !important; }
  .mr-xl-n35,
  .mx-xl-n35 {
    margin-right: -8.75rem !important; }
  .mb-xl-n35,
  .my-xl-n35 {
    margin-bottom: -8.75rem !important; }
  .ml-xl-n35,
  .mx-xl-n35 {
    margin-left: -8.75rem !important; }
  .m-xl-n36 {
    margin: -9rem !important; }
  .mt-xl-n36,
  .my-xl-n36 {
    margin-top: -9rem !important; }
  .mr-xl-n36,
  .mx-xl-n36 {
    margin-right: -9rem !important; }
  .mb-xl-n36,
  .my-xl-n36 {
    margin-bottom: -9rem !important; }
  .ml-xl-n36,
  .mx-xl-n36 {
    margin-left: -9rem !important; }
  .m-xl-n37 {
    margin: -9.25rem !important; }
  .mt-xl-n37,
  .my-xl-n37 {
    margin-top: -9.25rem !important; }
  .mr-xl-n37,
  .mx-xl-n37 {
    margin-right: -9.25rem !important; }
  .mb-xl-n37,
  .my-xl-n37 {
    margin-bottom: -9.25rem !important; }
  .ml-xl-n37,
  .mx-xl-n37 {
    margin-left: -9.25rem !important; }
  .m-xl-n48 {
    margin: -9.5rem !important; }
  .mt-xl-n48,
  .my-xl-n48 {
    margin-top: -9.5rem !important; }
  .mr-xl-n48,
  .mx-xl-n48 {
    margin-right: -9.5rem !important; }
  .mb-xl-n48,
  .my-xl-n48 {
    margin-bottom: -9.5rem !important; }
  .ml-xl-n48,
  .mx-xl-n48 {
    margin-left: -9.5rem !important; }
  .m-xl-n39 {
    margin: -9.75rem !important; }
  .mt-xl-n39,
  .my-xl-n39 {
    margin-top: -9.75rem !important; }
  .mr-xl-n39,
  .mx-xl-n39 {
    margin-right: -9.75rem !important; }
  .mb-xl-n39,
  .my-xl-n39 {
    margin-bottom: -9.75rem !important; }
  .ml-xl-n39,
  .mx-xl-n39 {
    margin-left: -9.75rem !important; }
  .m-xl-n40 {
    margin: -10rem !important; }
  .mt-xl-n40,
  .my-xl-n40 {
    margin-top: -10rem !important; }
  .mr-xl-n40,
  .mx-xl-n40 {
    margin-right: -10rem !important; }
  .mb-xl-n40,
  .my-xl-n40 {
    margin-bottom: -10rem !important; }
  .ml-xl-n40,
  .mx-xl-n40 {
    margin-left: -10rem !important; }
  .m-xl-auto {
    margin: auto !important; }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important; }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important; }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important; }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important; } }

@media (min-width: 1400px) {
  .m-xxl-0 {
    margin: 0 !important; }
  .mt-xxl-0,
  .my-xxl-0 {
    margin-top: 0 !important; }
  .mr-xxl-0,
  .mx-xxl-0 {
    margin-right: 0 !important; }
  .mb-xxl-0,
  .my-xxl-0 {
    margin-bottom: 0 !important; }
  .ml-xxl-0,
  .mx-xxl-0 {
    margin-left: 0 !important; }
  .m-xxl-1 {
    margin: 0.25rem !important; }
  .mt-xxl-1,
  .my-xxl-1 {
    margin-top: 0.25rem !important; }
  .mr-xxl-1,
  .mx-xxl-1 {
    margin-right: 0.25rem !important; }
  .mb-xxl-1,
  .my-xxl-1 {
    margin-bottom: 0.25rem !important; }
  .ml-xxl-1,
  .mx-xxl-1 {
    margin-left: 0.25rem !important; }
  .m-xxl-2 {
    margin: 0.5rem !important; }
  .mt-xxl-2,
  .my-xxl-2 {
    margin-top: 0.5rem !important; }
  .mr-xxl-2,
  .mx-xxl-2 {
    margin-right: 0.5rem !important; }
  .mb-xxl-2,
  .my-xxl-2 {
    margin-bottom: 0.5rem !important; }
  .ml-xxl-2,
  .mx-xxl-2 {
    margin-left: 0.5rem !important; }
  .m-xxl-3 {
    margin: 0.75rem !important; }
  .mt-xxl-3,
  .my-xxl-3 {
    margin-top: 0.75rem !important; }
  .mr-xxl-3,
  .mx-xxl-3 {
    margin-right: 0.75rem !important; }
  .mb-xxl-3,
  .my-xxl-3 {
    margin-bottom: 0.75rem !important; }
  .ml-xxl-3,
  .mx-xxl-3 {
    margin-left: 0.75rem !important; }
  .m-xxl-4 {
    margin: 1rem !important; }
  .mt-xxl-4,
  .my-xxl-4 {
    margin-top: 1rem !important; }
  .mr-xxl-4,
  .mx-xxl-4 {
    margin-right: 1rem !important; }
  .mb-xxl-4,
  .my-xxl-4 {
    margin-bottom: 1rem !important; }
  .ml-xxl-4,
  .mx-xxl-4 {
    margin-left: 1rem !important; }
  .m-xxl-5 {
    margin: 1.25rem !important; }
  .mt-xxl-5,
  .my-xxl-5 {
    margin-top: 1.25rem !important; }
  .mr-xxl-5,
  .mx-xxl-5 {
    margin-right: 1.25rem !important; }
  .mb-xxl-5,
  .my-xxl-5 {
    margin-bottom: 1.25rem !important; }
  .ml-xxl-5,
  .mx-xxl-5 {
    margin-left: 1.25rem !important; }
  .m-xxl-6 {
    margin: 1.5rem !important; }
  .mt-xxl-6,
  .my-xxl-6 {
    margin-top: 1.5rem !important; }
  .mr-xxl-6,
  .mx-xxl-6 {
    margin-right: 1.5rem !important; }
  .mb-xxl-6,
  .my-xxl-6 {
    margin-bottom: 1.5rem !important; }
  .ml-xxl-6,
  .mx-xxl-6 {
    margin-left: 1.5rem !important; }
  .m-xxl-7 {
    margin: 1.75rem !important; }
  .mt-xxl-7,
  .my-xxl-7 {
    margin-top: 1.75rem !important; }
  .mr-xxl-7,
  .mx-xxl-7 {
    margin-right: 1.75rem !important; }
  .mb-xxl-7,
  .my-xxl-7 {
    margin-bottom: 1.75rem !important; }
  .ml-xxl-7,
  .mx-xxl-7 {
    margin-left: 1.75rem !important; }
  .m-xxl-8 {
    margin: 2rem !important; }
  .mt-xxl-8,
  .my-xxl-8 {
    margin-top: 2rem !important; }
  .mr-xxl-8,
  .mx-xxl-8 {
    margin-right: 2rem !important; }
  .mb-xxl-8,
  .my-xxl-8 {
    margin-bottom: 2rem !important; }
  .ml-xxl-8,
  .mx-xxl-8 {
    margin-left: 2rem !important; }
  .m-xxl-9 {
    margin: 2.25rem !important; }
  .mt-xxl-9,
  .my-xxl-9 {
    margin-top: 2.25rem !important; }
  .mr-xxl-9,
  .mx-xxl-9 {
    margin-right: 2.25rem !important; }
  .mb-xxl-9,
  .my-xxl-9 {
    margin-bottom: 2.25rem !important; }
  .ml-xxl-9,
  .mx-xxl-9 {
    margin-left: 2.25rem !important; }
  .m-xxl-10 {
    margin: 2.5rem !important; }
  .mt-xxl-10,
  .my-xxl-10 {
    margin-top: 2.5rem !important; }
  .mr-xxl-10,
  .mx-xxl-10 {
    margin-right: 2.5rem !important; }
  .mb-xxl-10,
  .my-xxl-10 {
    margin-bottom: 2.5rem !important; }
  .ml-xxl-10,
  .mx-xxl-10 {
    margin-left: 2.5rem !important; }
  .m-xxl-11 {
    margin: 2.75rem !important; }
  .mt-xxl-11,
  .my-xxl-11 {
    margin-top: 2.75rem !important; }
  .mr-xxl-11,
  .mx-xxl-11 {
    margin-right: 2.75rem !important; }
  .mb-xxl-11,
  .my-xxl-11 {
    margin-bottom: 2.75rem !important; }
  .ml-xxl-11,
  .mx-xxl-11 {
    margin-left: 2.75rem !important; }
  .m-xxl-12 {
    margin: 3rem !important; }
  .mt-xxl-12,
  .my-xxl-12 {
    margin-top: 3rem !important; }
  .mr-xxl-12,
  .mx-xxl-12 {
    margin-right: 3rem !important; }
  .mb-xxl-12,
  .my-xxl-12 {
    margin-bottom: 3rem !important; }
  .ml-xxl-12,
  .mx-xxl-12 {
    margin-left: 3rem !important; }
  .m-xxl-13 {
    margin: 3.25rem !important; }
  .mt-xxl-13,
  .my-xxl-13 {
    margin-top: 3.25rem !important; }
  .mr-xxl-13,
  .mx-xxl-13 {
    margin-right: 3.25rem !important; }
  .mb-xxl-13,
  .my-xxl-13 {
    margin-bottom: 3.25rem !important; }
  .ml-xxl-13,
  .mx-xxl-13 {
    margin-left: 3.25rem !important; }
  .m-xxl-14 {
    margin: 3.5rem !important; }
  .mt-xxl-14,
  .my-xxl-14 {
    margin-top: 3.5rem !important; }
  .mr-xxl-14,
  .mx-xxl-14 {
    margin-right: 3.5rem !important; }
  .mb-xxl-14,
  .my-xxl-14 {
    margin-bottom: 3.5rem !important; }
  .ml-xxl-14,
  .mx-xxl-14 {
    margin-left: 3.5rem !important; }
  .m-xxl-15 {
    margin: 3.75rem !important; }
  .mt-xxl-15,
  .my-xxl-15 {
    margin-top: 3.75rem !important; }
  .mr-xxl-15,
  .mx-xxl-15 {
    margin-right: 3.75rem !important; }
  .mb-xxl-15,
  .my-xxl-15 {
    margin-bottom: 3.75rem !important; }
  .ml-xxl-15,
  .mx-xxl-15 {
    margin-left: 3.75rem !important; }
  .m-xxl-16 {
    margin: 4rem !important; }
  .mt-xxl-16,
  .my-xxl-16 {
    margin-top: 4rem !important; }
  .mr-xxl-16,
  .mx-xxl-16 {
    margin-right: 4rem !important; }
  .mb-xxl-16,
  .my-xxl-16 {
    margin-bottom: 4rem !important; }
  .ml-xxl-16,
  .mx-xxl-16 {
    margin-left: 4rem !important; }
  .m-xxl-17 {
    margin: 4.25rem !important; }
  .mt-xxl-17,
  .my-xxl-17 {
    margin-top: 4.25rem !important; }
  .mr-xxl-17,
  .mx-xxl-17 {
    margin-right: 4.25rem !important; }
  .mb-xxl-17,
  .my-xxl-17 {
    margin-bottom: 4.25rem !important; }
  .ml-xxl-17,
  .mx-xxl-17 {
    margin-left: 4.25rem !important; }
  .m-xxl-18 {
    margin: 4.5rem !important; }
  .mt-xxl-18,
  .my-xxl-18 {
    margin-top: 4.5rem !important; }
  .mr-xxl-18,
  .mx-xxl-18 {
    margin-right: 4.5rem !important; }
  .mb-xxl-18,
  .my-xxl-18 {
    margin-bottom: 4.5rem !important; }
  .ml-xxl-18,
  .mx-xxl-18 {
    margin-left: 4.5rem !important; }
  .m-xxl-19 {
    margin: 4.75rem !important; }
  .mt-xxl-19,
  .my-xxl-19 {
    margin-top: 4.75rem !important; }
  .mr-xxl-19,
  .mx-xxl-19 {
    margin-right: 4.75rem !important; }
  .mb-xxl-19,
  .my-xxl-19 {
    margin-bottom: 4.75rem !important; }
  .ml-xxl-19,
  .mx-xxl-19 {
    margin-left: 4.75rem !important; }
  .m-xxl-20 {
    margin: 5rem !important; }
  .mt-xxl-20,
  .my-xxl-20 {
    margin-top: 5rem !important; }
  .mr-xxl-20,
  .mx-xxl-20 {
    margin-right: 5rem !important; }
  .mb-xxl-20,
  .my-xxl-20 {
    margin-bottom: 5rem !important; }
  .ml-xxl-20,
  .mx-xxl-20 {
    margin-left: 5rem !important; }
  .m-xxl-21 {
    margin: 5.25rem !important; }
  .mt-xxl-21,
  .my-xxl-21 {
    margin-top: 5.25rem !important; }
  .mr-xxl-21,
  .mx-xxl-21 {
    margin-right: 5.25rem !important; }
  .mb-xxl-21,
  .my-xxl-21 {
    margin-bottom: 5.25rem !important; }
  .ml-xxl-21,
  .mx-xxl-21 {
    margin-left: 5.25rem !important; }
  .m-xxl-22 {
    margin: 5.5rem !important; }
  .mt-xxl-22,
  .my-xxl-22 {
    margin-top: 5.5rem !important; }
  .mr-xxl-22,
  .mx-xxl-22 {
    margin-right: 5.5rem !important; }
  .mb-xxl-22,
  .my-xxl-22 {
    margin-bottom: 5.5rem !important; }
  .ml-xxl-22,
  .mx-xxl-22 {
    margin-left: 5.5rem !important; }
  .m-xxl-23 {
    margin: 5.75rem !important; }
  .mt-xxl-23,
  .my-xxl-23 {
    margin-top: 5.75rem !important; }
  .mr-xxl-23,
  .mx-xxl-23 {
    margin-right: 5.75rem !important; }
  .mb-xxl-23,
  .my-xxl-23 {
    margin-bottom: 5.75rem !important; }
  .ml-xxl-23,
  .mx-xxl-23 {
    margin-left: 5.75rem !important; }
  .m-xxl-24 {
    margin: 6rem !important; }
  .mt-xxl-24,
  .my-xxl-24 {
    margin-top: 6rem !important; }
  .mr-xxl-24,
  .mx-xxl-24 {
    margin-right: 6rem !important; }
  .mb-xxl-24,
  .my-xxl-24 {
    margin-bottom: 6rem !important; }
  .ml-xxl-24,
  .mx-xxl-24 {
    margin-left: 6rem !important; }
  .m-xxl-25 {
    margin: 6.25rem !important; }
  .mt-xxl-25,
  .my-xxl-25 {
    margin-top: 6.25rem !important; }
  .mr-xxl-25,
  .mx-xxl-25 {
    margin-right: 6.25rem !important; }
  .mb-xxl-25,
  .my-xxl-25 {
    margin-bottom: 6.25rem !important; }
  .ml-xxl-25,
  .mx-xxl-25 {
    margin-left: 6.25rem !important; }
  .m-xxl-26 {
    margin: 6.5rem !important; }
  .mt-xxl-26,
  .my-xxl-26 {
    margin-top: 6.5rem !important; }
  .mr-xxl-26,
  .mx-xxl-26 {
    margin-right: 6.5rem !important; }
  .mb-xxl-26,
  .my-xxl-26 {
    margin-bottom: 6.5rem !important; }
  .ml-xxl-26,
  .mx-xxl-26 {
    margin-left: 6.5rem !important; }
  .m-xxl-27 {
    margin: 6.75rem !important; }
  .mt-xxl-27,
  .my-xxl-27 {
    margin-top: 6.75rem !important; }
  .mr-xxl-27,
  .mx-xxl-27 {
    margin-right: 6.75rem !important; }
  .mb-xxl-27,
  .my-xxl-27 {
    margin-bottom: 6.75rem !important; }
  .ml-xxl-27,
  .mx-xxl-27 {
    margin-left: 6.75rem !important; }
  .m-xxl-28 {
    margin: 7rem !important; }
  .mt-xxl-28,
  .my-xxl-28 {
    margin-top: 7rem !important; }
  .mr-xxl-28,
  .mx-xxl-28 {
    margin-right: 7rem !important; }
  .mb-xxl-28,
  .my-xxl-28 {
    margin-bottom: 7rem !important; }
  .ml-xxl-28,
  .mx-xxl-28 {
    margin-left: 7rem !important; }
  .m-xxl-29 {
    margin: 7.25rem !important; }
  .mt-xxl-29,
  .my-xxl-29 {
    margin-top: 7.25rem !important; }
  .mr-xxl-29,
  .mx-xxl-29 {
    margin-right: 7.25rem !important; }
  .mb-xxl-29,
  .my-xxl-29 {
    margin-bottom: 7.25rem !important; }
  .ml-xxl-29,
  .mx-xxl-29 {
    margin-left: 7.25rem !important; }
  .m-xxl-30 {
    margin: 7.5rem !important; }
  .mt-xxl-30,
  .my-xxl-30 {
    margin-top: 7.5rem !important; }
  .mr-xxl-30,
  .mx-xxl-30 {
    margin-right: 7.5rem !important; }
  .mb-xxl-30,
  .my-xxl-30 {
    margin-bottom: 7.5rem !important; }
  .ml-xxl-30,
  .mx-xxl-30 {
    margin-left: 7.5rem !important; }
  .m-xxl-31 {
    margin: 7.75rem !important; }
  .mt-xxl-31,
  .my-xxl-31 {
    margin-top: 7.75rem !important; }
  .mr-xxl-31,
  .mx-xxl-31 {
    margin-right: 7.75rem !important; }
  .mb-xxl-31,
  .my-xxl-31 {
    margin-bottom: 7.75rem !important; }
  .ml-xxl-31,
  .mx-xxl-31 {
    margin-left: 7.75rem !important; }
  .m-xxl-32 {
    margin: 8rem !important; }
  .mt-xxl-32,
  .my-xxl-32 {
    margin-top: 8rem !important; }
  .mr-xxl-32,
  .mx-xxl-32 {
    margin-right: 8rem !important; }
  .mb-xxl-32,
  .my-xxl-32 {
    margin-bottom: 8rem !important; }
  .ml-xxl-32,
  .mx-xxl-32 {
    margin-left: 8rem !important; }
  .m-xxl-33 {
    margin: 8.25rem !important; }
  .mt-xxl-33,
  .my-xxl-33 {
    margin-top: 8.25rem !important; }
  .mr-xxl-33,
  .mx-xxl-33 {
    margin-right: 8.25rem !important; }
  .mb-xxl-33,
  .my-xxl-33 {
    margin-bottom: 8.25rem !important; }
  .ml-xxl-33,
  .mx-xxl-33 {
    margin-left: 8.25rem !important; }
  .m-xxl-34 {
    margin: 8.5rem !important; }
  .mt-xxl-34,
  .my-xxl-34 {
    margin-top: 8.5rem !important; }
  .mr-xxl-34,
  .mx-xxl-34 {
    margin-right: 8.5rem !important; }
  .mb-xxl-34,
  .my-xxl-34 {
    margin-bottom: 8.5rem !important; }
  .ml-xxl-34,
  .mx-xxl-34 {
    margin-left: 8.5rem !important; }
  .m-xxl-35 {
    margin: 8.75rem !important; }
  .mt-xxl-35,
  .my-xxl-35 {
    margin-top: 8.75rem !important; }
  .mr-xxl-35,
  .mx-xxl-35 {
    margin-right: 8.75rem !important; }
  .mb-xxl-35,
  .my-xxl-35 {
    margin-bottom: 8.75rem !important; }
  .ml-xxl-35,
  .mx-xxl-35 {
    margin-left: 8.75rem !important; }
  .m-xxl-36 {
    margin: 9rem !important; }
  .mt-xxl-36,
  .my-xxl-36 {
    margin-top: 9rem !important; }
  .mr-xxl-36,
  .mx-xxl-36 {
    margin-right: 9rem !important; }
  .mb-xxl-36,
  .my-xxl-36 {
    margin-bottom: 9rem !important; }
  .ml-xxl-36,
  .mx-xxl-36 {
    margin-left: 9rem !important; }
  .m-xxl-37 {
    margin: 9.25rem !important; }
  .mt-xxl-37,
  .my-xxl-37 {
    margin-top: 9.25rem !important; }
  .mr-xxl-37,
  .mx-xxl-37 {
    margin-right: 9.25rem !important; }
  .mb-xxl-37,
  .my-xxl-37 {
    margin-bottom: 9.25rem !important; }
  .ml-xxl-37,
  .mx-xxl-37 {
    margin-left: 9.25rem !important; }
  .m-xxl-48 {
    margin: 9.5rem !important; }
  .mt-xxl-48,
  .my-xxl-48 {
    margin-top: 9.5rem !important; }
  .mr-xxl-48,
  .mx-xxl-48 {
    margin-right: 9.5rem !important; }
  .mb-xxl-48,
  .my-xxl-48 {
    margin-bottom: 9.5rem !important; }
  .ml-xxl-48,
  .mx-xxl-48 {
    margin-left: 9.5rem !important; }
  .m-xxl-39 {
    margin: 9.75rem !important; }
  .mt-xxl-39,
  .my-xxl-39 {
    margin-top: 9.75rem !important; }
  .mr-xxl-39,
  .mx-xxl-39 {
    margin-right: 9.75rem !important; }
  .mb-xxl-39,
  .my-xxl-39 {
    margin-bottom: 9.75rem !important; }
  .ml-xxl-39,
  .mx-xxl-39 {
    margin-left: 9.75rem !important; }
  .m-xxl-40 {
    margin: 10rem !important; }
  .mt-xxl-40,
  .my-xxl-40 {
    margin-top: 10rem !important; }
  .mr-xxl-40,
  .mx-xxl-40 {
    margin-right: 10rem !important; }
  .mb-xxl-40,
  .my-xxl-40 {
    margin-bottom: 10rem !important; }
  .ml-xxl-40,
  .mx-xxl-40 {
    margin-left: 10rem !important; }
  .p-xxl-0 {
    padding: 0 !important; }
  .pt-xxl-0,
  .py-xxl-0 {
    padding-top: 0 !important; }
  .pr-xxl-0,
  .px-xxl-0 {
    padding-right: 0 !important; }
  .pb-xxl-0,
  .py-xxl-0 {
    padding-bottom: 0 !important; }
  .pl-xxl-0,
  .px-xxl-0 {
    padding-left: 0 !important; }
  .p-xxl-1 {
    padding: 0.25rem !important; }
  .pt-xxl-1,
  .py-xxl-1 {
    padding-top: 0.25rem !important; }
  .pr-xxl-1,
  .px-xxl-1 {
    padding-right: 0.25rem !important; }
  .pb-xxl-1,
  .py-xxl-1 {
    padding-bottom: 0.25rem !important; }
  .pl-xxl-1,
  .px-xxl-1 {
    padding-left: 0.25rem !important; }
  .p-xxl-2 {
    padding: 0.5rem !important; }
  .pt-xxl-2,
  .py-xxl-2 {
    padding-top: 0.5rem !important; }
  .pr-xxl-2,
  .px-xxl-2 {
    padding-right: 0.5rem !important; }
  .pb-xxl-2,
  .py-xxl-2 {
    padding-bottom: 0.5rem !important; }
  .pl-xxl-2,
  .px-xxl-2 {
    padding-left: 0.5rem !important; }
  .p-xxl-3 {
    padding: 0.75rem !important; }
  .pt-xxl-3,
  .py-xxl-3 {
    padding-top: 0.75rem !important; }
  .pr-xxl-3,
  .px-xxl-3 {
    padding-right: 0.75rem !important; }
  .pb-xxl-3,
  .py-xxl-3 {
    padding-bottom: 0.75rem !important; }
  .pl-xxl-3,
  .px-xxl-3 {
    padding-left: 0.75rem !important; }
  .p-xxl-4 {
    padding: 1rem !important; }
  .pt-xxl-4,
  .py-xxl-4 {
    padding-top: 1rem !important; }
  .pr-xxl-4,
  .px-xxl-4 {
    padding-right: 1rem !important; }
  .pb-xxl-4,
  .py-xxl-4 {
    padding-bottom: 1rem !important; }
  .pl-xxl-4,
  .px-xxl-4 {
    padding-left: 1rem !important; }
  .p-xxl-5 {
    padding: 1.25rem !important; }
  .pt-xxl-5,
  .py-xxl-5 {
    padding-top: 1.25rem !important; }
  .pr-xxl-5,
  .px-xxl-5 {
    padding-right: 1.25rem !important; }
  .pb-xxl-5,
  .py-xxl-5 {
    padding-bottom: 1.25rem !important; }
  .pl-xxl-5,
  .px-xxl-5 {
    padding-left: 1.25rem !important; }
  .p-xxl-6 {
    padding: 1.5rem !important; }
  .pt-xxl-6,
  .py-xxl-6 {
    padding-top: 1.5rem !important; }
  .pr-xxl-6,
  .px-xxl-6 {
    padding-right: 1.5rem !important; }
  .pb-xxl-6,
  .py-xxl-6 {
    padding-bottom: 1.5rem !important; }
  .pl-xxl-6,
  .px-xxl-6 {
    padding-left: 1.5rem !important; }
  .p-xxl-7 {
    padding: 1.75rem !important; }
  .pt-xxl-7,
  .py-xxl-7 {
    padding-top: 1.75rem !important; }
  .pr-xxl-7,
  .px-xxl-7 {
    padding-right: 1.75rem !important; }
  .pb-xxl-7,
  .py-xxl-7 {
    padding-bottom: 1.75rem !important; }
  .pl-xxl-7,
  .px-xxl-7 {
    padding-left: 1.75rem !important; }
  .p-xxl-8 {
    padding: 2rem !important; }
  .pt-xxl-8,
  .py-xxl-8 {
    padding-top: 2rem !important; }
  .pr-xxl-8,
  .px-xxl-8 {
    padding-right: 2rem !important; }
  .pb-xxl-8,
  .py-xxl-8 {
    padding-bottom: 2rem !important; }
  .pl-xxl-8,
  .px-xxl-8 {
    padding-left: 2rem !important; }
  .p-xxl-9 {
    padding: 2.25rem !important; }
  .pt-xxl-9,
  .py-xxl-9 {
    padding-top: 2.25rem !important; }
  .pr-xxl-9,
  .px-xxl-9 {
    padding-right: 2.25rem !important; }
  .pb-xxl-9,
  .py-xxl-9 {
    padding-bottom: 2.25rem !important; }
  .pl-xxl-9,
  .px-xxl-9 {
    padding-left: 2.25rem !important; }
  .p-xxl-10 {
    padding: 2.5rem !important; }
  .pt-xxl-10,
  .py-xxl-10 {
    padding-top: 2.5rem !important; }
  .pr-xxl-10,
  .px-xxl-10 {
    padding-right: 2.5rem !important; }
  .pb-xxl-10,
  .py-xxl-10 {
    padding-bottom: 2.5rem !important; }
  .pl-xxl-10,
  .px-xxl-10 {
    padding-left: 2.5rem !important; }
  .p-xxl-11 {
    padding: 2.75rem !important; }
  .pt-xxl-11,
  .py-xxl-11 {
    padding-top: 2.75rem !important; }
  .pr-xxl-11,
  .px-xxl-11 {
    padding-right: 2.75rem !important; }
  .pb-xxl-11,
  .py-xxl-11 {
    padding-bottom: 2.75rem !important; }
  .pl-xxl-11,
  .px-xxl-11 {
    padding-left: 2.75rem !important; }
  .p-xxl-12 {
    padding: 3rem !important; }
  .pt-xxl-12,
  .py-xxl-12 {
    padding-top: 3rem !important; }
  .pr-xxl-12,
  .px-xxl-12 {
    padding-right: 3rem !important; }
  .pb-xxl-12,
  .py-xxl-12 {
    padding-bottom: 3rem !important; }
  .pl-xxl-12,
  .px-xxl-12 {
    padding-left: 3rem !important; }
  .p-xxl-13 {
    padding: 3.25rem !important; }
  .pt-xxl-13,
  .py-xxl-13 {
    padding-top: 3.25rem !important; }
  .pr-xxl-13,
  .px-xxl-13 {
    padding-right: 3.25rem !important; }
  .pb-xxl-13,
  .py-xxl-13 {
    padding-bottom: 3.25rem !important; }
  .pl-xxl-13,
  .px-xxl-13 {
    padding-left: 3.25rem !important; }
  .p-xxl-14 {
    padding: 3.5rem !important; }
  .pt-xxl-14,
  .py-xxl-14 {
    padding-top: 3.5rem !important; }
  .pr-xxl-14,
  .px-xxl-14 {
    padding-right: 3.5rem !important; }
  .pb-xxl-14,
  .py-xxl-14 {
    padding-bottom: 3.5rem !important; }
  .pl-xxl-14,
  .px-xxl-14 {
    padding-left: 3.5rem !important; }
  .p-xxl-15 {
    padding: 3.75rem !important; }
  .pt-xxl-15,
  .py-xxl-15 {
    padding-top: 3.75rem !important; }
  .pr-xxl-15,
  .px-xxl-15 {
    padding-right: 3.75rem !important; }
  .pb-xxl-15,
  .py-xxl-15 {
    padding-bottom: 3.75rem !important; }
  .pl-xxl-15,
  .px-xxl-15 {
    padding-left: 3.75rem !important; }
  .p-xxl-16 {
    padding: 4rem !important; }
  .pt-xxl-16,
  .py-xxl-16 {
    padding-top: 4rem !important; }
  .pr-xxl-16,
  .px-xxl-16 {
    padding-right: 4rem !important; }
  .pb-xxl-16,
  .py-xxl-16 {
    padding-bottom: 4rem !important; }
  .pl-xxl-16,
  .px-xxl-16 {
    padding-left: 4rem !important; }
  .p-xxl-17 {
    padding: 4.25rem !important; }
  .pt-xxl-17,
  .py-xxl-17 {
    padding-top: 4.25rem !important; }
  .pr-xxl-17,
  .px-xxl-17 {
    padding-right: 4.25rem !important; }
  .pb-xxl-17,
  .py-xxl-17 {
    padding-bottom: 4.25rem !important; }
  .pl-xxl-17,
  .px-xxl-17 {
    padding-left: 4.25rem !important; }
  .p-xxl-18 {
    padding: 4.5rem !important; }
  .pt-xxl-18,
  .py-xxl-18 {
    padding-top: 4.5rem !important; }
  .pr-xxl-18,
  .px-xxl-18 {
    padding-right: 4.5rem !important; }
  .pb-xxl-18,
  .py-xxl-18 {
    padding-bottom: 4.5rem !important; }
  .pl-xxl-18,
  .px-xxl-18 {
    padding-left: 4.5rem !important; }
  .p-xxl-19 {
    padding: 4.75rem !important; }
  .pt-xxl-19,
  .py-xxl-19 {
    padding-top: 4.75rem !important; }
  .pr-xxl-19,
  .px-xxl-19 {
    padding-right: 4.75rem !important; }
  .pb-xxl-19,
  .py-xxl-19 {
    padding-bottom: 4.75rem !important; }
  .pl-xxl-19,
  .px-xxl-19 {
    padding-left: 4.75rem !important; }
  .p-xxl-20 {
    padding: 5rem !important; }
  .pt-xxl-20,
  .py-xxl-20 {
    padding-top: 5rem !important; }
  .pr-xxl-20,
  .px-xxl-20 {
    padding-right: 5rem !important; }
  .pb-xxl-20,
  .py-xxl-20 {
    padding-bottom: 5rem !important; }
  .pl-xxl-20,
  .px-xxl-20 {
    padding-left: 5rem !important; }
  .p-xxl-21 {
    padding: 5.25rem !important; }
  .pt-xxl-21,
  .py-xxl-21 {
    padding-top: 5.25rem !important; }
  .pr-xxl-21,
  .px-xxl-21 {
    padding-right: 5.25rem !important; }
  .pb-xxl-21,
  .py-xxl-21 {
    padding-bottom: 5.25rem !important; }
  .pl-xxl-21,
  .px-xxl-21 {
    padding-left: 5.25rem !important; }
  .p-xxl-22 {
    padding: 5.5rem !important; }
  .pt-xxl-22,
  .py-xxl-22 {
    padding-top: 5.5rem !important; }
  .pr-xxl-22,
  .px-xxl-22 {
    padding-right: 5.5rem !important; }
  .pb-xxl-22,
  .py-xxl-22 {
    padding-bottom: 5.5rem !important; }
  .pl-xxl-22,
  .px-xxl-22 {
    padding-left: 5.5rem !important; }
  .p-xxl-23 {
    padding: 5.75rem !important; }
  .pt-xxl-23,
  .py-xxl-23 {
    padding-top: 5.75rem !important; }
  .pr-xxl-23,
  .px-xxl-23 {
    padding-right: 5.75rem !important; }
  .pb-xxl-23,
  .py-xxl-23 {
    padding-bottom: 5.75rem !important; }
  .pl-xxl-23,
  .px-xxl-23 {
    padding-left: 5.75rem !important; }
  .p-xxl-24 {
    padding: 6rem !important; }
  .pt-xxl-24,
  .py-xxl-24 {
    padding-top: 6rem !important; }
  .pr-xxl-24,
  .px-xxl-24 {
    padding-right: 6rem !important; }
  .pb-xxl-24,
  .py-xxl-24 {
    padding-bottom: 6rem !important; }
  .pl-xxl-24,
  .px-xxl-24 {
    padding-left: 6rem !important; }
  .p-xxl-25 {
    padding: 6.25rem !important; }
  .pt-xxl-25,
  .py-xxl-25 {
    padding-top: 6.25rem !important; }
  .pr-xxl-25,
  .px-xxl-25 {
    padding-right: 6.25rem !important; }
  .pb-xxl-25,
  .py-xxl-25 {
    padding-bottom: 6.25rem !important; }
  .pl-xxl-25,
  .px-xxl-25 {
    padding-left: 6.25rem !important; }
  .p-xxl-26 {
    padding: 6.5rem !important; }
  .pt-xxl-26,
  .py-xxl-26 {
    padding-top: 6.5rem !important; }
  .pr-xxl-26,
  .px-xxl-26 {
    padding-right: 6.5rem !important; }
  .pb-xxl-26,
  .py-xxl-26 {
    padding-bottom: 6.5rem !important; }
  .pl-xxl-26,
  .px-xxl-26 {
    padding-left: 6.5rem !important; }
  .p-xxl-27 {
    padding: 6.75rem !important; }
  .pt-xxl-27,
  .py-xxl-27 {
    padding-top: 6.75rem !important; }
  .pr-xxl-27,
  .px-xxl-27 {
    padding-right: 6.75rem !important; }
  .pb-xxl-27,
  .py-xxl-27 {
    padding-bottom: 6.75rem !important; }
  .pl-xxl-27,
  .px-xxl-27 {
    padding-left: 6.75rem !important; }
  .p-xxl-28 {
    padding: 7rem !important; }
  .pt-xxl-28,
  .py-xxl-28 {
    padding-top: 7rem !important; }
  .pr-xxl-28,
  .px-xxl-28 {
    padding-right: 7rem !important; }
  .pb-xxl-28,
  .py-xxl-28 {
    padding-bottom: 7rem !important; }
  .pl-xxl-28,
  .px-xxl-28 {
    padding-left: 7rem !important; }
  .p-xxl-29 {
    padding: 7.25rem !important; }
  .pt-xxl-29,
  .py-xxl-29 {
    padding-top: 7.25rem !important; }
  .pr-xxl-29,
  .px-xxl-29 {
    padding-right: 7.25rem !important; }
  .pb-xxl-29,
  .py-xxl-29 {
    padding-bottom: 7.25rem !important; }
  .pl-xxl-29,
  .px-xxl-29 {
    padding-left: 7.25rem !important; }
  .p-xxl-30 {
    padding: 7.5rem !important; }
  .pt-xxl-30,
  .py-xxl-30 {
    padding-top: 7.5rem !important; }
  .pr-xxl-30,
  .px-xxl-30 {
    padding-right: 7.5rem !important; }
  .pb-xxl-30,
  .py-xxl-30 {
    padding-bottom: 7.5rem !important; }
  .pl-xxl-30,
  .px-xxl-30 {
    padding-left: 7.5rem !important; }
  .p-xxl-31 {
    padding: 7.75rem !important; }
  .pt-xxl-31,
  .py-xxl-31 {
    padding-top: 7.75rem !important; }
  .pr-xxl-31,
  .px-xxl-31 {
    padding-right: 7.75rem !important; }
  .pb-xxl-31,
  .py-xxl-31 {
    padding-bottom: 7.75rem !important; }
  .pl-xxl-31,
  .px-xxl-31 {
    padding-left: 7.75rem !important; }
  .p-xxl-32 {
    padding: 8rem !important; }
  .pt-xxl-32,
  .py-xxl-32 {
    padding-top: 8rem !important; }
  .pr-xxl-32,
  .px-xxl-32 {
    padding-right: 8rem !important; }
  .pb-xxl-32,
  .py-xxl-32 {
    padding-bottom: 8rem !important; }
  .pl-xxl-32,
  .px-xxl-32 {
    padding-left: 8rem !important; }
  .p-xxl-33 {
    padding: 8.25rem !important; }
  .pt-xxl-33,
  .py-xxl-33 {
    padding-top: 8.25rem !important; }
  .pr-xxl-33,
  .px-xxl-33 {
    padding-right: 8.25rem !important; }
  .pb-xxl-33,
  .py-xxl-33 {
    padding-bottom: 8.25rem !important; }
  .pl-xxl-33,
  .px-xxl-33 {
    padding-left: 8.25rem !important; }
  .p-xxl-34 {
    padding: 8.5rem !important; }
  .pt-xxl-34,
  .py-xxl-34 {
    padding-top: 8.5rem !important; }
  .pr-xxl-34,
  .px-xxl-34 {
    padding-right: 8.5rem !important; }
  .pb-xxl-34,
  .py-xxl-34 {
    padding-bottom: 8.5rem !important; }
  .pl-xxl-34,
  .px-xxl-34 {
    padding-left: 8.5rem !important; }
  .p-xxl-35 {
    padding: 8.75rem !important; }
  .pt-xxl-35,
  .py-xxl-35 {
    padding-top: 8.75rem !important; }
  .pr-xxl-35,
  .px-xxl-35 {
    padding-right: 8.75rem !important; }
  .pb-xxl-35,
  .py-xxl-35 {
    padding-bottom: 8.75rem !important; }
  .pl-xxl-35,
  .px-xxl-35 {
    padding-left: 8.75rem !important; }
  .p-xxl-36 {
    padding: 9rem !important; }
  .pt-xxl-36,
  .py-xxl-36 {
    padding-top: 9rem !important; }
  .pr-xxl-36,
  .px-xxl-36 {
    padding-right: 9rem !important; }
  .pb-xxl-36,
  .py-xxl-36 {
    padding-bottom: 9rem !important; }
  .pl-xxl-36,
  .px-xxl-36 {
    padding-left: 9rem !important; }
  .p-xxl-37 {
    padding: 9.25rem !important; }
  .pt-xxl-37,
  .py-xxl-37 {
    padding-top: 9.25rem !important; }
  .pr-xxl-37,
  .px-xxl-37 {
    padding-right: 9.25rem !important; }
  .pb-xxl-37,
  .py-xxl-37 {
    padding-bottom: 9.25rem !important; }
  .pl-xxl-37,
  .px-xxl-37 {
    padding-left: 9.25rem !important; }
  .p-xxl-48 {
    padding: 9.5rem !important; }
  .pt-xxl-48,
  .py-xxl-48 {
    padding-top: 9.5rem !important; }
  .pr-xxl-48,
  .px-xxl-48 {
    padding-right: 9.5rem !important; }
  .pb-xxl-48,
  .py-xxl-48 {
    padding-bottom: 9.5rem !important; }
  .pl-xxl-48,
  .px-xxl-48 {
    padding-left: 9.5rem !important; }
  .p-xxl-39 {
    padding: 9.75rem !important; }
  .pt-xxl-39,
  .py-xxl-39 {
    padding-top: 9.75rem !important; }
  .pr-xxl-39,
  .px-xxl-39 {
    padding-right: 9.75rem !important; }
  .pb-xxl-39,
  .py-xxl-39 {
    padding-bottom: 9.75rem !important; }
  .pl-xxl-39,
  .px-xxl-39 {
    padding-left: 9.75rem !important; }
  .p-xxl-40 {
    padding: 10rem !important; }
  .pt-xxl-40,
  .py-xxl-40 {
    padding-top: 10rem !important; }
  .pr-xxl-40,
  .px-xxl-40 {
    padding-right: 10rem !important; }
  .pb-xxl-40,
  .py-xxl-40 {
    padding-bottom: 10rem !important; }
  .pl-xxl-40,
  .px-xxl-40 {
    padding-left: 10rem !important; }
  .m-xxl-n1 {
    margin: -0.25rem !important; }
  .mt-xxl-n1,
  .my-xxl-n1 {
    margin-top: -0.25rem !important; }
  .mr-xxl-n1,
  .mx-xxl-n1 {
    margin-right: -0.25rem !important; }
  .mb-xxl-n1,
  .my-xxl-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-xxl-n1,
  .mx-xxl-n1 {
    margin-left: -0.25rem !important; }
  .m-xxl-n2 {
    margin: -0.5rem !important; }
  .mt-xxl-n2,
  .my-xxl-n2 {
    margin-top: -0.5rem !important; }
  .mr-xxl-n2,
  .mx-xxl-n2 {
    margin-right: -0.5rem !important; }
  .mb-xxl-n2,
  .my-xxl-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-xxl-n2,
  .mx-xxl-n2 {
    margin-left: -0.5rem !important; }
  .m-xxl-n3 {
    margin: -0.75rem !important; }
  .mt-xxl-n3,
  .my-xxl-n3 {
    margin-top: -0.75rem !important; }
  .mr-xxl-n3,
  .mx-xxl-n3 {
    margin-right: -0.75rem !important; }
  .mb-xxl-n3,
  .my-xxl-n3 {
    margin-bottom: -0.75rem !important; }
  .ml-xxl-n3,
  .mx-xxl-n3 {
    margin-left: -0.75rem !important; }
  .m-xxl-n4 {
    margin: -1rem !important; }
  .mt-xxl-n4,
  .my-xxl-n4 {
    margin-top: -1rem !important; }
  .mr-xxl-n4,
  .mx-xxl-n4 {
    margin-right: -1rem !important; }
  .mb-xxl-n4,
  .my-xxl-n4 {
    margin-bottom: -1rem !important; }
  .ml-xxl-n4,
  .mx-xxl-n4 {
    margin-left: -1rem !important; }
  .m-xxl-n5 {
    margin: -1.25rem !important; }
  .mt-xxl-n5,
  .my-xxl-n5 {
    margin-top: -1.25rem !important; }
  .mr-xxl-n5,
  .mx-xxl-n5 {
    margin-right: -1.25rem !important; }
  .mb-xxl-n5,
  .my-xxl-n5 {
    margin-bottom: -1.25rem !important; }
  .ml-xxl-n5,
  .mx-xxl-n5 {
    margin-left: -1.25rem !important; }
  .m-xxl-n6 {
    margin: -1.5rem !important; }
  .mt-xxl-n6,
  .my-xxl-n6 {
    margin-top: -1.5rem !important; }
  .mr-xxl-n6,
  .mx-xxl-n6 {
    margin-right: -1.5rem !important; }
  .mb-xxl-n6,
  .my-xxl-n6 {
    margin-bottom: -1.5rem !important; }
  .ml-xxl-n6,
  .mx-xxl-n6 {
    margin-left: -1.5rem !important; }
  .m-xxl-n7 {
    margin: -1.75rem !important; }
  .mt-xxl-n7,
  .my-xxl-n7 {
    margin-top: -1.75rem !important; }
  .mr-xxl-n7,
  .mx-xxl-n7 {
    margin-right: -1.75rem !important; }
  .mb-xxl-n7,
  .my-xxl-n7 {
    margin-bottom: -1.75rem !important; }
  .ml-xxl-n7,
  .mx-xxl-n7 {
    margin-left: -1.75rem !important; }
  .m-xxl-n8 {
    margin: -2rem !important; }
  .mt-xxl-n8,
  .my-xxl-n8 {
    margin-top: -2rem !important; }
  .mr-xxl-n8,
  .mx-xxl-n8 {
    margin-right: -2rem !important; }
  .mb-xxl-n8,
  .my-xxl-n8 {
    margin-bottom: -2rem !important; }
  .ml-xxl-n8,
  .mx-xxl-n8 {
    margin-left: -2rem !important; }
  .m-xxl-n9 {
    margin: -2.25rem !important; }
  .mt-xxl-n9,
  .my-xxl-n9 {
    margin-top: -2.25rem !important; }
  .mr-xxl-n9,
  .mx-xxl-n9 {
    margin-right: -2.25rem !important; }
  .mb-xxl-n9,
  .my-xxl-n9 {
    margin-bottom: -2.25rem !important; }
  .ml-xxl-n9,
  .mx-xxl-n9 {
    margin-left: -2.25rem !important; }
  .m-xxl-n10 {
    margin: -2.5rem !important; }
  .mt-xxl-n10,
  .my-xxl-n10 {
    margin-top: -2.5rem !important; }
  .mr-xxl-n10,
  .mx-xxl-n10 {
    margin-right: -2.5rem !important; }
  .mb-xxl-n10,
  .my-xxl-n10 {
    margin-bottom: -2.5rem !important; }
  .ml-xxl-n10,
  .mx-xxl-n10 {
    margin-left: -2.5rem !important; }
  .m-xxl-n11 {
    margin: -2.75rem !important; }
  .mt-xxl-n11,
  .my-xxl-n11 {
    margin-top: -2.75rem !important; }
  .mr-xxl-n11,
  .mx-xxl-n11 {
    margin-right: -2.75rem !important; }
  .mb-xxl-n11,
  .my-xxl-n11 {
    margin-bottom: -2.75rem !important; }
  .ml-xxl-n11,
  .mx-xxl-n11 {
    margin-left: -2.75rem !important; }
  .m-xxl-n12 {
    margin: -3rem !important; }
  .mt-xxl-n12,
  .my-xxl-n12 {
    margin-top: -3rem !important; }
  .mr-xxl-n12,
  .mx-xxl-n12 {
    margin-right: -3rem !important; }
  .mb-xxl-n12,
  .my-xxl-n12 {
    margin-bottom: -3rem !important; }
  .ml-xxl-n12,
  .mx-xxl-n12 {
    margin-left: -3rem !important; }
  .m-xxl-n13 {
    margin: -3.25rem !important; }
  .mt-xxl-n13,
  .my-xxl-n13 {
    margin-top: -3.25rem !important; }
  .mr-xxl-n13,
  .mx-xxl-n13 {
    margin-right: -3.25rem !important; }
  .mb-xxl-n13,
  .my-xxl-n13 {
    margin-bottom: -3.25rem !important; }
  .ml-xxl-n13,
  .mx-xxl-n13 {
    margin-left: -3.25rem !important; }
  .m-xxl-n14 {
    margin: -3.5rem !important; }
  .mt-xxl-n14,
  .my-xxl-n14 {
    margin-top: -3.5rem !important; }
  .mr-xxl-n14,
  .mx-xxl-n14 {
    margin-right: -3.5rem !important; }
  .mb-xxl-n14,
  .my-xxl-n14 {
    margin-bottom: -3.5rem !important; }
  .ml-xxl-n14,
  .mx-xxl-n14 {
    margin-left: -3.5rem !important; }
  .m-xxl-n15 {
    margin: -3.75rem !important; }
  .mt-xxl-n15,
  .my-xxl-n15 {
    margin-top: -3.75rem !important; }
  .mr-xxl-n15,
  .mx-xxl-n15 {
    margin-right: -3.75rem !important; }
  .mb-xxl-n15,
  .my-xxl-n15 {
    margin-bottom: -3.75rem !important; }
  .ml-xxl-n15,
  .mx-xxl-n15 {
    margin-left: -3.75rem !important; }
  .m-xxl-n16 {
    margin: -4rem !important; }
  .mt-xxl-n16,
  .my-xxl-n16 {
    margin-top: -4rem !important; }
  .mr-xxl-n16,
  .mx-xxl-n16 {
    margin-right: -4rem !important; }
  .mb-xxl-n16,
  .my-xxl-n16 {
    margin-bottom: -4rem !important; }
  .ml-xxl-n16,
  .mx-xxl-n16 {
    margin-left: -4rem !important; }
  .m-xxl-n17 {
    margin: -4.25rem !important; }
  .mt-xxl-n17,
  .my-xxl-n17 {
    margin-top: -4.25rem !important; }
  .mr-xxl-n17,
  .mx-xxl-n17 {
    margin-right: -4.25rem !important; }
  .mb-xxl-n17,
  .my-xxl-n17 {
    margin-bottom: -4.25rem !important; }
  .ml-xxl-n17,
  .mx-xxl-n17 {
    margin-left: -4.25rem !important; }
  .m-xxl-n18 {
    margin: -4.5rem !important; }
  .mt-xxl-n18,
  .my-xxl-n18 {
    margin-top: -4.5rem !important; }
  .mr-xxl-n18,
  .mx-xxl-n18 {
    margin-right: -4.5rem !important; }
  .mb-xxl-n18,
  .my-xxl-n18 {
    margin-bottom: -4.5rem !important; }
  .ml-xxl-n18,
  .mx-xxl-n18 {
    margin-left: -4.5rem !important; }
  .m-xxl-n19 {
    margin: -4.75rem !important; }
  .mt-xxl-n19,
  .my-xxl-n19 {
    margin-top: -4.75rem !important; }
  .mr-xxl-n19,
  .mx-xxl-n19 {
    margin-right: -4.75rem !important; }
  .mb-xxl-n19,
  .my-xxl-n19 {
    margin-bottom: -4.75rem !important; }
  .ml-xxl-n19,
  .mx-xxl-n19 {
    margin-left: -4.75rem !important; }
  .m-xxl-n20 {
    margin: -5rem !important; }
  .mt-xxl-n20,
  .my-xxl-n20 {
    margin-top: -5rem !important; }
  .mr-xxl-n20,
  .mx-xxl-n20 {
    margin-right: -5rem !important; }
  .mb-xxl-n20,
  .my-xxl-n20 {
    margin-bottom: -5rem !important; }
  .ml-xxl-n20,
  .mx-xxl-n20 {
    margin-left: -5rem !important; }
  .m-xxl-n21 {
    margin: -5.25rem !important; }
  .mt-xxl-n21,
  .my-xxl-n21 {
    margin-top: -5.25rem !important; }
  .mr-xxl-n21,
  .mx-xxl-n21 {
    margin-right: -5.25rem !important; }
  .mb-xxl-n21,
  .my-xxl-n21 {
    margin-bottom: -5.25rem !important; }
  .ml-xxl-n21,
  .mx-xxl-n21 {
    margin-left: -5.25rem !important; }
  .m-xxl-n22 {
    margin: -5.5rem !important; }
  .mt-xxl-n22,
  .my-xxl-n22 {
    margin-top: -5.5rem !important; }
  .mr-xxl-n22,
  .mx-xxl-n22 {
    margin-right: -5.5rem !important; }
  .mb-xxl-n22,
  .my-xxl-n22 {
    margin-bottom: -5.5rem !important; }
  .ml-xxl-n22,
  .mx-xxl-n22 {
    margin-left: -5.5rem !important; }
  .m-xxl-n23 {
    margin: -5.75rem !important; }
  .mt-xxl-n23,
  .my-xxl-n23 {
    margin-top: -5.75rem !important; }
  .mr-xxl-n23,
  .mx-xxl-n23 {
    margin-right: -5.75rem !important; }
  .mb-xxl-n23,
  .my-xxl-n23 {
    margin-bottom: -5.75rem !important; }
  .ml-xxl-n23,
  .mx-xxl-n23 {
    margin-left: -5.75rem !important; }
  .m-xxl-n24 {
    margin: -6rem !important; }
  .mt-xxl-n24,
  .my-xxl-n24 {
    margin-top: -6rem !important; }
  .mr-xxl-n24,
  .mx-xxl-n24 {
    margin-right: -6rem !important; }
  .mb-xxl-n24,
  .my-xxl-n24 {
    margin-bottom: -6rem !important; }
  .ml-xxl-n24,
  .mx-xxl-n24 {
    margin-left: -6rem !important; }
  .m-xxl-n25 {
    margin: -6.25rem !important; }
  .mt-xxl-n25,
  .my-xxl-n25 {
    margin-top: -6.25rem !important; }
  .mr-xxl-n25,
  .mx-xxl-n25 {
    margin-right: -6.25rem !important; }
  .mb-xxl-n25,
  .my-xxl-n25 {
    margin-bottom: -6.25rem !important; }
  .ml-xxl-n25,
  .mx-xxl-n25 {
    margin-left: -6.25rem !important; }
  .m-xxl-n26 {
    margin: -6.5rem !important; }
  .mt-xxl-n26,
  .my-xxl-n26 {
    margin-top: -6.5rem !important; }
  .mr-xxl-n26,
  .mx-xxl-n26 {
    margin-right: -6.5rem !important; }
  .mb-xxl-n26,
  .my-xxl-n26 {
    margin-bottom: -6.5rem !important; }
  .ml-xxl-n26,
  .mx-xxl-n26 {
    margin-left: -6.5rem !important; }
  .m-xxl-n27 {
    margin: -6.75rem !important; }
  .mt-xxl-n27,
  .my-xxl-n27 {
    margin-top: -6.75rem !important; }
  .mr-xxl-n27,
  .mx-xxl-n27 {
    margin-right: -6.75rem !important; }
  .mb-xxl-n27,
  .my-xxl-n27 {
    margin-bottom: -6.75rem !important; }
  .ml-xxl-n27,
  .mx-xxl-n27 {
    margin-left: -6.75rem !important; }
  .m-xxl-n28 {
    margin: -7rem !important; }
  .mt-xxl-n28,
  .my-xxl-n28 {
    margin-top: -7rem !important; }
  .mr-xxl-n28,
  .mx-xxl-n28 {
    margin-right: -7rem !important; }
  .mb-xxl-n28,
  .my-xxl-n28 {
    margin-bottom: -7rem !important; }
  .ml-xxl-n28,
  .mx-xxl-n28 {
    margin-left: -7rem !important; }
  .m-xxl-n29 {
    margin: -7.25rem !important; }
  .mt-xxl-n29,
  .my-xxl-n29 {
    margin-top: -7.25rem !important; }
  .mr-xxl-n29,
  .mx-xxl-n29 {
    margin-right: -7.25rem !important; }
  .mb-xxl-n29,
  .my-xxl-n29 {
    margin-bottom: -7.25rem !important; }
  .ml-xxl-n29,
  .mx-xxl-n29 {
    margin-left: -7.25rem !important; }
  .m-xxl-n30 {
    margin: -7.5rem !important; }
  .mt-xxl-n30,
  .my-xxl-n30 {
    margin-top: -7.5rem !important; }
  .mr-xxl-n30,
  .mx-xxl-n30 {
    margin-right: -7.5rem !important; }
  .mb-xxl-n30,
  .my-xxl-n30 {
    margin-bottom: -7.5rem !important; }
  .ml-xxl-n30,
  .mx-xxl-n30 {
    margin-left: -7.5rem !important; }
  .m-xxl-n31 {
    margin: -7.75rem !important; }
  .mt-xxl-n31,
  .my-xxl-n31 {
    margin-top: -7.75rem !important; }
  .mr-xxl-n31,
  .mx-xxl-n31 {
    margin-right: -7.75rem !important; }
  .mb-xxl-n31,
  .my-xxl-n31 {
    margin-bottom: -7.75rem !important; }
  .ml-xxl-n31,
  .mx-xxl-n31 {
    margin-left: -7.75rem !important; }
  .m-xxl-n32 {
    margin: -8rem !important; }
  .mt-xxl-n32,
  .my-xxl-n32 {
    margin-top: -8rem !important; }
  .mr-xxl-n32,
  .mx-xxl-n32 {
    margin-right: -8rem !important; }
  .mb-xxl-n32,
  .my-xxl-n32 {
    margin-bottom: -8rem !important; }
  .ml-xxl-n32,
  .mx-xxl-n32 {
    margin-left: -8rem !important; }
  .m-xxl-n33 {
    margin: -8.25rem !important; }
  .mt-xxl-n33,
  .my-xxl-n33 {
    margin-top: -8.25rem !important; }
  .mr-xxl-n33,
  .mx-xxl-n33 {
    margin-right: -8.25rem !important; }
  .mb-xxl-n33,
  .my-xxl-n33 {
    margin-bottom: -8.25rem !important; }
  .ml-xxl-n33,
  .mx-xxl-n33 {
    margin-left: -8.25rem !important; }
  .m-xxl-n34 {
    margin: -8.5rem !important; }
  .mt-xxl-n34,
  .my-xxl-n34 {
    margin-top: -8.5rem !important; }
  .mr-xxl-n34,
  .mx-xxl-n34 {
    margin-right: -8.5rem !important; }
  .mb-xxl-n34,
  .my-xxl-n34 {
    margin-bottom: -8.5rem !important; }
  .ml-xxl-n34,
  .mx-xxl-n34 {
    margin-left: -8.5rem !important; }
  .m-xxl-n35 {
    margin: -8.75rem !important; }
  .mt-xxl-n35,
  .my-xxl-n35 {
    margin-top: -8.75rem !important; }
  .mr-xxl-n35,
  .mx-xxl-n35 {
    margin-right: -8.75rem !important; }
  .mb-xxl-n35,
  .my-xxl-n35 {
    margin-bottom: -8.75rem !important; }
  .ml-xxl-n35,
  .mx-xxl-n35 {
    margin-left: -8.75rem !important; }
  .m-xxl-n36 {
    margin: -9rem !important; }
  .mt-xxl-n36,
  .my-xxl-n36 {
    margin-top: -9rem !important; }
  .mr-xxl-n36,
  .mx-xxl-n36 {
    margin-right: -9rem !important; }
  .mb-xxl-n36,
  .my-xxl-n36 {
    margin-bottom: -9rem !important; }
  .ml-xxl-n36,
  .mx-xxl-n36 {
    margin-left: -9rem !important; }
  .m-xxl-n37 {
    margin: -9.25rem !important; }
  .mt-xxl-n37,
  .my-xxl-n37 {
    margin-top: -9.25rem !important; }
  .mr-xxl-n37,
  .mx-xxl-n37 {
    margin-right: -9.25rem !important; }
  .mb-xxl-n37,
  .my-xxl-n37 {
    margin-bottom: -9.25rem !important; }
  .ml-xxl-n37,
  .mx-xxl-n37 {
    margin-left: -9.25rem !important; }
  .m-xxl-n48 {
    margin: -9.5rem !important; }
  .mt-xxl-n48,
  .my-xxl-n48 {
    margin-top: -9.5rem !important; }
  .mr-xxl-n48,
  .mx-xxl-n48 {
    margin-right: -9.5rem !important; }
  .mb-xxl-n48,
  .my-xxl-n48 {
    margin-bottom: -9.5rem !important; }
  .ml-xxl-n48,
  .mx-xxl-n48 {
    margin-left: -9.5rem !important; }
  .m-xxl-n39 {
    margin: -9.75rem !important; }
  .mt-xxl-n39,
  .my-xxl-n39 {
    margin-top: -9.75rem !important; }
  .mr-xxl-n39,
  .mx-xxl-n39 {
    margin-right: -9.75rem !important; }
  .mb-xxl-n39,
  .my-xxl-n39 {
    margin-bottom: -9.75rem !important; }
  .ml-xxl-n39,
  .mx-xxl-n39 {
    margin-left: -9.75rem !important; }
  .m-xxl-n40 {
    margin: -10rem !important; }
  .mt-xxl-n40,
  .my-xxl-n40 {
    margin-top: -10rem !important; }
  .mr-xxl-n40,
  .mx-xxl-n40 {
    margin-right: -10rem !important; }
  .mb-xxl-n40,
  .my-xxl-n40 {
    margin-bottom: -10rem !important; }
  .ml-xxl-n40,
  .mx-xxl-n40 {
    margin-left: -10rem !important; }
  .m-xxl-auto {
    margin: auto !important; }
  .mt-xxl-auto,
  .my-xxl-auto {
    margin-top: auto !important; }
  .mr-xxl-auto,
  .mx-xxl-auto {
    margin-right: auto !important; }
  .mb-xxl-auto,
  .my-xxl-auto {
    margin-bottom: auto !important; }
  .ml-xxl-auto,
  .mx-xxl-auto {
    margin-left: auto !important; } }

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0); }

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; }

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

.text-wrap {
  white-space: normal !important; }

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

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

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

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

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

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important; }
  .text-sm-right {
    text-align: right !important; }
  .text-sm-center {
    text-align: center !important; } }

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important; }
  .text-md-right {
    text-align: right !important; }
  .text-md-center {
    text-align: center !important; } }

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important; }
  .text-lg-right {
    text-align: right !important; }
  .text-lg-center {
    text-align: center !important; } }

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important; }
  .text-xl-right {
    text-align: right !important; }
  .text-xl-center {
    text-align: center !important; } }

@media (min-width: 1400px) {
  .text-xxl-left {
    text-align: left !important; }
  .text-xxl-right {
    text-align: right !important; }
  .text-xxl-center {
    text-align: center !important; } }

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

.text-uppercase {
  text-transform: uppercase !important; }

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

.font-weight-light {
  font-weight: 300 !important; }

.font-weight-lighter {
  font-weight: lighter !important; }

.font-weight-normal {
  font-weight: 400 !important; }

.font-weight-bold {
  font-weight: 500 !important; }

.font-weight-bolder {
  font-weight: 600 !important; }
.font-weight-700 {
  font-weight: 700 !important; }
.font-italic {
  font-style: italic !important; }

.text-white {
  color: #ffffff !important; }

.text-primary {
  color: #3699FF !important; }

a.text-primary:hover, a.text-primary:focus {
  color: #0073e9 !important; }

.text-secondary {
  color: #E4E6EF !important; }

a.text-secondary:hover, a.text-secondary:focus {
  color: #b4bad3 !important; }

.text-success {
  color: #1BC5BD !important; }

a.text-success:hover, a.text-success:focus {
  color: #12827c !important; }

.text-info {
  color: #8950FC !important; }

a.text-info:hover, a.text-info:focus {
  color: #5605fb !important; }

.text-warning {
  color: #FFA800 !important; }

a.text-warning:hover, a.text-warning:focus {
  color: #b37600 !important; }

.text-danger {
  color: #F64E60 !important; }

a.text-danger:hover, a.text-danger:focus {
  color: #ec0c24 !important; }

.text-light {
  color: #F3F6F9 !important; }

a.text-light:hover, a.text-light:focus {
  color: #c0d0e0 !important; }

.text-dark {
  color: #181C32 !important; }

a.text-dark:hover, a.text-dark:focus {
  color: black !important; }

.text-white {
  color: #ffffff !important; }

a.text-white:hover, a.text-white:focus {
  color: #d9d9d9 !important; }

.text-body {
  color: #3F4254 !important; }

.text-muted {
  color: #B5B5C3 !important; }

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important; }

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important; }

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

.text-decoration-none {
  text-decoration: none !important; }

.text-break {
  word-break: break-word !important;
  word-wrap: break-word !important; }

.text-reset {
  color: inherit !important; }

.visible {
  visibility: visible !important; }

.invisible {
  visibility: hidden !important; }


  
.wizard [data-wizard-type="step-info"] {
  display: none; }
  .wizard [data-wizard-type="step-info"][data-wizard-state="current"] {
    display: block; }

.wizard [data-wizard-type="step-content"] {
  display: none; }
  .wizard [data-wizard-type="step-content"][data-wizard-state="current"] {
    display: block; }

.wizard [data-wizard-type="action-prev"] {
  display: none; }

.wizard [data-wizard-type="action-next"] {
  display: inline-block; }

.wizard [data-wizard-type="action-submit"] {
  display: none; }

.wizard[data-wizard-state="first"] [data-wizard-type="action-prev"] {
  display: none; }

.wizard[data-wizard-state="first"] [data-wizard-type="action-next"] {
  display: inline-block; }

.wizard[data-wizard-state="first"] [data-wizard-type="action-submit"] {
  display: none; }

.wizard[data-wizard-state="between"] [data-wizard-type="action-prev"] {
  display: inline-block; }

.wizard[data-wizard-state="between"] [data-wizard-type="action-next"] {
  display: inline-block; }

.wizard[data-wizard-state="between"] [data-wizard-type="action-submit"] {
  display: none; }

.wizard[data-wizard-state="last"] [data-wizard-type="action-prev"] {
  display: inline-block; }

.wizard[data-wizard-state="last"] [data-wizard-type="action-next"] {
  display: none; }

.wizard[data-wizard-state="last"] [data-wizard-type="action-submit"] {
  display: inline-block; }

.wizard[data-wizard-clickable="true"] .wizard-step {
  cursor: pointer; }
/* line 1, app/assets/stylesheets/mine.scss */
html {
  scroll-behavior: smooth;
}

/* line 4, app/assets/stylesheets/mine.scss */
body {
  font-family: 'IBM Plex Sans', sans-serif;
}

/* line 8, app/assets/stylesheets/mine.scss */
.header-top {
  background: none;
  color: #9e9e9e;
  padding-bottom: 0px;
}

/* line 14, app/assets/stylesheets/mine.scss */
.header-top .fh5co-social a {
  color: #9e9e9e;
  font-size: 14px;
}

/* line 19, app/assets/stylesheets/mine.scss */
.header-top .fh5co-social a:hover,
.header-top .fh5co-scoial a:active,
.header-top .fh5co-social a:focus {
  color: #000 !important;
}

/* line 26, app/assets/stylesheets/mine.scss */
.header-top .fh5co-social .contact-blue a:hover,
.header-top .fh5co-social .contact-blue a:focus,
.header-top .fh5co-social .contact-blue a:active {
  color: #fff !important;
}

/* line 32, app/assets/stylesheets/mine.scss */
#fh5co-logo {
  margin: 28px 0 28px 15px;
}

/* line 36, app/assets/stylesheets/mine.scss */
.stuck #fh5co-logo {
  margin: 28px 0 28px 15px;
}

/*.stuck #fh5co-logo img {
    max-width: 120px;
    margin-bottom: 10px;
}*/
/* line 45, app/assets/stylesheets/mine.scss */
.search {
  display: inline-block;
  position: relative;
  height: 18px;
  width: 18px;
  box-sizing: border-box;
  margin: 4px 0px 0px 0px;
  padding: 0px 5px 0px 9px;
  border: 2px solid #FFFFFF;
  border-radius: 25px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  cursor: text;
  color: #fff;
  float: right;
}

/* line 62, app/assets/stylesheets/mine.scss */
.search:after {
  content: "";
  position: absolute;
  width: 3px;
  height: 8px;
  right: -3px;
  top: 14px;
  background: #FFFFFF;
  border-radius: 2px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

/* line 77, app/assets/stylesheets/mine.scss */
.search.active,
.search:hover {
  width: 100%;
  margin-right: 0px;
  height: 31px;
  margin: 0px;
}

/* line 85, app/assets/stylesheets/mine.scss */
.search.active:after,
.search:hover:after {
  height: 0px;
}

/* line 90, app/assets/stylesheets/mine.scss */
.search input {
  width: 100%;
  border: none;
  box-sizing: border-box;
  font-family: 'IBM Plex Sans';
  font-size: 12px;
  font-weight: 400;
  color: inherit;
  background: transparent;
  outline-width: 0px;
  color: #fff;
  text-transform: capitalize !important;
}

/* line 104, app/assets/stylesheets/mine.scss */
.search input::placeholder {
  color: transparent;
}

/* line 108, app/assets/stylesheets/mine.scss */
.search.active input::placeholder,
.search:hover input::placeholder {
  color: #fff;
}

/* line 113, app/assets/stylesheets/mine.scss */
#fh5co-header-section .phone-number {
  float: right;
  margin: 6px 0;
}

/* line 118, app/assets/stylesheets/mine.scss */
#fh5co-header-section .phone-number i {
  float: left;
  font-size: 30px;
  color: #156289;
  margin: 10px 10px 11px 0;
}

/* line 125, app/assets/stylesheets/mine.scss */
#fh5co-header-section .phone-number div {
  float: left;
  font-size: 16px;
  font-weight: 600;
  color: #156289;
}

/* line 132, app/assets/stylesheets/mine.scss */
#offcanvas-menu ul li a {
  color: #fff;
  font-size: 16px;
  opacity: 0.8;
}

/* line 138, app/assets/stylesheets/mine.scss */
#offcanvas-menu ul li.active > a {
  opacity: 1;
  color: #92aa63;
}

/* line 143, app/assets/stylesheets/mine.scss */
#fh5co-menu-wrap {
  margin-top: 0px;
  transition: ease 0.5s all;
}

/* line 148, app/assets/stylesheets/mine.scss */
a,
a:hover,
a:focus {
  color: #23C497;
  text-decoration: none;
}

/* line 155, app/assets/stylesheets/mine.scss */
img {
  max-width: 100%;
}

/* line 159, app/assets/stylesheets/mine.scss */
.padding-0 {
  padding: 0px;
}

/* line 163, app/assets/stylesheets/mine.scss */
.heading h2 {
  font-size: 27px;
  font-weight: 600;
}

/* line 168, app/assets/stylesheets/mine.scss */
div#banner-section {
  position: relative;
  z-index: 1;
}

/* line 173, app/assets/stylesheets/mine.scss */
div#banner-slider {
  height: 720px;
  background: #fff;
  background-size: cover;
}

/* line 179, app/assets/stylesheets/mine.scss */
.banner-content, .banner-img-wrap {
  display: table-cell;
  width: 100%;
  vertical-align: middle;
}

/* line 185, app/assets/stylesheets/mine.scss */
.banner-img-wrap {
  padding-top: 75px;
}

/* line 188, app/assets/stylesheets/mine.scss */
.banner-content {
  padding: 150px 0 0;
}

/* line 192, app/assets/stylesheets/mine.scss */
.banner-content h1 {
  font-size: 55px;
  color: #383838 !important;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 65px;
}

/* line 200, app/assets/stylesheets/mine.scss */
.banner-content h1 span {
  font-weight: bold;
}

/*.banner-content h1 span {
    color: #4e4e4e !important;
    background: -webkit-linear-gradient(0deg, rgba(80, 146, 198, 1) 0%, rgba(3, 200, 183, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 52px;
    display: inline-block;
    width: 100%;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 800;
    margin: 10px 0px 0;
}*/
/* line 217, app/assets/stylesheets/mine.scss */
.banner-content p {
  font-family: 'IBM Plex Sans', sans-serif;
  color: #363636;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 20px;
  font-weight: 400;
  margin-top: 35px;
}

/* line 227, app/assets/stylesheets/mine.scss */
.banner-btns a {
  min-width: 200px !important;
}

/* line 231, app/assets/stylesheets/mine.scss */
.banner-btns a:first-child {
  margin-right: 10px;
}

/* line 235, app/assets/stylesheets/mine.scss */
div#banner-slider.owl-carousel .owl-stage-outer {
  overflow: visible;
}

/* line 239, app/assets/stylesheets/mine.scss */
.no-padd {
  padding: 0;
}

/* line 243, app/assets/stylesheets/mine.scss */
.zoom-small {
  transform: scale(1.05);
}

/* line 247, app/assets/stylesheets/mine.scss */
.heading-with-sub {
  position: relative;
}

/* line 251, app/assets/stylesheets/mine.scss */
.heading-with-sub h2 {
  margin-bottom: 20px;
  font-size: 43px;
  line-height: 63px;
  font-family: 'IBM Plex Sans', sans-serif;
  line-height: normal;
  font-weight: 700;
}

/* line 260, app/assets/stylesheets/mine.scss */
.black-caption .heading-with-sub h2 span {
  color: #355694 !important;
}

/* line 264, app/assets/stylesheets/mine.scss */
.heading-with-sub h2 {
  position: relative;
}

/*.heading-with-sub h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 25px;
    height: 2px;
    background: #927196;
    display: block !important;
}

.heading-with-sub h2:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 65px;
    height: 2px;
    background: #927196;
    display: block !important;
}

.heading-with-sub.text-center h2:before,.heading-with-sub.text-center h2:after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
*/
/* line 298, app/assets/stylesheets/mine.scss */
.heading-with-sub h4 {
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 100;
}

/* line 304, app/assets/stylesheets/mine.scss */
h3.small-heading {
  font-family: 'IBM Plex Sans', sans-serif;
  line-height: normal;
  font-weight: 800;
  color: #02cab8;
  font-size: 35px;
  margin-bottom: 15px;
}

/* line 312, app/assets/stylesheets/mine.scss */
.black-caption {
  margin-bottom: 70px;
}

/* line 316, app/assets/stylesheets/mine.scss */
.black-caption h2 {
  color: #0F121D;
}

/* line 320, app/assets/stylesheets/mine.scss */
.black-caption h2 span {
  color: #383838;
}

/* line 324, app/assets/stylesheets/mine.scss */
.white-caption p {
  color: #fff;
}

/* line 328, app/assets/stylesheets/mine.scss */
.white-caption h2 {
  color: #fff;
  margin-bottom: 28px;
}

/* line 333, app/assets/stylesheets/mine.scss */
.white-caption h2 span {
  color: #fff;
}

/* line 336, app/assets/stylesheets/mine.scss */
.black-caption p {
  font-family: 'IBM Plex Sans', sans-serif;
  line-height: 32px;
  font-size: 20px;
  color: #535760;
  margin-bottom: 0px;
}

/* line 345, app/assets/stylesheets/mine.scss */
div#audience-about-section {
  position: relative;
  padding: 80px 0 140px;
  background: #ffffff url(/assets/about-section-bg-8a283585bb6c085a3563300cf2c2a07d1c536471d9c1aab0ea64b46293a43e3b.png) no-repeat center top;
  background-size: 100% 100%;
}

/*div#audience-about-section .black-caption {
    margin-bottom: 50px;
}*/
/* line 355, app/assets/stylesheets/mine.scss */
.audience-about-video {
  position: relative;
}

/* line 359, app/assets/stylesheets/mine.scss */
.audience-about-video .video-wrap {
  width: 87%;
  min-height: 345px;
  background: #fff;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 0px 22px -8px #ccc;
  position: relative;
  margin-left: auto;
}

/* line 370, app/assets/stylesheets/mine.scss */
.audience-about-video .video-wrap a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* line 376, app/assets/stylesheets/mine.scss */
.audience-about-video .video-info {
  background: #23C497;
  width: 270px;
  position: absolute;
  z-index: 99;
  bottom: -80px;
  padding: 30px;
  border-radius: 10px;
}

/* line 386, app/assets/stylesheets/mine.scss */
.audience-about-video .video-info .video-info-head {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
}

/* line 392, app/assets/stylesheets/mine.scss */
.audience-about-video .video-info p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}

/* line 400, app/assets/stylesheets/mine.scss */
.audience-about-video .video-info a {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

/* line 406, app/assets/stylesheets/mine.scss */
.audience-about-video .video-info a img {
  margin-left: 15px;
}

/* line 410, app/assets/stylesheets/mine.scss */
.audience-about-info-list {
  position: relative;
  padding: 40px;
  padding-top: 60px;
}

/* line 416, app/assets/stylesheets/mine.scss */
.audience-about-info-list ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* line 422, app/assets/stylesheets/mine.scss */
.audience-about-info-list ul li {
  padding-left: 40px;
  position: relative;
  margin-bottom: 40px;
}

/* line 427, app/assets/stylesheets/mine.scss */
.audience-about-info-list ul li:last-child {
  margin: 0;
}

/* line 431, app/assets/stylesheets/mine.scss */
.audience-about-info-list ul li:before {
  content: '';
  width: 40px;
  height: 40px;
  border-radius: 25px;
  background: #fff;
  position: absolute;
  left: -15px;
  top: -5px;
}

/* line 433, app/assets/stylesheets/mine.scss */
.audience-about-info-list ul li.blue:before {
  background: #355694;
}

/* line 437, app/assets/stylesheets/mine.scss */
.audience-about-info-list ul li.green:before {
  background: #23C497;
}

/* line 441, app/assets/stylesheets/mine.scss */
.audience-about-info-list ul li .about-info-list-head {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  color: #0F121D;
  font-size: 20px;
  margin-bottom: 10px;
}

/* line 449, app/assets/stylesheets/mine.scss */
.audience-about-info-list ul li p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  color: #535760;
  line-height: 26px;
}

/* line 457, app/assets/stylesheets/mine.scss */
img.about-arrow {
  position: absolute;
  left: 35%;
}

/* line 462, app/assets/stylesheets/mine.scss */
div#audience-why-section {
  position: relative;
  padding: 80px 0 20px;
}

/* line 466, app/assets/stylesheets/mine.scss */
.why-icon-box {
  position: relative;
  padding: 30px;
  text-align: left;
  margin-bottom: 30px;
}

/* line 473, app/assets/stylesheets/mine.scss */
.why-icon-box .why-icon {
  margin-bottom: 20px;
}

/* line 477, app/assets/stylesheets/mine.scss */
.why-icon-box .why-icon img {
  width: 70px;
}

/* line 481, app/assets/stylesheets/mine.scss */
.why-icon-box .why-icon-box-info h2 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 20px;
  min-height: 52px;
  color: #0F121D;
}

/* line 491, app/assets/stylesheets/mine.scss */
.why-icon-box .why-icon-box-info p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #535760;
  line-height: 24px;
}

/* line 500, app/assets/stylesheets/mine.scss */
div#order-roll-section {
  position: relative;
  padding: 100px 0;
  background: url(/assets/order-roll-bg-de25082f343f50cdcaa2a05cefc96e93f3a4c22c6dbba58453f2f37c7e7be665.jpg) no-repeat center center;
  background-size: cover;
}

/* line 508, app/assets/stylesheets/mine.scss */
div#banner2.owl-carousel .owl-stage-outer {
  overflow: visible;
}

/* line 512, app/assets/stylesheets/mine.scss */
div#order-roll-section .order-roll-img .img-wrap {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
}

/* line 517, app/assets/stylesheets/mine.scss */
div#order-roll-section .order-roll-img .img-wrap img {
  width: 100%;
}

/* line 521, app/assets/stylesheets/mine.scss */
div#order-roll-section .order-roll-img span img {
  max-width: fit-content;
  margin: 0;
  display: inline-block;
}

/* line 527, app/assets/stylesheets/mine.scss */
div#order-roll-section .order-roll-img span.card.inner-right {
  position: absolute;
  left: 18%;
  top: 32%;
  transform: translate(0, -50%);
}

/* line 534, app/assets/stylesheets/mine.scss */
div#order-roll-section .order-roll-img span.circle.inner-left {
  position: absolute;
  right: 29%;
  top: 28%;
  transform: translate(0, -50%);
}

/* line 540, app/assets/stylesheets/mine.scss */
div#order-roll-section .order-roll-img span.circle.inner-bottom {
  position: absolute;
  bottom: 45px;
  left: 33%;
  transform: translateX(-50%);
}

/* line 548, app/assets/stylesheets/mine.scss */
div#order-roll-section .order-roll-img span.circle.right {
  position: absolute;
  left: -50px;
  top: 45%;
  transform: translate(0, -50%);
}

/* line 555, app/assets/stylesheets/mine.scss */
div#order-roll-section .order-roll-img span.circle.left {
  position: absolute;
  right: -30px;
  top: 30%;
  transform: translate(0, -50%);
}

/* line 562, app/assets/stylesheets/mine.scss */
div#order-roll-section .order-roll-img .img-wrap.non-active span.card.inner-right {
  left: 0;
  transition: all 1.5s 0s ease !important;
}

/* line 567, app/assets/stylesheets/mine.scss */
div#order-roll-section .owl-item.active.center .order-roll-img .img-wrap.non-active span.card.inner-right {
  left: 18%;
  transition: all 1.5s 1s ease !important;
}

/* line 573, app/assets/stylesheets/mine.scss */
div#order-roll-section .order-roll-img .img-wrap.non-active span.circle.inner-left {
  right: 0;
  transition: all 1.5s 0s ease !important;
}

/* line 578, app/assets/stylesheets/mine.scss */
div#order-roll-section .owl-item.active.center .order-roll-img .img-wrap.non-active span.circle.inner-left {
  right: 29%;
  transition: all 1.5s 1s ease !important;
}

/* line 584, app/assets/stylesheets/mine.scss */
div#order-roll-section .order-roll-img .img-wrap.non-active span.circle.inner-bottom {
  bottom: -45px;
  transition: all 1.5s 0s ease !important;
}

/* line 589, app/assets/stylesheets/mine.scss */
div#order-roll-section .owl-item.active.center .order-roll-img .img-wrap.non-active span.circle.inner-bottom {
  bottom: 45px;
  transition: all 1.5s 1s ease !important;
}

/* line 594, app/assets/stylesheets/mine.scss */
div#order-roll-section .order-roll-img .img-wrap.non-active span.circle.right {
  left: -230px;
  transition: all 1.5s 0s ease !important;
}

/* line 599, app/assets/stylesheets/mine.scss */
div#order-roll-section .owl-item.active.center .order-roll-img .img-wrap.non-active span.circle.right {
  left: -50px;
  transition: all 1.5s 1s ease !important;
}

/* line 604, app/assets/stylesheets/mine.scss */
div#order-roll-section .order-roll-img .img-wrap.non-active span.circle.left {
  right: -230px;
  transition: all 1.5s 0s ease !important;
}

/* line 609, app/assets/stylesheets/mine.scss */
div#order-roll-section .owl-item.active.center .order-roll-img .img-wrap.non-active span.circle.left {
  right: -30px;
  transition: all 1.5s 1s ease !important;
}

/* line 615, app/assets/stylesheets/mine.scss */
.order-roll-hash {
  background: #E5E9F2;
  padding: 22px 0;
}

/* line 620, app/assets/stylesheets/mine.scss */
.order-roll-hash .row {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 626, app/assets/stylesheets/mine.scss */
.order-roll-hash .owl-slider-tabs {
  position: relative;
}

/* line 630, app/assets/stylesheets/mine.scss */
.order-roll-hash .owl-slider-tabs ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
}

/* line 638, app/assets/stylesheets/mine.scss */
.order-roll-hash .owl-slider-tabs ul li, .order-roll-hash .owl-slider-tabs ul li a {
  color: #0F121D;
  font-family: 'IBM Plex Sans', sans-serif !important;
  font-size: 16px;
  font-weight: 400;
}

/* line 644, app/assets/stylesheets/mine.scss */
.order-roll-hash a.themebtn.blue {
  background: #355694;
  padding: 9px 50px;
}

/* line 646, app/assets/stylesheets/mine.scss */
.order-roll-hash a.themebtn.blue:hover, .order-roll-hash a.themebtn.blue:active, .order-roll-hash a.themebtn.blue:focus {
  background: #23c497;
}

/* line 650, app/assets/stylesheets/mine.scss */
.order-roll-hash .owl-slider-tabs ul li {
  position: relative;
  margin-top: 14px;
  display: inline-block;
  width: calc(98% / 4);
  text-align: center;
}

/* line 658, app/assets/stylesheets/mine.scss */
.order-roll-hash .owl-slider-tabs ul li:before {
  content: '';
  width: 100%;
  height: 4px;
  background: #355694;
  background: #FFFFFF;
  position: absolute;
  top: -14px;
  right: 2px;
  transform: translateX(-50%);
  transition: all 1s 0.5s ease !important;
}

/* line 671, app/assets/stylesheets/mine.scss */
.order-roll-hash .owl-slider-tabs ul li.active:before {
  background: #355694;
  transition: all 1s 0.5s ease !important;
}

/* line 676, app/assets/stylesheets/mine.scss */
.order-roll-hash .owl-slider-tabs ul li:first-child:before {
  opacity: 0;
}

/* line 680, app/assets/stylesheets/mine.scss */
.order-roll-hash .owl-slider-tabs ul li:after {
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  background: #fff;
  left: 77px;
  top: -17px;
  border-radius: 70px;
  z-index: 9999;
}

/* line 692, app/assets/stylesheets/mine.scss */
.order-roll-hash .owl-slider-tabs ul li.active:after {
  background: #355694;
  transition: all 1s 0.5s ease !important;
}

/* line 696, app/assets/stylesheets/mine.scss */
li.active.current ~ li:before, li.active.current ~ li:after {
  background: #fff !important;
  transition: all 1s 0.5s ease !important;
}

@media screen and (max-width: 1220px) {
  /* line 702, app/assets/stylesheets/mine.scss */
  div#order-roll-section .owl-carousel.owl-drag .owl-item .item {
    overflow: hidden;
  }
}

@media screen and (max-width: 991px) {
  /* line 708, app/assets/stylesheets/mine.scss */
  div#order-roll-section .order-roll-img .img-wrap {
    max-width: 610px;
  }
  /* line 712, app/assets/stylesheets/mine.scss */
  div#order-roll-section .owl-carousel.owl-drag .owl-item .item {
    overflow: hidden;
  }
  /* line 716, app/assets/stylesheets/mine.scss */
  div#order-roll-section .order-roll-img .img-wrap span img {
    max-width: 82%;
  }
  /* line 719, app/assets/stylesheets/mine.scss */
  div#order-roll-section {
    background-position-x: right;
  }
  /* line 722, app/assets/stylesheets/mine.scss */
  .order-roll-hash .row {
    display: block;
  }
  /* line 726, app/assets/stylesheets/mine.scss */
  .order-roll-hash .owl-slider-tabs {
    margin: 0 auto;
    margin-bottom: 30px;
    margin-top: 20px;
    max-width: 680px;
  }
  /* line 733, app/assets/stylesheets/mine.scss */
  .order-roll-hash a.themebtn.blue {
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 650px) {
  /* line 740, app/assets/stylesheets/mine.scss */
  div#order-roll-section .owl-carousel.owl-drag .owl-item .item {
    overflow: hidden;
  }
  /* line 744, app/assets/stylesheets/mine.scss */
  div#order-roll-section .order-roll-img .img-wrap span img {
    max-width: 55%;
  }
  /* line 748, app/assets/stylesheets/mine.scss */
  div#order-roll-section .owl-item.active.center .order-roll-img .img-wrap.non-active span.circle.inner-left {
    right: 23%;
  }
  /* line 752, app/assets/stylesheets/mine.scss */
  div#order-roll-section .owl-item.active.center .order-roll-img .img-wrap.non-active span.card.inner-right {
    left: 6%;
  }
  /* line 756, app/assets/stylesheets/mine.scss */
  div#order-roll-section .owl-item.active.center .order-roll-img .img-wrap.non-active span.circle.inner-bottom {
    bottom: 15px;
  }
  /* line 760, app/assets/stylesheets/mine.scss */
  div#order-roll-section .owl-item.active.center .order-roll-img .img-wrap.non-active span.circle.right {
    left: -40px;
    top: 55%;
  }
  /* line 765, app/assets/stylesheets/mine.scss */
  div#order-roll-section .owl-item.active.center .order-roll-img .img-wrap.non-active span.circle.left {
    right: -40px;
    top: 36%;
  }
  /* line 769, app/assets/stylesheets/mine.scss */
  .order-roll-hash .owl-slider-tabs ul li:after {
    left: 47%;
  }
  /* line 772, app/assets/stylesheets/mine.scss */
  .order-roll-hash .owl-slider-tabs ul li, .order-roll-hash .owl-slider-tabs ul li a {
    line-height: normal;
  }
}

/*div#order-roll-section .owl-item.active.center .order-roll-img span.circle.left {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInRight;
  animation-delay: 0.8s;
}*/
/* line 789, app/assets/stylesheets/mine.scss */
div#home-pricing-section {
  position: relative;
  padding: 80px 0;
}

/* line 794, app/assets/stylesheets/mine.scss */
.pricing-table {
  position: relative;
}

/* line 799, app/assets/stylesheets/mine.scss */
.pricing-table table tr th:first-child {
  width: 220px;
}

/* line 802, app/assets/stylesheets/mine.scss */
.pricing-table table tr td:first-child {
  width: 220px;
}

/* line 806, app/assets/stylesheets/mine.scss */
.pricing-table table tr th, .pricing-table table tr td {
  text-align: left;
  height: 47px;
  padding: 12px 15px;
  border: 0px;
}

/* line 813, app/assets/stylesheets/mine.scss */
.pricing-table table tbody#ratesTable {
  display: block;
  overflow: auto;
  width: 100%;
}

/* line 815, app/assets/stylesheets/mine.scss */
.pricing-table table thead {
  width: calc( 100% - 1em);
}

/* line 819, app/assets/stylesheets/mine.scss */
.pricing-table table thead, .pricing-table table tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}

/* line 825, app/assets/stylesheets/mine.scss */
.pricing-table table tbody {
  max-height: 280px;
}

/* line 829, app/assets/stylesheets/mine.scss */
.pricing-table input#ratesInput {
  width: 60%;
  margin: 0 auto;
  margin-bottom: 40px;
  font-size: 16px;
  height: 50px;
  padding-left: 35px;
  background: url(/assets/search-icon-b8aeee338ea6d8f91bb456342542c888937de8ebaf535f78d8a23faaf41886d7.png) no-repeat center left;
  background-position-x: 11px;
}

/* width */
/* line 842, app/assets/stylesheets/mine.scss */
.pricing-table table tbody#ratesTable::-webkit-scrollbar {
  width: 5px;
  border-radius: 3px;
}

/* Track */
/* line 848, app/assets/stylesheets/mine.scss */
.pricing-table table tbody#ratesTable::-webkit-scrollbar-track {
  background: #F1F2F4;
  border-radius: 5px;
}

/* Handle */
/* line 854, app/assets/stylesheets/mine.scss */
.pricing-table table tbody#ratesTable::-webkit-scrollbar-thumb {
  background: #BBBDC1;
  border-radius: 5px;
}

/* Handle on hover */
/* line 860, app/assets/stylesheets/mine.scss */
.pricing-table table tbody#ratesTable::-webkit-scrollbar-thumb:hover {
  background: #BBBDC1;
}

/* line 864, app/assets/stylesheets/mine.scss */
.pricing-table table tr th {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: bold;
  color: #666C77;
  font-size: 14px;
}

/* line 871, app/assets/stylesheets/mine.scss */
.pricing-table table tr td {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #0F121D;
}

/* line 878, app/assets/stylesheets/mine.scss */
.pricing-table table tr td:first-child {
  font-weight: bold;
}

/* line 883, app/assets/stylesheets/mine.scss */
div#marketing-section {
  position: relative;
  padding: 100px 0;
  background: url(/assets/marketing-section-bg-cf3ee01e22d199687d06741d31e5dd7278baa641bb0f68f9f46d81eb403e00ce.png) no-repeat center center;
  background-size: cover;
}

/* line 890, app/assets/stylesheets/mine.scss */
div#marketing-section a.themebtn {
  border: none;
  min-width: 170px;
}

/* line 895, app/assets/stylesheets/mine.scss */
div#marketing-section * {
  color: #fff;
}

/* line 901, app/assets/stylesheets/mine.scss */
div#qa-section {
  position: relative;
  padding: 80px 0;
}

/* line 906, app/assets/stylesheets/mine.scss */
div#qa-section .black-caption {
  margin-bottom: 40px;
}

/* line 909, app/assets/stylesheets/mine.scss */
.qa-accordion {
  margin-top: 40px;
}

/* line 912, app/assets/stylesheets/mine.scss */
.qa-accordion .panel {
  border: none;
  margin-bottom: 0px;
}

/* line 916, app/assets/stylesheets/mine.scss */
.qa-accordion .panel > .panel-heading {
  padding: 0px;
  background: transparent;
  border: none;
}

/* line 922, app/assets/stylesheets/mine.scss */
.qa-accordion .panel h4 a {
  background: #fff url(/assets/down-arrow-08454f6f0e268ded24131f0e9df029d5f5cb4c18cdecaaa04b75b7cde8325159.png) no-repeat calc(100% - 10px) center;
  background-size: 9px;
  cursor: pointer;
  padding: 15px 0px;
  width: 100%;
  display: block;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #0F121D;
}

/* line 934, app/assets/stylesheets/mine.scss */
.qa-accordion .panel h4 a[aria-expanded="true"] {
  background: #fff url(/assets/up-arrow-b44e45ff6a0608e6707387ff8ef77c9caa25724ecf9c26d07c95d16352a4f174.png) no-repeat calc(100% - 10px) center;
  background-size: 9px;
}

/* line 938, app/assets/stylesheets/mine.scss */
.qa-accordion .panel-body {
  padding: 25px;
  padding-left: 0;
  padding-right: 0;
  border-top: none !important;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #535760;
}

/* line 948, app/assets/stylesheets/mine.scss */
.qa-accordion .panel-body p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #535760;
  margin-bottom: 0px;
}

/* line 956, app/assets/stylesheets/mine.scss */
div#sayings-section {
  position: relative;
  background: #F4F7FE;
  padding: 90px 0;
}

/* line 961, app/assets/stylesheets/mine.scss */
div#sayings-section .black-caption {
  margin-bottom: 50px;
}

/* line 965, app/assets/stylesheets/mine.scss */
div#sayings-section .container-fluid {
  padding-right: 0px;
}

/* line 968, app/assets/stylesheets/mine.scss */
.sayings-wrap {
  padding-left: 15px;
  padding-right: 0px;
}

/* line 972, app/assets/stylesheets/mine.scss */
.forgot-link {
  color: #535760;
}

/* line 975, app/assets/stylesheets/mine.scss */
.gl-cancel {
  text-align: left;
  letter-spacing: 0;
  text-transform: capitalize;
}

/* line 980, app/assets/stylesheets/mine.scss */
.steps-sidebar .wizard-nav .wizard-steps .wizard-step .wizard-label .wizard-title {
  text-align: left;
}

/* line 983, app/assets/stylesheets/mine.scss */
.steps-sidebar .wizard-nav .wizard-steps {
  display: inline-block;
}

/* line 986, app/assets/stylesheets/mine.scss */
#error_explanation h2 {
  display: none;
}

/* line 989, app/assets/stylesheets/mine.scss */
#error_explanation ul {
  padding: 0;
}

/* line 992, app/assets/stylesheets/mine.scss */
#error_explanation li {
  list-style: none;
  color: #FF0000;
}

/* line 996, app/assets/stylesheets/mine.scss */
.login-footer {
  color: #535760;
  font-size: 12px;
  text-align: center;
  position: absolute;
  bottom: 25px;
  width: 100%;
  left: 0;
}

/* line 1005, app/assets/stylesheets/mine.scss */
.mocks-wrap {
  display: block;
  overflow-y: hidden;
  overflow-x: auto;
  margin-bottom: 35px;
}

/* line 1011, app/assets/stylesheets/mine.scss */
.mocks-wrap2 {
  width: 100% !important;
  display: block;
  overflow-y: hidden;
  overflow-x: auto;
  margin-bottom: 35px;
}

/* line 1018, app/assets/stylesheets/mine.scss */
.filter-scroll-container::-webkit-scrollbar, .mocks-wrap2::-webkit-scrollbar, .mocks-wrap::-webkit-scrollbar, .mocks-wrap2::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* line 1022, app/assets/stylesheets/mine.scss */
.filter-scroll-container::-webkit-scrollbar-track, .mocks-wrap::-webkit-scrollbar-track, .mocks-wrap2::-webkit-scrollbar-track {
  background: #F9FAFB;
}

/* line 1026, app/assets/stylesheets/mine.scss */
.filter-scroll-container::-webkit-scrollbar-thumb, .mocks-wrap::-webkit-scrollbar-thumb, .mocks-wrap2::-webkit-scrollbar-thumb {
  background: #F9FAFB;
}

/* line 1030, app/assets/stylesheets/mine.scss */
.filter-scroll-container::-webkit-scrollbar-thumb:hover, .mocks-wrap::-webkit-scrollbar-thumb:hover,
.mocks-wrap2::-webkit-scrollbar-thumb:hover,
.filter-scroll-container:hover::-webkit-scrollbar-thumb {
  background: #ccc;
  cursor: grab;
}

/* line 1036, app/assets/stylesheets/mine.scss */
.templates-filters {
  overflow-y: hidden;
  overflow-x: auto;
}

/* line 1040, app/assets/stylesheets/mine.scss */
.stripe_btn {
  min-width: 180px !important;
}

/* line 1043, app/assets/stylesheets/mine.scss */
.top-5rm {
  padding-top: 5rem;
}

/* line 1046, app/assets/stylesheets/mine.scss */
.filter-scroll-container {
  width: 100% !important;
  overflow-x: auto;
  overflow-y: hidden;
}

/* line 1052, app/assets/stylesheets/mine.scss */
.templates-filters.scroll-filter {
  width: 1840px;
}

/* line 1055, app/assets/stylesheets/mine.scss */
.contact-list-table-wrap {
  overflow-x: auto;
}

/* line 1058, app/assets/stylesheets/mine.scss */
#chart-1 {
  margin-top: 35px;
}

/* line 1061, app/assets/stylesheets/mine.scss */
.contact-list-table-wrap .dropdown-menu {
  left: auto;
  right: -20px;
}

/* line 1065, app/assets/stylesheets/mine.scss */
#sortmenu img {
  max-width: 18px;
  height: 4px;
}

/* line 1069, app/assets/stylesheets/mine.scss */
.top-50 {
  margin-top: 50px;
}

/* line 1072, app/assets/stylesheets/mine.scss */
.gl-content-box {
  background: #F9FAFB;
  border: 1px solid rgba(187, 189, 193, 0.12);
  box-shadow: 0px 0px 3px -1px #bbbdc1;
  padding: 40px;
}

/* line 1078, app/assets/stylesheets/mine.scss */
.roma-bullet li {
  list-style: lower-roman;
}

/* line 1081, app/assets/stylesheets/mine.scss */
.login-content .form-group .form-control.contact-msg {
  height: 225px !important;
  resize: none;
}

/* line 1085, app/assets/stylesheets/mine.scss */
.show-on-tab {
  display: none !important;
}

/* line 1088, app/assets/stylesheets/mine.scss */
.hide-on-tab {
  display: block !important;
}

/* line 1091, app/assets/stylesheets/mine.scss */
.white-box {
  background: #fff;
  border-radius: 5px;
  padding: 0 15px 15px;
  box-shadow: 0px 0px 3px -1px #bbbdc1;
  margin: auto auto 10px;
  position: relative;
}

/* line 1099, app/assets/stylesheets/mine.scss */
.white-box-inner {
  padding: 25px;
  border-bottom: solid 1px #EFEFEF;
}

/* line 1103, app/assets/stylesheets/mine.scss */
.white-box-inner:nth-last-child(1) {
  border: none;
}

/* line 1106, app/assets/stylesheets/mine.scss */
.box-title {
  float: left;
}

/* line 1109, app/assets/stylesheets/mine.scss */
.box-action {
  float: right;
}

/* line 1112, app/assets/stylesheets/mine.scss */
.grey-title {
  font-size: 14px;
  color: #84878D;
}

/* line 1116, app/assets/stylesheets/mine.scss */
.white-box-row {
  margin-bottom: 12px;
}

/* line 1119, app/assets/stylesheets/mine.scss */
.gl-msg-box {
  max-width: 350px;
  vertical-align: bottom;
}

@media (min-width: 576px) {
  /* line 1124, app/assets/stylesheets/mine.scss */
  .sayings-wrap {
    margin-right: 0;
    margin-left: calc(47vw  - 270px);
  }
}

@media (min-width: 768px) {
  /* line 1131, app/assets/stylesheets/mine.scss */
  .sayings-wrap {
    margin-right: 0;
    margin-left: calc(47vw  - 360px);
  }
}

@media (min-width: 992px) {
  /* line 1138, app/assets/stylesheets/mine.scss */
  .sayings-wrap {
    margin-right: 0;
    margin-left: calc(47vw  - 480px);
  }
}

@media (min-width: 1200px) {
  /* line 1145, app/assets/stylesheets/mine.scss */
  .sayings-wrap {
    margin-right: 0;
    margin-left: calc(47vw - 570px);
  }
}

/* line 1151, app/assets/stylesheets/mine.scss */
div#sayings-slider {
  margin-bottom: 35px;
  position: relative;
}

/* line 1155, app/assets/stylesheets/mine.scss */
.saying-icon-box {
  background: #fff;
  padding: 35px 45px;
  border-radius: 10px;
  margin: 15px 0px;
  transition: all .3s ease;
}

/* line 1163, app/assets/stylesheets/mine.scss */
div#sayings-section {
  position: relative;
  background: #F4F7FE;
  padding: 90px 0;
}

/* line 1169, app/assets/stylesheets/mine.scss */
div#sayings-slider .owl-item.active.firstactiveitem .saying-icon-box {
  box-shadow: 0px 0px 19px -14px #000;
  transition: all .3s ease;
}

/* line 1174, app/assets/stylesheets/mine.scss */
div#sayings-section .container-fluid {
  padding-right: 0px;
}

/* line 1178, app/assets/stylesheets/mine.scss */
.saying-icon-box p {
  font-size: 18px;
  line-height: 30px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-style: italic;
  color: #0F121D;
}

/* line 1186, app/assets/stylesheets/mine.scss */
.saying-icon-box .media p {
  margin: 0px;
}

/* line 1190, app/assets/stylesheets/mine.scss */
.saying-icon-box .media .media-left, .saying-icon-box .media .media-right, .saying-icon-box .media .media-body {
  vertical-align: middle;
}

/* line 1194, app/assets/stylesheets/mine.scss */
.saying-icon-box .media .media-left img.media-object {
  width: 60px;
}

/* line 1198, app/assets/stylesheets/mine.scss */
.saying-icon-box .media .media-body .media-heading {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  color: #0F121D;
  font-size: 18px;
  margin-bottom: 2px;
}

/* line 1206, app/assets/stylesheets/mine.scss */
.saying-icon-box .media .media-body p {
  font-size: 14px;
  font-weight: 400;
  font-style: inherit;
  color: #535760;
  line-height: normal;
}

/* line 1214, app/assets/stylesheets/mine.scss */
div#sayings-slider .owl-nav {
  position: absolute;
  top: -93px;
  margin: 0;
  left: 75%;
}

/* line 1221, app/assets/stylesheets/mine.scss */
div#sayings-slider .owl-nav button {
  margin: 0 !important;
  margin-right: 20px !important;
  width: 35px;
  height: 30px;
}

/* line 1228, app/assets/stylesheets/mine.scss */
div#sayings-slider .owl-nav button:last-child {
  margin: 0 !important;
  margin-right: 0px !important;
}

/* line 1233, app/assets/stylesheets/mine.scss */
div#sayings-slider .owl-nav button span {
  display: none;
}

/* line 1237, app/assets/stylesheets/mine.scss */
div#sayings-slider .owl-nav button.owl-prev {
  background: url(/assets/carousel-arrow-left-718d47962b8e24f23848aaac5d73641ccf14fa2bd8c75d6cef15d00e141df709.png) no-repeat center center;
  background-size: contain;
  opacity: 1;
}

/* line 1243, app/assets/stylesheets/mine.scss */
div#sayings-slider .owl-nav button.owl-next {
  background: url(/assets/carousel-arrow-right-ec28fb4804cb16ed17343d0e65f9a91a02515babe91790d10e7751757791090f.png) no-repeat center center;
  background-size: contain;
}

/* line 1248, app/assets/stylesheets/mine.scss */
div#sayings-slider .owl-nav button.owl-prev.disabled {
  opacity: 0;
}

/* line 1254, app/assets/stylesheets/mine.scss */
div#services-section {
  position: relative;
  padding: 100px 0;
  background: #fff;
  background-size: 100%;
}

/* line 1261, app/assets/stylesheets/mine.scss */
div#services-section .black-caption {
  margin-bottom: 40px;
}

/* line 1265, app/assets/stylesheets/mine.scss */
.service-box {
  position: relative;
  margin-bottom: 50px;
  padding: 0;
  overflow: hidden;
}

/* line 1272, app/assets/stylesheets/mine.scss */
.service-box .service-box-content {
  margin-top: 0;
}

/* line 1276, app/assets/stylesheets/mine.scss */
.service-box .service-box-content .service-name {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
  color: #fff;
  font-size: 24px;
  margin-bottom: 10px;
  min-height: 90px;
}

/* line 1285, app/assets/stylesheets/mine.scss */
.service-box .service-box-content p {
  font-size: 15px;
  font-family: 'IBM Plex Sans', sans-serif;
  color: #383838;
  line-height: 25px;
}

/* line 1291, app/assets/stylesheets/mine.scss */
.service-box a.themebtn {
  font-size: 14px;
  /*padding: 15px 30px;*/
}

/* line 1295, app/assets/stylesheets/mine.scss */
div#services-section .black-caption h2 {
  margin-bottom: 80px;
}

/* line 1298, app/assets/stylesheets/mine.scss */
.service-box .service-box-content {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 60px);
  height: calc(100% - 60px);
  margin: 30px;
  border: 1px solid #fff;
  padding: 100px 0 30px;
}

/* line 1309, app/assets/stylesheets/mine.scss */
.service-box img {
  width: 100%;
  transition: all .5s ease;
}

/* line 1313, app/assets/stylesheets/mine.scss */
.service-box:hover img {
  transition: all .5s ease;
  transform: scale(1.2);
}

/* line 1321, app/assets/stylesheets/mine.scss */
div#about-mission-section {
  position: relative;
  padding: 130px 0;
  background: #f8f9f6;
}

/* line 1326, app/assets/stylesheets/mine.scss */
.mission-info-wrap {
  position: relative;
  text-align: center;
}

/* line 1331, app/assets/stylesheets/mine.scss */
.mission-info-wrap ul {
  list-style: none;
  padding: 0px 25px;
  margin: 0;
}

/* line 1337, app/assets/stylesheets/mine.scss */
.mission-info-wrap ul li {
  margin-bottom: 25px;
}

/* line 1341, app/assets/stylesheets/mine.scss */
.mission-icon-box img {
  margin-bottom: 10px;
}

/* line 1343, app/assets/stylesheets/mine.scss */
.mission-icon-box h2 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  color: #515151;
  margin-bottom: 15px;
  font-size: 20px;
  line-height: normal;
}

/* line 1352, app/assets/stylesheets/mine.scss */
.mission-icon-box p {
  margin: 0;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  line-height: 24px;
  padding: 0 15px;
}

/* line 1361, app/assets/stylesheets/mine.scss */
.mission-info-wrap ul li:last-child {
  margin: 0;
  padding: 0;
}

/* line 1365, app/assets/stylesheets/mine.scss */
.mission-info-wrap hr {
  width: 80%;
  border-color: #dfe0dd;
}

/* line 1370, app/assets/stylesheets/mine.scss */
.mission-img-box.with-content {
  position: relative;
}

/* line 1374, app/assets/stylesheets/mine.scss */
.mission-img-box.with-content .misssion-img-box-content {
  text-align: center;
  padding: 50px 30px;
  position: absolute;
  bottom: 0;
}

/* line 1381, app/assets/stylesheets/mine.scss */
.mission-img-box.with-content .misssion-img-box-content p {
  color: #fff;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 28px;
}

/* line 1391, app/assets/stylesheets/mine.scss */
div#our-team-section {
  position: relative;
  padding: 130px 0;
}

/* line 1396, app/assets/stylesheets/mine.scss */
div#our-team-section .black-caption h2 {
  margin-bottom: 80px;
}

/* line 1399, app/assets/stylesheets/mine.scss */
.team-box {
  position: relative;
  background: #fff;
  box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.11);
  padding: 10px;
  border-radius: 2px;
}

/* line 1407, app/assets/stylesheets/mine.scss */
.team-box .media-left {
  padding-right: 20px;
}

/* line 1411, app/assets/stylesheets/mine.scss */
.team-box h3 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 20px;
  color: #515151;
  line-height: normal;
  margin-bottom: 10px;
  font-weight: 700;
}

/* line 1420, app/assets/stylesheets/mine.scss */
.team-box p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  line-height: 25px;
  margin: 0;
}

/* line 1427, app/assets/stylesheets/mine.scss */
.team-box hr {
  margin: 12px 0;
}

/* line 1431, app/assets/stylesheets/mine.scss */
.team-box .media-body {
  padding: 10px 10px 0 0;
}

/* line 1435, app/assets/stylesheets/mine.scss */
.team-box a {
  display: block;
  font-size: 14px;
  margin-bottom: 7px;
  font-family: 'IBM Plex Sans',sans-serif;
}

/* line 1443, app/assets/stylesheets/mine.scss */
.team-box a:last-child {
  margin: 0;
}

/* line 1447, app/assets/stylesheets/mine.scss */
.team-box a span {
  margin-right: 10px;
  width: 15px;
  display: inline-block;
  text-align: center;
}

/* line 1455, app/assets/stylesheets/mine.scss */
.contact-full-box {
  position: relative;
  margin: 0 -15px;
}

/* line 1460, app/assets/stylesheets/mine.scss */
.contact-full-box .contact-form-wrap {
  position: relative;
  padding: 80px 10%;
  background: #f8f9f6;
}

/* line 1466, app/assets/stylesheets/mine.scss */
.contact-details-wrap {
  position: relative;
  padding: 40px 10% 50px;
  background: #90a861;
}

/* line 1472, app/assets/stylesheets/mine.scss */
.contact-details-wrap * {
  color: #fff;
}

/* line 1476, app/assets/stylesheets/mine.scss */
.contact-details-wrap ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 1482, app/assets/stylesheets/mine.scss */
.contact-details-wrap ul li {
  display: inline-block;
  width: 32.8%;
  text-align: center;
  position: relative;
}

/* line 1489, app/assets/stylesheets/mine.scss */
.contact-details-wrap ul li p {
  margin: 0;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  line-height: 22px;
}

/* line 1496, app/assets/stylesheets/mine.scss */
.contact-details-wrap ul li span {
  width: 65px;
  height: 65px;
  display: inline-block;
  line-height: 65px;
  border: 1px solid #fff;
  border-radius: 50%;
  font-size: 20px;
  margin-bottom: 15px;
}

/* line 1507, app/assets/stylesheets/mine.scss */
.contact-details-wrap ul li p a, .contact-details-wrap ul li p b {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
}

/* line 1512, app/assets/stylesheets/mine.scss */
.contact-details-wrap ul li p a:hover {
  color: #fff;
  text-decoration: underline;
}

/* line 1517, app/assets/stylesheets/mine.scss */
.contact-details-wrap ul li:before {
  content: '';
  width: 1px;
  height: 100%;
  background: #acbe88;
  position: absolute;
  right: 0px;
  top: 0;
}

/* line 1519, app/assets/stylesheets/mine.scss */
.contact-details-wrap ul li:last-child:before {
  display: none;
}

/* line 1523, app/assets/stylesheets/mine.scss */
.contact-full-box .black-caption h2 {
  margin-bottom: 30px;
}

/* line 1525, app/assets/stylesheets/mine.scss */
.contact-full-box .contact-form-wrap .form-group {
  margin-bottom: 10px;
}

/* line 1529, app/assets/stylesheets/mine.scss */
.contact-full-box .contact-form-wrap .form-control {
  background: transparent;
  color: #767676;
  box-shadow: none;
  border: none;
  border-bottom: 1px solid #767676;
  border-radius: 0px;
  padding: 9px 4px;
  height: auto;
  font-family: 'IBM Plex Sans', sans-serif;
}

/* line 1541, app/assets/stylesheets/mine.scss */
.contact-full-box .contact-form-wrap .form-control::placeholder {
  color: #767676;
}

/* line 1545, app/assets/stylesheets/mine.scss */
.contact-full-box .contact-form-wrap .subbtn.with-icon {
  padding: 11px 30px 11px 55px;
}

/* line 1549, app/assets/stylesheets/mine.scss */
.contact-full-box .contact-form-wrap .subbtn-wrap {
  margin-top: 15px;
  display: inline-block;
  position: relative;
}

/* line 1555, app/assets/stylesheets/mine.scss */
.contact-full-box .contact-form-wrap .subbtn.with-icon + span {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0px, -50%);
  background: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #90a860;
  line-height: 45px;
  box-shadow: 0px 0px 9px -6px #000;
  font-size: 22px;
  transition: all .3s ease;
  padding-right: 3px;
}

/* line 1571, app/assets/stylesheets/mine.scss */
.contact-full-box .contact-form-wrap .subbtn.with-icon:hover + span,
.contact-full-box .contact-form-wrap .subbtn.with-icon:active + span,
.contact-full-box .contact-form-wrap .subbtn.with-icon:focus + span {
  background: #90a860;
  color: #fff;
  transition: all .3s ease;
}

/* line 1579, app/assets/stylesheets/mine.scss */
.contact-full-box.reviews {
  background: url(/assets/reviews-section-bg-3fd49f04ab2ce2a1f27f4a09b9293a18583cfbb4694185269826ca087200b655.jpg) no-repeat center center;
  background-size: cover;
  padding: 80px 10%;
}

/* line 1586, app/assets/stylesheets/mine.scss */
.testimonial-box img {
  display: inline-block !important;
  width: auto !important;
}

/* line 1588, app/assets/stylesheets/mine.scss */
.testimonial-box * {
  color: #fff !important;
}

/* line 1592, app/assets/stylesheets/mine.scss */
.testimonial-box .quotes-img {
  margin-bottom: 50px;
}

/* line 1596, app/assets/stylesheets/mine.scss */
.testimonial-box p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 50px;
}

/* line 1603, app/assets/stylesheets/mine.scss */
.testimonial-box .reviewer-sign {
  margin-bottom: 30px;
}

/* line 1607, app/assets/stylesheets/mine.scss */
.testimonial-box .name {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 5px;
}

/* line 1614, app/assets/stylesheets/mine.scss */
.testimonial-box .designation {
  font-size: 16px;
}

/* line 1618, app/assets/stylesheets/mine.scss */
div#patients-slider .owl-nav {
  position: absolute;
  height: 1px;
  margin: 0;
  width: 100%;
  top: 42%;
  transform: translate(0px, -50%);
}

/* line 1627, app/assets/stylesheets/mine.scss */
div#patients-slider .owl-nav button.owl-prev {
  float: left;
  margin-left: -35px !important;
}

/* line 1632, app/assets/stylesheets/mine.scss */
div#patients-slider .owl-nav button.owl-next {
  float: right;
  margin-right: -35px !important;
}

/* line 1637, app/assets/stylesheets/mine.scss */
div#patients-slider .owl-nav button {
  margin: 0px !important;
  line-height: normal;
  width: 30px;
  height: 30px;
  border: 1px solid;
  border-radius: 50%;
  font-size: 23px;
  text-align: center;
}

/* line 1648, app/assets/stylesheets/mine.scss */
div#patients-slider .owl-nav button:hover {
  background: #02c9b8;
}

/* line 1652, app/assets/stylesheets/mine.scss */
div#patients-slider .owl-dots {
  margin-top: 20px;
}

/* line 1656, app/assets/stylesheets/mine.scss */
div#patients-slider .owl-dots button.owl-dot span {
  width: 14px;
  margin: 2px;
}

/* line 1661, app/assets/stylesheets/mine.scss */
div#patients-slider .owl-dots button.owl-dot.active span {
  background: #90a860;
  width: 20px;
}

/* line 1667, app/assets/stylesheets/mine.scss */
a.tel-number {
  font-size: 30px;
  color: #0170c0;
  font-family: 'Roboto';
  font-weight: 500;
}

/* line 1674, app/assets/stylesheets/mine.scss */
a.tel-number:hover {
  text-decoration: underline;
}

/* line 1678, app/assets/stylesheets/mine.scss */
p.name-head {
  font-size: 28px;
  margin-bottom: 18px;
  font-family: 'Roboto';
  font-weight: 500;
  color: #193771;
  line-height: normal;
}

/*gallery Section CSS*/
/* line 1690, app/assets/stylesheets/mine.scss */
div#projects-section {
  position: relative;
  padding: 80px 0px 0px;
}

/* line 1695, app/assets/stylesheets/mine.scss */
.main-gallery .fh5co-card-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  /* padding: 25px; */
  opacity: 0;
  background: transparent;
  transition: all .5s ease;
}

/* line 1708, app/assets/stylesheets/mine.scss */
.main-gallery .fh5co-card-item .overlay .overlay-wapper {
  background: rgba(1, 101, 49, 0.6);
  background-size: 100% 100%;
  height: 100%;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  position: relative;
  transition: all .5s ease;
}

/* line 1719, app/assets/stylesheets/mine.scss */
.main-gallery .fh5co-card-item figure {
  max-height: inherit;
  min-height: inherit;
  overflow: hidden;
  position: relative;
  transition: all .5s ease;
}

/* line 1727, app/assets/stylesheets/mine.scss */
.main-gallery .fh5co-card-item figure img {
  width: 100%;
  transition: all .5s ease;
}

/* line 1732, app/assets/stylesheets/mine.scss */
.main-gallery .fh5co-card-item:hover .overlay {
  opacity: .6;
  transition: all .5s ease;
}

/*gallery Section CSS*/
/* line 1740, app/assets/stylesheets/mine.scss */
.heading-with-sap {
  margin-bottom: 25px;
}

/* line 1744, app/assets/stylesheets/mine.scss */
.heading-with-sap h2 {
  margin-bottom: 0px;
  font-size: 40px;
  font-family: 'futura_btbold';
}

/* line 1750, app/assets/stylesheets/mine.scss */
.heading-with-sap span.saperator {
  display: inline-block;
  width: 60px;
  height: 2px;
  background: #26a1a6;
  margin: 0px 0 0;
}

/* line 1758, app/assets/stylesheets/mine.scss */
.links ul {
  list-style-type: none;
}

/* line 1762, app/assets/stylesheets/mine.scss */
.links ul {
  list-style-type: none;
  padding-left: 0;
}

/* line 1767, app/assets/stylesheets/mine.scss */
.links ul li {
  padding: 2px 0;
}

/* line 1771, app/assets/stylesheets/mine.scss */
.links ul a {
  transform: translatex(0px);
  -webkit-transform: translatex(0px);
  transition: all 0.4s !important;
  display: block;
  font-size: 15px;
}

/* line 1779, app/assets/stylesheets/mine.scss */
.links ul a:hover {
  transform: translatex(10px);
  -webkit-transform: translatex(10px);
  display: block;
  transition: .3s all;
  -webkit-transition: .3s all;
  text-decoration: underline;
}

/* line 1788, app/assets/stylesheets/mine.scss */
a.themebtn {
  background: #355694;
  background: -moz-linear-gradient(90deg, #355694 0%, #50e198 100%);
  background: -webkit-linear-gradient(90deg, #355694 0%, #50e198 100%);
  background: linear-gradient(90deg, #355694 0%, #50e198 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#355694",endColorstr="#50e198",GradientType=1);
  padding: 6px 20px;
  text-align: center;
  display: inline-block;
  min-width: auto;
  border-radius: 7px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  box-shadow: none;
  border: 1px solid #fff;
  transition: all .3s ease;
}

/* line 1808, app/assets/stylesheets/mine.scss */
a.themebtn:hover,
a.themebtn:active,
a.themebtn:focus {
  background: #355694;
  background: -moz-linear-gradient(90deg, #355694 100%, #50e198 0%);
  background: -webkit-linear-gradient(90deg, #355694 100%, #50e198 100%);
  background: linear-gradient(90deg, #355694 100%, #50e198 0%);
  background-size: 100% 100%;
  color: #fff;
  transition: all .3s ease;
}

/* line 1820, app/assets/stylesheets/mine.scss */
a.themebtn.invert {
  background: #50e198;
  color: #fff !important;
  transition: all .3s ease;
}

/* line 1825, app/assets/stylesheets/mine.scss */
a.themebtn.invert:hover {
  background: #fff;
  color: #355694 !important;
  transition: all .3s ease;
}

/* line 1831, app/assets/stylesheets/mine.scss */
a.themebtn.borderbtn {
  background: transparent;
  border-color: #355694;
  color: #355694 !important;
}

/* line 1836, app/assets/stylesheets/mine.scss */
a.themebtn.borderbtn:hover {
  background: transparent;
  border-color: #50e198;
  color: #50e198 !important;
}

/* line 1842, app/assets/stylesheets/mine.scss */
a.themebtn.with-icon {
  position: relative;
  padding-left: 55px;
}

/* line 1847, app/assets/stylesheets/mine.scss */
a.themebtn.with-icon span {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0px, -50%);
  background: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #90a860;
  line-height: 45px;
  box-shadow: 0px 0px 9px -6px #000;
  font-size: 22px;
  transition: all .3s ease;
}

/* line 1863, app/assets/stylesheets/mine.scss */
a.themebtn.with-icon:hover span, a.themebtn.with-icon:focus span, a.themebtn.with-icon:active span {
  background: #90a860;
  color: #fff;
  transition: all .3s ease;
}

/* line 1869, app/assets/stylesheets/mine.scss */
.banner-content a.themebtn {
  margin-top: 10px;
}

/* line 1874, app/assets/stylesheets/mine.scss */
.subbtn {
  background: #90a860;
  padding: 11px 30px;
  text-align: center;
  display: inline-block;
  min-width: auto;
  border-radius: 25px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  box-shadow: none;
  border: none;
  transition: all .3s ease;
}

/* line 1891, app/assets/stylesheets/mine.scss */
.subbtn:hover,
.subbtn:active,
.subbtn:focus {
  background: #fff;
  background-size: 100% 100%;
  color: #90a860;
  transition: all .3s ease;
}

/* line 1902, app/assets/stylesheets/mine.scss */
div#contact-us-section {
  position: relative;
  padding: 100px 0;
  background-position-y: 40px;
  background-size: 600px;
}

/* line 1909, app/assets/stylesheets/mine.scss */
.contact-us-form {
  position: relative;
  padding: 50px 0 0;
}

/* line 1914, app/assets/stylesheets/mine.scss */
.contact-us-form .group-label {
  font-family: 'Myriad Pro Regular';
  color: #004689;
  font-size: 18px;
  margin-bottom: 10px;
  margin-top: 15px;
}

/* line 1922, app/assets/stylesheets/mine.scss */
.contact-us-form .form-group {
  margin-bottom: 17px;
}

/* line 1926, app/assets/stylesheets/mine.scss */
.contact-us-form .form-group input.form-control,
.contact-us-form .form-group select.form-control,
.contact-us-form .form-group textarea {
  border-color: #f8f9fa;
  box-shadow: none;
  border-radius: 3px;
  color: #646464;
}

/* line 1935, app/assets/stylesheets/mine.scss */
.contact-us-form .form-group input.form-control::placeholder,
.contact-us-form .form-group textarea::placeholder {
  color: #646464;
}

/* line 1940, app/assets/stylesheets/mine.scss */
.location-info-wrap.row {
  background: #193771;
  color: #fff;
  padding: 30px 0;
}

/* line 1946, app/assets/stylesheets/mine.scss */
.location-info-wrap .media-left,
.location-info-wrap .media-right,
.location-info-wrap .media-body {
  vertical-align: middle;
}

/* line 1952, app/assets/stylesheets/mine.scss */
.location-info-wrap .media-body p {
  margin: 0;
  font-size: 22px;
  color: #fff;
}

/* line 1958, app/assets/stylesheets/mine.scss */
.location-info-wrap .media-body {
  padding-left: 20px;
}

/* line 1962, app/assets/stylesheets/mine.scss */
ul.info-list {
  padding: 45px 0;
  list-style: none;
  margin: 0;
}

/* line 1968, app/assets/stylesheets/mine.scss */
ul.info-list li {
  display: flex;
  font-size: 24px;
  color: #193771;
  margin-bottom: 23px;
}

/* line 1975, app/assets/stylesheets/mine.scss */
ul.info-list li span {
  padding: 4px 9px 0 0;
  font-size: 20px;
  color: #7bb32f;
}

/* line 1981, app/assets/stylesheets/mine.scss */
ul.info-list li:last-child {
  margin: 0px;
}

/* line 1985, app/assets/stylesheets/mine.scss */
#fh5co-menu-wrap ul.flexMenu-popup a {
  padding: 8px 10px !important;
  color: #fff !important;
  border: none !important;
  line-height: normal;
}

/* line 1992, app/assets/stylesheets/mine.scss */
#fh5co-menu-wrap ul.flexMenu-popup li {
  margin: 0;
}

/* line 1996, app/assets/stylesheets/mine.scss */
#fh5co-menu-wrap ul.flexMenu-popup {
  background: #90a860;
  top: 100%;
}

/* line 2001, app/assets/stylesheets/mine.scss */
#fh5co-menu-wrap ul.flexMenu-popup a:hover {
  background: #fff;
}

/* line 2004, app/assets/stylesheets/mine.scss */
#fh5co-menu-wrap ul.flexMenu-popup ul.fh5co-sub-menu.child-nav {
  right: 100%;
  left: auto;
  background: #90a860;
  min-width: 210px;
}

/* line 2011, app/assets/stylesheets/mine.scss */
#fh5co-menu-wrap ul.flexMenu-popup ul.fh5co-sub-menu.child-nav li a {
  padding: 8px 10px !important;
  color: #fff !important;
  border: none !important;
  line-height: normal;
  font-size: 14px !important;
}

/* line 2018, app/assets/stylesheets/mine.scss */
#fh5co-menu-wrap ul.flexMenu-popup a.sf-withul.sf-with-ul:after {
  color: #fff;
  left: 0;
  content: "\e926";
  margin-top: -9px;
  margin-left: 10px;
}

/* line 2027, app/assets/stylesheets/mine.scss */
.gototop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

/* line 2039, app/assets/stylesheets/mine.scss */
.gototop.active {
  opacity: 1;
  visibility: visible;
}

/* line 2044, app/assets/stylesheets/mine.scss */
.gototop a {
  width: 50px;
  height: 50px;
  display: table;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}

/* line 2057, app/assets/stylesheets/mine.scss */
.gototop a span {
  height: 50px;
  display: table-cell;
  vertical-align: middle;
}

/* line 2063, app/assets/stylesheets/mine.scss */
.gototop a:hover, .gototop a:active, .gototop a:focus {
  text-decoration: none;
  outline: none;
}

/* line 2069, app/assets/stylesheets/mine.scss */
.banner-content p.subbanner-heading {
  font-weight: 600;
  font-family: 'IBM Plex Sans', sans-serif;
  color: #363636;
  font-size: 25px;
  line-height: 35px;
  margin-bottom: 15px;
}

/*------------ Login Page Css ------------*/
/* line 2082, app/assets/stylesheets/mine.scss */
div#signin-section {
  flex: 1 auto;
  -ms-flex: 1 0 0px;
  min-width: 0;
  display: flex;
  height: 100vh;
  background-color: #F9FAFB !important;
}

/* line 2091, app/assets/stylesheets/mine.scss */
.login-flex-row {
  display: flex;
  flex: 1 auto;
  -ms-flex: 1 0 0px;
  min-width: 0;
  height: 100vh;
  align-items: center;
}

/* line 2101, app/assets/stylesheets/mine.scss */
.login-flex-row .signin-form.signin-forgot, .login-flex-row .login-form.login-forgot {
  padding: 0 50px;
  display: flex;
  flex: 1 auto;
  -ms-flex: 1 0 0px;
  min-width: 0;
  height: 100vh;
  align-items: center;
}

/*div#signin-section .login-form.login-forgot {
    height: 0;
    overflow:hidden;
    opacity:0;
    transition:all .3s ease;
}*/
/* line 2117, app/assets/stylesheets/mine.scss */
div#signin-section.login-forgot-on .signin-form.signin-forgot {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all .3s ease;
}

/* line 2124, app/assets/stylesheets/mine.scss */
div#signin-section.login-forgot-on .login-form.login-forgot {
  height: 100vh;
  overflow: auto;
  opacity: 1;
  transition: all .3s ease;
}

/* line 2131, app/assets/stylesheets/mine.scss */
div#signin-section.login-signin-on .login-form.login-forgot {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all .3s ease;
}

/* line 2138, app/assets/stylesheets/mine.scss */
div#signin-section.login-signin-on .signin-form.signin-forgot {
  height: 100vh;
  overflow: auto;
  opacity: 1;
  transition: all .3s ease;
}

/* line 2145, app/assets/stylesheets/mine.scss */
.login-text > a {
  display: inline-block;
}

/* line 2148, app/assets/stylesheets/mine.scss */
.login-text .heading-with-sub h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

/* line 2153, app/assets/stylesheets/mine.scss */
.login-text .black-caption p {
  font-size: 17px;
  line-height: normal;
}

/* line 2157, app/assets/stylesheets/mine.scss */
.login-content .form-group label {
  font-family: 'IBM Plex Sans', sans-serif !important;
  font-size: 14px !important;
  color: #535760 !important;
  font-weight: 400 !important;
  line-height: 20px !important;
}

/* line 2164, app/assets/stylesheets/mine.scss */
a#login_forgot {
  font-family: 'IBM Plex Sans', sans-serif !important;
  font-size: 14px !important;
  color: #535760 !important;
  font-weight: 400 !important;
  line-height: 20px !important;
}

/* line 2172, app/assets/stylesheets/mine.scss */
.sign-up-link {
  font-family: 'IBM Plex Sans', sans-serif !important;
  font-size: 16px !important;
  color: #535760 !important;
  font-weight: 400 !important;
  line-height: 20px !important;
}

/* line 2180, app/assets/stylesheets/mine.scss */
.sign-up-link a, .cancel-link, .cancel-link:hover, .cancel-link:focus {
  font-family: 'IBM Plex Sans', sans-serif !important;
  font-size: 14px !important;
  color: #355694 !important;
  font-weight: 600 !important;
  line-height: 20px !important;
  background: transparent !important;
}

/* line 2191, app/assets/stylesheets/mine.scss */
.login-content .form-group .form-control {
  height: 45px !important;
  background: #fff;
  border-color: #D9DADB !important;
  border-radius: 5px !important;
}

/* line 2198, app/assets/stylesheets/mine.scss */
.subbtn {
  background: #355694;
  background: -moz-linear-gradient(90deg, #355694 0%, #50e198 100%);
  background: -webkit-linear-gradient(90deg, #355694 0%, #50e198 100%);
  background: linear-gradient(90deg, #355694 0%, #50e198 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#355694",endColorstr="#50e198",GradientType=1);
  padding: 6px 20px;
  text-align: center;
  display: inline-block;
  min-width: auto;
  border-radius: 7px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  box-shadow: none !important;
  border: 1px solid #fff !important;
  transition: all .3s ease;
  text-transform: inherit !important;
}

/* line 2219, app/assets/stylesheets/mine.scss */
.subbtn:hover,
.subbtn:active,
.subbtn:focus {
  background: #355694;
  background: -moz-linear-gradient(90deg, #355694 100%, #50e198 0%);
  background: -webkit-linear-gradient(90deg, #355694 100%, #50e198 100%);
  background: linear-gradient(90deg, #355694 100%, #50e198 0%);
  background-size: 100% 100%;
  color: #fff;
  transition: all .3s ease;
}

/* line 2231, app/assets/stylesheets/mine.scss */
.iti {
  width: 100%;
}

/*.iti input.form-control {
    padding-left: 100px !important;
}*/
/* line 2237, app/assets/stylesheets/mine.scss */
.iti--separate-dial-code .iti__selected-flag {
  background: transparent;
  padding: 0 20px;
}

/* line 2241, app/assets/stylesheets/mine.scss */
.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  background: transparent;
}

/* line 2245, app/assets/stylesheets/mine.scss */
.iti--separate-dial-code .iti__selected-flag:before {
  content: '';
  width: 1px;
  height: 40%;
  background: #D9DADB;
  right: 6px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

/* line 2256, app/assets/stylesheets/mine.scss */
.login-content .form-group .form-control.error {
  border-color: red !important;
}

/* line 2260, app/assets/stylesheets/mine.scss */
.login-content .form-group #error-msg {
  color: red !important;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  margin-top: 10px;
  display: inline-block;
}

/* line 2269, app/assets/stylesheets/mine.scss */
.login-forgot .form-group {
  position: relative;
}

/* line 2272, app/assets/stylesheets/mine.scss */
.form-group {
  position: relative;
}

/* line 2276, app/assets/stylesheets/mine.scss */
.form-group span#send-code {
  position: absolute;
  right: 7px;
  bottom: 31%;
  transform: translate(0, 50%);
  background: #D7E2F6;
  border: 1px solid #355694;
  color: #355694;
  padding: 5px 12px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  border-radius: 5px;
  transition: all .3s ease;
  cursor: pointer;
}

/* line 2293, app/assets/stylesheets/mine.scss */
.form-group span#send-code:hover, .form-group span#send-code:focus {
  background: #355694;
  color: #fff;
  transition: all .3s ease;
}

/* line 2296, app/assets/stylesheets/mine.scss */
.password-field {
  position: relative;
  border-radius: 5px;
}

/* line 2300, app/assets/stylesheets/mine.scss */
.iti.iti--allow-dropdown {
  border-radius: 5px;
}

/* line 2303, app/assets/stylesheets/mine.scss */
.password-field span.fa {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  color: #ccc;
  cursor: pointer;
}

/* line 2313, app/assets/stylesheets/mine.scss */
.password-field span.fa-eye {
  color: #3F4254;
}

/* line 2316, app/assets/stylesheets/mine.scss */
.code-confirm-input {
  position: relative;
}

/* line 2318, app/assets/stylesheets/mine.scss */
.code-confirm-input span.fa {
  position: absolute;
  right: 10px;
  top: 50%;
  font-size: 15px;
  transform: translateY(-50%);
  color: #23c497;
}

/*------------ Login Page Css ------------*/
/*--------- Signup Page Css ---------------*/
/* line 2333, app/assets/stylesheets/mine.scss */
div#signup-section {
  min-height: 100vh;
  background-color: #F9FAFB !important;
}

/* line 2338, app/assets/stylesheets/mine.scss */
.signup-content {
  overflow: scroll;
  margin-right: -15px;
  overflow-x: hidden !important;
}

/* line 2344, app/assets/stylesheets/mine.scss */
.signup-content::-webkit-scrollbar {
  width: 5px;
}

/* line 2347, app/assets/stylesheets/mine.scss */
.signup-content::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

/* line 2351, app/assets/stylesheets/mine.scss */
.signup-content::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}

/* line 2355, app/assets/stylesheets/mine.scss */
.signup-flex-row {
  flex: 1;
  -ms-flex: 1 0 0px;
  min-width: 0;
  display: flex;
  /*height: 100vh;*/
  flex-direction: row !important;
}

/* line 2364, app/assets/stylesheets/mine.scss */
.steps-sidebar {
  background: #fff;
  border-right: 1px solid #EFEFEF;
  text-align: center;
}

/* line 2370, app/assets/stylesheets/mine.scss */
.top-signup-link span {
  color: #535760  !important;
}

/* line 2374, app/assets/stylesheets/mine.scss */
.top-signup-link * {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  line-height: 24px;
}

/* line 2380, app/assets/stylesheets/mine.scss */
.top-signup-link a {
  font-weight: 600 !important;
  color: #355694 !important;
  margin-left: 10px !important;
  display: inline-block !important;
}

/* line 2387, app/assets/stylesheets/mine.scss */
.login-form-signup {
  height: calc(100vh - 88px);
}

/* line 2390, app/assets/stylesheets/mine.scss */
a.subbtn.disabled {
  background: #BBBDC1;
  border-color: #979797;
  cursor: not-allowed;
}

/* line 2396, app/assets/stylesheets/mine.scss */
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  background: #F5F6F7 !important;
}

/* line 2400, app/assets/stylesheets/mine.scss */
.backbtn {
  color: #355694;
  font-family: 'IBM PLEX SANS', sans-serif;
  font-size: 16px;
}

/* line 2405, app/assets/stylesheets/mine.scss */
.login-form-signup .black-caption p {
  font-size: 16px;
  color: #535760;
  line-height: 26px;
}

/* line 2410, app/assets/stylesheets/mine.scss */
.gl-msg-box {
  margin: 0 10px;
}

/* line 2413, app/assets/stylesheets/mine.scss */
.message-templates-wrap .mix-target {
  display: none;
}

/* line 2417, app/assets/stylesheets/mine.scss */
.message-templates-wrap .templates-filters a, .mocks-wrap .mocks-filter a,
.filter-scroll-container .templates-filters a {
  color: #666C77;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 20px;
  position: relative;
  display: inline-block;
  margin: 0 5px;
}

/* line 2429, app/assets/stylesheets/mine.scss */
.message-templates-wrap .templates-filters a:before, .mocks-wrap .mocks-filter a:before,
.filter-scroll-container .templates-filters a:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: transparent;
  bottom: -1px;
  left: 0;
}

/* line 2440, app/assets/stylesheets/mine.scss */
.message-templates-wrap .templates-filters, .mocks-wrap .mocks-filter {
  /*border-bottom: 1px solid #D9DADB;*/
  margin-bottom: 10px;
}

/* line 2444, app/assets/stylesheets/mine.scss */
.mocks-filter, .filter-scroll-container.message-templates-wrap .templates-filters {
  border-bottom: 1px solid #D9DADB;
}

/* line 2447, app/assets/stylesheets/mine.scss */
.mocks-wrap .mocks-filter a.active:before, .filter-scroll-container .templates-filters a.active:before {
  background: #23C497;
}

/* line 2450, app/assets/stylesheets/mine.scss */
.mocks-wrap .mocks-filter a.active, .filter-scroll-container .templates-filters a.active {
  color: #23C497;
}

/* line 2453, app/assets/stylesheets/mine.scss */
.filter-scroll-container.message-templates-wrap div#pick-templates-filters a:first-child {
  margin-bottom: 0;
}

/* line 2457, app/assets/stylesheets/mine.scss */
a.msg-template-box-wrap {
  display: block;
}

/* line 2460, app/assets/stylesheets/mine.scss */
.msg-template-box {
  background: #E5DDD5;
  border-radius: 5px;
  padding: 20px;
  border: 2px solid transparent;
  height: auto !important;
}

/* line 2468, app/assets/stylesheets/mine.scss */
.msg-template-box:hover, .msg-template-box:focus {
  border-color: #23C497;
}

/* line 2472, app/assets/stylesheets/mine.scss */
.msg-template-box .msg-template-name {
  color: #C5BCB4;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 13px;
  margin-left: -8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 2485, app/assets/stylesheets/mine.scss */
.msg-template-box .msg-template-content {
  background: #fff;
  padding: 15px;
  border-radius: 0px 11px 11px 11px;
  position: relative;
}

/* line 2492, app/assets/stylesheets/mine.scss */
.msg-template-box .msg-template-content label {
  text-transform: uppercase;
  color: #535760;
  font-size: 11px;
  margin-bottom: 5px;
  display: block;
}

/* line 2500, app/assets/stylesheets/mine.scss */
.msg-template-box .msg-template-content:before {
  content: '';
  width: 0;
  height: 0;
  border-right: 20px solid #ffffff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  position: absolute;
  left: -8px;
  top: -6px;
  transform: rotate(28deg);
}

/* line 2513, app/assets/stylesheets/mine.scss */
.msg-template-content-head h3 {
  font-size: 14px;
  color: #0F121D;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  line-height: 23px;
  margin-bottom: 15px;
}

/* line 2522, app/assets/stylesheets/mine.scss */
.msg-template-content-body p {
  color: #535760;
  font-size: 12px;
  line-height: 18px;
  font-family: 'IBM Plex Sans', sans-serif;
  margin-bottom: 15px;
}

/* line 2530, app/assets/stylesheets/mine.scss */
.msg-template-content-footer p {
  color: #535760;
  font-size: 12px;
  line-height: 18px;
  font-family: 'IBM Plex Sans', sans-serif;
  margin-bottom: 0;
}

/* line 2538, app/assets/stylesheets/mine.scss */
.msg-template-btns {
  padding: 7px 0 0;
  position: relative;
  margin-left: 0;
}

/* line 2544, app/assets/stylesheets/mine.scss */
.msg-template-btns .tmp-btn {
  background: #fff !important;
  border: none !important;
  outline: none !important;
  color: #355694;
  font-size: 13px;
  font-weight: 400;
  padding: 9px 0;
  line-height: normal;
  border-radius: 10px;
}

/* line 2556, app/assets/stylesheets/mine.scss */
.msg-template-btns .tmp-btn span {
  margin-right: 10px;
  color: #5EB0EA;
}

/* line 2561, app/assets/stylesheets/mine.scss */
.msg-template-btns .tmp-btn.no-event {
  pointer-events: none;
}

/* line 2565, app/assets/stylesheets/mine.scss */
.msg-template-content-head img, .msg-template-content-head video {
  margin: 0 auto;
  display: block;
  width: 200px;
  margin-bottom: 11px;
  margin-top: 11px;
  height: 92px;
}

/* line 2575, app/assets/stylesheets/mine.scss */
.msg-template-box.edit {
  max-width: 90%;
  margin-left: auto;
  margin-top: 15px;
  padding: 25px 45px;
}

/* line 2582, app/assets/stylesheets/mine.scss */
.msg-template-box.edit:hover, .msg-template-box.edit:focus {
  border-color: transparent;
}

/* line 2586, app/assets/stylesheets/mine.scss */
.msg-template-box.edit .msg-template-name {
  font-size: 19px;
  margin-bottom: 25px;
}

/* line 2590, app/assets/stylesheets/mine.scss */
.msg-template-box.edit .msg-template-content {
  padding: 25px;
}

/* line 2595, app/assets/stylesheets/mine.scss */
.msg-template-box.edit .msg-template-content-head img, .msg-template-box.edit .msg-template-content-head video {
  width: 100%;
  height: auto;
}

/* line 2600, app/assets/stylesheets/mine.scss */
.msg-template-box.edit .msg-template-content-head h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

/* line 2605, app/assets/stylesheets/mine.scss */
.msg-template-box.edit .msg-template-content-body p {
  font-size: 16px;
  line-height: 24px;
}

/* line 2610, app/assets/stylesheets/mine.scss */
.msg-template-box.edit .msg-template-content-body p b {
  color: #0F121D;
}

/* line 2614, app/assets/stylesheets/mine.scss */
.msg-template-box.edit .msg-template-content-footer p {
  font-size: 13px;
  margin-top: 25px;
}

/* line 2619, app/assets/stylesheets/mine.scss */
.msg-template-box.edit .tmp-btn {
  padding: 13px 0;
  font-size: 16px;
  pointer-events: auto !important;
  text-align: center;
}

/* line 2626, app/assets/stylesheets/mine.scss */
.test-msg-success .heading-with-sub h2 {
  color: #23C497;
}

/* line 2630, app/assets/stylesheets/mine.scss */
.test-again {
  border: 1px solid #355694;
  padding: 7px 30px;
  border-radius: 5px;
  color: #355694;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease;
}

/* line 2640, app/assets/stylesheets/mine.scss */
.test-again:hover {
  border-color: #23C497;
  color: #23C497;
  transition: all .3s ease;
}

/* line 2646, app/assets/stylesheets/mine.scss */
.form-group.input-with-currency:before {
  content: ' USD ';
  position: absolute;
  bottom: 9px;
  right: 12px;
  color: #BBBDC1;
}

/* line 2654, app/assets/stylesheets/mine.scss */
.form-control.cc-input {
  background: #FFF url(/assets/mc_symbol-4545ced1c7199f83e836dd5bc1e554e73bdeef60ee7ac256e8c3ad49989eb644.png) no-repeat center right !important;
  background-position-x: 97% !important;
}

/* line 2659, app/assets/stylesheets/mine.scss */
.qa-accordion.inner .panel h4 a {
  font-size: 16px !important;
  background: transparent url(/assets/down-arrow-08454f6f0e268ded24131f0e9df029d5f5cb4c18cdecaaa04b75b7cde8325159.png) no-repeat calc(100% - 10px) center !important;
  color: #355694 !important;
  background-size: 9px !important;
}

/* line 2666, app/assets/stylesheets/mine.scss */
.qa-accordion.inner .panel h4 a[aria-expanded="true"] {
  background: transparent url(/assets/up-arrow-b44e45ff6a0608e6707387ff8ef77c9caa25724ecf9c26d07c95d16352a4f174.png) no-repeat calc(100% - 10px) center !important;
  background-size: 9px !important;
}

/* line 2671, app/assets/stylesheets/mine.scss */
.qa-accordion.inner .panel {
  background-color: transparent !important;
}

/* line 2675, app/assets/stylesheets/mine.scss */
.qa-accordion.inner .panel-body {
  padding: 12px 15px 16px;
  padding-left: 0;
  padding-right: 0;
}

/* line 2681, app/assets/stylesheets/mine.scss */
.qa-accordion.inner .panel-body * {
  font-size: 15px !important;
}

/* line 2686, app/assets/stylesheets/mine.scss */
div#buyCredits .modal-dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 500px;
}

/* line 2688, app/assets/stylesheets/mine.scss */
div#buyCredits .modal-dialog .modal-body {
  padding: 30px 30px 10px;
}

/* line 2692, app/assets/stylesheets/mine.scss */
div#buyCredits .modal-dialog .modal-footer {
  border: none;
  padding: 0px 30px 30px;
}

/* line 2696, app/assets/stylesheets/mine.scss */
div#buyCredits .modal-content .close {
  font-size: 30px;
  position: absolute;
  right: 7px;
  z-index: 99999;
  opacity: 1;
}

/* line 2704, app/assets/stylesheets/mine.scss */
ol.after-setup-list {
  list-style: none;
  counter-reset: my-awesome-counter;
}

/* line 2708, app/assets/stylesheets/mine.scss */
ol.after-setup-list li {
  counter-increment: my-awesome-counter;
  font-size: 18px;
  font-family: 'IBM Plex Sans', sans-serif;
  color: #0F121D;
  margin-bottom: 20px;
}

/* line 2715, app/assets/stylesheets/mine.scss */
ol.after-setup-list li:last-child {
  margin: 0px;
}

/* line 2718, app/assets/stylesheets/mine.scss */
ol.after-setup-list li::before {
  content: counter(my-awesome-counter) " ";
  color: #355694;
  font-weight: bold;
  font-size: 14px;
  width: 30px;
  height: 30px;
  display: inline-block;
  float: left;
  text-align: center;
  line-height: 30px;
  margin-right: 15px;
  border: 1px solid #355694;
  border-radius: 25px;
}

/*--------- Signup Page Css ---------------*/
/* ------------ Logged In Header ------------- */
/* line 2741, app/assets/stylesheets/mine.scss */
body.logged-in {
  background: #F9FAFB;
}

/* line 2745, app/assets/stylesheets/mine.scss */
.top-user-links {
  position: relative;
  margin: 24px 0px;
}

/* line 2750, app/assets/stylesheets/mine.scss */
.top-user-links .available-balance span {
  font-size: 18px;
  font-weight: 700;
  font-family: 'IBM Plex Sans', sans-serif;
  color: #355694;
  line-height: normal;
  margin-right: 20px;
}

/* line 2759, app/assets/stylesheets/mine.scss */
.top-user-links .available-balance span img {
  float: left;
  position: relative;
  top: 2px;
  margin-right: 7px;
}

/* line 2766, app/assets/stylesheets/mine.scss */
.top-user-links .available-balance {
  line-height: normal;
  padding-right: 35px;
}

/* line 2771, app/assets/stylesheets/mine.scss */
.top-user-links .available-balance a {
  float: right;
}

/* line 2776, app/assets/stylesheets/mine.scss */
.user-options .dropdown > a {
  color: #535760;
  font-size: 18px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  line-height: 32px;
}

/* line 2784, app/assets/stylesheets/mine.scss */
.user-options .dropdown > a.dropdown-toggle img {
  margin-right: 10px;
  width: 35px;
}

/* line 2789, app/assets/stylesheets/mine.scss */
.user-options {
  position: relative;
}

/* line 2793, app/assets/stylesheets/mine.scss */
.user-options:before {
  content: '';
  width: 1px;
  height: 90%;
  background: #D8D8D8;
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
}

/* line 2804, app/assets/stylesheets/mine.scss */
.user-options .dropdown.open .dropdown-menu a {
  display: block;
  margin-bottom: 10px;
  color: #535760;
  font-size: 15px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  line-height: 25px;
}

/* line 2814, app/assets/stylesheets/mine.scss */
.user-options .dropdown.open .dropdown-menu a span.fa-user-circle-o:before {
  content: "\f2be";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 2824, app/assets/stylesheets/mine.scss */
.user-options .dropdown > a .caret {
  position: relative;
  top: -2px;
  left: 3px;
}

/* line 2830, app/assets/stylesheets/mine.scss */
.user-options .dropdown.open .dropdown-menu {
  padding: 15px;
}

/* line 2834, app/assets/stylesheets/mine.scss */
.user-options .dropdown.open .dropdown-menu > a > span {
  margin-right: 10px;
  width: 15px;
  font-size: 20px;
  color: #b0b1b3;
  position: relative;
  top: 3px;
}

/* line 2843, app/assets/stylesheets/mine.scss */
.user-options .dropdown.open .dropdown-menu a:last-child {
  margin-bottom: 0px;
}

/* line 2846, app/assets/stylesheets/mine.scss */
#fh5co-header-section.logged-in {
  background: transparent;
}

/* line 2849, app/assets/stylesheets/mine.scss */
#fh5co-header-section.logged-in nav ul li.active a {
  position: relative;
}

/* line 2853, app/assets/stylesheets/mine.scss */
#fh5co-header-section.logged-in nav ul li.active a:before {
  content: '';
  position: absolute;
  width: 106%;
  height: 3px;
  background: #00c894;
  bottom: -99%;
  left: 50%;
  transform: translateX(-50%);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

/* line 2866, app/assets/stylesheets/mine.scss */
#fh5co-header-section.logged-in .logo-bar {
  background: #fff;
  box-shadow: 0px 1px 5px -5px #ccc;
  padding-bottom: 0px;
}

/* line 2872, app/assets/stylesheets/mine.scss */
#fh5co-header-section.logged-in .logo-bar #fh5co-logo {
  margin-left: 0px;
}

/* line 2876, app/assets/stylesheets/mine.scss */
#fh5co-header-section.logged-in .logo-bar nav ul li {
  margin-right: 30px;
}

/* line 2880, app/assets/stylesheets/mine.scss */
#fh5co-header-section.logged-in .logo-bar nav ul li > a {
  text-transform: uppercase;
  font-size: 15px;
}

/* line 2885, app/assets/stylesheets/mine.scss */
#fh5co-header-section.logged-in .logo-bar nav ul {
  text-align: left;
}

/* line 2888, app/assets/stylesheets/mine.scss */
.row.search-bar {
  background: #fff;
  box-shadow: 0px 2px 5px -5px #ccc;
  border-top: 1px solid #EFEFEF;
}

/* line 2894, app/assets/stylesheets/mine.scss */
.search-box-top {
  position: relative;
}

/* line 2898, app/assets/stylesheets/mine.scss */
.search-box-top .form-group {
  margin: 0px;
}

/* line 2902, app/assets/stylesheets/mine.scss */
.search-box-top .form-group input {
  border: none;
  box-shadow: none;
  background: url(/assets/search-icon-b8aeee338ea6d8f91bb456342542c888937de8ebaf535f78d8a23faaf41886d7.png) no-repeat center left;
  padding: 5px 25px;
  height: 30px;
}

/* line 2909, app/assets/stylesheets/mine.scss */
.top-rates span {
  font-size: 14px;
  font-weight: bold;
  font-family: 'IBM Plex Sans', sans-serif;
  color: #355694;
  line-height: 30px;
}

/* line 2917, app/assets/stylesheets/mine.scss */
.top-rates span:first-child {
  margin-right: 22px;
}

/* ------------ Logged In Header ------------- */
@media only screen and (max-width: 1200px) and (min-width: 1140px) {
  /* line 2931, app/assets/stylesheets/mine.scss */
  .testimonial-box .quotes-img {
    margin-bottom: 30px;
  }
  /* line 2935, app/assets/stylesheets/mine.scss */
  .testimonial-box p {
    margin-bottom: 30px;
  }
  /* line 2939, app/assets/stylesheets/mine.scss */
  .testimonial-box .reviewer-sign {
    margin-bottom: 15px;
  }
  /* line 2942, app/assets/stylesheets/mine.scss */
  .team-box .media-body {
    padding: 10px 0px 0 0;
  }
}

@media only screen and (max-width: 1310px) and (min-width: 1140px) {
  /* line 2949, app/assets/stylesheets/mine.scss */
  .contact-details-wrap {
    padding: 40px 3% 70px;
  }
}

@media only screen and (max-width: 1250px) and (min-width: 1120px) {
  /* line 2955, app/assets/stylesheets/mine.scss */
  .top-notice-area {
    margin-top: 28px;
  }
  /* line 2959, app/assets/stylesheets/mine.scss */
  .top-notice-area ul li {
    font-size: 15px;
    margin-right: 22px;
  }
  /* line 2964, app/assets/stylesheets/mine.scss */
  .top-notice-area ul li ul li {
    margin-right: 10px;
  }
  /* line 2967, app/assets/stylesheets/mine.scss */
  .top-link-wrap a {
    color: #fff;
    padding: 10px 17px;
    font-size: 12px;
  }
  /* line 2972, app/assets/stylesheets/mine.scss */
  .service-box .service-box-content {
    padding: 80px 0 30px;
  }
  /* line 2975, app/assets/stylesheets/mine.scss */
  #fh5co-header-section nav ul li {
    margin-right: 15px;
  }
}

@media only screen and (max-width: 1170px) and (min-width: 1120px) {
  /* line 2982, app/assets/stylesheets/mine.scss */
  .mission-info-wrap ul {
    list-style: none;
    padding: 0px 3px;
    margin: 0;
  }
}

/*@media only screen and (max-width: 1220px) and (min-width: 1170px) {
    #fh5co-header-section nav ul li {
        margin-right: 10px;
    }
    .top-link a.themebtn {
        font-size: 13px;
    }
    #fh5co-logo img {
        width: 120px !important;
        max-width: inherit;
    }
    .banner-content h1 {
        font-size: 27px;
    }
    .banner-content h1 span {
        font-size: 51px;
    }
    div#patients-slider .owl-nav button.owl-next {
        margin-right: -5px !important;
    }
    div#patients-slider .owl-nav button.owl-prev{
        margin-left:-5px !important;
    }
}*/
@media only screen and (min-device-width: 992px) and (max-device-width: 1024px) {
  /* line 3018, app/assets/stylesheets/mine.scss */
  .top-notice-area {
    margin-top: 25px;
  }
  /* line 3022, app/assets/stylesheets/mine.scss */
  .top-notice-area ul li {
    font-size: 14px;
    margin-right: 18px;
  }
  /* line 3027, app/assets/stylesheets/mine.scss */
  .top-notice-area ul li ul li {
    margin-right: 5px;
  }
  /* line 3030, app/assets/stylesheets/mine.scss */
  .top-link-wrap a {
    color: #fff;
    padding: 10px 14px;
    font-size: 10px;
  }
  /* line 3035, app/assets/stylesheets/mine.scss */
  .top-notice-area ul li:before {
    right: -14px;
    top: -1px;
  }
  /* line 3039, app/assets/stylesheets/mine.scss */
  .sf-menu {
    margin: 16px auto  16px !important;
  }
  /* line 3042, app/assets/stylesheets/mine.scss */
  #fh5co-logo {
    margin: 28px 0 28px 15px;
  }
  /* line 3045, app/assets/stylesheets/mine.scss */
  #fh5co-header-section nav ul li {
    margin-right: 65px;
  }
  /* line 3048, app/assets/stylesheets/mine.scss */
  #fh5co-menu-wrap .sf-menu a {
    padding: 10px 0 !important;
  }
  /* line 3051, app/assets/stylesheets/mine.scss */
  .top-link {
    padding: 20px 0;
    margin: 0px -19px 0 -63px;
  }
  /*#fh5co-logo img {
        max-width: inherit;
        width: 120px;
    }*/
  /* line 3059, app/assets/stylesheets/mine.scss */
  div#banner-slider {
    height: 520px;
  }
  /* line 3062, app/assets/stylesheets/mine.scss */
  .banner-content {
    padding: 70px 0 0;
  }
  /* line 3065, app/assets/stylesheets/mine.scss */
  .banner-content h1 {
    font-size: 39px;
    line-height: 45px;
  }
  /* line 3069, app/assets/stylesheets/mine.scss */
  .banner-content h1 span {
    font-size: 44px;
  }
  /* line 3072, app/assets/stylesheets/mine.scss */
  .banner-content p {
    font-size: 16px;
    line-height: 25px;
  }
  /* line 3076, app/assets/stylesheets/mine.scss */
  .banner-content p.subbanner-heading {
    font-size: 21px;
    line-height: 28px;
    margin-bottom: 15px;
  }
  /* line 3083, app/assets/stylesheets/mine.scss */
  a.themebtn {
    font-size: 13px;
    padding: 12px 35px;
  }
  /* line 3088, app/assets/stylesheets/mine.scss */
  .sayings-wrap {
    padding-left: 0;
  }
  /* line 3092, app/assets/stylesheets/mine.scss */
  .steps-sidebar .wizard-nav {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  /* line 3096, app/assets/stylesheets/mine.scss */
  .steps-sidebar .wizard-nav .wizard-steps .wizard-step .wizard-icon {
    margin-right: 0.4rem;
    width: 30px;
    height: 30px;
  }
  /* line 3101, app/assets/stylesheets/mine.scss */
  .steps-sidebar .wizard-nav .wizard-steps .wizard-step .wizard-label .wizard-title {
    font-size: 14px;
  }
  /* line 3104, app/assets/stylesheets/mine.scss */
  .message-templates-wrap {
    overflow: scroll;
    /*width: 698px;*/
  }
  /* line 3108, app/assets/stylesheets/mine.scss */
  .message-templates-wrap .templates-filters {
    /*width: 1242px;*/
  }
  /* line 3111, app/assets/stylesheets/mine.scss */
  div#mix-wrapper {
    /*width: 1242px;*/
  }
  /* line 3114, app/assets/stylesheets/mine.scss */
  .msg-template-box.edit {
    max-width: 100%;
    margin-top: 15px;
    padding: 15px 20px;
  }
  /* line 3119, app/assets/stylesheets/mine.scss */
  .msg-template-box.edit .msg-template-name {
    font-size: 17px;
    margin-bottom: 13px;
  }
  /* line 3123, app/assets/stylesheets/mine.scss */
  .msg-template-box.edit .msg-template-content {
    padding: 15px;
  }
  /* line 3126, app/assets/stylesheets/mine.scss */
  .msg-template-box.edit .msg-template-content-head h3 {
    font-size: 15px;
    margin-bottom: 15px;
  }
  /* line 3130, app/assets/stylesheets/mine.scss */
  .msg-template-box.edit .msg-template-content-body p {
    font-size: 14px;
    line-height: 20px;
  }
  /* line 3134, app/assets/stylesheets/mine.scss */
  .subbtn {
    padding-left: 25px !important;
    padding-right: 26px !important;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 991px) {
  /* line 3142, app/assets/stylesheets/mine.scss */
  .top-notice-area {
    margin-top: 10px;
  }
  /* line 3145, app/assets/stylesheets/mine.scss */
  .top-notice-area ul li {
    font-size: 14px;
    margin-right: 18px;
  }
  /* line 3150, app/assets/stylesheets/mine.scss */
  .top-notice-area ul li ul li {
    margin-right: 5px;
  }
  /* line 3153, app/assets/stylesheets/mine.scss */
  .top-link-wrap a {
    color: #fff;
    padding: 10px 14px;
    font-size: 10px;
  }
  /* line 3158, app/assets/stylesheets/mine.scss */
  .top-notice-area ul li:before {
    right: -14px;
    top: -1px;
  }
  /* line 3162, app/assets/stylesheets/mine.scss */
  #fh5co-logo {
    margin: 15px 0 0px 0px;
  }
  /* line 3166, app/assets/stylesheets/mine.scss */
  .stuck #fh5co-logo {
    margin: 15px 0 0px 0px;
  }
  /* line 3169, app/assets/stylesheets/mine.scss */
  #fh5co-logo img {
    max-width: 240px;
  }
  /* line 3172, app/assets/stylesheets/mine.scss */
  h1#fh5co-logo:before,
.websearch {
    display: none;
  }
  /* line 3176, app/assets/stylesheets/mine.scss */
  .fh5co-cover,
.fh5co-hero {
    height: 325px !important;
  }
  /* line 3180, app/assets/stylesheets/mine.scss */
  .logo-bar {
    padding: 10px 0px;
    position: relative;
  }
  /* line 3184, app/assets/stylesheets/mine.scss */
  .fh5co-nav-toggle {
    top: 12px;
    margin-top: 0em;
  }
  /* line 3188, app/assets/stylesheets/mine.scss */
  .stuck .fh5co-nav-toggle {
    top: 12px;
    margin-top: 0em;
  }
  /*#fh5co-logo img {
        max-width: 100px;
        margin-left: 0px;
    }*/
  /* line 3197, app/assets/stylesheets/mine.scss */
  div#banner-slider {
    height: 540px;
  }
  /* line 3200, app/assets/stylesheets/mine.scss */
  .banner-content {
    padding: 70px 0 0;
  }
  /* line 3203, app/assets/stylesheets/mine.scss */
  .banner-content h1 {
    font-size: 35px;
    line-height: 40px;
  }
  /* line 3207, app/assets/stylesheets/mine.scss */
  .banner-content h1 span {
    font-size: 35px;
  }
  /* line 3210, app/assets/stylesheets/mine.scss */
  .banner-content p {
    font-size: 16px;
    line-height: 25px;
    margin-top: 18px;
  }
  /* line 3215, app/assets/stylesheets/mine.scss */
  .banner-btns a {
    min-width: inherit !important;
  }
  /* line 3218, app/assets/stylesheets/mine.scss */
  .banner-btns {
    display: flex;
    justify-content: space-between;
  }
  /* line 3223, app/assets/stylesheets/mine.scss */
  .banner-btns a {
    margin: 0 !important;
    width: 49%;
  }
  /* line 3229, app/assets/stylesheets/mine.scss */
  div#audience-about-section {
    background-size: cover;
    background-repeat-y: repeat;
  }
  /* line 3234, app/assets/stylesheets/mine.scss */
  .audience-about-info-list {
    position: relative;
    padding: 15px;
    padding-top: 35px;
  }
  /* line 3239, app/assets/stylesheets/mine.scss */
  .audience-about-info-list ul li {
    padding-left: 30px;
  }
  /* line 3242, app/assets/stylesheets/mine.scss */
  .audience-about-info-list ul li:before {
    width: 35px;
    height: 35px;
    top: -3px;
  }
  /* line 3247, app/assets/stylesheets/mine.scss */
  .audience-about-video .video-info {
    bottom: -120px;
  }
  /* line 3250, app/assets/stylesheets/mine.scss */
  img.about-arrow {
    left: 40%;
  }
  /* line 3255, app/assets/stylesheets/mine.scss */
  .heading-with-sub h2 {
    font-size: 40px;
  }
  /* line 3258, app/assets/stylesheets/mine.scss */
  div#sayings-slider .owl-nav {
    top: -85px;
    left: 85%;
  }
  /* line 3262, app/assets/stylesheets/mine.scss */
  .sayings-wrap {
    padding-left: 0px;
  }
  /* line 3266, app/assets/stylesheets/mine.scss */
  a.themebtn {
    padding: 12px 40px;
    font-size: 13px;
  }
  /* line 3270, app/assets/stylesheets/mine.scss */
  .tag-box {
    margin-bottom: 30px;
  }
  /* line 3274, app/assets/stylesheets/mine.scss */
  h3.small-heading {
    font-size: 25px;
  }
  /* line 3279, app/assets/stylesheets/mine.scss */
  a.themebtn.small, a.themebtn.small.invert {
    min-width: 170px !important;
  }
  /*.signup-content {
        overflow: inherit;
        margin-right: 0;
        overflow-x: inherit !important;
    }*/
  /* line 3289, app/assets/stylesheets/mine.scss */
  .steps-sidebar .wizard-nav {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  /* line 3293, app/assets/stylesheets/mine.scss */
  .steps-sidebar .wizard-nav .wizard-steps .wizard-step .wizard-icon {
    margin-right: 0.4rem;
    width: 30px;
    height: 30px;
  }
  /* line 3298, app/assets/stylesheets/mine.scss */
  .steps-sidebar .wizard-nav .wizard-steps .wizard-step .wizard-label .wizard-title {
    font-size: 14px;
  }
  /* line 3301, app/assets/stylesheets/mine.scss */
  .message-templates-wrap {
    /*overflow: scroll;*/
    /*width: 432px;*/
  }
  /* line 3305, app/assets/stylesheets/mine.scss */
  .message-templates-wrap .templates-filters {
    /*width: 1024px;*/
  }
  /* line 3308, app/assets/stylesheets/mine.scss */
  div#mix-wrapper {
    /*width: 1024px;*/
  }
  /* line 3311, app/assets/stylesheets/mine.scss */
  .msg-template-box.edit {
    max-width: 100%;
    margin-top: 15px;
    padding: 15px 20px;
  }
  /* line 3316, app/assets/stylesheets/mine.scss */
  .msg-template-box.edit .msg-template-name {
    font-size: 17px;
    margin-bottom: 13px;
  }
  /* line 3320, app/assets/stylesheets/mine.scss */
  .msg-template-box.edit .msg-template-content {
    padding: 15px;
  }
  /* line 3323, app/assets/stylesheets/mine.scss */
  .msg-template-box.edit .msg-template-content-head h3 {
    font-size: 15px;
    margin-bottom: 15px;
  }
  /* line 3327, app/assets/stylesheets/mine.scss */
  .msg-template-box.edit .msg-template-content-body p {
    font-size: 14px;
    line-height: 20px;
  }
  /* line 3331, app/assets/stylesheets/mine.scss */
  .subbtn {
    padding-left: 25px !important;
    padding-right: 26px !important;
  }
  /* line 3335, app/assets/stylesheets/mine.scss */
  .msg-template-content-head h3 {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 8px;
  }
  /* line 3340, app/assets/stylesheets/mine.scss */
  .test-msg-success .d-flex.justify-content-start .remaining-msg-text {
    margin: 0 !important;
  }
  /* line 3344, app/assets/stylesheets/mine.scss */
  .test-msg-success .d-flex.justify-content-start .test-again {
    padding: 5px 14px;
    font-size: 15px;
  }
  /* line 3349, app/assets/stylesheets/mine.scss */
  .test-msg-success .d-flex.justify-content-start {
    justify-content: space-between !important;
  }
  /* line 3354, app/assets/stylesheets/mine.scss */
  .pricing-table.inner-step {
    width: 442px;
  }
  /* line 3357, app/assets/stylesheets/mine.scss */
  .pricing-table.inner-step table tbody#ratesTable {
    display: table-row-group;
    width: auto;
    overflow: inherit;
  }
  /* line 3363, app/assets/stylesheets/mine.scss */
  .pricing-table.inner-step table thead {
    display: table-header-group;
    width: auto;
  }
  /* line 3367, app/assets/stylesheets/mine.scss */
  .pricing-table.inner-step table tr {
    display: table-row;
    width: auto;
  }
  /* line 3371, app/assets/stylesheets/mine.scss */
  .inner-step .pricing-table-mobile {
    overflow: scroll;
  }
  /* line 3376, app/assets/stylesheets/mine.scss */
  #gtco-footer .gtco-widget p,
#gtco-footer .gtco-widget .links a {
    font-size: 13px;
  }
  /* line 3380, app/assets/stylesheets/mine.scss */
  #gtco-footer .copyright-info p,
#gtco-footer .copyright-info a {
    font-size: 17px;
  }
  /* line 3384, app/assets/stylesheets/mine.scss */
  .heading-with-sap {
    margin-bottom: 10px;
  }
  /* line 3387, app/assets/stylesheets/mine.scss */
  #gtco-footer .gtco-widget.footer-logo {
    margin-bottom: 40px;
  }
  /* line 3390, app/assets/stylesheets/mine.scss */
  .footer-nav ul li:before {
    content: ' | ';
    position: absolute;
    top: -1px;
    right: -11px;
    color: #02cab8;
  }
}

@media screen and (max-width: 991px) {
  /* line 3400, app/assets/stylesheets/mine.scss */
  .login.login-1 .login-content {
    margin: 0 auto !important;
  }
}

/*@media screen and (max-width: 768px) {
    .banner-heading h1 {
        font-size: 55px;
    }
    #fh5co-logo {
        text-align: left;
    }
    .fh5co-nav-toggle {
        margin-top: 0em;
    }
    .sticky-banner.stuck .fh5co-nav-toggle {
        margin-top: 0em;
        transition: ease .5s all;
    }


}*/
@media (max-width: 767px) {
  /* line 3423, app/assets/stylesheets/mine.scss */
  .hidden-xs {
    display: none !important;
  }
  /* line 3426, app/assets/stylesheets/mine.scss */
  .login-flex-row .signin-form.signin-forgot, .login-flex-row .login-form.login-forgot {
    display: block;
  }
  /* line 3429, app/assets/stylesheets/mine.scss */
  .signup-content div#step_1 {
    max-width: 100%;
  }
  /* line 3432, app/assets/stylesheets/mine.scss */
  .login-footer {
    display: none;
  }
  /* line 3435, app/assets/stylesheets/mine.scss */
  .show-on-tab {
    display: block !important;
  }
  /* line 3438, app/assets/stylesheets/mine.scss */
  .hide-on-tab {
    display: none !important;
  }
  /* line 3441, app/assets/stylesheets/mine.scss */
  .contact-list-table-wrap .dropdown-menu {
    right: 0;
  }
}

@media screen and (max-width: 767px) {
  /* line 3447, app/assets/stylesheets/mine.scss */
  .top-notice-area {
    margin-top: 0px;
  }
  /* line 3450, app/assets/stylesheets/mine.scss */
  .top-notice-area ul li {
    font-size: 14px;
    margin-right: 18px;
  }
  /* line 3455, app/assets/stylesheets/mine.scss */
  .top-notice-area ul li ul li {
    margin-right: 5px;
  }
  /* line 3458, app/assets/stylesheets/mine.scss */
  .top-link-wrap a {
    color: #fff;
    padding: 10px 14px;
    font-size: 10px;
  }
  /* line 3463, app/assets/stylesheets/mine.scss */
  .top-notice-area ul li:before {
    right: -14px;
    top: -1px;
  }
  /* line 3467, app/assets/stylesheets/mine.scss */
  .top-notice-area > ul {
    padding-bottom: 5px;
  }
  /* line 3471, app/assets/stylesheets/mine.scss */
  .logo-bar {
    padding: 10px 0px;
  }
  /* line 3474, app/assets/stylesheets/mine.scss */
  #fh5co-logo {
    margin: 15px 0 0px 0px;
    background: transparent !important;
    border-radius: 0px;
    box-shadow: none;
  }
  /* line 3480, app/assets/stylesheets/mine.scss */
  #fh5co-logo img {
    max-width: 200px;
  }
  /*#fh5co-logo img {
        max-width: 100px;
        margin-left: 0px;
    }
    .stuck #fh5co-logo img {
        max-width: 100px;
        margin-left: 0px;
    }*/
  /* line 3491, app/assets/stylesheets/mine.scss */
  .fh5co-nav-toggle {
    top: 11px;
    margin-top: 0em;
  }
  /* line 3495, app/assets/stylesheets/mine.scss */
  .stuck .fh5co-nav-toggle {
    top: 11px;
    margin-top: 0em;
  }
  /* line 3499, app/assets/stylesheets/mine.scss */
  .logo-bar {
    padding: 10px 0px;
    position: relative;
  }
  /* line 3505, app/assets/stylesheets/mine.scss */
  div#banner-slider {
    height: auto;
    background-position: left bottom;
    background-position-x: -200px;
  }
  /* line 3510, app/assets/stylesheets/mine.scss */
  .banner-content {
    padding: 50px 0 70px;
  }
  /* line 3513, app/assets/stylesheets/mine.scss */
  .banner-content h1 {
    font-size: 35px;
    line-height: 47px;
  }
  /* line 3517, app/assets/stylesheets/mine.scss */
  .banner-content p {
    font-size: 16px;
    line-height: 28px;
  }
  /* line 3521, app/assets/stylesheets/mine.scss */
  .banner-img-wrap {
    padding-top: 0;
    padding-bottom: 20px;
  }
  /* line 3525, app/assets/stylesheets/mine.scss */
  .banner-btns a {
    min-width: inherit !important;
  }
  /* line 3528, app/assets/stylesheets/mine.scss */
  .banner-btns {
    display: block;
    justify-content: space-between;
  }
  /* line 3533, app/assets/stylesheets/mine.scss */
  .banner-btns a {
    margin: 0 !important;
    width: 100%;
  }
  /* line 3537, app/assets/stylesheets/mine.scss */
  .banner-btns a:first-child {
    margin-bottom: 15px !important;
  }
  /* line 3541, app/assets/stylesheets/mine.scss */
  div#audience-about-section {
    padding: 60px 0 60px;
  }
  /* line 3544, app/assets/stylesheets/mine.scss */
  div#audience-about-section .black-caption h2 hr {
    border: none;
    margin: 0;
  }
  /* line 3548, app/assets/stylesheets/mine.scss */
  div#audience-about-section {
    background: url(/assets/mobile-about-bg-87944549a3c44e8d21a6f4f592e79c374a0a8d916281593cfdbf76139d737054.png) no-repeat center top;
    background-size: cover;
    background-repeat-y: repeat;
  }
  /* line 3554, app/assets/stylesheets/mine.scss */
  .audience-about-info-list {
    position: relative;
    padding: 15px;
    padding-top: 45px;
  }
  /* line 3559, app/assets/stylesheets/mine.scss */
  .audience-about-info-list ul li {
    padding-left: 30px;
  }
  /* line 3562, app/assets/stylesheets/mine.scss */
  .audience-about-info-list ul li:before {
    width: 35px;
    height: 35px;
    top: -3px;
  }
  /* line 3567, app/assets/stylesheets/mine.scss */
  .audience-about-video .video-info {
    bottom: 0px;
    position: relative;
    width: 85%;
    margin: 0 auto;
    margin-top: -35px !important;
    padding: 28px;
  }
  /* line 3577, app/assets/stylesheets/mine.scss */
  .audience-about-video .video-wrap {
    width: 100%;
    min-height: 275px;
  }
  /* line 3581, app/assets/stylesheets/mine.scss */
  .audience-about-video .video-info .video-info-head {
    margin-bottom: 7px;
    font-size: 16px;
  }
  /* line 3586, app/assets/stylesheets/mine.scss */
  .audience-about-video .video-info p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 13px;
  }
  /* line 3593, app/assets/stylesheets/mine.scss */
  .why-icon-box {
    padding: 30px 0 0;
    text-align: left;
    margin-bottom: 0px;
  }
  /* line 3598, app/assets/stylesheets/mine.scss */
  .why-icon-box .why-icon-box-info h2 {
    font-size: 18px;
    min-height: inherit;
  }
  /* line 3602, app/assets/stylesheets/mine.scss */
  .why-icon-box .why-icon-box-info p {
    font-size: 14px;
  }
  /* line 3606, app/assets/stylesheets/mine.scss */
  div#order-roll-section {
    padding: 60px 0;
  }
  /* line 3609, app/assets/stylesheets/mine.scss */
  div#home-pricing-section {
    padding: 60px 0;
  }
  /* line 3612, app/assets/stylesheets/mine.scss */
  .pricing-table input#ratesInput {
    width: 100%;
  }
  /* line 3615, app/assets/stylesheets/mine.scss */
  .pricing-table table tbody#ratesTable {
    display: table-row-group;
    width: auto;
    overflow: inherit;
  }
  /* line 3621, app/assets/stylesheets/mine.scss */
  .pricing-table table thead {
    display: table-header-group;
    width: auto;
  }
  /* line 3625, app/assets/stylesheets/mine.scss */
  .pricing-table table tr {
    display: table-row;
    width: auto;
  }
  /* line 3629, app/assets/stylesheets/mine.scss */
  .pricing-table-mobile {
    overflow: scroll;
  }
  /* line 3632, app/assets/stylesheets/mine.scss */
  div#marketing-section {
    padding: 60px 0;
  }
  /* line 3635, app/assets/stylesheets/mine.scss */
  div#qa-section {
    padding: 60px 0;
  }
  /* line 3638, app/assets/stylesheets/mine.scss */
  .qa-accordion {
    margin-top: 0px;
  }
  /* line 3641, app/assets/stylesheets/mine.scss */
  div#sayings-section {
    padding: 60px 0;
  }
  /* line 3644, app/assets/stylesheets/mine.scss */
  div#sayings-slider .owl-nav {
    display: none;
  }
  /* line 3647, app/assets/stylesheets/mine.scss */
  .sayings-wrap {
    padding-left: 0px;
  }
  /* line 3650, app/assets/stylesheets/mine.scss */
  div#sayings-slider .owl-stage {
    padding-left: 0px !important;
  }
  /* line 3653, app/assets/stylesheets/mine.scss */
  div#sayings-section h2 {
    text-align: center;
  }
  /* line 3656, app/assets/stylesheets/mine.scss */
  .sayings-wrap .col-md-12.text-left {
    text-align: center;
  }
  /* line 3661, app/assets/stylesheets/mine.scss */
  a.themebtn {
    padding: 12px 40px;
    font-size: 13px;
  }
  /* line 3666, app/assets/stylesheets/mine.scss */
  a.themebtn.small, a.themebtn.small.invert {
    min-width: 170px !important;
  }
  /* line 3670, app/assets/stylesheets/mine.scss */
  .social-media a,
.social-media a:hover {
    color: #fff;
  }
  /* line 3674, app/assets/stylesheets/mine.scss */
  .social-media a {
    background: transparent;
  }
  /* line 3677, app/assets/stylesheets/mine.scss */
  a.header-btn {
    margin: 26px 60px 26px 0;
  }
  /* line 3680, app/assets/stylesheets/mine.scss */
  .stuck a.header-btn {
    margin: 19px 60px 19px 0;
  }
  /*.main-warpper .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }*/
  /* line 3689, app/assets/stylesheets/mine.scss */
  .login-text .heading-with-sub h2 {
    font-size: 20px;
    line-height: 26px;
  }
  /* line 3694, app/assets/stylesheets/mine.scss */
  .login-flex-row .signin-form.signin-forgot, .login-flex-row .login-form.login-forgot {
    padding: 0 10px;
  }
  /* line 3698, app/assets/stylesheets/mine.scss */
  .iti-mobile .iti--container {
    left: 20px;
    right: 15px;
    max-width: 90%;
  }
  /* line 3706, app/assets/stylesheets/mine.scss */
  .signup-flex-row {
    display: block;
  }
  /* line 3709, app/assets/stylesheets/mine.scss */
  .signup-content {
    overflow: hidden;
    margin-right: 0;
    overflow-x: hidden !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  /* a.login-logo {
        text-align: left !important;
    }
*/
  /* line 3720, app/assets/stylesheets/mine.scss */
  .steps-sidebar {
    position: relative;
    padding: 25px 25px 0 25px !important;
  }
  /* line 3725, app/assets/stylesheets/mine.scss */
  a.question-mobile {
    position: absolute;
    right: 25px;
    top: 38px;
  }
  /* line 3730, app/assets/stylesheets/mine.scss */
  .steps-sidebar .wizard-nav .wizard-steps .wizard-step .wizard-label {
    display: none;
  }
  /* line 3733, app/assets/stylesheets/mine.scss */
  .steps-sidebar .wizard-nav {
    padding: 20px 0px 20px !important;
  }
  /* line 3736, app/assets/stylesheets/mine.scss */
  .steps-sidebar .wizard-nav .wizard-steps {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  /* line 3741, app/assets/stylesheets/mine.scss */
  .steps-sidebar .wizard-nav .wizard-steps .wizard-step .wizard-icon {
    margin-right: 0px;
  }
  /* line 3744, app/assets/stylesheets/mine.scss */
  .login-form-signup {
    height: auto;
    padding-top: 20px !important;
  }
  /* line 3748, app/assets/stylesheets/mine.scss */
  .steps-sidebar .wizard-nav .wizard-steps:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #D9DADB;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
  }
  /* line 3760, app/assets/stylesheets/mine.scss */
  .steps-sidebar .wizard-nav .wizard-steps {
    position: relative;
  }
  /* line 3764, app/assets/stylesheets/mine.scss */
  .steps-sidebar .wizard-nav .wizard-steps .wizard-step {
    z-index: 1;
  }
  /* line 3768, app/assets/stylesheets/mine.scss */
  .message-templates-wrap {
    /*overflow: scroll;*/
    /*width: calc(384px - 30px );*/
  }
  /* line 3772, app/assets/stylesheets/mine.scss */
  .message-templates-wrap .templates-filters {
    /*width: 825px;*/
  }
  /* line 3775, app/assets/stylesheets/mine.scss */
  div#mix-wrapper {
    /*width: 825px;*/
  }
  /* line 3778, app/assets/stylesheets/mine.scss */
  .msg-template-box {
    padding: 15px;
  }
  /* line 3782, app/assets/stylesheets/mine.scss */
  .msg-template-box .msg-template-name {
    font-size: 14px;
    margin-bottom: 10px;
  }
  /* line 3787, app/assets/stylesheets/mine.scss */
  .msg-template-box .msg-template-content {
    padding: 10px;
    border-radius: 0px 5px 5px 5px;
  }
  /* line 3792, app/assets/stylesheets/mine.scss */
  .msg-template-box .msg-template-content label {
    font-size: 9px;
    line-height: normal;
  }
  /* line 3797, app/assets/stylesheets/mine.scss */
  .msg-template-content-head h3 {
    font-size: 10px;
    line-height: normal;
    margin-bottom: 5px;
  }
  /* line 3803, app/assets/stylesheets/mine.scss */
  .msg-template-content-body p {
    font-size: 10px;
    line-height: normal;
  }
  /* line 3808, app/assets/stylesheets/mine.scss */
  .msg-template-content-footer p {
    font-size: 10px;
    line-height: normal;
  }
  /* line 3813, app/assets/stylesheets/mine.scss */
  .msg-template-btns .tmp-btn {
    padding: 5px 0;
    font-size: 10px;
  }
  /* line 3818, app/assets/stylesheets/mine.scss */
  .msg-template-btns .tmp-btn span {
    margin-right: 5px;
  }
  /* line 3822, app/assets/stylesheets/mine.scss */
  .msg-template-content-head img, .msg-template-content-head video {
    width: 150px;
    height: 67px;
  }
  /* line 3828, app/assets/stylesheets/mine.scss */
  .msg-template-box.edit {
    max-width: 100%;
    margin-top: 15px;
    padding: 15px 20px;
  }
  /* line 3833, app/assets/stylesheets/mine.scss */
  .msg-template-box.edit .msg-template-name {
    font-size: 17px;
    margin-bottom: 13px;
  }
  /* line 3837, app/assets/stylesheets/mine.scss */
  .msg-template-box.edit .msg-template-content {
    padding: 15px;
  }
  /* line 3840, app/assets/stylesheets/mine.scss */
  .msg-template-box.edit .msg-template-content-head h3 {
    font-size: 15px;
    margin-bottom: 15px;
  }
  /* line 3844, app/assets/stylesheets/mine.scss */
  .msg-template-box.edit .msg-template-content-body p {
    font-size: 14px;
    line-height: 20px;
  }
  /* line 3848, app/assets/stylesheets/mine.scss */
  .subbtn {
    padding-left: 15px !important;
    padding-right: 16px !important;
    padding-top: 9px !important;
    padding-bottom: 9px !important;
  }
  /* line 3855, app/assets/stylesheets/mine.scss */
  .msg-template-content-head h3 {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 8px;
  }
  /* line 3860, app/assets/stylesheets/mine.scss */
  .test-msg-success .d-flex.justify-content-start .remaining-msg-text {
    margin: 0 !important;
  }
  /* line 3864, app/assets/stylesheets/mine.scss */
  .test-msg-success .d-flex.justify-content-start .test-again {
    padding: 5px 14px;
    font-size: 15px;
    margin-top: 20px;
    display: inline-block;
  }
  /* line 3871, app/assets/stylesheets/mine.scss */
  .test-msg-success .d-flex.justify-content-start {
    justify-content: space-between !important;
    display: grid !important;
    grid-template: none;
  }
  /* line 3878, app/assets/stylesheets/mine.scss */
  .pricing-table.inner-step {
    width: 100%;
  }
  /* line 3881, app/assets/stylesheets/mine.scss */
  .pricing-table.inner-step table tbody#ratesTable {
    display: table-row-group;
    width: auto;
    overflow: inherit;
  }
  /* line 3887, app/assets/stylesheets/mine.scss */
  .pricing-table.inner-step table thead {
    display: table-header-group;
    width: auto;
  }
  /* line 3891, app/assets/stylesheets/mine.scss */
  .pricing-table.inner-step table tr {
    display: table-row;
    width: auto;
  }
  /* line 3895, app/assets/stylesheets/mine.scss */
  .inner-step .pricing-table-mobile {
    overflow: scroll;
  }
  /* line 3899, app/assets/stylesheets/mine.scss */
  div#buyCredits .modal-dialog {
    margin: 0;
    padding: 10px;
    width: 100%;
  }
  /* line 3905, app/assets/stylesheets/mine.scss */
  .d-flex.inner-setps-actions, .test-msg-success .d-flex.inner-setps-actions {
    flex-direction: column-reverse;
    text-align: center;
    display: flex !important;
  }
  /* line 3911, app/assets/stylesheets/mine.scss */
  h3.small-heading {
    font-size: 26px;
  }
  /* line 3915, app/assets/stylesheets/mine.scss */
  #gtco-footer {
    padding: 3em 0em 1em;
  }
  /* line 3918, app/assets/stylesheets/mine.scss */
  #gtco-footer hr {
    margin: 0 -15px 1em;
  }
  /* line 3921, app/assets/stylesheets/mine.scss */
  #gtco-footer .gtco-widget.footer-logo {
    text-align: left;
    margin-bottom: 40px;
  }
  /* line 3925, app/assets/stylesheets/mine.scss */
  #gtco-footer .social-media {
    text-align: center;
  }
  /* line 3928, app/assets/stylesheets/mine.scss */
  .fh5co-cover,
.fh5co-hero {
    height: 270px !important;
  }
  /* line 3932, app/assets/stylesheets/mine.scss */
  .fh5co-cover .desc {
    margin-top: 0;
    top: 13%;
  }
  /* line 3936, app/assets/stylesheets/mine.scss */
  .fh5co-cover .desc p {
    font-size: 16px;
    line-height: normal;
    margin-bottom: 10px;
  }
  /* line 3941, app/assets/stylesheets/mine.scss */
  .fh5co-cover .desc a.themebtn {
    padding: 12px 25px;
    min-width: 215px;
    font-size: 14px;
  }
  /* line 3947, app/assets/stylesheets/mine.scss */
  #gtco-footer .copyright-info p br {
    display: none;
  }
  /* line 3950, app/assets/stylesheets/mine.scss */
  #gtco-footer .gtco-widget p {
    font-size: 15px;
    line-height: 25px;
  }
  /* line 3954, app/assets/stylesheets/mine.scss */
  .footer-links a {
    margin: 0 10px;
  }
  /* line 3957, app/assets/stylesheets/mine.scss */
  #gtco-footer .copyright-info p,
#gtco-footer .copyright-info a {
    font-size: 15px;
    line-height: 27px;
  }
  /* line 3962, app/assets/stylesheets/mine.scss */
  .copyright {
    margin-top: 15px;
  }
  /* line 3965, app/assets/stylesheets/mine.scss */
  #gtco-footer h3 {
    text-align: center;
    margin-top: 10px;
  }
  /* line 3969, app/assets/stylesheets/mine.scss */
  .mobile-margin {
    margin-top: 25px;
    display: block;
  }
  /* line 3973, app/assets/stylesheets/mine.scss */
  .footer-nav ul li {
    margin-right: 20px;
  }
  /* line 3976, app/assets/stylesheets/mine.scss */
  .footer-nav ul li:before {
    top: 0px;
    right: -15px;
  }
  /* line 3980, app/assets/stylesheets/mine.scss */
  .gtco-widget.footer-info p,
.gtco-widget.footer-info a {
    font-size: 17px !important;
    line-height: 28px !important;
  }
  /* line 3987, app/assets/stylesheets/mine.scss */
  #gtco-footer .gtco-widget p,
#gtco-footer .gtco-widget .links a {
    font-size: 13px;
  }
  /* line 3991, app/assets/stylesheets/mine.scss */
  #gtco-footer .copyright-info p,
#gtco-footer .copyright-info a {
    font-size: 17px;
  }
  /* line 3995, app/assets/stylesheets/mine.scss */
  .heading-with-sap {
    margin-bottom: 10px;
  }
  /* line 3998, app/assets/stylesheets/mine.scss */
  #gtco-footer .gtco-widget.footer-logo {
    margin-bottom: 40px;
  }
  /* line 4001, app/assets/stylesheets/mine.scss */
  .footer-nav ul li:before {
    content: ' | ';
    position: absolute;
    top: -1px;
    right: -11px;
    color: #02cab8;
  }
}

@media screen and (max-width: 555px) {
  /* line 4012, app/assets/stylesheets/mine.scss */
  h3.gl-h3-fix {
    font-size: 20px;
  }
}

@media screen and (max-width: 520px) {
  /* line 4017, app/assets/stylesheets/mine.scss */
  .analytics-chart-head {
    display: block !important;
  }
  /* line 4020, app/assets/stylesheets/mine.scss */
  .analytics-chart-head form {
    display: block !important;
    margin-top: 15px;
  }
  /* line 4024, app/assets/stylesheets/mine.scss */
  .analytics-chart-head form .form-group {
    display: inline-block !important;
  }
}

@media screen and (max-width: 480px) {
  /* line 4029, app/assets/stylesheets/mine.scss */
  h3.gl-h3-fix {
    font-size: 15px;
  }
  /* line 4032, app/assets/stylesheets/mine.scss */
  .gl-sm-fix .remaining-msg-text.pull-right,
.gl-sm-fix h3.pull-left {
    float: none !important;
  }
  /* line 4036, app/assets/stylesheets/mine.scss */
  .gl-sm-fix h3.pull-left {
    margin-top: 5rem;
  }
  /* line 4039, app/assets/stylesheets/mine.scss */
  footer .rst-acc-socials li {
    display: inline-block;
    padding: 0 5px;
    width: 45%;
  }
  /* line 4044, app/assets/stylesheets/mine.scss */
  .blue-heading {
    font-size: 23px;
  }
  /* line 4047, app/assets/stylesheets/mine.scss */
  .banner-top-text {
    font-size: 32px;
  }
  /* line 4050, app/assets/stylesheets/mine.scss */
  .fh5co-inner-banner .banner-top-text {
    font-size: 32px;
  }
  /* line 4053, app/assets/stylesheets/mine.scss */
  .heading-with-sub h2 {
    font-size: 24px;
  }
  /* line 4056, app/assets/stylesheets/mine.scss */
  .heading-with-sub h4 {
    font-size: 18px;
  }
  /* line 4059, app/assets/stylesheets/mine.scss */
  .heading-with-sap h2 {
    font-size: 24px;
  }
  /* line 4062, app/assets/stylesheets/mine.scss */
  .heading h2 {
    font-size: 25px;
  }
  /* line 4065, app/assets/stylesheets/mine.scss */
  .black-caption h2 {
    font-size: 24px;
    line-height: 30px;
  }
  /* line 4069, app/assets/stylesheets/mine.scss */
  .white-caption h2 {
    font-size: 24px;
    line-height: 30px;
  }
  /* line 4073, app/assets/stylesheets/mine.scss */
  .black-caption p {
    line-height: 28px;
    font-size: 16px;
  }
  /* line 4077, app/assets/stylesheets/mine.scss */
  .black-caption {
    margin-bottom: 40px;
  }
  /* line 4080, app/assets/stylesheets/mine.scss */
  #edit_template_61 {
    height: calc(100vh - 220px);
  }
  /* line 4083, app/assets/stylesheets/mine.scss */
  .gl-xs-btn-fix {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 25px;
  }
}

@media screen and (max-width: 380px) {
  /* line 4092, app/assets/stylesheets/mine.scss */
  .banner-top-text {
    font-size: 29px;
  }
  /* line 4095, app/assets/stylesheets/mine.scss */
  .fh5co-inner-banner .banner-top-text {
    font-size: 22px;
  }
}

@media screen and (max-width: 340px) {
  /* line 4101, app/assets/stylesheets/mine.scss */
  .gtco-widget .heading h2 {
    font-size: 20px;
  }
  /* line 4104, app/assets/stylesheets/mine.scss */
  .black-caption h2 {
    font-size: 24px;
  }
  /* line 4107, app/assets/stylesheets/mine.scss */
  .white-caption h2 {
    font-size: 24px;
  }
  /* line 4110, app/assets/stylesheets/mine.scss */
  .heading-with-sub h2 {
    font-size: 24px;
  }
  /* line 4113, app/assets/stylesheets/mine.scss */
  .heading-with-sub h4 {
    font-size: 17px;
  }
  /* line 4116, app/assets/stylesheets/mine.scss */
  .banner-top-text {
    font-size: 23px;
  }
  /* line 4119, app/assets/stylesheets/mine.scss */
  .fh5co-inner-banner .banner-top-text {
    font-size: 17px;
  }
  /* line 4122, app/assets/stylesheets/mine.scss */
  img.footer-logo {
    max-width: 180px;
  }
}

/* line 4127, app/assets/stylesheets/mine.scss */
.social-icon-footer ul {
  padding: 0;
  list-style: none;
  margin: 0;
  text-align: center;
}

/* line 4134, app/assets/stylesheets/mine.scss */
.social-icon-footer ul li {
  display: inline-block;
  margin-right: 15px;
}

/* line 4139, app/assets/stylesheets/mine.scss */
.social-icon-footer ul li:last-child {
  margin-right: 0;
}

/* line 4143, app/assets/stylesheets/mine.scss */
.social-icon-footer ul li a {
  color: #5e5e5e !important;
  font-size: 19px !important;
  line-height: 41px;
  width: 40px !important;
  height: 40px !important;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid rgba(94, 94, 94, 0.39);
  transition: all .3s ease;
}

/* line 4154, app/assets/stylesheets/mine.scss */
.social-icon-footer ul li a:hover {
  color: #8a6c8e !important;
  transition: all .3s ease;
}

/* line 4158, app/assets/stylesheets/mine.scss */
.social-icon-footer ul li a:hover span {
  transform: rotate(360deg) !important;
  transition: all .3s ease;
}

/* line 4163, app/assets/stylesheets/mine.scss */
.social-icon-footer ul li a span {
  transform: rotate(0deg) !important;
  transition: all .3s ease;
}

/* line 4168, app/assets/stylesheets/mine.scss */
h2.empty_contacts {
  text-align: center;
  width: 300px;
  margin: 60px auto;
  padding: 60px 20px;
}

/* ------------ Contact List Section ------------ */
/* line 4178, app/assets/stylesheets/mine.scss */
div#contact-list-section {
  position: relative;
  padding: 65px 0 0;
}

/* line 4182, app/assets/stylesheets/mine.scss */
div#contact-list-section .black-caption {
  margin-bottom: 50px;
}

/* line 4186, app/assets/stylesheets/mine.scss */
.contact-list-btns {
  position: relative;
}

/* line 4190, app/assets/stylesheets/mine.scss */
.contact-list-btn {
  background: #23C497;
  color: #fff;
  padding: 15px 23px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'IBM Plex Sans', sans-serif;
  line-height: normal;
  transition: all .3s ease;
  display: inline-block;
  min-width: auto;
  text-align: center;
  border: 1px solid transparent;
}

/* line 4206, app/assets/stylesheets/mine.scss */
.contact-list-btns .contact-list-btn:first-child {
  margin-right: 10px;
}

/* line 4210, app/assets/stylesheets/mine.scss */
.contact-list-btn img {
  margin-right: 9px;
  float: left;
}

/* line 4215, app/assets/stylesheets/mine.scss */
.contact-list-btn:hover, .contact-list-btn:focus, .contact-list-btn:active {
  background: #355694;
  color: #fff !important;
}

/* line 4219, app/assets/stylesheets/mine.scss */
.contact-list-btn.invert {
  background: transparent;
  border: 1px solid #23C497;
  color: #23C497;
}

/* line 4224, app/assets/stylesheets/mine.scss */
.contact-list-btn.invert:hover, .contact-list-btn.invert:active, .contact-list-btn.invert:focus {
  background: #23C497;
}

/* line 4229, app/assets/stylesheets/mine.scss */
.checkbox {
  margin: 0px;
  width: 20px;
  height: 20px;
}

/* line 4235, app/assets/stylesheets/mine.scss */
.checkbox input[type="checkbox"] {
  display: none;
}

/* line 4238, app/assets/stylesheets/mine.scss */
.checkbox input[type="checkbox"] + .box:before,
.checkbox input[type="checkbox"] + .box:after {
  transition: all 0.3s;
}

/* line 4242, app/assets/stylesheets/mine.scss */
.checkbox input[type="checkbox"] + .box:after {
  position: absolute;
  left: 4px;
  top: 3px;
  margin-top: -5px;
  margin-left: -4px;
  display: inline-block;
  content: ' ';
  width: 20px;
  height: 20px;
  border: 2px solid #e9e9e9;
  border-radius: 2px;
  background-color: #fff;
  z-index: 1000;
}

/* line 4257, app/assets/stylesheets/mine.scss */
.checkbox input[type="checkbox"]:checked + .box:after {
  background-color: #23C497;
  border-color: #23C497;
}

/* line 4261, app/assets/stylesheets/mine.scss */
.checkbox input[type="checkbox"]:checked + .box:before {
  transform: rotate(45deg);
  position: absolute;
  left: 7px;
  top: 0px;
  width: 6px;
  height: 13px;
  border-width: 2px;
  border-style: solid;
  border-top: 0;
  border-left: 0;
  border-color: #fff;
  content: '';
  z-index: 10000;
}

/* line 4278, app/assets/stylesheets/mine.scss */
.contact-list-table-wrap .table th, .contact-list-table-wrap .table td {
  padding: 10px 25px;
  border: none;
}

/* line 4283, app/assets/stylesheets/mine.scss */
.contact-list-table-wrap .table tbody tr {
  background: #fff;
  border: 1px solid rgba(187, 189, 193, 0.12);
  box-shadow: 0px 0px 3px -1px #bbbdc1;
}

/* line 4288, app/assets/stylesheets/mine.scss */
.contact-list-table-wrap .table tbody tr td {
  vertical-align: middle;
  padding: 25px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  color: #0F121D;
  line-height: 22px;
  font-weight: 400;
}

/* line 4298, app/assets/stylesheets/mine.scss */
.contact-list-table-wrap .table th {
  border: none;
  color: #84878D;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  padding-bottom: 20px;
  white-space: nowrap;
}

/* line 4307, app/assets/stylesheets/mine.scss */
.contact-list-table-wrap .table tbody tr td[nowrap=nowrap] .delete-row {
  visibility: hidden;
  opacity: 0;
  transition: all .3s ease;
}

/* line 4313, app/assets/stylesheets/mine.scss */
.contact-list-table-wrap .table tbody tr:hover > td[nowrap=nowrap] > .delete-row {
  visibility: visible;
  opacity: 1;
  transition: all .3s ease;
}

/* line 4319, app/assets/stylesheets/mine.scss */
.contact-list-links ul {
  list-style: none;
  padding: 0;
  margin: 5px 0px;
  display: flex;
  justify-content: space-between;
  padding-right: 70px;
}

/* line 4328, app/assets/stylesheets/mine.scss */
.contact-list-links ul li {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  color: #0F121D;
}

/* line 4334, app/assets/stylesheets/mine.scss */
.contact-list-links ul li strong {
  margin-right: 5px;
}

/* line 4338, app/assets/stylesheets/mine.scss */
.contact-list-links ul li a img {
  margin-right: 5px;
  position: relative;
  top: -1px;
}

/* line 4340, app/assets/stylesheets/mine.scss */
.contact-list-links ul li a {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
}

/* line 4345, app/assets/stylesheets/mine.scss */
.current-message-sort-boxes.contact_list_sort_wrap {
  justify-content: space-between;
}

/* line 4349, app/assets/stylesheets/mine.scss */
.current-message-sort-boxes.contact_list_sort_wrap .search-box.sort {
  width: 100%;
  padding-right: 30px;
}

/* line 4354, app/assets/stylesheets/mine.scss */
.current-message-sort-boxes.contact_list_sort_wrap .search-box.sort input {
  padding-left: 35px;
  height: 39px;
  background: #fff url(/assets/search-icon-b8aeee338ea6d8f91bb456342542c888937de8ebaf535f78d8a23faaf41886d7.png) no-repeat center left;
  background-position-x: 11px;
  border-color: #D9DADB;
}

/* line 4361, app/assets/stylesheets/mine.scss */
.current-message-sort-boxes.contact_list_sort_wrap .dropdown button {
  font-family: 'IBM Plex Sans', sans-serif !important;
  letter-spacing: 0;
}

/* line 4366, app/assets/stylesheets/mine.scss */
.current-message-sort-boxes.contact_list_sort_wrap .dropdown button b {
  margin-left: 5px;
}

/* line 4371, app/assets/stylesheets/mine.scss */
div#logged-in-bottom-section {
  padding-bottom: 50px;
}

/* line 4374, app/assets/stylesheets/mine.scss */
.dropup.quick_broadcast_link {
  float: right;
}

/* line 4376, app/assets/stylesheets/mine.scss */
.dropup.quick_broadcast_link > button {
  background: #23C497;
  color: #fff;
  text-transform: capitalize;
  font-family: 'IBM Plex Sans', sans-serif !important;
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 600;
  padding: 7px 22px;
  transition: all .3s ease;
}

/* line 4388, app/assets/stylesheets/mine.scss */
.dropup.quick_broadcast_link > button:hover, .dropup.quick_broadcast_link > button:focus, .dropup.quick_broadcast_link > button:active {
  background: #355694 !important;
  color: #fff !important;
}

/* line 4393, app/assets/stylesheets/mine.scss */
.dropup.quick_broadcast_link ul.dropdown-menu {
  right: 0;
  left: auto;
  padding: 20px 0;
  min-width: 210px;
  text-align: center;
}

/* line 4401, app/assets/stylesheets/mine.scss */
.dropup.quick_broadcast_link ul.dropdown-menu li a {
  font-size: 16px;
  padding: 7px 0px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
}

/* line 4408, app/assets/stylesheets/mine.scss */
.dropup.quick_broadcast_link ul.dropdown-menu li a img {
  margin-right: 7px;
}

/* line 4412, app/assets/stylesheets/mine.scss */
.dropup.quick_broadcast_link ul.dropdown-menu li a:hover, .dropup.quick_broadcast_link ul.dropdown-menu li a:focus, .dropup.quick_broadcast_link ul.dropdown-menu li a:active {
  /* background: #fff !important; */
}

/* line 4417, app/assets/stylesheets/mine.scss */
div#upload_contacts_popup .modal-dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 560px;
}

/* line 4425, app/assets/stylesheets/mine.scss */
div#upload_contacts_popup .modal-dialog .modal-content {
  border-radius: 13px;
}

/* line 4429, app/assets/stylesheets/mine.scss */
div#upload_contacts_popup .modal-dialog .modal-body {
  padding: 30px 30px 10px;
}

/* line 4433, app/assets/stylesheets/mine.scss */
div#upload_contacts_popup .modal-dialog .modal-footer {
  border: none;
  padding: 0px 30px 30px;
}

/* line 4437, app/assets/stylesheets/mine.scss */
div#upload_contacts_popup .modal-content .close {
  font-size: 30px;
  position: absolute;
  right: 7px;
  z-index: 99999;
}

/* line 4444, app/assets/stylesheets/mine.scss */
.upload_contact_xml_btn {
  margin: 20px 0 30px;
}

/* line 4448, app/assets/stylesheets/mine.scss */
div#upload_contacts_popup #custom-file-button {
  padding: 10px 30px;
  background: #fff;
  border: 1px solid #355694;
  color: #355694;
  font-family: 'IBM Plex Sans', sans-serif !important;
  border-radius: 5px;
  cursor: pointer;
  letter-spacing: 0;
  font-weight: 600;
  font-size: 16px;
  transition: all .3s ease;
}

/* line 4462, app/assets/stylesheets/mine.scss */
div#upload_contacts_popup #custom-file-button:hover,
div#upload_contacts_popup #custom-file-button:focus,
div#upload_contacts_popup #custom-file-button:active {
  background: #23C497;
  color: #fff;
  border-color: #23C497;
  transition: all .3s ease;
}

/* line 4471, app/assets/stylesheets/mine.scss */
div#upload_contacts_popup #custom-file-button:hover {
  background-color: #00b28f;
}

/* line 4475, app/assets/stylesheets/mine.scss */
div#upload_contacts_popup #custom-file-text {
  margin-right: 10px;
  font-family: 'IBM Plex Sans', sans-serif;
  color: #0F121D;
  font-weight: bold;
  font-size: 16px;
}

/* line 4483, app/assets/stylesheets/mine.scss */
.upload-popup-saperator {
  position: relative;
  margin-bottom: 25px;
  margin-top: 10px;
}

/* line 4489, app/assets/stylesheets/mine.scss */
.upload-popup-saperator hr {
  margin: 0;
}

/* line 4493, app/assets/stylesheets/mine.scss */
.upload-popup-saperator span {
  background: #fff;
  padding: 0 9px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  line-height: normal;
}

/* line 4503, app/assets/stylesheets/mine.scss */
div#upload_contacts_popup p.import-content {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 18px;
  color: #0F121D;
  margin-bottom: 0;
  margin-top: 10px;
  padding: 0 30px;
}

/* line 4512, app/assets/stylesheets/mine.scss */
div#upload_contacts_popup .submit-btn-wrap {
  display: flex;
  justify-content: space-evenly;
  margin: 35px 0 25px;
  align-items: center;
}

/* line 4519, app/assets/stylesheets/mine.scss */
div#upload_contacts_popup .submit-btn-wrap .subbtn {
  padding: 11px 25px !important;
}

/* line 4521, app/assets/stylesheets/mine.scss */
div#upload_contacts_popup .checkbox {
  width: auto;
  height: auto;
}

/* line 4525, app/assets/stylesheets/mine.scss */
div#upload_contacts_popup .checkbox input[type="checkbox"] + .box:after {
  position: absolute;
  left: -5px;
  top: 8px;
}

/* line 4530, app/assets/stylesheets/mine.scss */
div#upload_contacts_popup .checkbox input[type="checkbox"]:checked + .box:before {
  left: -2px;
  top: 4px;
}

/* line 4535, app/assets/stylesheets/mine.scss */
div#upload_contacts_popup .checkbox label {
  font-family: 'IBM Plex Sans', sans-serif !important;
  font-weight: 400;
  color: #0F121D;
}

/* line 4541, app/assets/stylesheets/mine.scss */
div#upload_contacts_popup .modal-dialog .modal-footer p {
  margin: 0;
  color: #666C77;
  font-size: 14px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
}

/* line 4552, app/assets/stylesheets/mine.scss */
div#success_upload_contacts_popup .modal-dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 560px;
}

/* line 4560, app/assets/stylesheets/mine.scss */
div#success_upload_contacts_popup .modal-dialog .modal-content {
  border-radius: 13px;
}

/* line 4564, app/assets/stylesheets/mine.scss */
div#success_upload_contacts_popup .modal-dialog .modal-body {
  padding: 30px 30px 10px;
}

/* line 4568, app/assets/stylesheets/mine.scss */
div#success_upload_contacts_popup .modal-dialog .modal-footer {
  border: none;
  padding: 0px 30px 30px;
}

/* line 4572, app/assets/stylesheets/mine.scss */
div#success_upload_contacts_popup .modal-content .close {
  font-size: 30px;
  position: absolute;
  right: 7px;
  z-index: 99999;
}

/* line 4579, app/assets/stylesheets/mine.scss */
.upload_contact_xml_btn {
  margin: 20px 0 30px;
}

/* line 4583, app/assets/stylesheets/mine.scss */
div#success_upload_contacts_popup #custom-file-button {
  padding: 10px 30px;
  background: #fff;
  border: 1px solid #355694;
  color: #355694;
  font-family: 'IBM Plex Sans', sans-serif !important;
  border-radius: 5px;
  cursor: pointer;
  letter-spacing: 0;
  font-weight: 600;
  font-size: 16px;
  transition: all .3s ease;
}

/* line 4597, app/assets/stylesheets/mine.scss */
div#success_upload_contacts_popup #custom-file-button:hover,
div#success_upload_contacts_popup #custom-file-button:focus,
div#success_upload_contacts_popup #custom-file-button:active {
  background: #23C497;
  color: #fff;
  border-color: #23C497;
  transition: all .3s ease;
}

/* line 4606, app/assets/stylesheets/mine.scss */
div#success_upload_contacts_popup #custom-file-button:hover {
  background-color: #00b28f;
}

/* line 4610, app/assets/stylesheets/mine.scss */
div#success_upload_contacts_popup #custom-file-text {
  margin-right: 10px;
  font-family: 'IBM Plex Sans', sans-serif;
  color: #0F121D;
  font-weight: bold;
  font-size: 16px;
}

/* line 4618, app/assets/stylesheets/mine.scss */
.upload-popup-saperator {
  position: relative;
  margin-bottom: 25px;
  margin-top: 10px;
}

/* line 4624, app/assets/stylesheets/mine.scss */
.upload-popup-saperator hr {
  margin: 0;
}

/* line 4628, app/assets/stylesheets/mine.scss */
.upload-popup-saperator span {
  background: #fff;
  padding: 0 9px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  line-height: normal;
}

/* line 4638, app/assets/stylesheets/mine.scss */
div#success_upload_contacts_popup p.import-content {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 18px;
  color: #0F121D;
  margin-bottom: 0;
  margin-top: 10px;
  padding: 0 30px;
}

/* line 4647, app/assets/stylesheets/mine.scss */
div#success_upload_contacts_popup .submit-btn-wrap {
  display: flex;
  justify-content: space-evenly;
  margin: 35px 0 25px;
  align-items: center;
}

/* line 4654, app/assets/stylesheets/mine.scss */
div#success_upload_contacts_popup .submit-btn-wrap .subbtn {
  padding: 11px 25px !important;
}

/* line 4656, app/assets/stylesheets/mine.scss */
div#success_upload_contacts_popup .checkbox {
  width: auto;
  height: auto;
}

/* line 4660, app/assets/stylesheets/mine.scss */
div#success_upload_contacts_popup .checkbox input[type="checkbox"] + .box:after {
  position: absolute;
  left: -5px;
  top: 8px;
}

/* line 4665, app/assets/stylesheets/mine.scss */
div#success_upload_contacts_popup .checkbox input[type="checkbox"]:checked + .box:before {
  left: -2px;
  top: 4px;
}

/* line 4670, app/assets/stylesheets/mine.scss */
div#success_upload_contacts_popup .checkbox label {
  font-family: 'IBM Plex Sans', sans-serif !important;
  font-weight: 400;
  color: #0F121D;
}

/* line 4676, app/assets/stylesheets/mine.scss */
div#success_upload_contacts_popup .modal-dialog .modal-footer p {
  margin: 0;
  color: #666C77;
  font-size: 14px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  /* line 4689, app/assets/stylesheets/mine.scss */
  #fh5co-header-section.logged-in .logo-bar #fh5co-logo {
    margin-left: 0;
  }
  /* line 4693, app/assets/stylesheets/mine.scss */
  #fh5co-header-section.logged-in .top-user-links {
    margin: 10px 0;
  }
  /* line 4697, app/assets/stylesheets/mine.scss */
  #fh5co-header-section.logged-in .top-user-links .available-balance {
    padding-right: 15px;
  }
  /* line 4701, app/assets/stylesheets/mine.scss */
  #fh5co-header-section.logged-in .top-user-links .available-balance span {
    margin-right: 0;
    font-size: 16px;
  }
  /* line 4706, app/assets/stylesheets/mine.scss */
  #fh5co-header-section.logged-in .top-user-links .available-balance a {
    display: none;
  }
  /* line 4710, app/assets/stylesheets/mine.scss */
  #fh5co-header-section.logged-in .user-options .dropdown > a span,
#fh5co-header-section.logged-in .user-options .dropdown > a b.caret {
    display: none;
  }
  /* line 4715, app/assets/stylesheets/mine.scss */
  #fh5co-header-section.logged-in .user-options:before {
    display: none;
  }
  /* line 4719, app/assets/stylesheets/mine.scss */
  #fh5co-header-section.logged-in .user-options .dropdown.open .dropdown-menu {
    left: auto;
    right: 0;
  }
  /* line 4724, app/assets/stylesheets/mine.scss */
  #fh5co-header-section.logged-in nav#fh5co-menu-wrap {
    display: block;
  }
  /* line 4728, app/assets/stylesheets/mine.scss */
  #fh5co-header-section.logged-in nav#fh5co-menu-wrap ul {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    margin: 20px 0 !important;
  }
  /* line 4735, app/assets/stylesheets/mine.scss */
  #fh5co-header-section.logged-in nav ul li.active a:before {
    bottom: -20px;
  }
  /* line 4739, app/assets/stylesheets/mine.scss */
  #fh5co-header-section.logged-in .top-rates {
    display: none !important;
  }
  /* line 4743, app/assets/stylesheets/mine.scss */
  #fh5co-header-section.logged-in .search-box-top .form-group input {
    height: 45px;
  }
  /* line 4747, app/assets/stylesheets/mine.scss */
  .contact-list-btn {
    font-size: 20px;
    padding: 11px 20px;
  }
  /* line 4752, app/assets/stylesheets/mine.scss */
  div#contact-list-section {
    padding-top: 30px;
  }
  /* line 4756, app/assets/stylesheets/mine.scss */
  div#contact-list-section .black-caption {
    margin-bottom: 25px;
    margin-top: 6px;
  }
  /* line 4761, app/assets/stylesheets/mine.scss */
  .contact-list-links ul li:not(:first-child) {
    display: none;
  }
  /* line 4764, app/assets/stylesheets/mine.scss */
  .current-message-sort-boxes.contact_list_sort_wrap {
    display: block;
  }
  /* line 4768, app/assets/stylesheets/mine.scss */
  .current-message-sort-boxes.contact_list_sort_wrap .search-box.sort {
    position: absolute;
    bottom: -84px;
    width: 320px;
    right: 0px;
    z-index: 1;
  }
  /* line 4775, app/assets/stylesheets/mine.scss */
  .contact-list-table-wrap > table > thead {
    display: block;
    width: 100%;
  }
  /* line 4780, app/assets/stylesheets/mine.scss */
  .contact-list-table-wrap > table > thead tr {
    display: block !important;
    width: 100%;
  }
  /* line 4785, app/assets/stylesheets/mine.scss */
  .contact-list-table-wrap > table > thead > tr th:not(:first-child) {
    display: none !important;
  }
  /* line 4789, app/assets/stylesheets/mine.scss */
  .contact-list-table-wrap > table > thead > tr th:first-child {
    padding-bottom: 25px !important;
    padding-top: 25px !important;
    width: 100%;
  }
  /* line 4795, app/assets/stylesheets/mine.scss */
  .contact-list-table-wrap > table > thead {
    background: #fff;
  }
  /* line 4799, app/assets/stylesheets/mine.scss */
  .contact-list-table-wrap .table {
    background: #fff;
  }
  /* line 4804, app/assets/stylesheets/mine.scss */
  .contact-list-table-wrap .table tbody, .contact-list-table-wrap .table tbody tr, .contact-list-table-wrap .table tbody tr td {
    display: block !important;
  }
  /* line 4808, app/assets/stylesheets/mine.scss */
  .contact-list-table-wrap .table tbody tr {
    border: none !important;
    box-shadow: none;
    border-top: 1px solid #f3f3f3 !important;
    padding: 15px 0;
    position: relative;
  }
  /* line 4816, app/assets/stylesheets/mine.scss */
  .contact-list-table-wrap .table tbody tr td:nth-child(-n + 2) {
    display: inline-block !important;
  }
  /* line 4820, app/assets/stylesheets/mine.scss */
  .contact-list-table-wrap .table tbody tr td {
    padding: 8px 25px;
    font-weight: bold;
  }
  /* line 4822, app/assets/stylesheets/mine.scss */
  .contact-list-table-wrap .table tbody tr td:before {
    content: attr(data-label);
    display: block;
    float: left;
    width: 125px;
    white-space: nowrap;
    margin-right: 30px;
    margin-left: 50px;
    font-weight: 400;
  }
  /* line 4833, app/assets/stylesheets/mine.scss */
  .contact-list-table-wrap .table tbody tr td:nth-child(-n + 2):before {
    display: none;
  }
  /* line 4837, app/assets/stylesheets/mine.scss */
  .contact-list-table-wrap .table tbody tr td:nth-child(-n + 1) {
    padding-right: 0px;
  }
  /* line 4841, app/assets/stylesheets/mine.scss */
  .contact-list-table-wrap .table tbody tr td:last-child {
    position: absolute;
    top: 0px;
    right: 0;
    width: auto !important;
    display: inline-block !important;
  }
  /* line 4849, app/assets/stylesheets/mine.scss */
  .contact-list-table-wrap .table tbody tr td:last-child:before {
    display: none;
  }
  /* line 4852, app/assets/stylesheets/mine.scss */
  .contact-list-table-wrap .table tbody tr td[nowrap=nowrap] .delete-row {
    visibility: visible;
    opacity: 1;
  }
  /* line 4857, app/assets/stylesheets/mine.scss */
  div#upload_contacts_popup .modal-dialog {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 15px;
  }
  /* line 4864, app/assets/stylesheets/mine.scss */
  div#upload_contacts_popup p.import-content {
    font-size: 16px;
    padding: 0 0px;
  }
  /* line 4870, app/assets/stylesheets/mine.scss */
  div#success_upload_contacts_popup .modal-dialog {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 15px;
  }
  /* line 4877, app/assets/stylesheets/mine.scss */
  div#success_upload_contacts_popup p.import-content {
    font-size: 16px;
    padding: 0 0px;
  }
}

/* line 4887, app/assets/stylesheets/mine.scss */
.btn-file {
  position: relative;
  overflow: hidden;
}

/* line 4891, app/assets/stylesheets/mine.scss */
.btn-file input[type="file"] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  opacity: 0;
  outline: 0;
  background: #fff;
  cursor: inherit;
  display: block;
}

/* line 4905, app/assets/stylesheets/mine.scss */
#img-upload {
  width: 100%;
  max-width: 150px;
  height: 150px;
  margin-right: 25px;
  background: url(https://womens-hormone.s3-us-west-1.amazonaws.com/placeholder-img.jpg);
  background-position: top center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  border-radius: 50% !important;
}

/* line 4916, app/assets/stylesheets/mine.scss */
#msg-template-head-image {
  width: 100%;
  max-width: 150px;
  height: 150px;
  margin-right: 25px;
  background-position: top center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  border-radius: 50% !important;
}

/* line 4926, app/assets/stylesheets/mine.scss */
span.file-info {
  display: block;
  text-align: center;
  font-size: 12px;
  font-family: 'IBM Plex Sans',sans-serif;
  color: #000;
}

/* line 4933, app/assets/stylesheets/mine.scss */
span.btn.btn-purple.btn-file {
  margin: 0;
  width: 100%;
  font-size: 16px;
  padding: 8px;
  margin-bottom: 10px;
  margin-top: 1px;
  font-family: 'IBM Plex Sans', sans-serif;
  border-radius: 15px !important;
  text-transform: capitalize;
  letter-spacing: 0px;
  background: #355694;
  color: #fff;
}

/* line 4947, app/assets/stylesheets/mine.scss */
.flex-group.form-group {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

/* line 4952, app/assets/stylesheets/mine.scss */
.flex-group .input-group-btn {
  white-space: normal;
  font-size: inherit;
}

/* line 4956, app/assets/stylesheets/mine.scss */
.flex-group .input-group {
  max-width: 262px !important;
}

/*/ ------------ BroadCast Section ------------ /*/
/* line 4962, app/assets/stylesheets/mine.scss */
div#broadcast-message-section {
  position: relative;
  padding: 65px 0;
}

/* line 4966, app/assets/stylesheets/mine.scss */
div#broadcast-message-section .black-caption {
  margin-bottom: 50px;
}

/* line 4969, app/assets/stylesheets/mine.scss */
.broadcast-btns {
  position: relative;
}

/* line 4973, app/assets/stylesheets/mine.scss */
.broadcast-btn {
  background: #23C497;
  color: #fff;
  padding: 15px 40px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'IBM Plex Sans', sans-serif;
  line-height: normal;
  transition: all .3s ease;
  display: inline-block;
  min-width: 240px;
  text-align: center;
}

/* line 4988, app/assets/stylesheets/mine.scss */
.broadcast-btns .broadcast-btn:first-child {
  margin-right: 10px;
}

/* line 4992, app/assets/stylesheets/mine.scss */
.broadcast-btn img {
  margin-right: 9px;
  float: left;
}

/* line 4997, app/assets/stylesheets/mine.scss */
.broadcast-btn:hover, .broadcast-btn:active {
  background: #355694;
  color: #fff !important;
}

/* line 5001, app/assets/stylesheets/mine.scss */
.broadcast-btn.invert {
  background: #355694;
}

/* line 5004, app/assets/stylesheets/mine.scss */
.broadcast-btn.invert:hover, .broadcast-btn.invert:active {
  background: #23C497;
}

/* line 5008, app/assets/stylesheets/mine.scss */
.message-status-list-wrap {
  margin: 70px -15px 0;
}

/* line 5012, app/assets/stylesheets/mine.scss */
.current-message-status-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

/* line 5019, app/assets/stylesheets/mine.scss */
.current-message-status-head h2 {
  font-weight: bold;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 22px;
  margin: 0;
}

/* line 5026, app/assets/stylesheets/mine.scss */
.current-message-sort-boxes {
  display: flex;
}

/* line 5030, app/assets/stylesheets/mine.scss */
.current-message-sort-boxes .dropdown:first-child {
  margin-right: 20px;
}

/* line 5034, app/assets/stylesheets/mine.scss */
.current-message-sort-boxes .dropdown button {
  background: transparent !important;
  border: 1px solid #D9DADB !important;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 8px 20px;
}

/* line 5043, app/assets/stylesheets/mine.scss */
.current-message-sort-boxes .dropdown button b {
  font-weight: 800;
}

/* line 5049, app/assets/stylesheets/mine.scss */
.current-message-status-list .table__rwd th, .current-message-status-list .table__rwd td {
  padding: 10px 25px;
  border: none;
}

/* line 5054, app/assets/stylesheets/mine.scss */
.current-message-status-list .table__rwd tbody tr {
  height: 100px;
  background: #fff;
  border: 1px solid rgba(187, 189, 193, 0.12);
  box-shadow: 0px 0px 3px -1px #bbbdc1;
}

/* line 5060, app/assets/stylesheets/mine.scss */
.current-message-status-list .table__rwd tbody tr.spacer {
  height: 20px;
  background: transparent !important;
  box-shadow: none;
  border: none;
}

/* line 5066, app/assets/stylesheets/mine.scss */
.current-message-status-list .table__rwd tbody tr td {
  vertical-align: middle;
  padding: 25px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  color: #0F121D;
  line-height: 22px;
  font-weight: 400;
}

/* line 5076, app/assets/stylesheets/mine.scss */
.current-message-status-list .table__rwd th {
  border: none;
  color: #84878D;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
}

/* line 5084, app/assets/stylesheets/mine.scss */
.current-message-status-list .table__rwd td:nth-child(1) {
  width: calc(100% / 5);
}

/* line 5088, app/assets/stylesheets/mine.scss */
.current-message-status-list .table__rwd td {
  width: calc(100% / 5);
}

/* line 5092, app/assets/stylesheets/mine.scss */
.current-message-status-list .table__rwd td:nth-child(2), .current-message-status-list .table__rwd td:nth-child(3) {
  width: calc(100% / 60);
}

/* line 5096, app/assets/stylesheets/mine.scss */
.current-message-status-list .table__rwd td:nth-child(4) {
  width: calc(100% / 1);
}

/* line 5100, app/assets/stylesheets/mine.scss */
.current-message-status-list .table__rwd td:last-child {
  padding: 0;
  text-align: center;
}

/* line 5105, app/assets/stylesheets/mine.scss */
.current-message-status-list .table__rwd td.first_col {
  font-size: 14px;
  font-weight: 500;
  font-family: 'IBM Plex Sans', sans-serif;
}

/* line 5110, app/assets/stylesheets/mine.scss */
.current-message-status-list .table__rwd td span.current-status, .white-box-row span.current-status {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 11px;
  font-weight: bold;
  background: rgba(204, 204, 204, 0.35);
  padding: 5px 10px;
  border-radius: 25px;
}

/* line 5119, app/assets/stylesheets/mine.scss */
.current-message-status-list .table__rwd td span.current-status.approved, .white-box-row span.current-status.approved {
  color: #23C497;
  background: #E4F9EF;
}

/* line 5124, app/assets/stylesheets/mine.scss */
.current-message-status-list .table__rwd td span.current-status.pending, .white-box-row span.current-status.pending {
  background: #E8F3FF;
  color: #355694;
}

/* line 5129, app/assets/stylesheets/mine.scss */
.current-message-status-list .table__rwd td span.current-status.rejected, .white-box-row span.current-status.rejected {
  background: #F9E4E4;
  color: #C42323;
}

/* line 5133, app/assets/stylesheets/mine.scss */
.current-message-status-list .table__rwd .dropdown-menu {
  left: auto;
  right: 0;
  padding: 13px 8px;
  border: none;
}

/* line 5140, app/assets/stylesheets/mine.scss */
.current-message-status-list .table__rwd .dropdown-menu li a {
  display: block;
  margin-bottom: 0;
  color: #535760;
  font-size: 15px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  line-height: 25px;
  background: transparent !important;
}

/* line 5151, app/assets/stylesheets/mine.scss */
.current-message-status-list .table__rwd .dropdown-menu li a span {
  margin-right: 10px;
}

/* line 5155, app/assets/stylesheets/mine.scss */
.current-message-status-list .table__rwd .dropdown.actions button,
.current-message-status-list .table__rwd .dropdown.actions button:hover,
.current-message-status-list .table__rwd .dropdown.actions button:active {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* line 5164, app/assets/stylesheets/mine.scss */
div#message_preview_popup .modal-dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 560px;
}

/* line 5172, app/assets/stylesheets/mine.scss */
div#message_preview_popup .modal-dialog .modal-content {
  border-radius: 13px;
}

/* line 5176, app/assets/stylesheets/mine.scss */
div#message_preview_popup .modal-dialog .modal-body {
  padding: 30px 30px 10px;
}

/* line 5180, app/assets/stylesheets/mine.scss */
div#message_preview_popup .modal-dialog .modal-footer {
  border: none;
  padding: 0px 30px 30px;
}

/* line 5184, app/assets/stylesheets/mine.scss */
div#message_preview_popup .modal-content .close {
  font-size: 30px;
  position: absolute;
  right: 7px;
  z-index: 99999;
}

/* line 5190, app/assets/stylesheets/mine.scss */
div#message_preview_popup .msg-template-box.edit {
  max-width: 100%;
  margin-bottom: 25px;
}

/* line 5197, app/assets/stylesheets/mine.scss */
div#remove_message_confirmation_popup .modal-dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 560px;
}

/* line 5205, app/assets/stylesheets/mine.scss */
div#remove_message_confirmation_popup .modal-dialog .modal-content {
  border-radius: 13px;
}

/* line 5209, app/assets/stylesheets/mine.scss */
div#remove_message_confirmation_popup .modal-dialog .modal-body {
  padding: 30px 30px 10px;
}

/* line 5213, app/assets/stylesheets/mine.scss */
div#remove_message_confirmation_popup .modal-dialog .modal-footer {
  border: none;
  padding: 0px 30px 30px;
}

/* line 5217, app/assets/stylesheets/mine.scss */
div#remove_message_confirmation_popup .modal-content .close {
  font-size: 30px;
  position: absolute;
  right: 7px;
  z-index: 99999;
}

/* line 5223, app/assets/stylesheets/mine.scss */
div#remove_message_confirmation_popup .submit-btn-wrap .left {
  margin-right: 20px;
}

/* line 5227, app/assets/stylesheets/mine.scss */
div#remove_message_confirmation_popup .submit-btn-wrap .left .subbtn {
  background: #fff;
  color: #355694;
  border: 1px solid #355694 !important;
}

/* line 5233, app/assets/stylesheets/mine.scss */
div#remove_message_confirmation_popup .submit-btn-wrap .left .subbtn:hover,
div#remove_message_confirmation_popup .submit-btn-wrap .left .subbtn:focus,
div#remove_message_confirmation_popup .submit-btn-wrap .left .subbtn:active {
  background: #355694;
  color: #fff;
}

@media screen and (max-width: 767px) {
  /* line 5242, app/assets/stylesheets/mine.scss */
  div#broadcast-message-section {
    position: relative;
    padding: 25px 0;
  }
  /* line 5246, app/assets/stylesheets/mine.scss */
  div#broadcast-message-section .black-caption {
    margin-bottom: 30px;
  }
  /* line 5250, app/assets/stylesheets/mine.scss */
  .broadcast-btns .broadcast-btn {
    min-width: inherit;
    width: 100%;
    padding: 15px 15px;
  }
  /* line 5256, app/assets/stylesheets/mine.scss */
  .broadcast-btns {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  /* line 5261, app/assets/stylesheets/mine.scss */
  .current-message-status-head {
    display: block;
  }
  /* line 5265, app/assets/stylesheets/mine.scss */
  .current-message-status-head h2 {
    margin-bottom: 20px;
  }
  /* line 5268, app/assets/stylesheets/mine.scss */
  div#message_preview_popup .modal-dialog {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 15px;
  }
  /* line 5274, app/assets/stylesheets/mine.scss */
  div#message_preview_popup .msg-template-box.edit {
    max-width: 100%;
    margin-bottom: 25px;
  }
  /* line 5279, app/assets/stylesheets/mine.scss */
  div#remove_message_confirmation_popup .modal-dialog {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 15px;
  }
}

/*/ ------------ BroadCast Section ------------ /



/ ------------ Create A New BroadCast Section ------------ /*/
/* line 5295, app/assets/stylesheets/mine.scss */
div#broadcast-message-section.create-new-broadcast-section .black-caption a.back-btn {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50px, -50%);
  color: #0f121d;
  font-size: 26px;
  line-height: normal;
}

/* line 5305, app/assets/stylesheets/mine.scss */
div#broadcast-message-section.create-new-broadcast-section .black-caption {
  position: relative;
}

/* line 5309, app/assets/stylesheets/mine.scss */
div#broadcast-message-section.create-new-broadcast-section .black-caption a.back-btn span {
  position: relative;
  top: 2px;
}

/* line 5313, app/assets/stylesheets/mine.scss */
a.custom-body-variable-link {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  line-height: 24px;
  display: inline-block;
}

/* line 5315, app/assets/stylesheets/mine.scss */
a.custom-body-variable-link img {
  float: right;
  width: 20px;
  position: relative;
  top: 2px;
  margin-left: 5px;
  filter: grayscale(0.6) brightness(1.5);
}

/* line 5317, app/assets/stylesheets/mine.scss */
textarea.form-control::placeholder {
  color: #767676 !important;
}

/* line 5320, app/assets/stylesheets/mine.scss */
.row.message_variable_content {
  max-width: 95%;
  margin-left: auto;
}

/* line 5326, app/assets/stylesheets/mine.scss */
#image_upload_filed .btn-file {
  position: relative;
  overflow: hidden;
}

/* line 5330, app/assets/stylesheets/mine.scss */
#image_upload_filed .btn-file input[type="file"] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  opacity: 0;
  outline: 0;
  background: #fff;
  cursor: inherit;
  display: block;
}

/* line 5344, app/assets/stylesheets/mine.scss */
#image_upload_filed #img-upload {
  width: 100%;
  max-width: 200px;
  height: 100px;
  margin-right: 25px;
  background: transparent;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  border-radius: 0% !important;
}

/* line 5355, app/assets/stylesheets/mine.scss */
#msg-template-head-image {
  width: 100%;
  max-width: 200px;
  height: 100px;
  margin-right: 25px;
  background: transparent;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  border-radius: 0% !important;
}

/* line 5367, app/assets/stylesheets/mine.scss */
#image_upload_filed span.btn.btn-purple.btn-file {
  padding: 10px 30px;
  background: #fff;
  border: 1px solid #355694;
  color: #355694;
  font-family: 'IBM Plex Sans', sans-serif !important;
  border-radius: 5px;
  cursor: pointer;
  letter-spacing: 0;
  font-weight: 600;
  font-size: 16px !important;
  transition: all .3s ease;
  text-transform: capitalize !important;
}

/* line 5381, app/assets/stylesheets/mine.scss */
#image_upload_filed span.btn.btn-purple.btn-file:hover,
#image_upload_filed span.btn.btn-purple.btn-file:focus,
#image_upload_filed span.btn.btn-purple.btn-file:active {
  background: #23C497 !important;
  color: #fff !important;
  border-color: #23C497 !important;
  transition: all .3s ease;
}

/* line 5389, app/assets/stylesheets/mine.scss */
#image_upload_filed .flex-group.form-group {
  display: flex;
  align-items: center;
}

/* line 5393, app/assets/stylesheets/mine.scss */
#image_upload_filed .flex-group .input-group-btn {
  white-space: normal;
  font-size: inherit;
}

/* line 5397, app/assets/stylesheets/mine.scss */
#image_upload_filed .flex-group .input-group {
  max-width: 262px !important;
}

@media screen and (max-width: 767px) {
  /* line 5403, app/assets/stylesheets/mine.scss */
  div#broadcast-message-section.create-new-broadcast-section .black-caption .heading-with-sub {
    padding-left: 30px;
  }
  /* line 5407, app/assets/stylesheets/mine.scss */
  div#broadcast-message-section.create-new-broadcast-section .black-caption a.back-btn {
    transform: translate(0px, -50%);
    font-size: 20px;
  }
  /* line 5412, app/assets/stylesheets/mine.scss */
  div#broadcast-message-section.create-new-broadcast-section .new-message-fields .msg-template-box.edit {
    margin: 20px -15px 0;
    max-width: inherit;
  }
  /* line 5417, app/assets/stylesheets/mine.scss */
  div#broadcast-message-section.create-new-broadcast-section .row.message_variable_content {
    max-width: inherit;
    margin-left: -15px;
  }
  /* line 5421, app/assets/stylesheets/mine.scss */
  div#broadcast-message-section.create-new-broadcast-section span.text-muted.sign-up-link {
    display: block;
  }
  /* line 5424, app/assets/stylesheets/mine.scss */
  div#broadcast-message-section.create-new-broadcast-section .d-flex.inner-setps-actions,
div#broadcast-message-section.create-new-broadcast-section .test-msg-success .d-flex.inner-setps-actions {
    flex-direction: column;
    margin-top: 70px !important;
  }
}

/*/ ------------ Create A New BroadCast Section ------------ /


/ ------------ Send New BroadCast Section ------------ /*/
/* line 5438, app/assets/stylesheets/mine.scss */
.send-broadcast-steps.steps-sidebar .wizard-nav .wizard-steps .wizard-step .wizard-label .wizard-title {
  color: #0F121D;
  font-weight: 600;
}

/* line 5442, app/assets/stylesheets/mine.scss */
.send-broadcast-steps.steps-sidebar .wizard-nav .wizard-steps .wizard-step {
  margin-bottom: 0;
  background: #f9fafb;
  padding-left: 15px;
  padding-right: 15px;
}

/* line 5449, app/assets/stylesheets/mine.scss */
.send-broadcast-steps.steps-sidebar .wizard-nav {
  margin-bottom: 35px;
}

/* line 5452, app/assets/stylesheets/mine.scss */
.send-broadcast-steps.steps-sidebar .wizard-nav .wizard-steps .wizard-step .wizard-icon {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  line-height: 35px;
}

/* line 5458, app/assets/stylesheets/mine.scss */
.send-broadcast-steps.steps-sidebar .wizard-steps {
  position: relative;
}

/* line 5461, app/assets/stylesheets/mine.scss */
.send-broadcast-steps.steps-sidebar .wizard-steps:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: #D9DADB;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/* line 5473, app/assets/stylesheets/mine.scss */
.segments_boxes {
  position: relative;
}

/* line 5477, app/assets/stylesheets/mine.scss */
.segments_boxes span {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f00d";
  position: absolute;
  right: -30px;
  top: 50%;
  width: 20px;
  height: 20px;
  color: #fff;
  background: #84878D;
  text-align: center;
  line-height: 20px;
  border-radius: 50%;
  font-size: 11px;
  transform: translate(0, -50%);
  cursor: pointer;
}

/* line 5495, app/assets/stylesheets/mine.scss */
.cost-estimator-wrap {
  background: #F5F8FF;
  padding: 25px;
  border: 1px solid #A9BEE5;
  border-radius: 5px;
}

/* line 5502, app/assets/stylesheets/mine.scss */
.cost-estimator-wrap h2 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 7px;
}

/* line 5509, app/assets/stylesheets/mine.scss */
.cost-estimator-wrap p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  margin: 0;
  line-height: normal;
}

@media screen and (max-width: 767px) {
  /* line 5517, app/assets/stylesheets/mine.scss */
  .send-broadcast-steps.steps-sidebar {
    padding-top: 0px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  /* line 5523, app/assets/stylesheets/mine.scss */
  .send-broadcast-steps.steps-sidebar .wizard-nav {
    padding: 0 !important;
  }
  /* line 5527, app/assets/stylesheets/mine.scss */
  .send-broadcast-steps.steps-sidebar .wizard-nav .wizard-steps .wizard-step {
    padding-left: 5px;
    padding-right: 5px;
  }
  /* line 5531, app/assets/stylesheets/mine.scss */
  div#broadcast-message-section.create-new-broadcast-section .message-templates-wrap {
    overflow: scroll;
    width: calc(100% - 0px);
  }
  /* line 5535, app/assets/stylesheets/mine.scss */
  div#broadcast-message-section.create-new-broadcast-section .search-box.sort {
    position: relative;
    bottom: inherit;
    width: 100%;
  }
  /* line 5540, app/assets/stylesheets/mine.scss */
  div#broadcast-message-section.create-new-broadcast-section .contact-list-links ul li:not(:first-child) {
    display: block;
  }
  /* line 5543, app/assets/stylesheets/mine.scss */
  div#broadcast-message-section.create-new-broadcast-section .d-flex.inner-setps-actions.mobile-reverse, div#broadcast-message-section.create-new-broadcast-section .test-msg-success .d-flex.inner-setps-actions.mobile-reverse {
    flex-direction: column-reverse;
  }
}

/*/ ------------ Send New BroadCast Section ------------ /*/
@media screen and (min-width: 768px) {
  /* line 5552, app/assets/stylesheets/mine.scss */
  div#pick-templates.d-grid {
    display: grid !important;
    grid-template-columns: 33.3% 33.3% 33.3%;
    grid-row-gap: 30px;
  }
  /* line 5553, app/assets/stylesheets/mine.scss */
  div#pick-templates.d-grid .col-md-4.col-sm-4.col-xs-4 {
    width: 100%;
  }
  /* line 5556, app/assets/stylesheets/mine.scss */
  div#pick-templates-filters {
    display: block !important;
  }
  /* line 5560, app/assets/stylesheets/mine.scss */
  div#pick-templates-filters a {
    display: inline-block;
  }
  /* line 5564, app/assets/stylesheets/mine.scss */
  div#pick-templates-filters a:first-child {
    margin-bottom: 25px;
  }
  /* line 5567, app/assets/stylesheets/mine.scss */
  .form-group.select-variables label {
    width: 200px;
    align-self: center;
    font-weight: 600 !important;
  }
  /* line 5573, app/assets/stylesheets/mine.scss */
  .form-group.select-variables {
    align-content: center;
  }
}

@media screen and (max-width: 768px) {
  /* line 5578, app/assets/stylesheets/mine.scss */
  div#pick-templates .col-md-4.col-sm-4.col-xs-4 {
    width: 100%;
    margin-bottom: 30px;
  }
  /* line 5582, app/assets/stylesheets/mine.scss */
  div#broadcast-message-section.create-new-broadcast-section .message-templates-wrap.no-scroll-mobile {
    overflow: inherit !important;
  }
  /* line 5586, app/assets/stylesheets/mine.scss */
  .message-templates-wrap.py-20.scroll-mobile {
    padding-bottom: 0px !important;
  }
  /* line 5590, app/assets/stylesheets/mine.scss */
  .message-templates-wrap.py-20.scroll-mobile div#pick-templates-filters {
    width: 1965px;
  }
  /* line 5593, app/assets/stylesheets/mine.scss */
  div#broadcast-message-section.create-new-broadcast-section .black-caption a.back-btn {
    z-index: 999;
  }
}

/* line 5598, app/assets/stylesheets/mine.scss */
div#crypto-btn {
  background: #002c74;
  padding: 10px 20px;
  margin-left: 20px;
  height: 50px !important;
  width: 250px !important;
  text-align: center;
}

/* line 5607, app/assets/stylesheets/mine.scss */
div#crypto-btn > div {
  width: 100% !important;
}

/* line 5611, app/assets/stylesheets/mine.scss */
div#pay-button {
  display: flex;
  margin-left: 15px;
}

/* line 5616, app/assets/stylesheets/mine.scss */
div#pay-button > div {
  width: 250px !important;
}

/* line 5619, app/assets/stylesheets/mine.scss */
.analytics-chart-area {
  background: #fff;
  border: 1px solid rgba(187, 189, 193, 0.12);
  box-shadow: 0px 0px 3px -1px #bbbdc1;
  padding: 40px;
}

/* line 5626, app/assets/stylesheets/mine.scss */
.icon-box-analytics {
  background: #fff;
  border: 1px solid rgba(187, 189, 193, 0.12);
  box-shadow: 0px 0px 3px -1px #bbbdc1;
  padding: 40px;
}

/* line 5633, app/assets/stylesheets/mine.scss */
.icon-box-analytics img {
  margin-bottom: 20px;
}

/* line 5637, app/assets/stylesheets/mine.scss */
.icon-box-analytics h2 {
  font-size: 44px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 300;
  margin-bottom: 5px;
  color: #0F121D;
}

/* line 5645, app/assets/stylesheets/mine.scss */
.icon-box-analytics p {
  font-size: 15px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  margin-bottom: 10px;
  color: #0F121D;
}

/* line 5653, app/assets/stylesheets/mine.scss */
.icon-box-analytics ul {
  padding: 0;
  list-style: none;
}

/* line 5658, app/assets/stylesheets/mine.scss */
.icon-box-analytics ul li {
  font-size: 14px;
  font-family: 'IBM Plex Sans', sans-serif;
  border-bottom: 1px solid #ededed;
  padding: 7px 0 1px;
}

/* line 5665, app/assets/stylesheets/mine.scss */
.icon-box-analytics ul li b {
  float: right;
}

/* line 5668, app/assets/stylesheets/mine.scss */
.contact-list-links ul li span.remove_selected_link input {
  background: transparent;
  border: none;
  padding: 0;
  line-height: normal;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  color: "black";
}

/* line 5677, app/assets/stylesheets/mine.scss */
.gl-content > .alert {
  position: fixed;
  left: 30px;
  bottom: 50px;
  min-width: 310px;
  z-index: 9999;
}

/* line 5685, app/assets/stylesheets/mine.scss */
.analytics-chart-head {
  display: flex;
  align-items: center;
}

/* line 5690, app/assets/stylesheets/mine.scss */
.analytics-chart-head h2 {
  font-weight: bold;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 22px;
  margin: 0;
  margin-right: 30px;
}

/* line 5698, app/assets/stylesheets/mine.scss */
.analytics-chart-head form {
  display: flex;
}

/* line 5702, app/assets/stylesheets/mine.scss */
.analytics-chart-head form .form-group {
  margin: 0;
  margin-right: 10px;
}

/* line 5707, app/assets/stylesheets/mine.scss */
.analytics-chart-head form .form-group input#search_dob {
  padding: 0 15px;
  height: 35px;
  padding-left: 35px;
  border: 1px solid #D9DADB;
  border-radius: 5px;
  background: #ffffff url(/assets/ico_calendar-df90dcb2adf80319aced878a0259ec46026c5b68fe0a67ef003c17f080749e9c.png) no-repeat left center;
  background-position-x: 10px;
  min-width: 250px;
}

/* line 5719, app/assets/stylesheets/mine.scss */
.user-options .dropdown.open .dropdown-menu a.account_link {
  position: relative;
  padding-left: 25px;
}

/* line 5724, app/assets/stylesheets/mine.scss */
.user-options .dropdown.open .dropdown-menu a.account_link:before {
  content: '';
  width: 20px;
  height: 20px;
  background: #fff url(/assets/user-circle-69a75ec510b139172d015d76f4433fd8fb400b859c5fda969785127a9f86b244.png) no-repeat center center;
  background-size: contain;
  position: absolute;
  left: -2px;
  top: 50%;
  transform: translateY(-50%);
}

/* line 5737, app/assets/stylesheets/mine.scss */
.user-options .dropdown.open .dropdown-menu a.sign_out_link {
  position: relative;
  padding-left: 25px;
}

/* line 5742, app/assets/stylesheets/mine.scss */
.user-options .dropdown.open .dropdown-menu a.sign_out_link:before {
  content: '';
  width: 18px;
  height: 18px;
  background: #fff url(/assets/upload-alt-64a036c89ed29765a2e5c752016cfdcb84552de14c0b62b0fde350ed3384d8e9.png) no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* line 5755, app/assets/stylesheets/mine.scss */
.pricing-table.account_payment_pricing_table table {
  background: transparent !important;
}

/* line 5759, app/assets/stylesheets/mine.scss */
.pricing-table.account_payment_pricing_table table tbody#ratesTable {
  background: #fff;
}

/* line 5763, app/assets/stylesheets/mine.scss */
.pricing-table.account_payment_pricing_table table tbody tr {
  border-bottom: 1px solid #EFEFEF;
}

/* line 5767, app/assets/stylesheets/mine.scss */
.pricing-table.account_payment_pricing_table table tbody tr td {
  padding: 16px 15px;
}

/* line 5772, app/assets/stylesheets/mine.scss */
.account_scopes ul {
  list-style: none;
  padding: 0;
  display: flex;
}

/* line 5778, app/assets/stylesheets/mine.scss */
.account_scopes ul li:not(:last-child) {
  margin-right: 50px;
}

/* line 5782, app/assets/stylesheets/mine.scss */
.account_scopes ul li a {
  font-family: 'IBM Plex Sans', sans-serif !important;
  font-weight: bold;
  font-size: 16px;
  color: #535760;
  position: relative;
}

/* line 5790, app/assets/stylesheets/mine.scss */
.account_scopes ul li.active a:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: #00c894;
  bottom: -99%;
  left: 50%;
  transform: translateX(-50%);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

/* line 5803, app/assets/stylesheets/mine.scss */
.account_scopes {
  position: relative;
}

/* line 5807, app/assets/stylesheets/mine.scss */
.account_scopes:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: #D9DADB;
  bottom: -56%;
  left: 50%;
  transform: translateX(-50%);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

/* line 5820, app/assets/stylesheets/mine.scss */
.account_scopes ul li.active a {
  color: #00c894;
}

@media screen and (max-width: 767px) {
  /* line 5827, app/assets/stylesheets/mine.scss */
  .icon-box-analytics h2 {
    display: inline-block;
    margin-left: 10px;
  }
  /* line 5832, app/assets/stylesheets/mine.scss */
  .icon-box-analytics {
    margin-bottom: 30px;
  }
  /* line 5835, app/assets/stylesheets/mine.scss */
  .analytics-chart-area {
    padding: 15px;
  }
  /* line 5838, app/assets/stylesheets/mine.scss */
  .buy-btns-wrap {
    display: block !important;
  }
  /* line 5842, app/assets/stylesheets/mine.scss */
  .buy-btns-wrap > a {
    margin-bottom: 15px;
    height: 50px !important;
    width: 100% !important;
  }
  /* line 5847, app/assets/stylesheets/mine.scss */
  div#crypto-btn {
    width: 100% !important;
  }
  /* line 5851, app/assets/stylesheets/mine.scss */
  .buy-btns-wrap #crypto-btn {
    margin: 0;
  }
  /* line 5855, app/assets/stylesheets/mine.scss */
  .account_scopes ul li a {
    font-size: 14px;
  }
  /* line 5859, app/assets/stylesheets/mine.scss */
  .account_scopes ul {
    justify-content: space-between;
  }
  /* line 5863, app/assets/stylesheets/mine.scss */
  .account_scopes ul li:not(:last-child) {
    margin-right: 0px;
  }
  /* line 5867, app/assets/stylesheets/mine.scss */
  .account_scopes:before {
    bottom: -45%;
  }
}

/*------------ POPOVER CSS ------------*/
/* line 5876, app/assets/stylesheets/mine.scss */
.btn[data-toggle=popover] {
  background: transparent !important;
  color: #355694 !important;
  text-transform: inherit;
  font-size: 16px;
  letter-spacing: normal;
  line-height: 28px;
  padding: 0;
}

/* line 5885, app/assets/stylesheets/mine.scss */
div.my-popover {
  max-width: 460px;
  background: #03316C;
  padding: 25px;
  top: 100% !important;
}

/* line 5892, app/assets/stylesheets/mine.scss */
div.my-popover .popover-title {
  background: transparent;
  border: none;
  padding: 0;
}

/* line 5898, app/assets/stylesheets/mine.scss */
div.my-popover .popover-title h3 {
  margin-bottom: 18px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  line-height: normal;
}

/* line 5907, app/assets/stylesheets/mine.scss */
div.my-popover .popover-content {
  padding: 0px;
}

/* line 5911, app/assets/stylesheets/mine.scss */
div.my-popover .popover-content p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
  font-size: 16px;
}

/* line 5919, app/assets/stylesheets/mine.scss */
div.my-popover .popover-content p:last-child {
  margin-bottom: 0px;
}

/* line 5923, app/assets/stylesheets/mine.scss */
div.my-popover .popover-content p span {
  color: #23C497;
}

/* line 5927, app/assets/stylesheets/mine.scss */
div.my-popover > .arrow {
  border-bottom-color: #03316C !important;
  top: -20px !important;
  border-width: 21px;
}

/* line 5933, app/assets/stylesheets/mine.scss */
div.my-popover > .arrow:after {
  border-bottom-color: #03316C !important;
}

/* line 5936, app/assets/stylesheets/mine.scss */
.btn.extra-credit-btn {
  opacity: 1 !important;
  text-transform: inherit;
  letter-spacing: normal;
  font-family: 'IBM Plex Sans', sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  color: #23C497;
  border: 1px solid #23C497;
  border-radius: 30px;
  padding: 9px 13px;
  line-height: normal;
  background: rgba(35, 196, 151, 0.05) !important;
}

/* line 5951, app/assets/stylesheets/mine.scss */
.btn.extra-credit-btn span {
  color: #0F121D;
}

/* line 5954, app/assets/stylesheets/mine.scss */
.pricing-table table tr td {
  text-align: center;
}

/* line 5958, app/assets/stylesheets/mine.scss */
.pricing-table table tr {
  border-bottom: 1px solid #f1f1f1;
}

/* line 5962, app/assets/stylesheets/mine.scss */
.pricing-table table tr td:first-child {
  width: auto;
}

/* line 5965, app/assets/stylesheets/mine.scss */
p.broadcast-rate-text {
  text-align: center;
  margin-bottom: 10px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #666C77;
}

@media screen and (max-width: 767px) {
  /* line 5975, app/assets/stylesheets/mine.scss */
  div.my-popover {
    left: 0 !important;
  }
}

@media screen and (max-width: 405px) {
  /* line 5981, app/assets/stylesheets/mine.scss */
  .contact-list-table-wrap .table tbody tr td:before {
    width: 65px;
  }
  /* line 5984, app/assets/stylesheets/mine.scss */
  .current-message-sort-boxes.contact_list_sort_wrap .search-box.sort {
    width: 300px;
  }
  /* line 5987, app/assets/stylesheets/mine.scss */
  .current-message-sort-boxes .dropdown button {
    padding: 8px;
  }
  /* line 5990, app/assets/stylesheets/mine.scss */
  #fh5co-logo img {
    max-width: 100%;
  }
  /* line 5993, app/assets/stylesheets/mine.scss */
  .broadcast-btn {
    font-size: 14px;
  }
  /* line 5996, app/assets/stylesheets/mine.scss */
  .broadcast-btns .broadcast-btn {
    padding: 15px 10px;
  }
  /* line 5999, app/assets/stylesheets/mine.scss */
  .gl-content-box {
    padding: 20px;
  }
  /* line 6002, app/assets/stylesheets/mine.scss */
  .gl-content-box.login-content {
    padding: 20px 0;
  }
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(/assets/owl.video.play-12d5ab429e87fceae0abca364a3b5853563d3c91118e6af942bee5d9d05d18f9.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}
.daterangepicker {
  position: absolute;
  color: inherit;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #ddd;
  width: 278px;
  max-width: none;
  padding: 0;
  margin-top: 7px;
  top: 100px;
  left: 20px;
  z-index: 3001;
  display: none;
  font-family: arial;
  font-size: 15px;
  line-height: 1em;
}

.daterangepicker:before, .daterangepicker:after {
  position: absolute;
  display: inline-block;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: '';
}

.daterangepicker:before {
  top: -7px;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #ccc;
}

.daterangepicker:after {
  top: -6px;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent;
}

.daterangepicker.opensleft:before {
  right: 9px;
}

.daterangepicker.opensleft:after {
  right: 10px;
}

.daterangepicker.openscenter:before {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.openscenter:after {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.opensright:before {
  left: 9px;
}

.daterangepicker.opensright:after {
  left: 10px;
}

.daterangepicker.drop-up {
  margin-top: -7px;
}

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

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

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

.daterangepicker.single .drp-selected {
  display: none;
}

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

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

.daterangepicker.auto-apply .drp-buttons {
  display: none;
}

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

.daterangepicker .drp-calendar.left {
  padding: 8px 0 8px 8px;
}

.daterangepicker .drp-calendar.right {
  padding: 8px;
}

.daterangepicker .drp-calendar.single .calendar-table {
  border: none;
}

.daterangepicker .calendar-table .next span, .daterangepicker .calendar-table .prev span {
  color: #fff;
  border: solid black;
  border-width: 0 2px 2px 0;
  border-radius: 0;
  display: inline-block;
  padding: 3px;
}

.daterangepicker .calendar-table .next span {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.daterangepicker .calendar-table .prev span {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  min-width: 32px;
  width: 32px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}

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

.daterangepicker .calendar-table table {
  width: 100%;
  margin: 0;
  border-spacing: 0;
  border-collapse: collapse;
}

.daterangepicker td.available:hover, .daterangepicker th.available:hover {
  background-color: #eee;
  border-color: transparent;
  color: inherit;
}

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

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

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

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

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

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

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

.daterangepicker th.month {
  width: auto;
}

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

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

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

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

.daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.secondselect, .daterangepicker select.ampmselect {
  width: 50px;
  margin: 0 auto;
  background: #eee;
  border: 1px solid #eee;
  padding: 2px;
  outline: 0;
  font-size: 12px;
}

.daterangepicker .calendar-time {
  text-align: center;
  margin: 4px auto 0 auto;
  line-height: 30px;
  position: relative;
}

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

.daterangepicker .drp-buttons {
  clear: both;
  text-align: right;
  padding: 8px;
  border-top: 1px solid #ddd;
  display: none;
  line-height: 12px;
  vertical-align: middle;
}

.daterangepicker .drp-selected {
  display: inline-block;
  font-size: 12px;
  padding-right: 8px;
}

.daterangepicker .drp-buttons .btn {
  margin-left: 8px;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
}

.daterangepicker.show-ranges .drp-calendar.left {
  border-left: 1px solid #ddd;
}

.daterangepicker .ranges {
  float: none;
  text-align: left;
  margin: 0;
}

.daterangepicker.show-calendar .ranges {
  margin-top: 8px;
}

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

.daterangepicker .ranges li {
  font-size: 12px;
  padding: 8px 12px;
  cursor: pointer;
}

.daterangepicker .ranges li:hover {
  background-color: #eee;
}

.daterangepicker .ranges li.active {
  background-color: #08c;
  color: #fff;
}

/*  Larger Screen Styling */
@media (min-width: 564px) {
  .daterangepicker {
    width: auto; }
    .daterangepicker .ranges ul {
      width: 140px; }
    .daterangepicker.single .ranges ul {
      width: 100%; }
    .daterangepicker.single .drp-calendar.left {
      clear: none; }
    .daterangepicker.single.ltr .ranges, .daterangepicker.single.ltr .drp-calendar {
      float: left; }
    .daterangepicker.single.rtl .ranges, .daterangepicker.single.rtl .drp-calendar {
      float: right; }
    .daterangepicker.ltr {
      direction: ltr;
      text-align: left; }
      .daterangepicker.ltr .drp-calendar.left {
        clear: left;
        margin-right: 0; }
        .daterangepicker.ltr .drp-calendar.left .calendar-table {
          border-right: none;
          border-top-right-radius: 0;
          border-bottom-right-radius: 0; }
      .daterangepicker.ltr .drp-calendar.right {
        margin-left: 0; }
        .daterangepicker.ltr .drp-calendar.right .calendar-table {
          border-left: none;
          border-top-left-radius: 0;
          border-bottom-left-radius: 0; }
      .daterangepicker.ltr .drp-calendar.left .calendar-table {
        padding-right: 8px; }
      .daterangepicker.ltr .ranges, .daterangepicker.ltr .drp-calendar {
        float: left; }
    .daterangepicker.rtl {
      direction: rtl;
      text-align: right; }
      .daterangepicker.rtl .drp-calendar.left {
        clear: right;
        margin-left: 0; }
        .daterangepicker.rtl .drp-calendar.left .calendar-table {
          border-left: none;
          border-top-left-radius: 0;
          border-bottom-left-radius: 0; }
      .daterangepicker.rtl .drp-calendar.right {
        margin-right: 0; }
        .daterangepicker.rtl .drp-calendar.right .calendar-table {
          border-right: none;
          border-top-right-radius: 0;
          border-bottom-right-radius: 0; }
      .daterangepicker.rtl .drp-calendar.left .calendar-table {
        padding-left: 12px; }
      .daterangepicker.rtl .ranges, .daterangepicker.rtl .drp-calendar {
        text-align: right;
        float: right; } }
@media (min-width: 730px) {
  .daterangepicker .ranges {
    width: auto; }
  .daterangepicker.ltr .ranges {
    float: left; }
  .daterangepicker.rtl .ranges {
    float: right; }
  .daterangepicker .drp-calendar.left {
    clear: none !important; } }
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *















 */

/*# sourceMappingURL=application.css-eced5e2553a6fdac5f9f9bb4fee9526a7e1bf533ae91e7231afcab6ac513147b.map */
