@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700);@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap);@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

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

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

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes rollOut {
  from {
    opacity: 1;
  }

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

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

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

  50% {
    opacity: 1;
  }
}

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

  50% {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
.alert.notification {
  /*padding: 15px 15px 15px 58px;*/
  padding-left: 58px; 
  border-radius: 2px;
  color: #fff;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
  /*cursor: pointer;*/
  font-size: 1em;
  line-height: 1.2em;
  position: relative;
  /*background-color: #ccc;*/
  opacity: 0.9;
  margin-top: 60px;
  border: none; 
}

.alert.notification:hover, .notification:focus {
  opacity: 1;
}

.alert.notification .fa{
  font-size: 30px;
  left: 10px;
  position: absolute;
  top: 8px;
}

.alert.notification.alert-info {
  background-color: #2f96b4;
}

.alert.notification.alert-success {
  background-color: #51a351;
}

.alert.notification.alert-warning {
  background-color: #f89406;
}

.alert.notification.alert-danger {
  background-color: #bd362f;
}/*!
 *  Font Awesome 4.4.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.eot);
  src: url(/assets/fontawesome-webfont.eot?#iefix&v=4.4.0) format('embedded-opentype'), url(/assets/fontawesome-webfont.woff2) format('woff2'), url(/assets/fontawesome-webfont.woff) format('woff'), url(/assets/fontawesome-webfont.ttf) format('truetype'), url(/assets/fontawesome-webfont.svg#fontawesomeregular) format('svg');
  font-weight: normal;
  font-style: normal;
}
.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 */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-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);
  }
}
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.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);
}
.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);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.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 */
.fa-glass:before {
  content: "\F000";
}
.fa-music:before {
  content: "\F001";
}
.fa-search:before {
  content: "\F002";
}
.fa-envelope-o:before {
  content: "\F003";
}
.fa-heart:before {
  content: "\F004";
}
.fa-star:before {
  content: "\F005";
}
.fa-star-o:before {
  content: "\F006";
}
.fa-user:before {
  content: "\F007";
}
.fa-film:before {
  content: "\F008";
}
.fa-th-large:before {
  content: "\F009";
}
.fa-th:before {
  content: "\F00A";
}
.fa-th-list:before {
  content: "\F00B";
}
.fa-check:before {
  content: "\F00C";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\F00D";
}
.fa-search-plus:before {
  content: "\F00E";
}
.fa-search-minus:before {
  content: "\F010";
}
.fa-power-off:before {
  content: "\F011";
}
.fa-signal:before {
  content: "\F012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\F013";
}
.fa-trash-o:before {
  content: "\F014";
}
.fa-home:before {
  content: "\F015";
}
.fa-file-o:before {
  content: "\F016";
}
.fa-clock-o:before {
  content: "\F017";
}
.fa-road:before {
  content: "\F018";
}
.fa-download:before {
  content: "\F019";
}
.fa-arrow-circle-o-down:before {
  content: "\F01A";
}
.fa-arrow-circle-o-up:before {
  content: "\F01B";
}
.fa-inbox:before {
  content: "\F01C";
}
.fa-play-circle-o:before {
  content: "\F01D";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\F01E";
}
.fa-refresh:before {
  content: "\F021";
}
.fa-list-alt:before {
  content: "\F022";
}
.fa-lock:before {
  content: "\F023";
}
.fa-flag:before {
  content: "\F024";
}
.fa-headphones:before {
  content: "\F025";
}
.fa-volume-off:before {
  content: "\F026";
}
.fa-volume-down:before {
  content: "\F027";
}
.fa-volume-up:before {
  content: "\F028";
}
.fa-qrcode:before {
  content: "\F029";
}
.fa-barcode:before {
  content: "\F02A";
}
.fa-tag:before {
  content: "\F02B";
}
.fa-tags:before {
  content: "\F02C";
}
.fa-book:before {
  content: "\F02D";
}
.fa-bookmark:before {
  content: "\F02E";
}
.fa-print:before {
  content: "\F02F";
}
.fa-camera:before {
  content: "\F030";
}
.fa-font:before {
  content: "\F031";
}
.fa-bold:before {
  content: "\F032";
}
.fa-italic:before {
  content: "\F033";
}
.fa-text-height:before {
  content: "\F034";
}
.fa-text-width:before {
  content: "\F035";
}
.fa-align-left:before {
  content: "\F036";
}
.fa-align-center:before {
  content: "\F037";
}
.fa-align-right:before {
  content: "\F038";
}
.fa-align-justify:before {
  content: "\F039";
}
.fa-list:before {
  content: "\F03A";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\F03B";
}
.fa-indent:before {
  content: "\F03C";
}
.fa-video-camera:before {
  content: "\F03D";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\F03E";
}
.fa-pencil:before {
  content: "\F040";
}
.fa-map-marker:before {
  content: "\F041";
}
.fa-adjust:before {
  content: "\F042";
}
.fa-tint:before {
  content: "\F043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\F044";
}
.fa-share-square-o:before {
  content: "\F045";
}
.fa-check-square-o:before {
  content: "\F046";
}
.fa-arrows:before {
  content: "\F047";
}
.fa-step-backward:before {
  content: "\F048";
}
.fa-fast-backward:before {
  content: "\F049";
}
.fa-backward:before {
  content: "\F04A";
}
.fa-play:before {
  content: "\F04B";
}
.fa-pause:before {
  content: "\F04C";
}
.fa-stop:before {
  content: "\F04D";
}
.fa-forward:before {
  content: "\F04E";
}
.fa-fast-forward:before {
  content: "\F050";
}
.fa-step-forward:before {
  content: "\F051";
}
.fa-eject:before {
  content: "\F052";
}
.fa-chevron-left:before {
  content: "\F053";
}
.fa-chevron-right:before {
  content: "\F054";
}
.fa-plus-circle:before {
  content: "\F055";
}
.fa-minus-circle:before {
  content: "\F056";
}
.fa-times-circle:before {
  content: "\F057";
}
.fa-check-circle:before {
  content: "\F058";
}
.fa-question-circle:before {
  content: "\F059";
}
.fa-info-circle:before {
  content: "\F05A";
}
.fa-crosshairs:before {
  content: "\F05B";
}
.fa-times-circle-o:before {
  content: "\F05C";
}
.fa-check-circle-o:before {
  content: "\F05D";
}
.fa-ban:before {
  content: "\F05E";
}
.fa-arrow-left:before {
  content: "\F060";
}
.fa-arrow-right:before {
  content: "\F061";
}
.fa-arrow-up:before {
  content: "\F062";
}
.fa-arrow-down:before {
  content: "\F063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\F064";
}
.fa-expand:before {
  content: "\F065";
}
.fa-compress:before {
  content: "\F066";
}
.fa-plus:before {
  content: "\F067";
}
.fa-minus:before {
  content: "\F068";
}
.fa-asterisk:before {
  content: "\F069";
}
.fa-exclamation-circle:before {
  content: "\F06A";
}
.fa-gift:before {
  content: "\F06B";
}
.fa-leaf:before {
  content: "\F06C";
}
.fa-fire:before {
  content: "\F06D";
}
.fa-eye:before {
  content: "\F06E";
}
.fa-eye-slash:before {
  content: "\F070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\F071";
}
.fa-plane:before {
  content: "\F072";
}
.fa-calendar:before {
  content: "\F073";
}
.fa-random:before {
  content: "\F074";
}
.fa-comment:before {
  content: "\F075";
}
.fa-magnet:before {
  content: "\F076";
}
.fa-chevron-up:before {
  content: "\F077";
}
.fa-chevron-down:before {
  content: "\F078";
}
.fa-retweet:before {
  content: "\F079";
}
.fa-shopping-cart:before {
  content: "\F07A";
}
.fa-folder:before {
  content: "\F07B";
}
.fa-folder-open:before {
  content: "\F07C";
}
.fa-arrows-v:before {
  content: "\F07D";
}
.fa-arrows-h:before {
  content: "\F07E";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\F080";
}
.fa-twitter-square:before {
  content: "\F081";
}
.fa-facebook-square:before {
  content: "\F082";
}
.fa-camera-retro:before {
  content: "\F083";
}
.fa-key:before {
  content: "\F084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\F085";
}
.fa-comments:before {
  content: "\F086";
}
.fa-thumbs-o-up:before {
  content: "\F087";
}
.fa-thumbs-o-down:before {
  content: "\F088";
}
.fa-star-half:before {
  content: "\F089";
}
.fa-heart-o:before {
  content: "\F08A";
}
.fa-sign-out:before {
  content: "\F08B";
}
.fa-linkedin-square:before {
  content: "\F08C";
}
.fa-thumb-tack:before {
  content: "\F08D";
}
.fa-external-link:before {
  content: "\F08E";
}
.fa-sign-in:before {
  content: "\F090";
}
.fa-trophy:before {
  content: "\F091";
}
.fa-github-square:before {
  content: "\F092";
}
.fa-upload:before {
  content: "\F093";
}
.fa-lemon-o:before {
  content: "\F094";
}
.fa-phone:before {
  content: "\F095";
}
.fa-square-o:before {
  content: "\F096";
}
.fa-bookmark-o:before {
  content: "\F097";
}
.fa-phone-square:before {
  content: "\F098";
}
.fa-twitter:before {
  content: "\F099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\F09A";
}
.fa-github:before {
  content: "\F09B";
}
.fa-unlock:before {
  content: "\F09C";
}
.fa-credit-card:before {
  content: "\F09D";
}
.fa-feed:before,
.fa-rss:before {
  content: "\F09E";
}
.fa-hdd-o:before {
  content: "\F0A0";
}
.fa-bullhorn:before {
  content: "\F0A1";
}
.fa-bell:before {
  content: "\F0F3";
}
.fa-certificate:before {
  content: "\F0A3";
}
.fa-hand-o-right:before {
  content: "\F0A4";
}
.fa-hand-o-left:before {
  content: "\F0A5";
}
.fa-hand-o-up:before {
  content: "\F0A6";
}
.fa-hand-o-down:before {
  content: "\F0A7";
}
.fa-arrow-circle-left:before {
  content: "\F0A8";
}
.fa-arrow-circle-right:before {
  content: "\F0A9";
}
.fa-arrow-circle-up:before {
  content: "\F0AA";
}
.fa-arrow-circle-down:before {
  content: "\F0AB";
}
.fa-globe:before {
  content: "\F0AC";
}
.fa-wrench:before {
  content: "\F0AD";
}
.fa-tasks:before {
  content: "\F0AE";
}
.fa-filter:before {
  content: "\F0B0";
}
.fa-briefcase:before {
  content: "\F0B1";
}
.fa-arrows-alt:before {
  content: "\F0B2";
}
.fa-group:before,
.fa-users:before {
  content: "\F0C0";
}
.fa-chain:before,
.fa-link:before {
  content: "\F0C1";
}
.fa-cloud:before {
  content: "\F0C2";
}
.fa-flask:before {
  content: "\F0C3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\F0C4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\F0C5";
}
.fa-paperclip:before {
  content: "\F0C6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\F0C7";
}
.fa-square:before {
  content: "\F0C8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\F0C9";
}
.fa-list-ul:before {
  content: "\F0CA";
}
.fa-list-ol:before {
  content: "\F0CB";
}
.fa-strikethrough:before {
  content: "\F0CC";
}
.fa-underline:before {
  content: "\F0CD";
}
.fa-table:before {
  content: "\F0CE";
}
.fa-magic:before {
  content: "\F0D0";
}
.fa-truck:before {
  content: "\F0D1";
}
.fa-pinterest:before {
  content: "\F0D2";
}
.fa-pinterest-square:before {
  content: "\F0D3";
}
.fa-google-plus-square:before {
  content: "\F0D4";
}
.fa-google-plus:before {
  content: "\F0D5";
}
.fa-money:before {
  content: "\F0D6";
}
.fa-caret-down:before {
  content: "\F0D7";
}
.fa-caret-up:before {
  content: "\F0D8";
}
.fa-caret-left:before {
  content: "\F0D9";
}
.fa-caret-right:before {
  content: "\F0DA";
}
.fa-columns:before {
  content: "\F0DB";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\F0DC";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\F0DD";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\F0DE";
}
.fa-envelope:before {
  content: "\F0E0";
}
.fa-linkedin:before {
  content: "\F0E1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\F0E2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\F0E3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\F0E4";
}
.fa-comment-o:before {
  content: "\F0E5";
}
.fa-comments-o:before {
  content: "\F0E6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\F0E7";
}
.fa-sitemap:before {
  content: "\F0E8";
}
.fa-umbrella:before {
  content: "\F0E9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\F0EA";
}
.fa-lightbulb-o:before {
  content: "\F0EB";
}
.fa-exchange:before {
  content: "\F0EC";
}
.fa-cloud-download:before {
  content: "\F0ED";
}
.fa-cloud-upload:before {
  content: "\F0EE";
}
.fa-user-md:before {
  content: "\F0F0";
}
.fa-stethoscope:before {
  content: "\F0F1";
}
.fa-suitcase:before {
  content: "\F0F2";
}
.fa-bell-o:before {
  content: "\F0A2";
}
.fa-coffee:before {
  content: "\F0F4";
}
.fa-cutlery:before {
  content: "\F0F5";
}
.fa-file-text-o:before {
  content: "\F0F6";
}
.fa-building-o:before {
  content: "\F0F7";
}
.fa-hospital-o:before {
  content: "\F0F8";
}
.fa-ambulance:before {
  content: "\F0F9";
}
.fa-medkit:before {
  content: "\F0FA";
}
.fa-fighter-jet:before {
  content: "\F0FB";
}
.fa-beer:before {
  content: "\F0FC";
}
.fa-h-square:before {
  content: "\F0FD";
}
.fa-plus-square:before {
  content: "\F0FE";
}
.fa-angle-double-left:before {
  content: "\F100";
}
.fa-angle-double-right:before {
  content: "\F101";
}
.fa-angle-double-up:before {
  content: "\F102";
}
.fa-angle-double-down:before {
  content: "\F103";
}
.fa-angle-left:before {
  content: "\F104";
}
.fa-angle-right:before {
  content: "\F105";
}
.fa-angle-up:before {
  content: "\F106";
}
.fa-angle-down:before {
  content: "\F107";
}
.fa-desktop:before {
  content: "\F108";
}
.fa-laptop:before {
  content: "\F109";
}
.fa-tablet:before {
  content: "\F10A";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\F10B";
}
.fa-circle-o:before {
  content: "\F10C";
}
.fa-quote-left:before {
  content: "\F10D";
}
.fa-quote-right:before {
  content: "\F10E";
}
.fa-spinner:before {
  content: "\F110";
}
.fa-circle:before {
  content: "\F111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\F112";
}
.fa-github-alt:before {
  content: "\F113";
}
.fa-folder-o:before {
  content: "\F114";
}
.fa-folder-open-o:before {
  content: "\F115";
}
.fa-smile-o:before {
  content: "\F118";
}
.fa-frown-o:before {
  content: "\F119";
}
.fa-meh-o:before {
  content: "\F11A";
}
.fa-gamepad:before {
  content: "\F11B";
}
.fa-keyboard-o:before {
  content: "\F11C";
}
.fa-flag-o:before {
  content: "\F11D";
}
.fa-flag-checkered:before {
  content: "\F11E";
}
.fa-terminal:before {
  content: "\F120";
}
.fa-code:before {
  content: "\F121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\F122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\F123";
}
.fa-location-arrow:before {
  content: "\F124";
}
.fa-crop:before {
  content: "\F125";
}
.fa-code-fork:before {
  content: "\F126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\F127";
}
.fa-question:before {
  content: "\F128";
}
.fa-info:before {
  content: "\F129";
}
.fa-exclamation:before {
  content: "\F12A";
}
.fa-superscript:before {
  content: "\F12B";
}
.fa-subscript:before {
  content: "\F12C";
}
.fa-eraser:before {
  content: "\F12D";
}
.fa-puzzle-piece:before {
  content: "\F12E";
}
.fa-microphone:before {
  content: "\F130";
}
.fa-microphone-slash:before {
  content: "\F131";
}
.fa-shield:before {
  content: "\F132";
}
.fa-calendar-o:before {
  content: "\F133";
}
.fa-fire-extinguisher:before {
  content: "\F134";
}
.fa-rocket:before {
  content: "\F135";
}
.fa-maxcdn:before {
  content: "\F136";
}
.fa-chevron-circle-left:before {
  content: "\F137";
}
.fa-chevron-circle-right:before {
  content: "\F138";
}
.fa-chevron-circle-up:before {
  content: "\F139";
}
.fa-chevron-circle-down:before {
  content: "\F13A";
}
.fa-html5:before {
  content: "\F13B";
}
.fa-css3:before {
  content: "\F13C";
}
.fa-anchor:before {
  content: "\F13D";
}
.fa-unlock-alt:before {
  content: "\F13E";
}
.fa-bullseye:before {
  content: "\F140";
}
.fa-ellipsis-h:before {
  content: "\F141";
}
.fa-ellipsis-v:before {
  content: "\F142";
}
.fa-rss-square:before {
  content: "\F143";
}
.fa-play-circle:before {
  content: "\F144";
}
.fa-ticket:before {
  content: "\F145";
}
.fa-minus-square:before {
  content: "\F146";
}
.fa-minus-square-o:before {
  content: "\F147";
}
.fa-level-up:before {
  content: "\F148";
}
.fa-level-down:before {
  content: "\F149";
}
.fa-check-square:before {
  content: "\F14A";
}
.fa-pencil-square:before {
  content: "\F14B";
}
.fa-external-link-square:before {
  content: "\F14C";
}
.fa-share-square:before {
  content: "\F14D";
}
.fa-compass:before {
  content: "\F14E";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\F150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\F151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\F152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\F153";
}
.fa-gbp:before {
  content: "\F154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\F155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\F156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\F157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\F158";
}
.fa-won:before,
.fa-krw:before {
  content: "\F159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\F15A";
}
.fa-file:before {
  content: "\F15B";
}
.fa-file-text:before {
  content: "\F15C";
}
.fa-sort-alpha-asc:before {
  content: "\F15D";
}
.fa-sort-alpha-desc:before {
  content: "\F15E";
}
.fa-sort-amount-asc:before {
  content: "\F160";
}
.fa-sort-amount-desc:before {
  content: "\F161";
}
.fa-sort-numeric-asc:before {
  content: "\F162";
}
.fa-sort-numeric-desc:before {
  content: "\F163";
}
.fa-thumbs-up:before {
  content: "\F164";
}
.fa-thumbs-down:before {
  content: "\F165";
}
.fa-youtube-square:before {
  content: "\F166";
}
.fa-youtube:before {
  content: "\F167";
}
.fa-xing:before {
  content: "\F168";
}
.fa-xing-square:before {
  content: "\F169";
}
.fa-youtube-play:before {
  content: "\F16A";
}
.fa-dropbox:before {
  content: "\F16B";
}
.fa-stack-overflow:before {
  content: "\F16C";
}
.fa-instagram:before {
  content: "\F16D";
}
.fa-flickr:before {
  content: "\F16E";
}
.fa-adn:before {
  content: "\F170";
}
.fa-bitbucket:before {
  content: "\F171";
}
.fa-bitbucket-square:before {
  content: "\F172";
}
.fa-tumblr:before {
  content: "\F173";
}
.fa-tumblr-square:before {
  content: "\F174";
}
.fa-long-arrow-down:before {
  content: "\F175";
}
.fa-long-arrow-up:before {
  content: "\F176";
}
.fa-long-arrow-left:before {
  content: "\F177";
}
.fa-long-arrow-right:before {
  content: "\F178";
}
.fa-apple:before {
  content: "\F179";
}
.fa-windows:before {
  content: "\F17A";
}
.fa-android:before {
  content: "\F17B";
}
.fa-linux:before {
  content: "\F17C";
}
.fa-dribbble:before {
  content: "\F17D";
}
.fa-skype:before {
  content: "\F17E";
}
.fa-foursquare:before {
  content: "\F180";
}
.fa-trello:before {
  content: "\F181";
}
.fa-female:before {
  content: "\F182";
}
.fa-male:before {
  content: "\F183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\F184";
}
.fa-sun-o:before {
  content: "\F185";
}
.fa-moon-o:before {
  content: "\F186";
}
.fa-archive:before {
  content: "\F187";
}
.fa-bug:before {
  content: "\F188";
}
.fa-vk:before {
  content: "\F189";
}
.fa-weibo:before {
  content: "\F18A";
}
.fa-renren:before {
  content: "\F18B";
}
.fa-pagelines:before {
  content: "\F18C";
}
.fa-stack-exchange:before {
  content: "\F18D";
}
.fa-arrow-circle-o-right:before {
  content: "\F18E";
}
.fa-arrow-circle-o-left:before {
  content: "\F190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\F191";
}
.fa-dot-circle-o:before {
  content: "\F192";
}
.fa-wheelchair:before {
  content: "\F193";
}
.fa-vimeo-square:before {
  content: "\F194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\F195";
}
.fa-plus-square-o:before {
  content: "\F196";
}
.fa-space-shuttle:before {
  content: "\F197";
}
.fa-slack:before {
  content: "\F198";
}
.fa-envelope-square:before {
  content: "\F199";
}
.fa-wordpress:before {
  content: "\F19A";
}
.fa-openid:before {
  content: "\F19B";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\F19C";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\F19D";
}
.fa-yahoo:before {
  content: "\F19E";
}
.fa-google:before {
  content: "\F1A0";
}
.fa-reddit:before {
  content: "\F1A1";
}
.fa-reddit-square:before {
  content: "\F1A2";
}
.fa-stumbleupon-circle:before {
  content: "\F1A3";
}
.fa-stumbleupon:before {
  content: "\F1A4";
}
.fa-delicious:before {
  content: "\F1A5";
}
.fa-digg:before {
  content: "\F1A6";
}
.fa-pied-piper:before {
  content: "\F1A7";
}
.fa-pied-piper-alt:before {
  content: "\F1A8";
}
.fa-drupal:before {
  content: "\F1A9";
}
.fa-joomla:before {
  content: "\F1AA";
}
.fa-language:before {
  content: "\F1AB";
}
.fa-fax:before {
  content: "\F1AC";
}
.fa-building:before {
  content: "\F1AD";
}
.fa-child:before {
  content: "\F1AE";
}
.fa-paw:before {
  content: "\F1B0";
}
.fa-spoon:before {
  content: "\F1B1";
}
.fa-cube:before {
  content: "\F1B2";
}
.fa-cubes:before {
  content: "\F1B3";
}
.fa-behance:before {
  content: "\F1B4";
}
.fa-behance-square:before {
  content: "\F1B5";
}
.fa-steam:before {
  content: "\F1B6";
}
.fa-steam-square:before {
  content: "\F1B7";
}
.fa-recycle:before {
  content: "\F1B8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\F1B9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\F1BA";
}
.fa-tree:before {
  content: "\F1BB";
}
.fa-spotify:before {
  content: "\F1BC";
}
.fa-deviantart:before {
  content: "\F1BD";
}
.fa-soundcloud:before {
  content: "\F1BE";
}
.fa-database:before {
  content: "\F1C0";
}
.fa-file-pdf-o:before {
  content: "\F1C1";
}
.fa-file-word-o:before {
  content: "\F1C2";
}
.fa-file-excel-o:before {
  content: "\F1C3";
}
.fa-file-powerpoint-o:before {
  content: "\F1C4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\F1C5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\F1C6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\F1C7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\F1C8";
}
.fa-file-code-o:before {
  content: "\F1C9";
}
.fa-vine:before {
  content: "\F1CA";
}
.fa-codepen:before {
  content: "\F1CB";
}
.fa-jsfiddle:before {
  content: "\F1CC";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\F1CD";
}
.fa-circle-o-notch:before {
  content: "\F1CE";
}
.fa-ra:before,
.fa-rebel:before {
  content: "\F1D0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\F1D1";
}
.fa-git-square:before {
  content: "\F1D2";
}
.fa-git:before {
  content: "\F1D3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\F1D4";
}
.fa-tencent-weibo:before {
  content: "\F1D5";
}
.fa-qq:before {
  content: "\F1D6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\F1D7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\F1D8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\F1D9";
}
.fa-history:before {
  content: "\F1DA";
}
.fa-circle-thin:before {
  content: "\F1DB";
}
.fa-header:before {
  content: "\F1DC";
}
.fa-paragraph:before {
  content: "\F1DD";
}
.fa-sliders:before {
  content: "\F1DE";
}
.fa-share-alt:before {
  content: "\F1E0";
}
.fa-share-alt-square:before {
  content: "\F1E1";
}
.fa-bomb:before {
  content: "\F1E2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\F1E3";
}
.fa-tty:before {
  content: "\F1E4";
}
.fa-binoculars:before {
  content: "\F1E5";
}
.fa-plug:before {
  content: "\F1E6";
}
.fa-slideshare:before {
  content: "\F1E7";
}
.fa-twitch:before {
  content: "\F1E8";
}
.fa-yelp:before {
  content: "\F1E9";
}
.fa-newspaper-o:before {
  content: "\F1EA";
}
.fa-wifi:before {
  content: "\F1EB";
}
.fa-calculator:before {
  content: "\F1EC";
}
.fa-paypal:before {
  content: "\F1ED";
}
.fa-google-wallet:before {
  content: "\F1EE";
}
.fa-cc-visa:before {
  content: "\F1F0";
}
.fa-cc-mastercard:before {
  content: "\F1F1";
}
.fa-cc-discover:before {
  content: "\F1F2";
}
.fa-cc-amex:before {
  content: "\F1F3";
}
.fa-cc-paypal:before {
  content: "\F1F4";
}
.fa-cc-stripe:before {
  content: "\F1F5";
}
.fa-bell-slash:before {
  content: "\F1F6";
}
.fa-bell-slash-o:before {
  content: "\F1F7";
}
.fa-trash:before {
  content: "\F1F8";
}
.fa-copyright:before {
  content: "\F1F9";
}
.fa-at:before {
  content: "\F1FA";
}
.fa-eyedropper:before {
  content: "\F1FB";
}
.fa-paint-brush:before {
  content: "\F1FC";
}
.fa-birthday-cake:before {
  content: "\F1FD";
}
.fa-area-chart:before {
  content: "\F1FE";
}
.fa-pie-chart:before {
  content: "\F200";
}
.fa-line-chart:before {
  content: "\F201";
}
.fa-lastfm:before {
  content: "\F202";
}
.fa-lastfm-square:before {
  content: "\F203";
}
.fa-toggle-off:before {
  content: "\F204";
}
.fa-toggle-on:before {
  content: "\F205";
}
.fa-bicycle:before {
  content: "\F206";
}
.fa-bus:before {
  content: "\F207";
}
.fa-ioxhost:before {
  content: "\F208";
}
.fa-angellist:before {
  content: "\F209";
}
.fa-cc:before {
  content: "\F20A";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\F20B";
}
.fa-meanpath:before {
  content: "\F20C";
}
.fa-buysellads:before {
  content: "\F20D";
}
.fa-connectdevelop:before {
  content: "\F20E";
}
.fa-dashcube:before {
  content: "\F210";
}
.fa-forumbee:before {
  content: "\F211";
}
.fa-leanpub:before {
  content: "\F212";
}
.fa-sellsy:before {
  content: "\F213";
}
.fa-shirtsinbulk:before {
  content: "\F214";
}
.fa-simplybuilt:before {
  content: "\F215";
}
.fa-skyatlas:before {
  content: "\F216";
}
.fa-cart-plus:before {
  content: "\F217";
}
.fa-cart-arrow-down:before {
  content: "\F218";
}
.fa-diamond:before {
  content: "\F219";
}
.fa-ship:before {
  content: "\F21A";
}
.fa-user-secret:before {
  content: "\F21B";
}
.fa-motorcycle:before {
  content: "\F21C";
}
.fa-street-view:before {
  content: "\F21D";
}
.fa-heartbeat:before {
  content: "\F21E";
}
.fa-venus:before {
  content: "\F221";
}
.fa-mars:before {
  content: "\F222";
}
.fa-mercury:before {
  content: "\F223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\F224";
}
.fa-transgender-alt:before {
  content: "\F225";
}
.fa-venus-double:before {
  content: "\F226";
}
.fa-mars-double:before {
  content: "\F227";
}
.fa-venus-mars:before {
  content: "\F228";
}
.fa-mars-stroke:before {
  content: "\F229";
}
.fa-mars-stroke-v:before {
  content: "\F22A";
}
.fa-mars-stroke-h:before {
  content: "\F22B";
}
.fa-neuter:before {
  content: "\F22C";
}
.fa-genderless:before {
  content: "\F22D";
}
.fa-facebook-official:before {
  content: "\F230";
}
.fa-pinterest-p:before {
  content: "\F231";
}
.fa-whatsapp:before {
  content: "\F232";
}
.fa-server:before {
  content: "\F233";
}
.fa-user-plus:before {
  content: "\F234";
}
.fa-user-times:before {
  content: "\F235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\F236";
}
.fa-viacoin:before {
  content: "\F237";
}
.fa-train:before {
  content: "\F238";
}
.fa-subway:before {
  content: "\F239";
}
.fa-medium:before {
  content: "\F23A";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\F23B";
}
.fa-optin-monster:before {
  content: "\F23C";
}
.fa-opencart:before {
  content: "\F23D";
}
.fa-expeditedssl:before {
  content: "\F23E";
}
.fa-battery-4:before,
.fa-battery-full:before {
  content: "\F240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\F241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\F242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\F243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\F244";
}
.fa-mouse-pointer:before {
  content: "\F245";
}
.fa-i-cursor:before {
  content: "\F246";
}
.fa-object-group:before {
  content: "\F247";
}
.fa-object-ungroup:before {
  content: "\F248";
}
.fa-sticky-note:before {
  content: "\F249";
}
.fa-sticky-note-o:before {
  content: "\F24A";
}
.fa-cc-jcb:before {
  content: "\F24B";
}
.fa-cc-diners-club:before {
  content: "\F24C";
}
.fa-clone:before {
  content: "\F24D";
}
.fa-balance-scale:before {
  content: "\F24E";
}
.fa-hourglass-o:before {
  content: "\F250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\F251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\F252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\F253";
}
.fa-hourglass:before {
  content: "\F254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\F255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\F256";
}
.fa-hand-scissors-o:before {
  content: "\F257";
}
.fa-hand-lizard-o:before {
  content: "\F258";
}
.fa-hand-spock-o:before {
  content: "\F259";
}
.fa-hand-pointer-o:before {
  content: "\F25A";
}
.fa-hand-peace-o:before {
  content: "\F25B";
}
.fa-trademark:before {
  content: "\F25C";
}
.fa-registered:before {
  content: "\F25D";
}
.fa-creative-commons:before {
  content: "\F25E";
}
.fa-gg:before {
  content: "\F260";
}
.fa-gg-circle:before {
  content: "\F261";
}
.fa-tripadvisor:before {
  content: "\F262";
}
.fa-odnoklassniki:before {
  content: "\F263";
}
.fa-odnoklassniki-square:before {
  content: "\F264";
}
.fa-get-pocket:before {
  content: "\F265";
}
.fa-wikipedia-w:before {
  content: "\F266";
}
.fa-safari:before {
  content: "\F267";
}
.fa-chrome:before {
  content: "\F268";
}
.fa-firefox:before {
  content: "\F269";
}
.fa-opera:before {
  content: "\F26A";
}
.fa-internet-explorer:before {
  content: "\F26B";
}
.fa-tv:before,
.fa-television:before {
  content: "\F26C";
}
.fa-contao:before {
  content: "\F26D";
}
.fa-500px:before {
  content: "\F26E";
}
.fa-amazon:before {
  content: "\F270";
}
.fa-calendar-plus-o:before {
  content: "\F271";
}
.fa-calendar-minus-o:before {
  content: "\F272";
}
.fa-calendar-times-o:before {
  content: "\F273";
}
.fa-calendar-check-o:before {
  content: "\F274";
}
.fa-industry:before {
  content: "\F275";
}
.fa-map-pin:before {
  content: "\F276";
}
.fa-map-signs:before {
  content: "\F277";
}
.fa-map-o:before {
  content: "\F278";
}
.fa-map:before {
  content: "\F279";
}
.fa-commenting:before {
  content: "\F27A";
}
.fa-commenting-o:before {
  content: "\F27B";
}
.fa-houzz:before {
  content: "\F27C";
}
.fa-vimeo:before {
  content: "\F27D";
}
.fa-black-tie:before {
  content: "\F27E";
}
.fa-fonticons:before {
  content: "\F280";
}
@font-face {
  font-family: 'icons';
  src:  url(/assets/icons.eot);
  src:  url(/assets/icons.eot#iefix) format('embedded-opentype'),
    url(/assets/icons.ttf) format('truetype'),
    url(/assets/icons.woff) format('woff'),
    url(/assets/icons.svg#icons) format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icons' !important;
  speak: never;
  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;
}

.icon-bk-circle:before {
  content: "\E94B";
}
.icon-bk-arrow-large-right:before {
  content: "\E949";
}
.icon-bk-trash:before {
  content: "\E94A";
}
.icon-bk-plus:before {
  content: "\E945";
}
.icon-bk-kebab:before {
  content: "\E946";
}
.icon-bk-circle-active:before {
  content: "\E947";
}
.icon-bk-small-answer:before {
  content: "\E948";
}
.icon-bk-history:before {
  content: "\E944";
}
.icon-bk-trash-line:before {
  content: "\E943";
}
.icon-bk-download:before {
  content: "\E93F";
}
.icon-bk-link-external:before {
  content: "\E940";
}
.icon-bk-refund:before {
  content: "\E941";
}
.icon-bk-share-alt:before {
  content: "\E942";
}
.icon-bk-copy:before {
  content: "\E93D";
}
.icon-bk-whatsapp:before {
  content: "\E93E";
}
.icon-rotate-right-alt:before {
  content: "\E93C";
}
.icon-jg-cash:before {
  content: "\E938";
}
.icon-jg-credit-card:before {
  content: "\E939";
}
.icon-jg-circle-check:before {
  content: "\E93A";
}
.icon-jg-circle-check-active:before {
  content: "\E93B";
}
.icon-ga-minus:before {
  content: "\E937";
}
.icon-jg-user-invitado:before {
  content: "\E936";
}
.icon-jg-search-alt:before {
  content: "\E935";
}
.icon-jg-trash:before {
  content: "\E934";
}
.icon-jg-user-plus:before {
  content: "\E930";
}
.icon-jg-user-alt:before {
  content: "\E931";
}
.icon-jg-edit-alt:before {
  content: "\E932";
}
.icon-jg-arrow-left-right:before {
  content: "\E933";
}
.icon-people-1:before {
  content: "\E92F";
}
.icon-ga-alert-circle:before {
  content: "\E90E";
}
.icon-ga-caret-down:before {
  content: "\E90F";
}
.icon-ga-angle-right-b:before {
  content: "\E910";
}
.icon-ga-arrow-left:before {
  content: "\E911";
}
.icon-ga-arrow-left-circle:before {
  content: "\E912";
}
.icon-ga-arrow-down-up:before {
  content: "\E913";
}
.icon-ga-burguer-menu:before {
  content: "\E914";
}
.icon-ga-calendar-alt:before {
  content: "\E915";
}
.icon-ga-chart-13:before {
  content: "\E916";
}
.icon-ga-chart-pie:before {
  content: "\E917";
}
.icon-ga-check-circle:before {
  content: "\E918";
}
.icon-ga-envelope-add:before {
  content: "\E919";
}
.icon-ga-file-info-alt:before {
  content: "\E91A";
}
.icon-ga-house-user:before {
  content: "\E91B";
}
.icon-ga-padlock:before {
  content: "\E91C";
}
.icon-ga-phone:before {
  content: "\E91D";
}
.icon-ga-plus:before {
  content: "\E91E";
}
.icon-ga-plus-circle:before {
  content: "\E91F";
}
.icon-ga-pricetag-alt:before {
  content: "\E920";
}
.icon-ga-qrcode-scan:before {
  content: "\E921";
}
.icon-ga-share-alt:before {
  content: "\E922";
}
.icon-ga-shopping-cart-alt:before {
  content: "\E923";
}
.icon-ga-sliders-v-alt:before {
  content: "\E924";
}
.icon-ga-square-shape:before {
  content: "\E925";
}
.icon-ga-ticket-alt:before {
  content: "\E926";
}
.icon-ga-user:before {
  content: "\E927";
}
.icon-ga-users-alt:before {
  content: "\E928";
}
.icon-ga-user-times:before {
  content: "\E929";
}
.icon-ga-whatsapp:before {
  content: "\E92A";
}
.icon-ga-inscription:before {
  content: "\E90D";
}
.icon-ga-ticket:before {
  content: "\E90A";
}
.icon-ga-tickets:before {
  content: "\E90B";
}
.icon-ga-cards:before {
  content: "\E90C";
}
.icon-asterisk:before {
  content: "\F069";
}
.icon-plus:before {
  content: "\F067";
}
.icon-question:before {
  content: "\F128";
}
.icon-minus:before {
  content: "\F068";
}
.icon-glass:before {
  content: "\F000";
}
.icon-music:before {
  content: "\F001";
}
.icon-search:before {
  content: "\F002";
}
.icon-envelope-o:before {
  content: "\F003";
}
.icon-heart:before {
  content: "\F004";
}
.icon-star:before {
  content: "\F005";
}
.icon-star-o:before {
  content: "\F006";
}
.icon-user:before {
  content: "\F007";
}
.icon-film:before {
  content: "\F008";
}
.icon-th-large:before {
  content: "\F009";
}
.icon-th:before {
  content: "\F00A";
}
.icon-th-list:before {
  content: "\F00B";
}
.icon-check:before {
  content: "\F00C";
}
.icon-close:before {
  content: "\F00D";
}
.icon-remove:before {
  content: "\F00D";
}
.icon-times:before {
  content: "\F00D";
}
.icon-search-plus:before {
  content: "\F00E";
}
.icon-search-minus:before {
  content: "\F010";
}
.icon-power-off:before {
  content: "\F011";
}
.icon-signal:before {
  content: "\F012";
}
.icon-cog:before {
  content: "\F013";
}
.icon-gear:before {
  content: "\F013";
}
.icon-trash-o:before {
  content: "\F014";
}
.icon-home:before {
  content: "\F015";
}
.icon-file-o:before {
  content: "\F016";
}
.icon-clock-o:before {
  content: "\F017";
}
.icon-road:before {
  content: "\F018";
}
.icon-download:before {
  content: "\F019";
}
.icon-arrow-circle-o-down:before {
  content: "\F01A";
}
.icon-arrow-circle-o-up:before {
  content: "\F01B";
}
.icon-inbox:before {
  content: "\F01C";
}
.icon-play-circle-o:before {
  content: "\F01D";
}
.icon-repeat:before {
  content: "\F01E";
}
.icon-rotate-right:before {
  content: "\F01E";
}
.icon-refresh:before {
  content: "\F021";
}
.icon-list-alt:before {
  content: "\F022";
}
.icon-lock:before {
  content: "\F023";
}
.icon-flag:before {
  content: "\F024";
}
.icon-headphones:before {
  content: "\F025";
}
.icon-volume-off:before {
  content: "\F026";
}
.icon-volume-down:before {
  content: "\F027";
}
.icon-volume-up:before {
  content: "\F028";
}
.icon-qrcode:before {
  content: "\F029";
}
.icon-barcode:before {
  content: "\F02A";
}
.icon-tag:before {
  content: "\F02B";
}
.icon-tags:before {
  content: "\F02C";
}
.icon-book:before {
  content: "\F02D";
}
.icon-bookmark:before {
  content: "\F02E";
}
.icon-print:before {
  content: "\F02F";
}
.icon-camera:before {
  content: "\F030";
}
.icon-font:before {
  content: "\F031";
}
.icon-bold:before {
  content: "\F032";
}
.icon-italic:before {
  content: "\F033";
}
.icon-text-height:before {
  content: "\F034";
}
.icon-text-width:before {
  content: "\F035";
}
.icon-align-left:before {
  content: "\F036";
}
.icon-align-center:before {
  content: "\F037";
}
.icon-align-right:before {
  content: "\F038";
}
.icon-align-justify:before {
  content: "\F039";
}
.icon-list:before {
  content: "\F03A";
}
.icon-dedent:before {
  content: "\F03B";
}
.icon-outdent:before {
  content: "\F03B";
}
.icon-indent:before {
  content: "\F03C";
}
.icon-video-camera:before {
  content: "\F03D";
}
.icon-image:before {
  content: "\F03E";
}
.icon-photo:before {
  content: "\F03E";
}
.icon-picture-o:before {
  content: "\F03E";
}
.icon-pencil:before {
  content: "\F040";
}
.icon-map-marker:before {
  content: "\F041";
}
.icon-adjust:before {
  content: "\F042";
}
.icon-tint:before {
  content: "\F043";
}
.icon-edit:before {
  content: "\F044";
}
.icon-pencil-square-o:before {
  content: "\F044";
}
.icon-share-square-o:before {
  content: "\F045";
}
.icon-check-square-o:before {
  content: "\F046";
}
.icon-arrows:before {
  content: "\F047";
}
.icon-step-backward:before {
  content: "\F048";
}
.icon-fast-backward:before {
  content: "\F049";
}
.icon-backward:before {
  content: "\F04A";
}
.icon-play:before {
  content: "\F04B";
}
.icon-pause:before {
  content: "\F04C";
}
.icon-stop:before {
  content: "\F04D";
}
.icon-forward:before {
  content: "\F04E";
}
.icon-fast-forward:before {
  content: "\F050";
}
.icon-step-forward:before {
  content: "\F051";
}
.icon-eject:before {
  content: "\F052";
}
.icon-chevron-left:before {
  content: "\F053";
}
.icon-chevron-right:before {
  content: "\F054";
}
.icon-plus-circle:before {
  content: "\F055";
}
.icon-minus-circle:before {
  content: "\F056";
}
.icon-times-circle:before {
  content: "\F057";
}
.icon-check-circle:before {
  content: "\F058";
}
.icon-question-circle:before {
  content: "\F059";
}
.icon-info-circle:before {
  content: "\F05A";
}
.icon-crosshairs:before {
  content: "\F05B";
}
.icon-times-circle-o:before {
  content: "\F05C";
}
.icon-check-circle-o:before {
  content: "\F05D";
}
.icon-ban:before {
  content: "\F05E";
}
.icon-arrow-left:before {
  content: "\F060";
}
.icon-arrow-right:before {
  content: "\F061";
}
.icon-arrow-up:before {
  content: "\F062";
}
.icon-arrow-down:before {
  content: "\F063";
}
.icon-mail-forward:before {
  content: "\F064";
}
.icon-share:before {
  content: "\F064";
}
.icon-expand:before {
  content: "\F065";
}
.icon-compress:before {
  content: "\F066";
}
.icon-exclamation-circle:before {
  content: "\F06A";
}
.icon-gift:before {
  content: "\F06B";
}
.icon-leaf:before {
  content: "\F06C";
}
.icon-fire:before {
  content: "\F06D";
}
.icon-eye:before {
  content: "\F06E";
}
.icon-eye-slash:before {
  content: "\F070";
}
.icon-exclamation-triangle:before {
  content: "\F071";
}
.icon-warning:before {
  content: "\F071";
}
.icon-plane:before {
  content: "\F072";
}
.icon-calendar:before {
  content: "\F073";
}
.icon-random:before {
  content: "\F074";
}
.icon-comment:before {
  content: "\F075";
}
.icon-magnet:before {
  content: "\F076";
}
.icon-chevron-up:before {
  content: "\F077";
}
.icon-chevron-down:before {
  content: "\F078";
}
.icon-retweet:before {
  content: "\F079";
}
.icon-shopping-cart:before {
  content: "\F07A";
}
.icon-folder:before {
  content: "\F07B";
}
.icon-folder-open:before {
  content: "\F07C";
}
.icon-arrows-v:before {
  content: "\F07D";
}
.icon-arrows-h:before {
  content: "\F07E";
}
.icon-bar-chart:before {
  content: "\F080";
}
.icon-bar-chart-o:before {
  content: "\F080";
}
.icon-twitter-square:before {
  content: "\F081";
}
.icon-facebook-square:before {
  content: "\F082";
}
.icon-camera-retro:before {
  content: "\F083";
}
.icon-key:before {
  content: "\F084";
}
.icon-cogs:before {
  content: "\F085";
}
.icon-gears:before {
  content: "\F085";
}
.icon-comments:before {
  content: "\F086";
}
.icon-thumbs-o-up:before {
  content: "\F087";
}
.icon-thumbs-o-down:before {
  content: "\F088";
}
.icon-star-half:before {
  content: "\F089";
}
.icon-heart-o:before {
  content: "\F08A";
}
.icon-sign-out:before {
  content: "\F08B";
}
.icon-linkedin-square:before {
  content: "\F08C";
}
.icon-thumb-tack:before {
  content: "\F08D";
}
.icon-external-link:before {
  content: "\F08E";
}
.icon-sign-in:before {
  content: "\F090";
}
.icon-trophy:before {
  content: "\F091";
}
.icon-github-square:before {
  content: "\F092";
}
.icon-upload:before {
  content: "\F093";
}
.icon-lemon-o:before {
  content: "\F094";
}
.icon-phone:before {
  content: "\F095";
}
.icon-square-o:before {
  content: "\F096";
}
.icon-bookmark-o:before {
  content: "\F097";
}
.icon-phone-square:before {
  content: "\F098";
}
.icon-twitter:before {
  content: "\F099";
}
.icon-facebook:before {
  content: "\F09A";
}
.icon-facebook-f:before {
  content: "\F09A";
}
.icon-github:before {
  content: "\F09B";
}
.icon-unlock:before {
  content: "\F09C";
}
.icon-credit-card1:before {
  content: "\F09D";
}
.icon-feed:before {
  content: "\F09E";
}
.icon-rss:before {
  content: "\F09E";
}
.icon-hdd-o:before {
  content: "\F0A0";
}
.icon-bullhorn:before {
  content: "\F0A1";
}
.icon-bell-o:before {
  content: "\F0A2";
}
.icon-certificate:before {
  content: "\F0A3";
}
.icon-hand-o-right:before {
  content: "\F0A4";
}
.icon-hand-o-left:before {
  content: "\F0A5";
}
.icon-hand-o-up:before {
  content: "\F0A6";
}
.icon-hand-o-down:before {
  content: "\F0A7";
}
.icon-arrow-circle-left:before {
  content: "\F0A8";
}
.icon-arrow-circle-right:before {
  content: "\F0A9";
}
.icon-arrow-circle-up:before {
  content: "\F0AA";
}
.icon-arrow-circle-down:before {
  content: "\F0AB";
}
.icon-globe:before {
  content: "\F0AC";
}
.icon-wrench:before {
  content: "\F0AD";
}
.icon-tasks:before {
  content: "\F0AE";
}
.icon-filter:before {
  content: "\F0B0";
}
.icon-briefcase:before {
  content: "\F0B1";
}
.icon-arrows-alt:before {
  content: "\F0B2";
}
.icon-group:before {
  content: "\F0C0";
}
.icon-users:before {
  content: "\F0C0";
}
.icon-chain:before {
  content: "\F0C1";
}
.icon-link:before {
  content: "\F0C1";
}
.icon-cloud:before {
  content: "\F0C2";
}
.icon-flask:before {
  content: "\F0C3";
}
.icon-cut:before {
  content: "\F0C4";
}
.icon-scissors:before {
  content: "\F0C4";
}
.icon-copy:before {
  content: "\F0C5";
}
.icon-files-o:before {
  content: "\F0C5";
}
.icon-paperclip:before {
  content: "\F0C6";
}
.icon-floppy-o:before {
  content: "\F0C7";
}
.icon-save:before {
  content: "\F0C7";
}
.icon-square:before {
  content: "\F0C8";
}
.icon-bars:before {
  content: "\F0C9";
}
.icon-navicon:before {
  content: "\F0C9";
}
.icon-reorder:before {
  content: "\F0C9";
}
.icon-list-ul:before {
  content: "\F0CA";
}
.icon-list-ol:before {
  content: "\F0CB";
}
.icon-strikethrough:before {
  content: "\F0CC";
}
.icon-underline:before {
  content: "\F0CD";
}
.icon-table:before {
  content: "\F0CE";
}
.icon-magic:before {
  content: "\F0D0";
}
.icon-truck:before {
  content: "\F0D1";
}
.icon-pinterest:before {
  content: "\F0D2";
}
.icon-pinterest-square:before {
  content: "\F0D3";
}
.icon-google-plus-square:before {
  content: "\F0D4";
}
.icon-google-plus:before {
  content: "\F0D5";
}
.icon-money:before {
  content: "\F0D6";
}
.icon-caret-down:before {
  content: "\F0D7";
}
.icon-caret-up:before {
  content: "\F0D8";
}
.icon-caret-left:before {
  content: "\F0D9";
}
.icon-caret-right:before {
  content: "\F0DA";
}
.icon-columns:before {
  content: "\F0DB";
}
.icon-sort:before {
  content: "\F0DC";
}
.icon-unsorted:before {
  content: "\F0DC";
}
.icon-sort-desc:before {
  content: "\F0DD";
}
.icon-sort-down:before {
  content: "\F0DD";
}
.icon-sort-asc:before {
  content: "\F0DE";
}
.icon-sort-up:before {
  content: "\F0DE";
}
.icon-envelope:before {
  content: "\F0E0";
}
.icon-linkedin:before {
  content: "\F0E1";
}
.icon-rotate-left:before {
  content: "\F0E2";
}
.icon-undo:before {
  content: "\F0E2";
}
.icon-gavel:before {
  content: "\F0E3";
}
.icon-legal:before {
  content: "\F0E3";
}
.icon-dashboard:before {
  content: "\F0E4";
}
.icon-tachometer:before {
  content: "\F0E4";
}
.icon-comment-o:before {
  content: "\F0E5";
}
.icon-comments-o:before {
  content: "\F0E6";
}
.icon-bolt:before {
  content: "\F0E7";
}
.icon-flash:before {
  content: "\F0E7";
}
.icon-sitemap:before {
  content: "\F0E8";
}
.icon-umbrella:before {
  content: "\F0E9";
}
.icon-clipboard:before {
  content: "\F0EA";
}
.icon-paste:before {
  content: "\F0EA";
}
.icon-lightbulb-o:before {
  content: "\F0EB";
}
.icon-exchange:before {
  content: "\F0EC";
}
.icon-cloud-download:before {
  content: "\F0ED";
}
.icon-cloud-upload:before {
  content: "\F0EE";
}
.icon-user-md:before {
  content: "\F0F0";
}
.icon-stethoscope:before {
  content: "\F0F1";
}
.icon-suitcase:before {
  content: "\F0F2";
}
.icon-bell:before {
  content: "\F0F3";
}
.icon-coffee:before {
  content: "\F0F4";
}
.icon-cutlery:before {
  content: "\F0F5";
}
.icon-file-text-o:before {
  content: "\F0F6";
}
.icon-building-o:before {
  content: "\F0F7";
}
.icon-hospital-o:before {
  content: "\F0F8";
}
.icon-ambulance:before {
  content: "\F0F9";
}
.icon-medkit:before {
  content: "\F0FA";
}
.icon-fighter-jet:before {
  content: "\F0FB";
}
.icon-beer:before {
  content: "\F0FC";
}
.icon-h-square:before {
  content: "\F0FD";
}
.icon-plus-square:before {
  content: "\F0FE";
}
.icon-angle-double-left:before {
  content: "\F100";
}
.icon-angle-double-right:before {
  content: "\F101";
}
.icon-angle-double-up:before {
  content: "\F102";
}
.icon-angle-double-down:before {
  content: "\F103";
}
.icon-angle-left:before {
  content: "\F104";
}
.icon-angle-right:before {
  content: "\F105";
}
.icon-angle-up:before {
  content: "\F106";
}
.icon-angle-down:before {
  content: "\F107";
}
.icon-desktop:before {
  content: "\F108";
}
.icon-laptop:before {
  content: "\F109";
}
.icon-tablet:before {
  content: "\F10A";
}
.icon-mobile:before {
  content: "\F10B";
}
.icon-mobile-phone:before {
  content: "\F10B";
}
.icon-circle-o:before {
  content: "\F10C";
}
.icon-quote-left:before {
  content: "\F10D";
}
.icon-quote-right:before {
  content: "\F10E";
}
.icon-spinner:before {
  content: "\F110";
}
.icon-circle:before {
  content: "\F111";
}
.icon-mail-reply:before {
  content: "\F112";
}
.icon-reply:before {
  content: "\F112";
}
.icon-github-alt:before {
  content: "\F113";
}
.icon-folder-o:before {
  content: "\F114";
}
.icon-folder-open-o:before {
  content: "\F115";
}
.icon-smile-o:before {
  content: "\F118";
}
.icon-frown-o:before {
  content: "\F119";
}
.icon-meh-o:before {
  content: "\F11A";
}
.icon-gamepad:before {
  content: "\F11B";
}
.icon-keyboard-o:before {
  content: "\F11C";
}
.icon-flag-o:before {
  content: "\F11D";
}
.icon-flag-checkered:before {
  content: "\F11E";
}
.icon-terminal:before {
  content: "\F120";
}
.icon-code:before {
  content: "\F121";
}
.icon-mail-reply-all:before {
  content: "\F122";
}
.icon-reply-all:before {
  content: "\F122";
}
.icon-star-half-empty:before {
  content: "\F123";
}
.icon-star-half-full:before {
  content: "\F123";
}
.icon-star-half-o:before {
  content: "\F123";
}
.icon-location-arrow:before {
  content: "\F124";
}
.icon-crop:before {
  content: "\F125";
}
.icon-code-fork:before {
  content: "\F126";
}
.icon-chain-broken:before {
  content: "\F127";
}
.icon-unlink:before {
  content: "\F127";
}
.icon-info:before {
  content: "\F129";
}
.icon-exclamation:before {
  content: "\F12A";
}
.icon-superscript:before {
  content: "\F12B";
}
.icon-subscript:before {
  content: "\F12C";
}
.icon-eraser:before {
  content: "\F12D";
}
.icon-puzzle-piece:before {
  content: "\F12E";
}
.icon-microphone:before {
  content: "\F130";
}
.icon-microphone-slash:before {
  content: "\F131";
}
.icon-shield:before {
  content: "\F132";
}
.icon-calendar-o:before {
  content: "\F133";
}
.icon-fire-extinguisher:before {
  content: "\F134";
}
.icon-rocket:before {
  content: "\F135";
}
.icon-maxcdn:before {
  content: "\F136";
}
.icon-chevron-circle-left:before {
  content: "\F137";
}
.icon-chevron-circle-right:before {
  content: "\F138";
}
.icon-chevron-circle-up:before {
  content: "\F139";
}
.icon-chevron-circle-down:before {
  content: "\F13A";
}
.icon-html5:before {
  content: "\F13B";
}
.icon-css3:before {
  content: "\F13C";
}
.icon-anchor:before {
  content: "\F13D";
}
.icon-unlock-alt:before {
  content: "\F13E";
}
.icon-bullseye:before {
  content: "\F140";
}
.icon-ellipsis-h:before {
  content: "\F141";
}
.icon-ellipsis-v:before {
  content: "\F142";
}
.icon-rss-square:before {
  content: "\F143";
}
.icon-play-circle:before {
  content: "\F144";
}
.icon-ticket:before {
  content: "\F145";
}
.icon-minus-square:before {
  content: "\F146";
}
.icon-minus-square-o:before {
  content: "\F147";
}
.icon-level-up:before {
  content: "\F148";
}
.icon-level-down:before {
  content: "\F149";
}
.icon-check-square:before {
  content: "\F14A";
}
.icon-pencil-square:before {
  content: "\F14B";
}
.icon-external-link-square:before {
  content: "\F14C";
}
.icon-share-square:before {
  content: "\F14D";
}
.icon-compass:before {
  content: "\F14E";
}
.icon-caret-square-o-down:before {
  content: "\F150";
}
.icon-toggle-down:before {
  content: "\F150";
}
.icon-caret-square-o-up:before {
  content: "\F151";
}
.icon-toggle-up:before {
  content: "\F151";
}
.icon-caret-square-o-right:before {
  content: "\F152";
}
.icon-toggle-right:before {
  content: "\F152";
}
.icon-eur:before {
  content: "\F153";
}
.icon-euro:before {
  content: "\F153";
}
.icon-gbp:before {
  content: "\F154";
}
.icon-dollar:before {
  content: "\F155";
}
.icon-usd:before {
  content: "\F155";
}
.icon-inr:before {
  content: "\F156";
}
.icon-rupee:before {
  content: "\F156";
}
.icon-cny:before {
  content: "\F157";
}
.icon-jpy:before {
  content: "\F157";
}
.icon-rmb:before {
  content: "\F157";
}
.icon-yen:before {
  content: "\F157";
}
.icon-rouble:before {
  content: "\F158";
}
.icon-rub:before {
  content: "\F158";
}
.icon-ruble:before {
  content: "\F158";
}
.icon-krw:before {
  content: "\F159";
}
.icon-won:before {
  content: "\F159";
}
.icon-bitcoin:before {
  content: "\F15A";
}
.icon-btc:before {
  content: "\F15A";
}
.icon-file:before {
  content: "\F15B";
}
.icon-file-text:before {
  content: "\F15C";
}
.icon-sort-alpha-asc:before {
  content: "\F15D";
}
.icon-sort-alpha-desc:before {
  content: "\F15E";
}
.icon-sort-amount-asc:before {
  content: "\F160";
}
.icon-sort-amount-desc:before {
  content: "\F161";
}
.icon-sort-numeric-asc:before {
  content: "\F162";
}
.icon-sort-numeric-desc:before {
  content: "\F163";
}
.icon-thumbs-up:before {
  content: "\F164";
}
.icon-thumbs-down:before {
  content: "\F165";
}
.icon-youtube-square:before {
  content: "\F166";
}
.icon-youtube:before {
  content: "\F167";
}
.icon-xing:before {
  content: "\F168";
}
.icon-xing-square:before {
  content: "\F169";
}
.icon-youtube-play:before {
  content: "\F16A";
}
.icon-dropbox:before {
  content: "\F16B";
}
.icon-stack-overflow:before {
  content: "\F16C";
}
.icon-instagram:before {
  content: "\F16D";
}
.icon-flickr:before {
  content: "\F16E";
}
.icon-adn:before {
  content: "\F170";
}
.icon-bitbucket:before {
  content: "\F171";
}
.icon-bitbucket-square:before {
  content: "\F172";
}
.icon-tumblr:before {
  content: "\F173";
}
.icon-tumblr-square:before {
  content: "\F174";
}
.icon-long-arrow-down:before {
  content: "\F175";
}
.icon-long-arrow-up:before {
  content: "\F176";
}
.icon-long-arrow-left:before {
  content: "\F177";
}
.icon-long-arrow-right:before {
  content: "\F178";
}
.icon-apple:before {
  content: "\F179";
}
.icon-windows:before {
  content: "\F17A";
}
.icon-android:before {
  content: "\F17B";
}
.icon-linux:before {
  content: "\F17C";
}
.icon-dribbble:before {
  content: "\F17D";
}
.icon-skype:before {
  content: "\F17E";
}
.icon-foursquare:before {
  content: "\F180";
}
.icon-trello:before {
  content: "\F181";
}
.icon-female:before {
  content: "\F182";
}
.icon-male:before {
  content: "\F183";
}
.icon-gittip:before {
  content: "\F184";
}
.icon-gratipay:before {
  content: "\F184";
}
.icon-sun-o:before {
  content: "\F185";
}
.icon-moon-o:before {
  content: "\F186";
}
.icon-archive:before {
  content: "\F187";
}
.icon-bug:before {
  content: "\F188";
}
.icon-vk:before {
  content: "\F189";
}
.icon-weibo:before {
  content: "\F18A";
}
.icon-renren:before {
  content: "\F18B";
}
.icon-pagelines:before {
  content: "\F18C";
}
.icon-stack-exchange:before {
  content: "\F18D";
}
.icon-arrow-circle-o-right:before {
  content: "\F18E";
}
.icon-arrow-circle-o-left:before {
  content: "\F190";
}
.icon-caret-square-o-left:before {
  content: "\F191";
}
.icon-toggle-left:before {
  content: "\F191";
}
.icon-dot-circle-o:before {
  content: "\F192";
}
.icon-wheelchair:before {
  content: "\F193";
}
.icon-vimeo-square:before {
  content: "\F194";
}
.icon-try:before {
  content: "\F195";
}
.icon-turkish-lira:before {
  content: "\F195";
}
.icon-plus-square-o:before {
  content: "\F196";
}
.icon-space-shuttle:before {
  content: "\F197";
}
.icon-slack:before {
  content: "\F198";
}
.icon-envelope-square:before {
  content: "\F199";
}
.icon-wordpress:before {
  content: "\F19A";
}
.icon-openid:before {
  content: "\F19B";
}
.icon-bank:before {
  content: "\F19C";
}
.icon-institution:before {
  content: "\F19C";
}
.icon-university:before {
  content: "\F19C";
}
.icon-graduation-cap:before {
  content: "\F19D";
}
.icon-mortar-board:before {
  content: "\F19D";
}
.icon-yahoo:before {
  content: "\F19E";
}
.icon-google:before {
  content: "\F1A0";
}
.icon-reddit:before {
  content: "\F1A1";
}
.icon-reddit-square:before {
  content: "\F1A2";
}
.icon-stumbleupon-circle:before {
  content: "\F1A3";
}
.icon-stumbleupon:before {
  content: "\F1A4";
}
.icon-delicious:before {
  content: "\F1A5";
}
.icon-digg:before {
  content: "\F1A6";
}
.icon-pied-piper-pp:before {
  content: "\F1A7";
}
.icon-pied-piper-alt:before {
  content: "\F1A8";
}
.icon-drupal:before {
  content: "\F1A9";
}
.icon-joomla:before {
  content: "\F1AA";
}
.icon-language:before {
  content: "\F1AB";
}
.icon-fax:before {
  content: "\F1AC";
}
.icon-building:before {
  content: "\F1AD";
}
.icon-child:before {
  content: "\F1AE";
}
.icon-paw:before {
  content: "\F1B0";
}
.icon-spoon:before {
  content: "\F1B1";
}
.icon-cube:before {
  content: "\F1B2";
}
.icon-cubes:before {
  content: "\F1B3";
}
.icon-behance:before {
  content: "\F1B4";
}
.icon-behance-square:before {
  content: "\F1B5";
}
.icon-steam:before {
  content: "\F1B6";
}
.icon-steam-square:before {
  content: "\F1B7";
}
.icon-recycle:before {
  content: "\F1B8";
}
.icon-automobile:before {
  content: "\F1B9";
}
.icon-car:before {
  content: "\F1B9";
}
.icon-cab:before {
  content: "\F1BA";
}
.icon-taxi:before {
  content: "\F1BA";
}
.icon-tree:before {
  content: "\F1BB";
}
.icon-spotify:before {
  content: "\F1BC";
}
.icon-deviantart:before {
  content: "\F1BD";
}
.icon-soundcloud:before {
  content: "\F1BE";
}
.icon-database:before {
  content: "\F1C0";
}
.icon-file-pdf-o:before {
  content: "\F1C1";
}
.icon-file-word-o:before {
  content: "\F1C2";
}
.icon-file-excel-o:before {
  content: "\F1C3";
}
.icon-file-powerpoint-o:before {
  content: "\F1C4";
}
.icon-file-image-o:before {
  content: "\F1C5";
}
.icon-file-photo-o:before {
  content: "\F1C5";
}
.icon-file-picture-o:before {
  content: "\F1C5";
}
.icon-file-archive-o:before {
  content: "\F1C6";
}
.icon-file-zip-o:before {
  content: "\F1C6";
}
.icon-file-audio-o:before {
  content: "\F1C7";
}
.icon-file-sound-o:before {
  content: "\F1C7";
}
.icon-file-movie-o:before {
  content: "\F1C8";
}
.icon-file-video-o:before {
  content: "\F1C8";
}
.icon-file-code-o:before {
  content: "\F1C9";
}
.icon-vine:before {
  content: "\F1CA";
}
.icon-codepen:before {
  content: "\F1CB";
}
.icon-jsfiddle:before {
  content: "\F1CC";
}
.icon-life-bouy:before {
  content: "\F1CD";
}
.icon-life-buoy:before {
  content: "\F1CD";
}
.icon-life-ring:before {
  content: "\F1CD";
}
.icon-life-saver:before {
  content: "\F1CD";
}
.icon-support:before {
  content: "\F1CD";
}
.icon-circle-o-notch:before {
  content: "\F1CE";
}
.icon-ra:before {
  content: "\F1D0";
}
.icon-rebel:before {
  content: "\F1D0";
}
.icon-resistance:before {
  content: "\F1D0";
}
.icon-empire:before {
  content: "\F1D1";
}
.icon-ge:before {
  content: "\F1D1";
}
.icon-git-square:before {
  content: "\F1D2";
}
.icon-git:before {
  content: "\F1D3";
}
.icon-hacker-news:before {
  content: "\F1D4";
}
.icon-y-combinator-square:before {
  content: "\F1D4";
}
.icon-yc-square:before {
  content: "\F1D4";
}
.icon-tencent-weibo:before {
  content: "\F1D5";
}
.icon-qq:before {
  content: "\F1D6";
}
.icon-wechat:before {
  content: "\F1D7";
}
.icon-weixin:before {
  content: "\F1D7";
}
.icon-paper-plane:before {
  content: "\F1D8";
}
.icon-send:before {
  content: "\F1D8";
}
.icon-paper-plane-o:before {
  content: "\F1D9";
}
.icon-send-o:before {
  content: "\F1D9";
}
.icon-history:before {
  content: "\F1DA";
}
.icon-circle-thin:before {
  content: "\F1DB";
}
.icon-header:before {
  content: "\F1DC";
}
.icon-paragraph:before {
  content: "\F1DD";
}
.icon-sliders:before {
  content: "\F1DE";
}
.icon-share-alt:before {
  content: "\F1E0";
}
.icon-share-alt-square:before {
  content: "\F1E1";
}
.icon-bomb:before {
  content: "\F1E2";
}
.icon-futbol-o:before {
  content: "\F1E3";
}
.icon-soccer-ball-o:before {
  content: "\F1E3";
}
.icon-tty:before {
  content: "\F1E4";
}
.icon-binoculars:before {
  content: "\F1E5";
}
.icon-plug:before {
  content: "\F1E6";
}
.icon-slideshare:before {
  content: "\F1E7";
}
.icon-twitch:before {
  content: "\F1E8";
}
.icon-yelp:before {
  content: "\F1E9";
}
.icon-newspaper-o:before {
  content: "\F1EA";
}
.icon-wifi:before {
  content: "\F1EB";
}
.icon-calculator:before {
  content: "\F1EC";
}
.icon-paypal:before {
  content: "\F1ED";
}
.icon-google-wallet:before {
  content: "\F1EE";
}
.icon-cc-visa:before {
  content: "\F1F0";
}
.icon-cc-mastercard:before {
  content: "\F1F1";
}
.icon-cc-discover:before {
  content: "\F1F2";
}
.icon-cc-amex:before {
  content: "\F1F3";
}
.icon-cc-paypal:before {
  content: "\F1F4";
}
.icon-cc-stripe:before {
  content: "\F1F5";
}
.icon-bell-slash:before {
  content: "\F1F6";
}
.icon-bell-slash-o:before {
  content: "\F1F7";
}
.icon-trash:before {
  content: "\F1F8";
}
.icon-copyright:before {
  content: "\F1F9";
}
.icon-at:before {
  content: "\F1FA";
}
.icon-eyedropper:before {
  content: "\F1FB";
}
.icon-paint-brush:before {
  content: "\F1FC";
}
.icon-birthday-cake:before {
  content: "\F1FD";
}
.icon-area-chart:before {
  content: "\F1FE";
}
.icon-pie-chart:before {
  content: "\F200";
}
.icon-line-chart:before {
  content: "\F201";
}
.icon-lastfm:before {
  content: "\F202";
}
.icon-lastfm-square:before {
  content: "\F203";
}
.icon-toggle-off:before {
  content: "\F204";
}
.icon-toggle-on:before {
  content: "\F205";
}
.icon-bicycle:before {
  content: "\F206";
}
.icon-bus:before {
  content: "\F207";
}
.icon-ioxhost:before {
  content: "\F208";
}
.icon-angellist:before {
  content: "\F209";
}
.icon-cc:before {
  content: "\F20A";
}
.icon-ils:before {
  content: "\F20B";
}
.icon-shekel:before {
  content: "\F20B";
}
.icon-sheqel:before {
  content: "\F20B";
}
.icon-meanpath:before {
  content: "\F20C";
}
.icon-buysellads:before {
  content: "\F20D";
}
.icon-connectdevelop:before {
  content: "\F20E";
}
.icon-dashcube:before {
  content: "\F210";
}
.icon-forumbee:before {
  content: "\F211";
}
.icon-leanpub:before {
  content: "\F212";
}
.icon-sellsy:before {
  content: "\F213";
}
.icon-shirtsinbulk:before {
  content: "\F214";
}
.icon-simplybuilt:before {
  content: "\F215";
}
.icon-skyatlas:before {
  content: "\F216";
}
.icon-cart-plus:before {
  content: "\F217";
}
.icon-cart-arrow-down:before {
  content: "\F218";
}
.icon-diamond:before {
  content: "\F219";
}
.icon-ship:before {
  content: "\F21A";
}
.icon-user-secret:before {
  content: "\F21B";
}
.icon-motorcycle:before {
  content: "\F21C";
}
.icon-street-view:before {
  content: "\F21D";
}
.icon-heartbeat:before {
  content: "\F21E";
}
.icon-venus:before {
  content: "\F221";
}
.icon-mars:before {
  content: "\F222";
}
.icon-mercury:before {
  content: "\F223";
}
.icon-intersex:before {
  content: "\F224";
}
.icon-transgender:before {
  content: "\F224";
}
.icon-transgender-alt:before {
  content: "\F225";
}
.icon-venus-double:before {
  content: "\F226";
}
.icon-mars-double:before {
  content: "\F227";
}
.icon-venus-mars:before {
  content: "\F228";
}
.icon-mars-stroke:before {
  content: "\F229";
}
.icon-mars-stroke-v:before {
  content: "\F22A";
}
.icon-mars-stroke-h:before {
  content: "\F22B";
}
.icon-neuter:before {
  content: "\F22C";
}
.icon-genderless:before {
  content: "\F22D";
}
.icon-facebook-official:before {
  content: "\F230";
}
.icon-pinterest-p:before {
  content: "\F231";
}
.icon-whatsapp:before {
  content: "\F232";
}
.icon-server:before {
  content: "\F233";
}
.icon-user-plus:before {
  content: "\F234";
}
.icon-user-times:before {
  content: "\F235";
}
.icon-bed:before {
  content: "\F236";
}
.icon-hotel:before {
  content: "\F236";
}
.icon-viacoin:before {
  content: "\F237";
}
.icon-train:before {
  content: "\F238";
}
.icon-subway:before {
  content: "\F239";
}
.icon-medium:before {
  content: "\F23A";
}
.icon-y-combinator:before {
  content: "\F23B";
}
.icon-yc:before {
  content: "\F23B";
}
.icon-optin-monster:before {
  content: "\F23C";
}
.icon-opencart:before {
  content: "\F23D";
}
.icon-expeditedssl:before {
  content: "\F23E";
}
.icon-battery:before {
  content: "\F240";
}
.icon-battery-4:before {
  content: "\F240";
}
.icon-battery-full:before {
  content: "\F240";
}
.icon-battery-3:before {
  content: "\F241";
}
.icon-battery-three-quarters:before {
  content: "\F241";
}
.icon-battery-2:before {
  content: "\F242";
}
.icon-battery-half:before {
  content: "\F242";
}
.icon-battery-1:before {
  content: "\F243";
}
.icon-battery-quarter:before {
  content: "\F243";
}
.icon-battery-0:before {
  content: "\F244";
}
.icon-battery-empty:before {
  content: "\F244";
}
.icon-mouse-pointer:before {
  content: "\F245";
}
.icon-i-cursor:before {
  content: "\F246";
}
.icon-object-group:before {
  content: "\F247";
}
.icon-object-ungroup:before {
  content: "\F248";
}
.icon-sticky-note:before {
  content: "\F249";
}
.icon-sticky-note-o:before {
  content: "\F24A";
}
.icon-cc-jcb:before {
  content: "\F24B";
}
.icon-cc-diners-club:before {
  content: "\F24C";
}
.icon-clone:before {
  content: "\F24D";
}
.icon-balance-scale:before {
  content: "\F24E";
}
.icon-hourglass-o:before {
  content: "\F250";
}
.icon-hourglass-1:before {
  content: "\F251";
}
.icon-hourglass-start:before {
  content: "\F251";
}
.icon-hourglass-2:before {
  content: "\F252";
}
.icon-hourglass-half:before {
  content: "\F252";
}
.icon-hourglass-3:before {
  content: "\F253";
}
.icon-hourglass-end:before {
  content: "\F253";
}
.icon-hourglass:before {
  content: "\F254";
}
.icon-hand-grab-o:before {
  content: "\F255";
}
.icon-hand-rock-o:before {
  content: "\F255";
}
.icon-hand-paper-o:before {
  content: "\F256";
}
.icon-hand-stop-o:before {
  content: "\F256";
}
.icon-hand-scissors-o:before {
  content: "\F257";
}
.icon-hand-lizard-o:before {
  content: "\F258";
}
.icon-hand-spock-o:before {
  content: "\F259";
}
.icon-hand-pointer-o:before {
  content: "\F25A";
}
.icon-hand-peace-o:before {
  content: "\F25B";
}
.icon-trademark:before {
  content: "\F25C";
}
.icon-registered:before {
  content: "\F25D";
}
.icon-creative-commons:before {
  content: "\F25E";
}
.icon-gg:before {
  content: "\F260";
}
.icon-gg-circle:before {
  content: "\F261";
}
.icon-tripadvisor:before {
  content: "\F262";
}
.icon-odnoklassniki:before {
  content: "\F263";
}
.icon-odnoklassniki-square:before {
  content: "\F264";
}
.icon-get-pocket:before {
  content: "\F265";
}
.icon-wikipedia-w:before {
  content: "\F266";
}
.icon-safari:before {
  content: "\F267";
}
.icon-chrome:before {
  content: "\F268";
}
.icon-firefox:before {
  content: "\F269";
}
.icon-opera:before {
  content: "\F26A";
}
.icon-internet-explorer:before {
  content: "\F26B";
}
.icon-television:before {
  content: "\F26C";
}
.icon-tv:before {
  content: "\F26C";
}
.icon-contao:before {
  content: "\F26D";
}
.icon-500px:before {
  content: "\F26E";
}
.icon-amazon:before {
  content: "\F270";
}
.icon-calendar-plus-o:before {
  content: "\F271";
}
.icon-calendar-minus-o:before {
  content: "\F272";
}
.icon-calendar-times-o:before {
  content: "\F273";
}
.icon-calendar-check-o:before {
  content: "\F274";
}
.icon-industry:before {
  content: "\F275";
}
.icon-map-pin:before {
  content: "\F276";
}
.icon-map-signs:before {
  content: "\F277";
}
.icon-map-o:before {
  content: "\F278";
}
.icon-map:before {
  content: "\F279";
}
.icon-commenting:before {
  content: "\F27A";
}
.icon-commenting-o:before {
  content: "\F27B";
}
.icon-houzz:before {
  content: "\F27C";
}
.icon-vimeo:before {
  content: "\F27D";
}
.icon-black-tie:before {
  content: "\F27E";
}
.icon-fonticons:before {
  content: "\F280";
}
.icon-reddit-alien:before {
  content: "\F281";
}
.icon-edge:before {
  content: "\F282";
}
.icon-credit-card-alt:before {
  content: "\F283";
}
.icon-codiepie:before {
  content: "\F284";
}
.icon-modx:before {
  content: "\F285";
}
.icon-fort-awesome:before {
  content: "\F286";
}
.icon-usb:before {
  content: "\F287";
}
.icon-product-hunt:before {
  content: "\F288";
}
.icon-mixcloud:before {
  content: "\F289";
}
.icon-scribd:before {
  content: "\F28A";
}
.icon-pause-circle:before {
  content: "\F28B";
}
.icon-pause-circle-o:before {
  content: "\F28C";
}
.icon-stop-circle:before {
  content: "\F28D";
}
.icon-stop-circle-o:before {
  content: "\F28E";
}
.icon-shopping-bag:before {
  content: "\F290";
}
.icon-shopping-basket:before {
  content: "\F291";
}
.icon-hashtag:before {
  content: "\F292";
}
.icon-bluetooth:before {
  content: "\F293";
}
.icon-bluetooth-b:before {
  content: "\F294";
}
.icon-percent:before {
  content: "\F295";
}
.icon-gitlab:before {
  content: "\F296";
}
.icon-wpbeginner:before {
  content: "\F297";
}
.icon-wpforms:before {
  content: "\F298";
}
.icon-envira:before {
  content: "\F299";
}
.icon-universal-access:before {
  content: "\F29A";
}
.icon-wheelchair-alt:before {
  content: "\F29B";
}
.icon-question-circle-o:before {
  content: "\F29C";
}
.icon-blind:before {
  content: "\F29D";
}
.icon-audio-description:before {
  content: "\F29E";
}
.icon-volume-control-phone:before {
  content: "\F2A0";
}
.icon-braille:before {
  content: "\F2A1";
}
.icon-assistive-listening-systems:before {
  content: "\F2A2";
}
.icon-american-sign-language-interpreting:before {
  content: "\F2A3";
}
.icon-asl-interpreting:before {
  content: "\F2A3";
}
.icon-deaf:before {
  content: "\F2A4";
}
.icon-deafness:before {
  content: "\F2A4";
}
.icon-hard-of-hearing:before {
  content: "\F2A4";
}
.icon-glide:before {
  content: "\F2A5";
}
.icon-glide-g:before {
  content: "\F2A6";
}
.icon-sign-language:before {
  content: "\F2A7";
}
.icon-signing:before {
  content: "\F2A7";
}
.icon-low-vision:before {
  content: "\F2A8";
}
.icon-viadeo:before {
  content: "\F2A9";
}
.icon-viadeo-square:before {
  content: "\F2AA";
}
.icon-snapchat:before {
  content: "\F2AB";
}
.icon-snapchat-ghost:before {
  content: "\F2AC";
}
.icon-snapchat-square:before {
  content: "\F2AD";
}
.icon-pied-piper:before {
  content: "\F2AE";
}
.icon-first-order:before {
  content: "\F2B0";
}
.icon-yoast:before {
  content: "\F2B1";
}
.icon-themeisle:before {
  content: "\F2B2";
}
.icon-google-plus-circle:before {
  content: "\F2B3";
}
.icon-google-plus-official:before {
  content: "\F2B3";
}
.icon-fa:before {
  content: "\F2B4";
}
.icon-font-awesome:before {
  content: "\F2B4";
}
.icon-handshake-o:before {
  content: "\F2B5";
}
.icon-envelope-open:before {
  content: "\F2B6";
}
.icon-envelope-open-o:before {
  content: "\F2B7";
}
.icon-linode:before {
  content: "\F2B8";
}
.icon-address-book:before {
  content: "\F2B9";
}
.icon-address-book-o:before {
  content: "\F2BA";
}
.icon-address-card:before {
  content: "\F2BB";
}
.icon-vcard:before {
  content: "\F2BB";
}
.icon-address-card-o:before {
  content: "\F2BC";
}
.icon-vcard-o:before {
  content: "\F2BC";
}
.icon-user-circle:before {
  content: "\F2BD";
}
.icon-user-circle-o:before {
  content: "\F2BE";
}
.icon-user-o:before {
  content: "\F2C0";
}
.icon-id-badge:before {
  content: "\F2C1";
}
.icon-drivers-license:before {
  content: "\F2C2";
}
.icon-id-card:before {
  content: "\F2C2";
}
.icon-drivers-license-o:before {
  content: "\F2C3";
}
.icon-id-card-o:before {
  content: "\F2C3";
}
.icon-quora:before {
  content: "\F2C4";
}
.icon-free-code-camp:before {
  content: "\F2C5";
}
.icon-telegram:before {
  content: "\F2C6";
}
.icon-thermometer:before {
  content: "\F2C7";
}
.icon-thermometer-4:before {
  content: "\F2C7";
}
.icon-thermometer-full:before {
  content: "\F2C7";
}
.icon-thermometer-3:before {
  content: "\F2C8";
}
.icon-thermometer-three-quarters:before {
  content: "\F2C8";
}
.icon-thermometer-2:before {
  content: "\F2C9";
}
.icon-thermometer-half:before {
  content: "\F2C9";
}
.icon-thermometer-1:before {
  content: "\F2CA";
}
.icon-thermometer-quarter:before {
  content: "\F2CA";
}
.icon-thermometer-0:before {
  content: "\F2CB";
}
.icon-thermometer-empty:before {
  content: "\F2CB";
}
.icon-shower:before {
  content: "\F2CC";
}
.icon-bath:before {
  content: "\F2CD";
}
.icon-bathtub:before {
  content: "\F2CD";
}
.icon-s15:before {
  content: "\F2CD";
}
.icon-podcast:before {
  content: "\F2CE";
}
.icon-window-maximize:before {
  content: "\F2D0";
}
.icon-window-minimize:before {
  content: "\F2D1";
}
.icon-window-restore:before {
  content: "\F2D2";
}
.icon-times-rectangle:before {
  content: "\F2D3";
}
.icon-window-close:before {
  content: "\F2D3";
}
.icon-times-rectangle-o:before {
  content: "\F2D4";
}
.icon-window-close-o:before {
  content: "\F2D4";
}
.icon-bandcamp:before {
  content: "\F2D5";
}
.icon-grav:before {
  content: "\F2D6";
}
.icon-etsy:before {
  content: "\F2D7";
}
.icon-imdb:before {
  content: "\F2D8";
}
.icon-ravelry:before {
  content: "\F2D9";
}
.icon-eercast:before {
  content: "\F2DA";
}
.icon-microchip:before {
  content: "\F2DB";
}
.icon-snowflake-o:before {
  content: "\F2DC";
}
.icon-superpowers:before {
  content: "\F2DD";
}
.icon-wpexplorer:before {
  content: "\F2DE";
}
.icon-meetup:before {
  content: "\F2E0";
}
.icon-sk-scatter-plot:before {
  content: "\E908";
}
.icon-sk-streamgraph:before {
  content: "\E909";
}
.icon-sk-add-graphic:before {
  content: "\E907";
}
.icon-sk-search:before {
  content: "\E906";
}
.icon-sk-arrow-up:before {
  content: "\E900";
}
.icon-sk-circle-plus:before {
  content: "\E901";
}
.icon-sk-notification:before {
  content: "\E902";
}
.icon-sk-user:before {
  content: "\E903";
}
.icon-sk-word:before {
  content: "\E904";
}
.icon-sk-profile:before {
  content: "\E905";
}
.icon-calendar-exclamation:before {
  content: "\E92B";
}
.icon-credit-card:before {
  content: "\E92C";
}
.icon-close-alt:before {
  content: "\E92D";
}
.icon-plus-alt:before {
  content: "\E92E";
}
.icon-door:before {
  content: "\E94C";
}
/*.Icon{
	display: inline-block;
    vertical-align: middle;
    }*/

/*[class^="icon-"], [class*=" icon-"]*/
.Icon{

	line-height: inherit;
}

.Icon.fa-spin{
	display: inline-block;
	line-height: 1;
    /*vertical-align: middle;*/
}

/*Prevent load fontawsome font*/
.fa {
  
  font-family: 'icons' !important;
}

.Icon-stack{
	position: relative;
}

.Icon-stack-bottom-right{
	position: absolute;
	right: -50%;
	bottom: -54%;
	transform: scale(0.9,0.9); /* Standard syntax */

}.CalendarSessions__Adder{
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index:10;
	height: 56px;
    width: 56px;
    z-index: 1000;
	background-color: #3552A6;
    border: none;
    border-radius: 50%;
    box-shadow: 0 6px 10px 0 rgba(0,0,0,0.14), 0 1px 18px 0 rgba(0,0,0,0.12), 0 3px 5px -1px rgba(0,0,0,0.2);
    cursor: pointer;
    display: inline-block;
    outline: none;
    overflow: hidden;
    text-align: center;
    color: #fff;
    font-size: 20px;
    line-height: 58px;
}

/* Solo aplicar la transición en pantallas grandes (desktop) */
@media (min-width: 992px) {
    .CalendarSessions__Adder {
        transition: right 0.3s ease, transform 0.3s ease;
    }

    .layout-collapsed .CalendarSessions__Adder {
        right: 43vw;
    }
}

/* Mantener los estilos móviles sin las transiciones */
@media (max-width: 991px) {
    .CalendarSessions__Adder {
        bottom: 30px;
        right: 44px;
        height: 66px;
        width: 66px;
        line-height: 58px;
    }
}

@media (max-width: 768px) {
    .CalendarSessions__Adder {
        bottom: 50px;
        right: 44vw;
    }
}

.CalendarSessions__Adder:hover{
	opacity: 0.7;
}


@media (max-width: 500px) {
    /* .CalendarSessions__Adder{
        position: initial;
        margin: 0;
        height: 25px;
        width: 25px;
        border: none;
        background: #FFF;
        color: #668FC9;
        -webkit-border-radius: none;
        border-radius: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        cursor: pointer;
        font-size: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .CalendarSessions__Adder i {
        color: #668FC9;
    } */
}.Filters__Field--FieldHeader, 
 .Filters__Field--FieldHeader .form-group {
	margin-bottom: 0;
}.Filters__Field--FieldSpacing{
	margin-bottom: 15px;
}.Filters__Field.FieldCheckbox .rc-checkbox-input{
  height: 13px;
  width: 13px;
}

.Filters__Field.FieldCheckbox{
	margin-bottom: 0;
}

.Filters__Field.FieldCheckbox label{

	margin-left: 8px;
	margin-bottom: 0;
	color: #888;
	text-transform: none;
}.SuperChosen_v3{
  position: relative;
}

.SuperChosen_v3-input{
  outline: none;
}

.SuperChosen_v3--disabled{
  opacity: 0.9;
}

.SuperChosen_v3__disabledOverlay{
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 12;
  background: rgba(255,255,255,0.3);
  cursor: not-allowed;
}

.SuperChosen_v3 .SuperChosen_v3-selection-container{
  border-radius: 2px;
  position: relative;
  padding: 12px 12px 0;
  border: 1px solid #ccc;
}

.SuperChosen_v3.active .SuperChosen_v3-selection-container{

  border-color: #00BBF1; /* !important*/
  border-width: 2px;
  padding: 11px 11px 0;
}


.SuperChosen_v3 .selectedItem{

}

.SuperChosen_v3 .selectedItem button{

  margin-left: 2px;
  font-size: 14px;
  padding: 6px;
  margin-bottom: -6px;
  margin-right: -6px;
  margin-top: -6px;
}


.SuperChosen_v3-options li{
  padding: 10px;
  cursor: pointer;
  background: #f9f9f9 none repeat scroll 0 0;
  border-bottom: 1px solid #ddd;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
}



.SuperChosen_v3-options li .label2{
  color: #bbb;
  display: block;
  margin-top: -4px;
  font-size: 12px;
}

.SuperChosen_v3-options li .label3 {
  display: flex;
  align-items: center;
  color: #bbb;
  font-size: 12px;
  margin-top: 2px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.SuperChosen_v3-options li .label3 i {
  margin-right: 5px;
  color: #668FC9;
  font-size: 14px;
}

.SuperChosen_v3-options li.selected{
  cursor: default;
  opacity: 0.3
}

.SuperChosen_v3-options li.featured{
  color: #00B9F3;
}

.SuperChosen_v3-options li .match{

  font-weight: bold;
}


.SuperChosen_v3-options li .thumb{

  width: 40px;
  height: 40px;
  margin-top: -10px;
  margin-left: -10px;
  margin-right: 20px;
  display: inline-block;
  background-size: cover;
  float: left;
  background-position: center;
}

.SuperChosen_v3-options li.withLabel2{

  padding-top: 5px;
  line-height: 19px;
}



/*SINGLE*/

.SuperChosen_v3--single .selectedItem{
  width: 100%;
  margin: 0;
  padding-bottom: 20px;
  padding-right: 20px;
  
}

.SuperChosen_v3--single .selectedItem .label1{
  width: calc(100% - 16px);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  float: left;
}

.SuperChosen_v3--single .selectedItem button{
  float: right;
}

.SuperChosen_v3--single {
  position: relative;
}

.SuperChosen_v3--single__input__icon::after {
  background-color: #6388f4;
  border-radius: 50%;
  bottom: 0;
  box-sizing: border-box;
  color: #fff;
  content: "\D7";
  cursor: pointer;
  font-size: 12px;
  height: 16px;
  width: 16px;
  line-height: 1;
  margin: -8px auto 0;
  padding: 2px;
  position: absolute;
  right: 7px;
  text-align: center;
  top: 50%;
}

@media (max-width: 991px) {
  .SuperChosen_v3-options li .label3 {
    font-size: 8px;
  }
}/*.Filters__Field .SuperChosen_v3 .SuperChosen_v3-selection-container{
	background: #60667A;
	border: none;
}

.Filters__Field .SuperChosen_v3.active .SuperChosen_v3-selection-container{

	
	box-shadow: 0 0 0 1px #41BFD2;	
}


.Filters__Field .SuperChosen_v3-options li{

	background: #60667A;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    color: #fff;
}

.Filters__Field .SuperChosen_v3-options li.selected{
	opacity: 0.75;
	color: rgba(255,255,255,0.5);
}*/.SelectMultiple__item{

	/*color: rgba(255,255,255,0.3);*/
	padding: 2px 5px;
	cursor: pointer;
	margin-bottom: 3px;

}

.SelectMultiple__item--line{
	text-transform: uppercase;
	font-size: 11px;
}

.SelectMultiple__item--line.active{

	background: rgba(255,255,255,0.05);
    /*color: #fff;*/
	border-radius: 3px;
	position: relative;
}

.SelectMultiple__item--line .Icon{

    margin-right: 4px;
}

.SelectMultiple__item--line.active:after{

	background-color: transparent;
    border-radius: 50%;
    bottom: 0;
    box-sizing: border-box;
    color: #fff;
    font-weight: bold;
    content: "\F057";
    cursor: pointer;
    font-size: 15px;
	height: 13px;
	width: 13px;
	padding: 1px;
    line-height: 1;
    margin: -8px auto 0;
    position: absolute;
    right: 7px;
    text-align: center;
    top: 50%;
    font-family: 'icons';
}
.Superchonse_Ajax .SuperChosen_v3--single .SuperChosen_v3-input{
    font-weight: 400;
}.InputDeleteWrapper {
    position: relative;
}

.InputDeleteWrapper__icon::after {
    background-color: #6388f4;
    border-radius: 50%;
    bottom: 0;
    box-sizing: border-box;
    color: #fff;
    content: "\D7";
    cursor: pointer;
    font-size: 12px;
    height: 16px;
    width: 16px;
    line-height: 1;
    margin: -8px auto 0;
    padding: 2px;
    position: absolute;
    right: 7px;
    text-align: center;
    top: 50%;
}.Filters{

  position: absolute;
  width: 100%;
  height: 100%;

  display: flex;
  display: -webkit-flex;

  flex-direction: column; 
  -webkit-flex-direction: column;
}

.Filters__content{

  flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
}

.Filters__footer{

  flex: 0 0 54px;
  -webkit-flex: 0 0 54px;
}
.Filters__footer__btn{
  float: left;
  width: 50%;
}

.Filters__footer .btn{
  border-radius: 2px;
}


.Filters__footer__btn:first-child{
  padding-right: 5px;
}

.Filters__footer__btn:last-child{
  padding-left: 5px;
}


.Filters__content{
  padding: 15px;
}


.Filters__footer{
    padding: 15px;
}
.Filters__footer button{
  margin-right: 10;
}

/*Fields default*/
.Filters__Field .form-group__label{
  /*color: #41BFD2;
  font-weight: normal;
  text-transform: uppercase;*/
}

.Filters__content .InputDeleteWrapper__icon::after {
  top: initial;
  bottom: 8px;
}


.Filters__Field .form-control,
.Filters__Field  .react-datepicker__input-container input:read-only,
.Filters__Field  .react-datepicker__input-container input[readonly]{
  background-color: #60667A;
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: 5px 8px;
  height: 32px;
}

.Filters__Field label{
    color: #4b91e3;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
}

.Filters__Field select.form-control{
  background-image: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24'><path fill='#fff' d='M7.406 7.828l4.594 4.594 4.594-4.594 1.406 1.406-6 6-6-6z'></path></svg>");
}

.Filters__Field input::placeholder {
  color: #8A98A8;
}

.Filters__Field .form-control:focus {
    border: 1px solid #41BFD2;
    outline: 0;
    box-shadow: none;
}


/*#! hide sidebar filters in collapsed version*/
.LayoutStandar--collapsed .LayoutStandar__Sidebar .Filters{
  opacity: 0;
  transition: opacity 300ms ease 0s;
}



/*FIELDS superchosen*/

.Filters__Field .SuperChosen_v3-selection-container{
  background: #5F6579;
}

.Filters__Field .SuperChosen_v3-options{
  border: none !important;
}

.Filters__Field .SuperChosen_v3-options li{
  background: #5F6579;
  color: #9CA5BD;
  border-color: #737A8E;

}

.Filters__Field .SuperChosen_v3-options{
  box-shadow: 0 5px 5px rgba(0,0,0,0.2) !important;  
}

.Filters__Field .SuperChosen_v3 .SuperChosen_v3-selection-container{
  border-color:#2D303A;
  padding: 5px 8px;
}

.Filters__Field .SuperChosen_v3.active .SuperChosen_v3-selection-container{
  border-color: #4B91E3
}

.Filters__Field .selectedItem{
  background-color: #DCE0EF !important;
  margin: 3px !important;
  padding: 2px 4px!important;
  font-size: 11px !important;
}

.Filters__Field .SuperChosen_v3 .selectedItem button{
  margin-left: -2px;
  font-size: 11px;
  opacity: 1;
  color: #000;
}

.Filters__Field .SuperChosen_v3-options li.selected{
  opacity: 0.8;
}

.Filters__Field .SuperChosen_v3-input{
  margin-bottom: 0px !important;
}

.Filters__Field .SuperChosen_v3-input:focus {
  outline: 0;
  box-shadow: none;
}

/*FIELDS single*/

.Filters__Field .SuperChosen_v3--single .SuperChosen_v3-selection-container{
  padding: 0
}

.Filters__Field .SuperChosen_v3--single .SuperChosen_v3-input{
  margin-bottom: 0 !important;
  height: 32px !important;
  padding: 0px 8px;
}

.Filters__Field .SuperChosen_v3--single .selectedItem{
  margin: 0 !important;
  line-height: 18px !important;
  font-size: 14px !important;
  padding: 7px 8px !important;
}

.Filters__Field  .SuperChosen_v3--single .selectedItem button{
  font-size: 16px;
}

.Filters__footer__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.Filters__footer__container > div:last-child {
  color: #6BE5DA;
}

.Filters__footer__container > div:last-child i {
  font-size: 18px;
}

.Filters__footer__button__apply,
.Filters__footer__button__clean {
  display: flex;
  align-items: center;
  color: #668FC9;
  font-size: 14px;
  font-weight: 400;
}

.Filters__footer__button__apply:hover,
.Filters__footer__button__clean:hover {
  cursor: pointer;
  color: #6BE5DA;
}

.Filters__footer__button__clean i {
  padding-right: 12px;
}

.Filters__footer__button__apply i {
  padding-left: 12px;
}.FiltersWithModal__modal .Filters__content{

  overflow: visible;
}

.FiltersWithModal__btnContainer{
  position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 14;
    padding: 10px 16px;
}

.FiltersWithModal__HeaderButton > div > i {
  color: #668FC9;
  cursor: pointer;
  font-size: 15px;
}

.FiltersWithModal__btnContainer .btn{
  text-transform: uppercase;
  box-shadow: 0 0 5px rgba(0,0,0,0.5);
}


.FiltersWithModal__modal{
  
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  overflow-y: auto;
  z-index: 15;
  background: #353742;
  left: 0;
}



.FiltersWithModal__modal__close{
    color: #00B4EA;
    font-size: 30px;
    text-align: center;
    padding: 16px;
}

.FiltersWithModal__modal__close .Icon{
  display: inline-block;
  -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    cursor: pointer;
}




/*Animations*/


.FiltersWithModal__modal-leave.FiltersWithModal__modal-leave-active,
.FiltersWithModal__modal-enter{


    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}


.FiltersWithModal__modal-enter.FiltersWithModal__modal-enter-active,
.FiltersWithModal__modal-leave{

    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}
.CalendarStandard__DateSelector.CalendarStandard__DateSelector{
	
	font-size: 20px;
	/*padding-top: 11px;
	padding-bottom: 11px;*/
    border: medium none;
    color: #3552A6;
    background: transparent;
    display: flex;
    align-items: center;
}

.CalendarStandard__DateSelector.CalendarStandard__DateSelector > div {
    margin-right: 5px;
    text-transform: capitalize;
}

.dropdown-title i {
    color: #3552A6;
    font-size: 16px;
    font-weight: 400;
    padding-left: 5px;
}

.CalendarStandard__DateSelector.CalendarStandard__DateSelector:hover, .CalendarStandard__DateSelector.CalendarStandard__DateSelector:focus, .btn-group.open .CalendarStandard__DateSelector.CalendarStandard__DateSelector, .btn-group.open .CalendarStandard__DateSelector.CalendarStandard__DateSelector:hover, .btn-group.open .CalendarStandard__DateSelector.CalendarStandard__DateSelector:focus{
	/*background: transparent;
    border-color: transparent;
    box-shadow: none;
    color: #00628F;*/
    /*
    background: #0097D6;
    border-color: #00ACF4;
    box-shadow: none;
    border-radius: 0;
    color: #fff;
    */

    background: transparent;
    border-color: transparent;
    box-shadow: none;
    border-radius: 0;
    color: #4F93E0;

    
}

.CalendarStandard__DateSelector.CalendarStandard__DateSelector+.dropdown-menu{
	width: 208px;
	min-height: 208px;
	padding: 0;
}


.CalendarStandard__DateSelector.CalendarStandard__DateSelector+.dropdown-menu .react-datepicker{

	border: none;
}

/*
.CalendarStandard__DateSelector__loader{

	text-align: center;
	line-height: 208px;
	font-size: 50px;
	color: #888;
}*/

@media (max-width: 401px) {
    .CalendarStandard__DateSelector.CalendarStandard__DateSelector {
        font-size: 18px;
    }
}.LoaderStandar{
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: 12;
    
    font-size: 50px;
}

.LoaderStandar--static{
    height: 100px;
    position: relative;

}

.LoaderStandar--overlay{
    
    background: rgba(255,255,255,0.7);
}

.LoaderStandar__blob {
    width: 2rem;
    height: 2rem;
    background: #4B91E3;
    border-radius: 50%;
    position: absolute;
    left: calc(50% - 1rem);
    top: calc(50% - 1rem);
    box-shadow: 0 0 1rem rgba(255, 255, 255, 0.15);
}

.LoaderStandar--blob-2 {
    animation: LoaderStandar__animate-to-2 1.5s infinite;
}

.LoaderStandar--blob-3 {
    animation: LoaderStandar__animate-to-3 1.5s infinite;
}

.LoaderStandar--blob-1 {
    animation: LoaderStandar__animate-to-1 1.5s infinite;
}

.LoaderStandar--blob-4 {
    animation: LoaderStandar__animate-to-4 1.5s infinite;
}

.LoaderStandar--blob-0 {
    animation: LoaderStandar__animate-to-0 1.5s infinite;
}

.LoaderStandar--blob-5 {
    animation: LoaderStandar__animate-to-5 1.5s infinite;
}

@keyframes LoaderStandar__animate-to-2 {
    25%,
    75% {
        transform: translateX(-1.5rem) scale(0.75);
    }
    95% {
        transform: translateX(0rem) scale(1);
    }
}

@keyframes LoaderStandar__animate-to-3 {
    25%,
    75% {
        transform: translateX(1.5rem) scale(0.75);
    }
    95% {
        transform: translateX(0rem) scale(1);
    }
}

@keyframes LoaderStandar__animate-to-1 {
    25% {
        transform: translateX(-1.5rem) scale(0.75);
    }
    50%,
    75% {
        transform: translateX(-4.5rem) scale(0.6)
    }
    95% {
        transform: translateX(0rem) scale(1);
    }
}

@keyframes LoaderStandar__animate-to-4 {
    25% {
        transform: translateX(1.5rem) scale(0.75);
    }
    50%,
    75% {
        transform: translateX(4.5rem) scale(0.6)
    }
    95% {
        transform: translateX(0rem) scale(1);
    }
}

@keyframes LoaderStandar__animate-to-0 {
    25% {
        transform: translateX(-1.5rem) scale(0.75);
    }
    50% {
        transform: translateX(-4.5rem) scale(0.6)
    }
    75% {
        transform: translateX(-7.5rem) scale(0.5)
    }
    95% {
        transform: translateX(0rem) scale(1);
    }
}

@keyframes LoaderStandar__animate-to-5 {
    25% {
        transform: translateX(1.5rem) scale(0.75);
    }
    50% {
        transform: translateX(4.5rem) scale(0.6)
    }
    75% {
        transform: translateX(7.5rem) scale(0.5)
    }
    95% {
        transform: translateX(0rem) scale(1);
    }
}

/*
.LoaderStandar--sm{
  margin: 14px auto;
  font-size: 6px;
}*/.CalendarStandard__View{
	position: relative;
}

.CalendarStandard__View__overlay{
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.8);
	z-index: 10;
	padding-top: 120px;
	text-align: center;
}

.CalendarStandard__View__overlay--danger{
	font-size: 22px;
	color: #CF5742;
}

.CalendarStandard__Tools_buttons{
  /*margin-bottom: 5px;*/
}


.CalendarStandard__Tools_buttons_left{
  float: left;
}

.CalendarStandard__Tools_buttons_left button {
	padding: 6px;
}

.CalendarStandard__Tools_buttons_right{
  float: right;
}

.CalendarStandard__Tools__currentDate{
	display: inline-block;
	width: 105px;
	text-align: center;
	text-transform: uppercase;
}



.CalendarStandard__Tools__viewSelector button, .CalendarStandard__Tools__viewSelector button:hover, .CalendarStandard__Tools__viewSelector button:focus{
  color: #53BFD3;
  border: 1px solid #53BFD3;
}


.CalendarStandard__Tools__viewSelector button.active {
    color: #fff;
    background: #53BFD3;
}

.CalendarStandard__Tools__viewSelector .btn:focus, 
.CalendarStandard__Tools__viewSelector .btn:active:focus, 
.CalendarStandard__Tools__viewSelector .btn.active:focus, 
.CalendarStandard__Tools__viewSelector .btn.focus, 
.CalendarStandard__Tools__viewSelector .btn:active.focus, 
.CalendarStandard__Tools__viewSelector .btn.active.focus {

	outline: none;
	border: none;
}

/* Nuevo estilo para el Adder */
.CalendarStandard__Tools_buttons_right .Adder {
    display: none; /* Oculto por defecto en vista móvil */
}

.calendar-download-schedule {
  margin-right: 10px; /* Puedes ajustar este valor según necesites */
}
/* En escritorio (> 991px) mostramos el Adder y lo posicionamos */
@media (min-width: 992px) {
    .CalendarStandard__Tools_buttons_right .Adder {
        display: inline-block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 0;
    }

    .CalendarStandard__Tools_buttons_right {
        position: relative;
    }
}/*.CalendarStandard__DayList__{
	position: relative;
	height: 100%;
	width: 100%;
	overflow-x:hidden;
	overflow-y: scroll;

}

*/


.CalendarStandard__DayList__Day{
	font-size: 22px;
    padding: 10px 0;
    position: relative;
    background: #fff;
    z-index: 10;
}


.CalendarStandard__DayList__Day_sidebar{
	float: left;
	width: 65px;
	min-height: 46px;
}



.CalendarStandard__DayList__Day_content{
	float: left;
	width: calc(100% - 65px);
	padding-right: 15px;
}


.CalendarStandard__DayList__Day_day{
	/*background: red none repeat scroll 0 0;*/
    /*padding: 10px;*/
    text-align: left;
    width: 65px;
    padding-left: 15px;
    cursor: pointer;
}


.CalendarStandard__DayList__Day_dayNumber{
	font-size: 30px;
	line-height: 30px;
	font-weight: bold;
}

.CalendarStandard__DayList__Day_dayName{
	font-size: 16px;
	line-height: 16px;
}

/*
.CalendarStandard__DayList__Day--active .CalendarStandard__DayList__Day_day{

	color: #FFA500;
}*/

.CalendarStandard__DayList__Day--active{
	z-index: 8;
}

.CalendarStandard__DayList__Day--today .CalendarStandard__DayList__Day_day{
	color: #00C6FF;
}

.CalendarStandard__DayList__Day--active .CalendarStandard__DayList__Day_day{ /*.CalendarStandard__DayList__Day--dayFloating*/
	position: fixed;
	top: 116px;
	z-index: 9;
}

.CalendarStandard__DayList__Day--active .CalendarStandard__DayList__Day_sidebar:after{
	position: absolute;
	content: "";
	height: 50px;
	bottom: 0;
	width: 65px;
	z-index: 10000;
	background: transparent linear-gradient(to bottom,hsla(0,0%,100%,0),#fff) repeat scroll 0 0
}











.CalendarStandard__DayList__Month{

	background: #4B91E3;
    color: #fff;
    font-size: 22px;
    padding: 20px 15px;
    position: relative;
    z-index: 10;
}


.CalendarStandard__DayList__Loader{
	padding: 20px;
	font-size: 32px;
	border-bottom: 1px solid #ddd;
	background: #eee;
	position: relative;
    z-index: 10;
    text-align: center;
    color: #666;
}





.CalendarStandard__Month{
	
	/*

	display: flex;
    display: -webkit-flex; 

    flex-direction: column;
    -webkit-flex-direction: column;
    
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;

    position: absolute;
    width: 100%;
    height: 100%;
    */

    
    border-bottom: 0;
}


.CalendarStandard__Month__header{
	/*
	flex: 0 0 33px;
    -webkit-flex: 0 0 33px;

	background: #f7f7f7 none repeat scroll 0 0;
    width: 100%;
    z-index: 4;
*/
	border-top: 1px solid #DBDBDB;
	border-bottom: 1px solid #DBDBDB;
	border-right: 1px solid #DBDBDB;
}

.CalendarStandard__Month__header_item{
	float: left;
	width: 14.2%;
	padding: 5px;
	background: #F7F7F7;
	text-transform: uppercase;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #636668;
	border-right: 1px solid #DBDBDB;
	/*border-right: 1px solid #DBDBDB;*/
	font-weight: bold;
	font-size: 12px;
	height: 27px;
	line-height: 18px;
}


.CalendarStandard__Month__header_item:nth-child(7){
	border-right: none;
	/*margin-left: 5.5%;*/
}

/*
.CalendarStandard__Month__header_item--today{
	color: #4F9CE6;
}*/


.CalendarStandard__Month__content{
	flex: 8 1 0; /*1 1 auto*/
    -webkit-flex: 8 1 0;
    overflow: scroll;
    position: relative;
}


.CalendarStandard__Month__Day{

	width: 14.2%;
	height: 194px;
	float: left;
	border-right: 1px solid #DBDBDB;
    border-bottom: 1px solid #DBDBDB;
    position: relative;
    /*overflow: hidden;*/
	/*border-right: 1px solid #DBDBDB;*/
}


.CalendarStandard__Month__Day:nth-child(7n){
	border-right: none;
}

.CalendarStandard__Month__Day--today{
	background: #EEEFF3;
}


.CalendarStandard__Month__Day--empty{
	background: #F2F4F7;
}


.CalendarStandard__Month__Day_inner{
	
	height: calc(100% - 4px);
	width: calc(100% - 4px);
	top: 2px;
	left: 2px;
	position: absolute;
	border-radius: 2px;
}

.CalendarStandard__Month__Day_inner:hover{
	/*background: #7DCCF0;*/
	cursor: pointer;
}

/*
.CalendarStandard__Month__Day:nth-child(1){
	border-left: none;
}
*/



.CalendarStandard__Month__Day_header{
	text-transform: uppercase;
	padding: 3px 5px 0;
	color: #606788;
	font-size: 13px;
	/*position: relative;
    z-index: 3;*/
}

.CalendarStandard__Month__Day--today .CalendarStandard__Month__Day_header{
	color: #6193E1;
}

.CalendarStandar__Event--Month{

	padding: 2px;
	position: relative;
	z-index: 3;
}


.CalendarStandard__Month__Day_DayOver_btnMore{
	text-align: center;
    color: #5F96E4;
    font-size: 11px;
    height: 17px;
    padding-top: 2px;
    cursor: pointer;
    position: relative;
    z-index: 3;
}


.CalendarStandard__Month__Day_DayOver_overlay{
	background: #fff;
	width: 150%;
	padding: 5px;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 4;
	box-shadow: 0 0 3px #888;
	border-radius: 2px;
	display: none;
}

.CalendarStandard__Month__Day--today .CalendarStandard__Month__Day_DayOver_overlay{
	background: #EEEFF3;
}


.CalendarStandard__Month__Day:nth-child(7n) .CalendarStandard__Month__Day_DayOver_overlay{
	left: auto;
	right: 0;
}

.CalendarStandard__Month__Day_DayOver_overlay_header{
	text-transform: uppercase;
	padding: 5px;
	color: #606788;
	font-size: 13px;
}

.CalendarStandard__Month__Day_DayOver_btnHide{
	position: absolute;
	top: 4px;
	right: 4px;
	color: #4B91E3;
	cursor: pointer;
}

.CalendarStandard__Month__Day_DayOver_overlay--show{
	display: block;
}.MultidayContainer{
	overflow: hidden;
	margin-left: 5.5%;
}
/*.CalendarStandard__Week .daysIndex{
	width: 13.5%;
	padding: 5px;
}

.CalendarStandard__Week .daysIndex__item{
	border: 1px solid #DBDBDB;
}*/


.CalendarStandard__Week{
	
	
	/*
	display: flex;
    display: -webkit-flex;

    flex-direction: column;
    -webkit-flex-direction: column;
    
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;

    position: absolute;
    width: 100%;
    height: 100%;
    */
}


.CalendarStandard__Week__header{
	/*
	flex: 0 0 33px;
    -webkit-flex: 0 0 33px;

	background: #f7f7f7 none repeat scroll 0 0;
    width: 100%;
    z-index: 4;
    */
    background: #F6F7F6;
    border-top: 1px solid #DBDBDB;
    border-bottom: 1px solid #DBDBDB;
    border-right: 1px solid #DBDBDB;
}

.CalendarStandard__Week__header_item{
	float: left;
	width: 13.5%;
	padding: 5px;
	text-transform: uppercase;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #636668;	
	border-left: 1px solid #DBDBDB;
	/*border-right: 1px solid #DBDBDB;*/
	font-weight: bold;
	font-size: 12px;
	height: 27px;
	line-height: 18px;
}


.CalendarStandard__Week__header_item:first-child{
	border-left: none;
	margin-left: 5.5%;
}


.CalendarStandard__Week__header_item--today{
	color: #53BFD3;
}


.CalendarStandard__Week__content{
	/*
	flex: 8 1 0; 
    -webkit-flex: 8 1 0;
    overflow: scroll;
    position: relative;
    */
    position: relative;
}

.CalendarStandard__Week__content__momentCursor{
	position: absolute;
	top: 0;
	left: 0;
	width: 5.5%;
	height: 1px;
	background: red;
	z-index: 10;
}

.CalendarStandard__Week .hoursIndex{

	width: 5.5%;
	float: left;
	/*border-left: 1px solid #DBDBDB;
	border-right: 1px solid #DBDBDB;*/
}

.CalendarStandard__Week .hoursIndex__item{
	/*border-top: 1px solid #DBDBDB;*/
	border-bottom: 1px solid #DBDBDB;
	padding: 5px;
	height: 62px;
	color: #A1A7B4;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}




.CalendarStandard__Week .Day{

	width: 13.5%;
	float: left;
	border-left: 1px solid #DBDBDB;
	/*border-right: 1px solid #DBDBDB;*/
}

.CalendarStandard__Week .Day--today{
	background: #EEEFF3;
}



.CalendarStandard__Week .Day:nth-child(2){
	border-left: none;
}



.CalendarStandard__Week .Hour{
	/*border-top: 1px solid #DBDBDB;*/
	border-bottom: 1px solid #DBDBDB;
	padding: 5px;
	height: 62px;
	position: relative;
}


.CalendarStandard__Week .Hour__half{
	border-bottom: 1px dotted #DBDBDB;
	height: 27px;
	cursor: pointer;
}

.CalendarStandard__Week .Hour__half_2{
	height: 25px;
	cursor: pointer;
}

.CalendarStandard__Week .Hour__half:hover,
.CalendarStandard__Week .Hour__half_2:hover{
	background: #7DCCF0;
	border-radius: 2px;
}


.CalendarStandard__Week .hoursIndex__item:first-child, .CalendarStandard__Week .hour:first-child{

	border-top: none;
}

/*
.CalendarStandard__Week .hoursIndex__item--header, .CalendarStandard__Week .Hour--header{
	background: #F7F7F7;
	text-transform: uppercase;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #636668;
	height: 32px;
}*/


.CalendarStandar__Event--Week{
	
	position: absolute;
	z-index: 2;
	padding: 1px;
	
}.Result{
  text-align: center;
  color: #888;
  padding: 50px 0;
  font-size: 24px;
}

.Result--size-sm{
	padding: 30px 0;
	font-size: 18px;
}

.Result--size-xs{
	padding: 16px 0;
	font-size: 16px;
}


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


.Result--right{
	text-align: right;
}/*.CalendarStandar__Event{
  overflow: hidden;
  cursor: pointer;
}*/.LoaderStandar{
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: 12;
    
    font-size: 50px;
}

.LoaderStandar--static{
    height: 100px;
    position: relative;

}

.LoaderStandar--overlay{
    
    background: rgba(255,255,255,0.7);
}

.LoaderStandar__blob {
    width: 2rem;
    height: 2rem;
    background: #4B91E3;
    border-radius: 50%;
    position: absolute;
    left: calc(50% - 1rem);
    top: calc(50% - 1rem);
    box-shadow: 0 0 1rem rgba(255, 255, 255, 0.15);
}

.LoaderStandar--blob-2 {
    animation: LoaderStandar__animate-to-2 1.5s infinite;
}

.LoaderStandar--blob-3 {
    animation: LoaderStandar__animate-to-3 1.5s infinite;
}

.LoaderStandar--blob-1 {
    animation: LoaderStandar__animate-to-1 1.5s infinite;
}

.LoaderStandar--blob-4 {
    animation: LoaderStandar__animate-to-4 1.5s infinite;
}

.LoaderStandar--blob-0 {
    animation: LoaderStandar__animate-to-0 1.5s infinite;
}

.LoaderStandar--blob-5 {
    animation: LoaderStandar__animate-to-5 1.5s infinite;
}

@keyframes LoaderStandar__animate-to-2 {
    25%,
    75% {
        transform: translateX(-1.5rem) scale(0.75);
    }
    95% {
        transform: translateX(0rem) scale(1);
    }
}

@keyframes LoaderStandar__animate-to-3 {
    25%,
    75% {
        transform: translateX(1.5rem) scale(0.75);
    }
    95% {
        transform: translateX(0rem) scale(1);
    }
}

@keyframes LoaderStandar__animate-to-1 {
    25% {
        transform: translateX(-1.5rem) scale(0.75);
    }
    50%,
    75% {
        transform: translateX(-4.5rem) scale(0.6)
    }
    95% {
        transform: translateX(0rem) scale(1);
    }
}

@keyframes LoaderStandar__animate-to-4 {
    25% {
        transform: translateX(1.5rem) scale(0.75);
    }
    50%,
    75% {
        transform: translateX(4.5rem) scale(0.6)
    }
    95% {
        transform: translateX(0rem) scale(1);
    }
}

@keyframes LoaderStandar__animate-to-0 {
    25% {
        transform: translateX(-1.5rem) scale(0.75);
    }
    50% {
        transform: translateX(-4.5rem) scale(0.6)
    }
    75% {
        transform: translateX(-7.5rem) scale(0.5)
    }
    95% {
        transform: translateX(0rem) scale(1);
    }
}

@keyframes LoaderStandar__animate-to-5 {
    25% {
        transform: translateX(1.5rem) scale(0.75);
    }
    50% {
        transform: translateX(4.5rem) scale(0.6)
    }
    75% {
        transform: translateX(7.5rem) scale(0.5)
    }
    95% {
        transform: translateX(0rem) scale(1);
    }
}body.Layout-open {
  overflow: hidden;
}

.Layout__outer{

background: #333;
overflow: scroll;
color: #fff;
height: 100%;
  position: fixed;
  right: inherit;
  width: 300px;
  z-index: 2;

  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;

  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  
}


.Layout__outer.left{
left: 0;

-webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%) translateZ(0);
  transform: translateX(-100%) translateZ(0);
  -webkit-transform: translate3d(-100%, 0px, 0px);
transform: translate3d(-100%, 0px, 0px);
}

.Layout__outer.right{
right: 0;
-webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transform: translateX(100%) translateZ(0);
  transform: translateX(100%) translateZ(0);
  -webkit-transform: translate3d(100%, 0px, 0px);
transform: translate3d(100%, 0px, 0px);
}

.Layout__outer.left.open,
.Layout__outer.right.open{

-webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transform: translateX(0) translateZ(0);
  transform: translateX(0) translateZ(0);
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}


.Layout__overlay{
position: fixed;
/*top: 0;
left: 0;
right: 0;
bottom: 0;*/
background: #000;
opacity: 0;
z-index: 9999;
width: 0;
height: 0;

transition: transform 0.5s ease 0s, opacity 0.5s ease 0s;
-webkit-transition: transform 0.5s ease 0s, opacity 0.5s ease 0s;

-webkit-backface-visibility: hidden;
  backface-visibility: hidden;


}

.Layout__overlay.open{

opacity: 0.7;
width: 100%;
height: 200%;

}

.Layout__wrap{

/*transform: translate3d(0px, 0px, 0px);
transition: all 0.5s ease 0s;*/

transition: transform 0.5s ease 0s;
-webkit-transition: transform 0.5s ease 0s;

-webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.Layout__wrap.toleft,
.Layout__overlay.toleft
{

-webkit-transform: translateX(-300px);
  transform: translateX(-300px);
  -webkit-transform: translateX(-300px) translateZ(0);
  transform: translateX(-300px) translateZ(0);
  -webkit-transform: translate3d(-300px, 0px, 0px);
  transform: translate3d(-300px, 0px, 0px);
  
}

.Layout__wrap.toright,
.Layout__overlay.toright{

-webkit-transform: translateX(300px);
  transform: translateX(300px);
  -webkit-transform: translateX(300px) translateZ(0);
  transform: translateX(300px) translateZ(0);
  -webkit-transform: translate3d(300px, 0px, 0px);
  transform: translate3d(300px, 0px, 0px);
  
}.ModalFullScreen{


  display: flex;
  display: -webkit-flex; /* Para navegadores webkit, como Safari */

  flex-direction: column; /* hijos se agrupan en filas (se comportan como columnas)*/
  -webkit-flex-direction: column;
  
  flex-wrap: nowrap; /* wrap = Contenedor tiene más líneas (filas?) (más util nowrap?)*/
  -webkit-flex-wrap: nowrap;

  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /*min-width: 238px;*/
  overflow: hidden;
  display: none;
z-index: 1000;

}

.ModalFullScreen--show{
display: flex;
  display: -webkit-flex;
}


.ModalFullScreen__header{
flex: 0 0 52px;
  -webkit-flex: 0 0 52px;
  padding: 0 15px;
  background: #3379B7;
}


.ModalFullScreen__body{
flex: 8 1 0;
  -webkit-flex: 8 1 0;
  /*overflow: none;*/
  overflow-y: auto;
  overflow-x: hidden;
  background: #fff;
  position: relative;
}
/*
.ModalFullScreen--noScroll .ModalFullScreen__body{

  overflow: hidden;
}
*/

.ModalFullScreen__logo{
float: left;
  width: 32px;
  float: left;
  margin-top: 10px;
}


.ModalFullScreen__logo img{
width: 100%;
}


.ModalFullScreen__logo__sm{
display: none;
}

.ModalFullScreen__title{
  color: #fff;
  line-height: 52px;
  display: block;
  float: left;
  font-size: 18px;
  font-weight: bold;
}


.ModalFullScreen__closeBtn{
float: right;
  color: #fff;
  font-size: 18px;
  margin-top: 10px;
}



@media (max-width: 991px){

.ModalFullScreen__logo{
  width: 62px;
  padding-right: 16px;
}

.ModalFullScreen__logo__lg{
  display: none;
}

.ModalFullScreen__logo__sm{
  display: block;
}

}


/*Animations*/

.ModalFullScreen-enter,
.ModalFullScreen-leave{

  opacity: 0;
}

.ModalFullScreen-leave.ModalFullScreen-leave-active,
.ModalFullScreen-enter{


  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}


.ModalFullScreen-enter.ModalFullScreen-enter-active,
.ModalFullScreen-leave{

  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

/*
.ModalFullScreen-enter,
.ModalFullScreen-leave{

  -webkit-perspective: 1300px;
  -moz-perspective: 1300px;
  perspective: 1300px;
}

.ModalFullScreen-leave.ModalFullScreen-leave-active,
.ModalFullScreen-enter{


  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: translateY(100%) rotateX(90deg);
  -moz-transform: translateY(100%) rotateX(90deg);
  -ms-transform: translateY(100%) rotateX(90deg);
  transform: translateY(100%) rotateX(90deg);
  -webkit-transform-origin: 0 100%;
  -moz-transform-origin: 0 100%;
  transform-origin: 0 100%;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}


.ModalFullScreen-enter.ModalFullScreen-enter-active,
.ModalFullScreen-leave{

  -webkit-transform: translateY(0%) rotateX(0deg);
  -moz-transform: translateY(0%) rotateX(0deg);
  -ms-transform: translateY(0%) rotateX(0deg);
  transform: translateY(0%) rotateX(0deg);
  opacity: 1;
}

*/


@media (max-width:767px){


  .ModalFullScreen__title{
      font-size: 16px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
  }

}
/* container */
.ProductPicker {
  background: #FFFFFF;
  border-radius: 3px;
  padding: 20px;
  width: 640px;
  margin: 20px auto;
}

/* picker titles */
.ProductPicker h5 {
  margin: 0;
  margin-bottom: 5px;
  color: #668FC9;
  font-size: 12px;
  font-weight: 400;
}

/* installation picker */
.ProductPicker__Installation {
  margin-bottom: 20px;
}

/* super chosen */
.ProductPicker__Installation .SuperChosen_v3 .SuperChosen_v3-selection-container,
.ProductPicker__Product .SuperChosen_v3 .SuperChosen_v3-selection-container {
  border-radius: 3px;
  border: none;
  background: #F3F5FB;
  padding: 0;
}

.ProductPicker__Installation .SuperChosen_v3 .SuperChosen_v3-selection-container::before,
.ProductPicker__Product .SuperChosen_v3 .SuperChosen_v3-selection-container::before {
  width: 33px;
  height: 100%;
  font-family: 'icons';
  font-weight: 400;
  content: '\E935';
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
  padding-bottom: 2px;
  color: #668FC9;
  font-size: 15px;
}

/* superchosen input */
.ProductPicker__Installation .SuperChosen_v3 .SuperChosen_v3-selection-container input,
.ProductPicker__Product .SuperChosen_v3 .SuperChosen_v3-selection-container input {
  width: 100% !important;
  height: initial !important;
  margin-bottom: 0 !important;
  padding: 10px 12px 10px 33px;
}

/* superchosen selected item */
.ProductPicker__Installation .SuperChosen_v3 .SuperChosen_v3-selection-container .selectedItem,
.ProductPicker__Product .SuperChosen_v3 .SuperChosen_v3-selection-container .selectedItem {
  margin: 0 !important;
  padding: 13.5px 12px 13.5px 33px !important;
  background-color: #F3F5FB !important;
  float: none !important;
  display: flex;
  justify-content: space-between;
}

.ProductPicker__Installation .SuperChosen_v3 .SuperChosen_v3-selection-container .selectedItem span,
.ProductPicker__Product .SuperChosen_v3 .SuperChosen_v3-selection-container .selectedItem span {
  color: #162349;
  font-size: 14px;
  font-weight: 400;
  width: initial;
}

/* superchosen remove button */
.ProductPicker__Installation .SuperChosen_v3 .SuperChosen_v3-selection-container .selectedItem button,
.ProductPicker__Product .SuperChosen_v3 .SuperChosen_v3-selection-container .selectedItem button {
  opacity: 1 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ProductPicker__Installation .SuperChosen_v3 .SuperChosen_v3-selection-container .selectedItem button i,
.ProductPicker__Product .SuperChosen_v3 .SuperChosen_v3-selection-container .selectedItem button i {
  color: #668FC9;
  font-size: 13px;
}

/* superchosen placeholder */
.ProductPicker__Installation .SuperChosen_v3 .SuperChosen_v3-selection-container input::placeholder,
.ProductPicker__Product .SuperChosen_v3 .SuperChosen_v3-selection-container input::placeholder {
  color: #668FC9;
  font-size: 14px;
  font-weight: 400;
}

/* product options container */
.ProductPicker__Product__Options {
  margin-top: 20px;
}

/* product options */
.ProductPicker__Product__Option {
  border: 1px solid #E8ECF8;
  border-radius: 3px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  padding: 8px 15px;
  color: #3552A6;
  font-weight: 700;
}

.ProductPicker__Product__Option:hover {
  background: #F3F5FB;
  border: 1px solid #668FC9;
  cursor: pointer;
}

/* product options icon */
.ProductPicker__Product__OptionIcon {
  padding-right: 10px;
}

.ProductPicker__Product__OptionIcon i {
  font-size: 30px;
}

/* product options title */
.ProductPicker__Product__OptionTitle {
  font-size: 14px;
}

@media (max-width: 700px) {
  .ProductPicker {
    width: initial;
    margin: 20px;
  }
}.ProductItemSummary__icon{
	float: left;
	width: 44px;
	font-size: 28px;
}

.ProductItemSummary__content{
	float: left;
	width: calc(100% - 44px);
}

@media (max-width: 991px) {
	.ProductItemSummary__icon {
		display: none;
	}
}/* container */
.ClientPicker {
  background: #FFFFFF;
  border-radius: 3px;
  padding: 20px;
  width: 640px;
  margin: 20px auto;
}

/* picker titles */
.ClientPicker h5 {
  margin: 0;
  margin-bottom: 5px;
  color: #668FC9;
  font-size: 12px;
  font-weight: 400;
}

/* client picker */
.ClientPicker__Client {
  padding-bottom: 20px;
  border-bottom: 1px solid #E8ECF8;
}

/* super chosen */
.ClientPicker__Client .SuperChosen_v3 .SuperChosen_v3-selection-container {
  border-radius: 3px;
  border: none;
  background: #F3F5FB;
  padding: 0;
}

.ClientPicker__Client .SuperChosen_v3 .SuperChosen_v3-selection-container::before {
  width: 33px;
  height: 100%;
  font-family: 'icons';
  font-weight: 400;
  content: '\E935';
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
  padding-bottom: 2px;
  color: #668FC9;
  font-size: 15px;
}

/* superchosen input */
.ClientPicker__Client .SuperChosen_v3 .SuperChosen_v3-selection-container input {
  width: 100% !important;
  height: initial !important;
  margin-bottom: 0 !important;
  padding: 10px 12px 10px 33px;
}

/* superchosen selected item */
.ClientPicker__Client .SuperChosen_v3 .SuperChosen_v3-selection-container .selectedItem {
  margin: 0 !important;
  padding: 13.5px 12px 13.5px 33px !important;
  background-color: #F3F5FB !important;
  float: none !important;
  display: flex;
  justify-content: space-between;
}

.ClientPicker__Client .SuperChosen_v3 .SuperChosen_v3-selection-container .selectedItem span {
  color: #162349;
  font-size: 14px;
  font-weight: 400;
  width: initial;
}

/* superchosen remove button */
.ClientPicker__Client .SuperChosen_v3 .SuperChosen_v3-selection-container .selectedItem button {
  opacity: 1 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ClientPicker__Client .SuperChosen_v3 .SuperChosen_v3-selection-container .selectedItem button i {
  color: #668FC9;
  font-size: 13px;
}

/* superchosen placeholder */
.ClientPicker__Client .SuperChosen_v3 .SuperChosen_v3-selection-container input::placeholder {
  color: #668FC9;
  font-size: 14px;
  font-weight: 400;
}

/* client picker tools */
.ClientPickerTools {
  padding-top: 20px;
}

/* client picker tool item */
.ClientPickerTools__Tool {
  border: 1px solid #E8ECF8;
  border-radius: 3px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  padding: 8px 15px;
  color: #3552A6;
  font-weight: 700;
}


.ClientPickerTools__Tool:hover {
  background: #F3F5FB;
  border: 1px solid #668FC9;
  cursor: pointer;
}

/* product options icon */
.ClientPickerTools__ToolIcon {
  padding-right: 10px;
}

.ClientPickerTools__ToolIcon i {
  font-size: 22px;
}

/* product options title */
.ClientPickerTools__ToolTitle {
  font-size: 14px;
}

@media (max-width: 700px) {
  .ClientPicker {
    width: initial;
    margin: 20px;
  }
}
@media (max-width: 991px) {
  .NewBookBtnModal__Modal__container:has(.ClientPickerTools__Tool_invitado){
    justify-content: center;
  }
}
.ClientPickerTools__Tool_invitado {
  height: 20vh;
  flex-direction: column;
  justify-content: center;
  background-color: #8dc2eb;
  border-radius: 1.5em;
  gap: 1em;
}
.ClientPickerTools__Tool.ClientPickerTools__Tool_nuevo {
  display: flex;
    align-items: center;
    justify-content: space-evenly;
    border: solid 2px #d8d8d9;
    border-radius: 1.5em;
    color: #d8d8d9;
}
.ClientPickerTools__Tool_invitado .ClientPickerTools__ToolIcon{
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ClientPickerTools__Tool_nuevo .ClientPickerTools__ToolIcon{
  display: flex;
  align-items: center;
  justify-content: center;
}
.ClientPickerTools__Tool_invitado .ClientPickerTools__ToolIcon i{
  color: #87c3e9;
  background: #2956a3;
  padding: 0.25em 0.5em;
  border-radius: 6em;
  font-size: 6vh;
}
.ClientPickerTools__Tool_nuevo .ClientPickerTools__ToolIcon i{
  color: #fff;
  background: #d8d8d9;
  padding: 0.25em 0.5em;
  border-radius: 6em;
  font-size: 2em;
}

.ClientPickerTools__Tool_nuevo .ClientPickerTools__ToolTitle{
  width: 50%;
  font-size: 1.5em;
}/* date selector */
.DateModalBtn__Selector {
  background: #F3F5FB;
  border-radius: 3px;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

/* date selector - date */
.DateModalBtn__Selector__date {
  display: flex;
  align-items: center;
} 

/* date selector - date title */
.DateModalBtn__Selector__date p {
  color: #162349;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  margin-top: 1px;
	text-transform: capitalize;
}

/* date selector - date icon */
.DateModalBtn__Selector__date i {
  color: #668FC9;
  font-size: 16px;
  margin-right: 5px;
}

/* date selector - x button */
.DateModalBtn__Selector__xbutton {
  display: flex;
  align-items: center;
}
.DateModalBtn__Selector__xbutton i {
  color: #668FC9;
  font-size: 11px;
}

/* modal header */
.DateModalBtn__Modal .ModalFullScreen__header {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	align-items: center;
	padding: 15px calc(50% - 278px);
}


/* modal header title */
.DateModalBtn__Modal .ModalFullScreen__title {
	color: #EAECED;
	font-size: 16px;
	font-weight: 400;
	line-height: initial;
}

/* modal header close icon */
.DateModalBtn__Modal .ModalFullScreen__closeBtn {
	padding: 0;
	margin: 0;
	margin-right: 20px;
	display: flex;
	align-items: center;
}

.DateModalBtn__Modal .ModalFullScreen__closeBtn i {
	font-size: 20px;
	color: #EAECED;
}

/* modal date picker */
.DateModalBtn__Modal__datepicker {
	padding: 20px 0;
}

.DateModalBtn__Modal__datepicker .react-datepicker {
	background: transparent;
	width: 100%;
	border: none;
	font-size: 18px;
}

/* modal date picker header */
.DateModalBtn__Modal__datepicker .react-datepicker__current-month {
	font-size: 16px;
  font-weight: 700;
  color: #3552A6;
	padding-bottom: 15px;
  text-transform: capitalize;
}

.DateModalBtn__Modal__datepicker .react-datepicker__header {
	background-color: transparent;
}

/* modal date picker arrows */
.DateModalBtn__Modal__datepicker .react-datepicker__navigation--next {
	border-left-color: #FFFFFF;
	right: calc(50% - 233px);
	top: 2px;
}

.DateModalBtn__Modal__datepicker .react-datepicker__navigation--next:before {
	font-family: 'icons';
	font-weight: 400;
	content: '\E910';
	font-size: 24px;
}

.DateModalBtn__Modal__datepicker .react-datepicker__navigation--next:hover {
	border-left-color: #FFFFFF;
}

.DateModalBtn__Modal__datepicker .react-datepicker__navigation--previous {
	border-right-color: #FFFFFF;
	left: calc(50% - 233px);
	transform: rotate(180deg);
	top: -2px;
}

.DateModalBtn__Modal__datepicker .react-datepicker__navigation--previous:before {
	font-family: 'icons';
	font-weight: 400;
	content: '\E910';
	font-size: 24px;
}

.DateModalBtn__Modal__datepicker .react-datepicker__navigation--previous:hover {
	border-right-color: #FFFFFF;
}

/* modal date picker name and day name */
.DateModalBtn__Modal__datepicker .react-datepicker__day-name, 
.DateModalBtn__Modal__datepicker .react-datepicker__day {
	line-height: 79px;
	width: 79px;
}

.DateModalBtn__Modal__datepicker .react-datepicker__day-name {
	line-height: 16px;
	font-size: 14px;
  font-weight: 400;
  color: #3552A6;
}

.DateModalBtn__Modal__datepicker .react-datepicker__day {
  border-right: 1px solid #E8ECF8;
  border-top: 1px solid #E8ECF8;
  color: #3552A6;
  font-size: 18px;
  font-weight: 400;
}

.DateModalBtn__Modal__datepicker .react-datepicker__day:first-child {
	border-left: 1px solid #E8ECF8;
}

.DateModalBtn__Modal__datepicker .react-datepicker__week:last-child .react-datepicker__day {
	border-bottom: 1px solid #E8ECF8;
}

/* modal date picker current day */
.DateModalBtn__Modal__datepicker .react-datepicker__day--today {
	position: relative;
}

.DateModalBtn__Modal__datepicker .react-datepicker__day--today::before {
	width: 60px;
	height: 60px;
	content: '';
	background-color: transparent;
	border: 1px solid #3552A6;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 2.5px;
	right: 0;
	bottom: 0;
	margin: auto;
}

/* modal date picker selected day */
.DateModalBtn__Modal__datepicker .react-datepicker__day--selected {
  background-color: #3552A6;
  color: #FFFFFF;
}

.DateModalBtn__Modal__datepicker .react-datepicker__day--selected:hover {
  background-color: #3552A6;
  color: #FFFFFF;
}

.DateModalBtn__Modal__datepicker .react-datepicker__day:hover {
	background-color: #3552A6;
  color: #FFFFFF;
}

.DateModalBtn__Modal__datepicker .react-datepicker__day--disabled:hover {
	color: #3552A6;
	background-color: #FFFFFF;
}

/* modal date picker disabled day */
.DateModalBtn__Modal__datepicker .react-datepicker__day--disabled {
  cursor: default;
  opacity: 0.4;
}

/* media queries */
@media (max-width: 767px) {
	.DateModalBtn__Modal .ModalFullScreen__header {
		padding: 15px 20px;
	}

	/* modal date picker */
	.DateModalBtn__Modal__datepicker .react-datepicker {
		font-size: 15px;
	}

	/* modal date picker name and day name */
	.DateModalBtn__Modal__datepicker .react-datepicker__day-name, 
	.DateModalBtn__Modal__datepicker .react-datepicker__day {
		width: 14.28%;
	}

	.DateModalBtn__Modal__datepicker .react-datepicker__day {
		width: 14.28%;
		line-height: 60px;
	}

	.DateModalBtn__Modal__datepicker .react-datepicker__navigation--next {
		right: 54px;
	}

	.DateModalBtn__Modal__datepicker .react-datepicker__navigation--previous {
		left: 54px;
	}
}

@media (max-width: 767px){
	/* modal date picker current day */
	.DateModalBtn__Modal__datepicker .react-datepicker__day--today::before {
		width: 50px;
		height: 50px;
	}
}

@media (max-width: 450px){
	/* modal date picker name and day name */
	.DateModalBtn__Modal__datepicker .react-datepicker__day {
		line-height: 40px;
	}

	/* modal date picker current day */
	.DateModalBtn__Modal__datepicker .react-datepicker__day--today::before {
		width: 35px;
		height: 35px;
		bottom: 1px;
	}
}
body.react-confirm-alert-body-element {
  overflow: hidden;
}

.react-confirm-alert-blur {
  filter: url(#gaussian-blur);
  filter: blur(2px);
  -webkit-filter: blur(2px);
}

.react-confirm-alert-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.9);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  opacity: 0;
  -webkit-animation: react-confirm-alert-fadeIn 0.5s 0.2s forwards;
  -moz-animation: react-confirm-alert-fadeIn 0.5s 0.2s forwards;
  -o-animation: react-confirm-alert-fadeIn 0.5s 0.2s forwards;
  animation: react-confirm-alert-fadeIn 0.5s 0.2s forwards;
}

.react-confirm-alert-body {
  font-family: Arial, Helvetica, sans-serif;
  width: 400px;
  padding: 30px;
  text-align: left;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 75px rgba(0, 0, 0, 0.13);
  color: #666;
}

.react-confirm-alert-svg {
  position: absolute;
  top: 0;
  left: 0;
}

.react-confirm-alert-body > h1 {
  margin-top: 0;
}

.react-confirm-alert-body > h3 {
  margin: 0;
  font-size: 16px;
}

.react-confirm-alert-button-group {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
  margin-top: 20px;
}

.react-confirm-alert-button-group > button {
  outline: none;
  background: #333;
  border: none;
  display: inline-block;
  padding: 6px 18px;
  color: #eee;
  margin-right: 10px;
  border-radius: 5px;
  font-size: 12px;
  cursor: pointer;
}

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

@-moz-keyframes react-confirm-alert-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-o-keyframes react-confirm-alert-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes react-confirm-alert-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.react-confirm-alert-body{
	width: 270px;
}

.react-confirm-alert-overlay{
	z-index: 9905
}.SessionsModalBtn .modal-content{
  overflow: hidden;
}

/* modal header */
.SessionsModalBtn .modal-header > div {
  display: flex;
  justify-content: space-between;
}

.SessionsModalBtn .modal-header {
  padding: 25px 22px 0;
  border-bottom: 1px solid #E8ECF8;
}

/* modal header title */
.SessionsModalBtn .modal-header > div {
  padding-bottom: 20px;
}

.SessionsModalBtn .modal-header > div .SessionsModalBtn__Header__title h5 {
  margin: 0;
  color: #3552A6;
  font-size: 16px;
  font-weight: 700;
}

/* modal header close btn */
.SessionsModalBtn .modal-header > div .SessionsModalBtn__Header__closeBtn:hover {
  cursor: pointer;
}

.SessionsModalBtn .modal-header > div .SessionsModalBtn__Header__closeBtn i {
  color: #3552A6;
  font-size: 14px;
  font-weight: 400;
}

/* modal body */
.SessionsModalBtn .modal-body {
  padding: 0 0 0;
  border: none;
  overflow-y: auto;
}

/* modal body items */
.SessionsModalBtn .modal-body .SessionsModalBtn__item p {
  margin: 0;
  color: #3552A6;
  font-size: 14px;
  font-weight: 400;
}

.SessionsModalBtn .modal-body .SessionsModalBtn__item {
  padding: 17px 22px;
  border-bottom: 1px solid #E8ECF8;
  color: #3552A6;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.SessionsModalBtn .modal-body .SessionsModalBtn__item:last-child{
  border: none;
}

.SessionsModalBtn .modal-body .SessionsModalBtn__item:hover {
  cursor: pointer;
  background-color: #F3F5FB;
}


.SessionsModalBtn .modal-body .SessionsModalBtn__item:hover p {
  font-weight: 700;
}

/* .SessionsModalBtn .modal-body .SessionsModalBtn__item:last-child {
  border-bottom: none;
} */

/* badges */
.SessionsModalBtn__item__state {
  font-size: 14px;
	font-weight: 700;
}

.SessionsModalBtn__item__state.danger {
  color: #FF5B5C;
}

/* modal item body disables */
.SessionsModalBtn .modal-body .SessionsModalBtn__item--disabled {
  opacity: 50%;
}

.SessionsModalBtn .modal-body .SessionsModalBtn__item--disabled:hover {
  background-color: #FFFFFF;
  cursor: default;
}

.SessionsModalBtn .modal-body .SessionsModalBtn__item--disabled:hover p {
  font-weight: 400;
}

/* tickets left styles */
.SessionsModalBtn__item__capacity {
  color: #39DA8A;
  font-weight: 700;
}

.SessionsModalBtn__item__capacity--warning {
  color: #F5A623;
}

.SessionsModalBtn__item__capacity--danger {
  color: #FF5B5C;
}

/* moda footer */
/* .SessionsModalBtn .modal-footer {
  border-top: none;
  text-align: initial;
  padding: 0;
} */

/* .SessionsModalBtn .modal-footer:hover {
  cursor: pointer;
} */

/* .SessionsModalBtn .modal-footer > div {
  background-color: #39DA8A;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #FFFFFF;
} */

/* modal footer content */
/* .SessionsModalBtn .modal-footer > div p {
  margin: 0;
  margin-right: 10px;
  font-size: 14px;
  font-weight: 400;
} */

/* .SessionsModalBtn .modal-footer > div i {
  font-size: 10px;
  transform: rotate(180deg);
} */

@media (max-width: 700px) {
  /* modal content */
  .SessionsModalBtn {
    display: flex !important;
    align-items: flex-end;
  }

  .SessionsModalBtn .modal-content {
    border-radius: 8px 8px 0 0;
    box-shadow: none;
    border: none;
  }

  .SessionsModalBtn .modal-dialog {
    width: 100%;
    margin: 0;
  }

    /* modal body */
  .SessionsModalBtn .modal-body {
    padding: 0 0 40px;
  }
}
/* session item */
.SessionItem {
  background: #FFFFFF;
  border-radius: 3px;
  padding: 20px 20px 10px 20px;
  margin-bottom: 12px;
}

/* session item info */
.SessionItem__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
}

/* session item info - spans */
.SessionItem__info__date span,
.SessionItem > span {
  display: flex;
  gap: .25em;
  color: #818D99;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 10px;
}

.SessionItem__info__date__zoneName{
    border-radius: 5em;
    padding: 0em 1em;
}
.SessionItem__info__date span::first-letter,
.SessionItem > span::first-letter {
  text-transform: uppercase;
}

/* session item info - date */
.SessionItem__info__date p {
  margin: 0;
  color: #3552A6;
  font-size: 16px;
  font-weight: 700;
  margin-top: -3px;
}

/* session item info - button */
.SessionItem__info__button {
  height: 32px;
  width: 80px;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 400;
  border: none;
  border-radius: 3px;
  background-color: #39DA8A;
}

/* session item info - button danger */
.SessionItem__info__button--danger {
  background-color: #FFFFFF;
  border: 1px solid #FF5B5C;
  color: #FF5B5C;
}

/* session item info - button disabled */
.SessionItem__info__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* session item tickets left */
.SessionItem__ticketLeft {
  padding-top: 10px;
  border-top: 1px solid #E8ECF8;
}

/* session item tickets left - bar text */
.SessionItem__ticketLeft span {
  color: #818D99;
  font-size: 12px;
  font-weight: 400;
}

/* session item tickets left - bar */
.SessionItem__ticketLeft__bar {
  height: 6px;
  width: 100%;
  background-color: #E7EDF3;
  border-radius: 8px;
}

/* session item tickets left - innet bar */
.SessionItem__ticketLeft__bar__inner {
  height: 100%;
  background-color: #39DA8A;
  border-radius: 8px;
}

/* session item tickets left - innet bar - danger */
.SessionItem__ticketLeft__bar__inner--danger {
  background-color: #FF5B5C;
}

/* session item tickets left - innet bar - warning */
.SessionItem__ticketLeft__bar__inner--warning {
  background-color: #F5A623;
}
/* dates picker container */
.DatesPicker {
  background: #FFFFFF;
  border-radius: 3px;
  padding: 20px;
  width: 640px;
  margin: 0 auto 20px;
}

.SessionPicker {
  width: 640px;
  margin: 20px auto;
}

/* picker titles */
.DateSessionPicker h5 {
  margin: 0;
  margin-bottom: 5px;
  color: #668FC9;
  font-size: 12px;
  font-weight: 400;
}

/* section title */
.DateSessionPicker h4 {
  margin: 0;
  color: #3552A6;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

@media (max-width: 700px) {
  .DatesPicker {
    width: initial;
    margin: 0 0 20px;
  }

  .SessionPicker {
    width: initial;
    margin: 0 0 20px;
  }
}

.btn-booker-zone {
  margin: 5px;
  transition: all 0.3s ease;
  outline: none !important;
}

.btn-booker-zone:focus,
.btn-booker-zone.active,
.btn-booker-zone:active {
  background-color: #007bff !important;
  color: white !important;
  border-color: #0056b3 !important;
  box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25) !important;
}

.btn-booker-zone:hover {
  background-color: #f8f9fa;
  border-color: #ddd;
}
.ZonesFilter{
  width: 640px;
  margin: 0 auto 20px;
}
.ZonesFilter__zones{
  background: #FFFFFF;
    border-radius: 3px;
    padding: 10px;
    width: 640px;
    margin: 0 auto 20px;
    margin-right: 0;
    border-radius: 0.5em;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.zoneFilter__title{
  width: 15%;
  color: #3552A6;
  font-weight: bold;
}
.ZonesFilter__zones .form-control{
  color: #3552A6;
}
.ZonesFilter__zones .form-control option{
  padding: 12px 15px;
  margin: 4px 0;
  background-color: #ffffff;
  color: #3552A6;
  font-size: 14px;
  transition: background-color 0.2s ease;
  line-height: 1.5;
}
.ZonesFilter__zones .form-control option:hover {
  background-color: #f0f4f8;
}
.ZonesFilter__zones .form-control option:checked {
  background-color: #e8f1ff;
  font-weight: 500;
}

.zoneFilter__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.zone-btn {
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: white;
  cursor: pointer;
  transition: all 0.2s ease;
}

.zone-btn:hover {
  background: #f5f5f5;
}

.zone-btn.active {
  background: #007bff;
  color: white;
  border-color: #0056b3;
}

.zoneFilter__dropdown {
  position: relative;
  width: 100%;
}

.zoneFilter__selected {
  width: 100%;
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: white;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.zoneFilter__selected .arrow {
  display: none !important;
  border: solid #666;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  margin-left: 8px;
}

.arrow.down {
  transform: rotate(45deg);
}

.arrow.up {
  transform: rotate(-135deg);
}

.zoneFilter__menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-top: 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1000;
}

.zoneFilter__menu .zone-btn {
  width: 100%;
  padding: 8px 16px;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
}

.zoneFilter__menu .zone-btn:hover {
  background: #f5f5f5;
}

.zoneFilter__menu .zone-btn.active {
  background: #007bff;
  color: white;
  border-radius: 0; 
}
.zoneFilter__menu .zone-btn:last-of-type.active {
  border-radius: 0 0 0.25em 0.25em;
}
@media (max-width: 700px) {
  .ZonesFilter,.ZonesFilter__zones {
    width: initial;
    margin: 0 0 20px;
  }
  .zoneFilter__title{
    width: 35%;
  }
}.DatesEventsSessionItem__Modal {
  position: fixed;
  background: transparent;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: scroll;
  z-index: 10000;
}

.DatesEventsSessionItem__Modal__background {
  background: rgba(0,0,0,0.8);
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

.DatesEventsSessionItem__Modal__container {
  max-width: 800px;
  margin: 100px auto;
  position: relative;
  background: #fff;
  border: 1px solid #fff;
  z-index: 10000;
}


.DatesEventsSessionItem__Modal__closeBtn.btn {
  position: absolute;
  top: 6px;
  right: 6px;
  color: #333;
  line-height: 30px;
  font-size: 30px;
  width: 50px;
  z-index: 1001;
}

.DatesEventsSessionItem__Modal__closeBtn.btn:hover,
.DatesEventsSessionItem__Modal__closeBtn.btn:focus {
  color: #337ab7;
  text-decoration: none;
}

.DatesEventsSessionItem__Modal__img__container {
  padding: 60px 15px 40px;
  margin:auto;
  max-width: 400px;
}

.DatesEventsSessionItem__Modal__img {
  display: block;
  margin: auto;
  box-shadow: 0 3px 5px rgba(0,0,0,0.3);
  max-width: 100%;
}

.DatesEventsSessionItem__Modal .carousel-control.left .Icon {
  left: 12px;
}

.DatesEventsSessionItem__Modal .carousel-control.right .Icon {
  right: 12px;
}

.DatesEventsSessionItem__Modal .carousel-control .Icon {
  top: 50%;
  position: absolute;
  border: 1px solid #fff;
  display: inline-block;
  font-size: 30px;
  padding: 8px;
  margin-top: -16px;
  line-height: 15px;
  border-radius: 2px;
}

.DatesEventsSessionItem__Modal_close:hover {
  text-decoration: none;
}

.DatesEventsSessionItem__Modal__container h3 {
  color: #333;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}

.DatesEventsSessionItem__Modal__subtitle {
  font-size: 16px;
  font-style: italic;
  padding-bottom: 15px;
}

.DatesEventsSessionItem__Modal__content {
  padding: 10px 5px 30px;
  font-size: 14px;
}

.DatesEventsSessionItem__Modal_prev,
.DatesEventsSessionItem__Modal_next {
  font-size: 50px;
  position: fixed;
  top: 40%;
  cursor: pointer;
  text-align: center;
  width: 40px;
}

.DatesEventsSessionItem__Modal_prev {
  left: 15px;
}

.DatesEventsSessionItem__Modal_next {
  right: 15px;
}

.DatesEventsSessionItem__Modal__priceBlock {
  padding: 16px 0;
  color: #6C6D6C;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  font-weight: bold;
}

.DatesEventsSessionItem__Modal__btnBlock .btn {
  text-transform: uppercase
}

/*Animations*/
.DatesEventsSessionItem__Modal-leave.DatesEventsSessionItem__Modal-leave-active .DatesEventsSessionItem__Modal__background,
.DatesEventsSessionItem__Modal-enter .DatesEventsSessionItem__Modal__background {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}

.DatesEventsSessionItem__Modal-enter.DatesEventsSessionItem__Modal-enter-active .DatesEventsSessionItem__Modal__background,
.DatesEventsSessionItem__Modal-leave .DatesEventsSessionItem__Modal__background {
  opacity: 1;
}

.DatesEventsSessionItem__Modal-leave.DatesEventsSessionItem__Modal-leave-active .DatesEventsSessionItem__Modal__container,
.DatesEventsSessionItem__Modal-enter .DatesEventsSessionItem__Modal__container {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}

.DatesEventsSessionItem__Modal-enter.DatesEventsSessionItem__Modal-enter-active .DatesEventsSessionItem__Modal__container,
.DatesEventsSessionItem__Modal-leave .DatesEventsSessionItem__Modal__container {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

@media (max-width: 840px) {  
  .DatesEventsSessionItem__Modal__container {
    margin-left: 20px;
    margin-right: 20px;
  }
} 


@media (max-width: 767px) {
  .DatesEventsSessionItem__Modal__background {
    background: #fff;
  }

  .DatesEventsSessionItem__Modal__container {
    margin:0;
  }
  
} 

@media (max-width: 480px) {
  .DatesEventsSessionItem__Modal__container .divimg {
    height: 280px;
  }
  
  .DatesEventsSessionItem__Modal_close{
    text-align: center;
    right: auto;
    top: 27px;
    width: 100%;  
  }
}
.DatesEventsSessionItem {
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 20px;
	margin-bottom: 30px;
	box-shadow: 0 10px 20px rgba(0,0,0,0.15);
	cursor: pointer;
}

.DatesEventsSessionItem__thumb {
	width: 100%;
	display: block;
	height: 270px;
	position: relative;
	background-size: cover;
	background-position: center;
	margin: -20px -20px 0 -20px;
	width: calc(100% + 40px);
}


.DatesEventsSessionItem__title {
	color: #465E7C;
	font-weight: 600;
	margin-bottom: 5px;
	font-size: 18px;
	margin-top: 20px;
}

.DatesEventsSessionItem__day {
	font-size: 15px;
	font-style: italic;
}

.DatesEventsSessionItem__content {
	white-space: nowrap;
	font-size: 20px;
	line-height: 32px;
}

.DatesEventsSessionItem__footer {
	margin: 8px -21px -21px;
}

.DatesEventsSessionItem__bar__container {
	color: #5cb85c;
}

.DatesEventsSessionItem__bar__overText {
	padding: 0 20px;
	font-size: 12px;
	font-weight: bold;
}

.DatesEventsSessionItem__bar {
	position: relative;
	background: #eee;
	border-radius: 0 0 4px 4px;
	overflow: hidden;
	height: 6px;
}

.DatesEventsSessionItem__bar__line__back {
	position: absolute;
	background: #5cb85c;
	height: 100%;
	width: 100%;
	opacity: 0.3;
	z-index: 1;
	left: 0;
	top: 0;
}

.DatesEventsSessionItem__bar__line {
	position: absolute;
	background: #5cb85c;
	height: 100%;	
	z-index: 2;
	left: 0;
	top: 0;
}

.DatesEventsSessionItem__bar_text {
	position: relative;
	z-index: 3;
	color: #fff;
	text-align: center;
	font-size: 11px;
}

.DatesEventsSessionItem__bar--warning {
	color: #ff853e;
}

.DatesEventsSessionItem__bar--warning .DatesEventsSessionItem__bar {
	border-color: #ff853e;
}

.DatesEventsSessionItem__bar--warning .DatesEventsSessionItem__bar__line__back,
.DatesEventsSessionItem__bar--warning .DatesEventsSessionItem__bar__line {
	background: #ff853e;
}

.DatesEventsSessionItem__bar--danger {
	color: #dc3545;
}

.DatesEventsSessionItem__bar--danger .DatesEventsSessionItem__bar {
	border-color: #dc3545;
}

.DatesEventsSessionItem__bar--danger .DatesEventsSessionItem__bar__line__back,
.DatesEventsSessionItem__bar--danger .DatesEventsSessionItem__bar__line {
	background: #dc3545;
}.DatesEvents__container {
  width: 640px;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .DatesEvents__container {
    width: 100%;
    margin: 0;
  }
}
.NumberPlusMinus__btn{

	width: 20px;
	/*float: left;*/
	color: #00B4EB;
	font-size: 24px;
	display: inline-block;
	cursor: pointer;
}

.NumberPlusMinus__btn:hover{
	color: #00C2FF
}

.NumberPlusMinus__minus{

}

.NumberPlusMinus__plus{

}


.NumberPlusMinus__value{
	
	display: inline-block;
	font-size: 20px;
	padding: 0 10px;
	color: #000;
}

.NumberPlusMinus__input,
.NumberPlusMinus__input:focus-visible{
	width: 70px;
	background: transparent;
	border: none; 
	outline: none;
	text-align: center;
}

.NumberPlusMinus__input[type="number"]::-webkit-outer-spin-button,
.NumberPlusMinus__input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.NumberPlusMinus__input[type="number"] {
    -moz-appearance: textfield;
}


.NumberPlusMinus--min .NumberPlusMinus__minus{
	opacity: 0.2;
	cursor: default;
}

.NumberPlusMinus--max .NumberPlusMinus__plus{
	opacity: 0.2;
	cursor: default;
}/* Modal header */
.QRModalBtn__Modal .modal-header {
	padding: 15px 20px;
	border-bottom: 1px solid #F0F0F0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.QRModalBtn__Modal .modal-header i {
	font-size: 20px;
	color: #475F7B;
	cursor: pointer;
}

.QRModalBtn__Modal .modal-header::before,
.QRModalBtn__Modal .modal-header::after {
	display: none;
}

.QRModalBtn__Modal .modal-header h4 {
	color: #455E7D;
	font-size: 16px;
	font-weight: 700;
}

/* Modal Body */
.QRModalBtn__Modal .modal-body {
	padding: 20px;
	background: #FAFBFB;
  border-radius: 6px;
}

/* Modal Content */
.QRModalBtn__Modal__content {
  background: #fff;
  border: 1px solid #F0F0F0;
  border-radius: 6px;
}

.QRModalBtn__Modal__content.withError {
	padding: 10px;
}

.QRModalBtn__Modal__content img {
	width: 100%;
}

.QRModalBtn__Modal__content__Error {
	color: #FF5B5C;
}

@media (min-width: 300px) {
  .QRModalBtn__Modal .modal-sm {
    width: 232px;
    margin: 30px auto;
  }
}/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none; }
  .pswp * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  .pswp img {
    max-width: none; }

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--open {
  display: block; }

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab; }

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing; }

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none; }

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden; }

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden; }

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0; }

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden; }

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222; }

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0; }

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC; }

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline; }

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*
	
	1. Buttons

 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
          transition: opacity 0.2s;
  -webkit-box-shadow: none;
          box-shadow: none; }
  .pswp__button:focus, .pswp__button:hover {
    opacity: 1; }
  .pswp__button:active {
    outline: none;
    opacity: 0.9; }
  .pswp__button::-moz-focus-inner {
    padding: 0;
    border: 0; }

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1; }

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(/assets/default-skin.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px; }

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(/assets/default-skin.svg); }
  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none; } }

.pswp__button--close {
  background-position: 0 -44px; }

.pswp__button--share {
  background-position: -44px -44px; }

.pswp__button--fs {
  display: none; }

.pswp--supports-fs .pswp__button--fs {
  display: block; }

.pswp--fs .pswp__button--fs {
  background-position: -44px 0; }

.pswp__button--zoom {
  display: none;
  background-position: -88px 0; }

.pswp--zoom-allowed .pswp__button--zoom {
  display: block; }

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0; }

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden; }

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute; }

.pswp__button--arrow--left {
  left: 0; }

.pswp__button--arrow--right {
  right: 0; }

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: '';
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute; }

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px; }

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px; }

/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none; }

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__share-modal--hidden {
  display: none; }

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
      -ms-transform: translateY(6px);
          transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
          transition: transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform; }
  .pswp__share-tooltip a {
    display: block;
    padding: 8px 12px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    line-height: 18px; }
    .pswp__share-tooltip a:hover {
      text-decoration: none;
      color: #000; }
    .pswp__share-tooltip a:first-child {
      /* round corners on the first/last list item */
      border-radius: 2px 2px 0 0; }
    .pswp__share-tooltip a:last-child {
      border-radius: 0 0 2px 2px; }

.pswp__share-modal--fade-in {
  opacity: 1; }
  .pswp__share-modal--fade-in .pswp__share-tooltip {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px; }

a.pswp__share--facebook:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none; }

a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF; }
  a.pswp__share--facebook:hover:before {
    border-bottom-color: #3E5C9A; }

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF; }

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D; }

a.pswp__share--download:hover {
  background: #DDD; }

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px; }

/*
	
	4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px; }
  .pswp__caption small {
    font-size: 11px;
    color: #BBB; }

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC; }

.pswp__caption--empty {
  display: none; }

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden; }

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr; }

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px; }

.pswp__preloader--active {
  opacity: 1; }
  .pswp__preloader--active .pswp__preloader__icn {
    /* We use .gif in browsers that don't support CSS animation */
    background: url(/assets/preloader.gif) 0 0 no-repeat; }

.pswp--css_animation .pswp__preloader--active {
  opacity: 1; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
    -webkit-animation: clockwise 500ms linear infinite;
            animation: clockwise 500ms linear infinite; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
    -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
            animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite; }

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0; }

.pswp--css_animation .pswp__preloader__cut {
  /* 
			The idea of animating inner circle is based on Polymer ("material") loading indicator 
			 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
		*/
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden; }

.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0; }

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right; } }

@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

/*
	
	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550; }

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%; }

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible; }

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5); }

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3); }

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0; }

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0; }

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001; }

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none; }

.pswp__element--disabled {
  display: none !important; }

.pswp--minimal--dark .pswp__top-bar {
  background: none; }
.Slider__divimg{
	background-position: center;
	min-height: 400px;
}.SliderPopup{
	cursor: pointer;
}.ClientSummaryCard {
  display: flex;
  background: #FFFFFF;
  padding: 22px 18px 23px;
  margin-bottom: 20px;
  /* box-shadow: 0px 0px 6px 2px rgb(0 0 0 / 10%); */
  border-radius: 4px;
  border: 1px solid #E8ECF8;
}

.ClientSummaryCard--noCard {
  border: none;
  border-bottom: 1px solid #E8ECF8;
  padding: 22px 0 23px;
  margin: 0;
}

.ClientSummaryCard--noCard:last-child {
  border: none;
}

.ClientSummaryCard__content {
  display: flex;
}

.ClientSummaryCard--clickable .ClientSummaryCard__content:hover {
  cursor: pointer;
}

.ClientSummaryCard.existentClient:hover {
  cursor: pointer;
  opacity: 60%;
}

.ClientSummaryCard__thumb,
.ClientSummaryCard__noThumb {
  margin-right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F3F5FB;
  border: 1px solid #E2E5EA;
}

.ClientSummaryCard__noThumb {
  display: flex;
  align-items: center;
  justify-content: center;
}

div.ClientSummaryCard__noThumb span {
  color: #668FC9;
  font-size: 19px;
  font-weight: 400;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ClientSummaryCard__thumb img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.ClientSummaryCard__name {
  display: flex;
  align-items: center;
}

div.ClientSummaryCard__name h5 {
  color: #3552A6;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  text-transform: capitalize;
  margin: 0;
  margin-right: 5px;
}

.ClientSummaryCard__name__icon i {
  color: #39DA8A;
  font-size: 13px;
}

div.ClientSummaryCard__dni {
  display: flex;
  align-items: center;
  color: #162349;
  font-size: 14px;
  line-height: 16px;
  margin-top: 7px;
}

div.ClientSummaryCard__dni span {
  color: #162349;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
}

div.ClientSummaryCard__dni h5 {
  /* color: #668FC9;
  font-size: 12px; */
  color: #162349;
  font-weight: 400;
  line-height: 16px;
  margin: 0;
}

.ClientSummaryCard_dni_separator{
  width: 1px;
  height: 13px;
  background-color: #E2E5EA;
  margin: 0 8px;
}

.ClientSummaryCard__deletedAt h5{
  color: #FF5B5C;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  margin: 0;
}

.ClientSummaryCard__badge {
  background: #E2E5EA;
  padding: 3px 7px;
  border-radius: 3px;
  display: inline-block;
  margin: 11px 5px 0 0;
}

div.ClientSummaryCard__badge h5 {
  color: #668FC9;
  font-size: 12px;
  line-height: 12px;
  font-weight: 700;
  margin: 0;
}

.ClientSummaryCard__badge:last-child {
  margin-right: 0;
}

div.ClientSummaryCard__internalNotes span{
  margin-top: 4px;
  color: #818D99;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.ClientSummaryCard__tools i {
  color: #668FC9;
  font-size: 18px;
}

.ClientSummaryCard__tools a {
  line-height: 1;
}

.ClientSummaryCard__share {
  margin-left: 8px;
}

.ClientSummaryCard__share .dropdown-toggle {
  padding: 0;
}

.ClientSummaryCard__share .dropdown-menu > li > a{
  padding: 10px 20px;
  font-size: 12px;
}

.ClientSummaryCard__share .dropdown-menu > li i {
  font-size: 13px;
  color: #6f7e96;
  display: inline-block;
  margin-right: 5px;
}

.ClientSummaryCard__share .dropdown-menu > li div {
  line-height: 1;
}


.ClientSummaryCard__thumb2 {
  margin-right: 10px;
}

.ClientSummaryCard__thumb2 .carousel-inner {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.ClientSummaryCard__thumb2 .Slider__divimg {
  width: 40px;
  height: 40px;
  min-height: 40px;
}

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

.ClientSummaryCard__toolscol{
  margin: auto 15px ;
}

/*PENDIENTE DE MODIFICAR ESTÉTICA GENERAL PUNTO DE CONTROL*/
.carnet-orientacion label +label{  
  margin-left: 40px;
}
.carnet-background{
  margin-top:10px;
}
.carnet-background label + label{
  margin-left: 20px;
}

.carnet-orientacion input[type="radio"]{
  margin-right: 7px;
}
.carnet-background input[type="radio"]{
  margin-right: 7px;
}
.numero-socio input[type="text"]{
  width: 80px;
}


.OrderItem.OrderItem--isPending {
	background-color: #f1bbc3 !important;
	border: 1px solid red !important;
}/* pax picker */
.PaxPicker {
  position: relative;
}

/* session summary */
.PaxPicker__sessionSummary {
  background: #FFFFFF;
  padding: 20px;
  margin: -20px -20px 20px;
}

/* session summary container */
.PaxPicker__sessionSummary__container {
  width: 640px;
  margin: 0 auto;
}

/* session summary product name */
.PaxPicker__sessionSummary h5 {
  margin-bottom: 0;
  color: #668FC9;
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
}

/* session summary info */
.PaxPicker__sessionSummary__info {
  display: flex;
  align-items: center;
}

/* session summary info divider */
.PaxPicker__sessionSummary__info > div {
  margin: 0 10px;
  height: 12px;
  background-color: #E8ECF8;
  width: 1px;
}

.PaxPicker__sessionSummary__info span {
  color: #818D99;
  font-size: 13px;
  font-weight: 400;
  text-transform: capitalize;
}

/* pax picker change date */
.PaxPicker__sessionSummary__changeDate {
  display: flex;
  align-items: center;
  color: #5A8DEE;
  cursor: pointer;
}

.PaxPicker__sessionSummary__changeDate p {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
}

.PaxPicker__sessionSummary__changeDate i {
  font-size: 10px;
  padding-right: 8px;
}

/* people selector */
.Rental {
  width: 640px;
  margin: 0 auto 20px;
}

.Rental--shared {
  background: #FFFFFF;
  border-radius: 3px;
  padding: 20px;
}

/* people selector options list item */
.Rental .Rental__item,
.Rental__options__item {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #E8ECF8;
}

.Rental--full .Rental__item {
  margin: 0;
  border: none;
  background: #FFFFFF;
  border-radius: 3px;
  padding: 20px;
}

.Rental--shared .Rental__item:last-child,
.Rental__options__item:last-child {
  padding: 0;
  margin: 0;
  border: none;
}

.Rental--full .Rental__item--options {
  margin-bottom: 20px;
}

/* people selector options list item content */
.Rental__item .Rental__item__content,
.Rental__options__item__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* people selector options list item content info */
.Rental__item__content__info h5,
.Rental__options__item__content__info h4 {
  margin: 0;
  color: #3552A6;
  font-size: 14px;
  font-weight: 700;
}

.Rental__item__content__info span,
.Rental__options__item__content__info span {
  color: #668FC9;
  font-size: 12px;
  font-weight: 700;
}

/* people selector options list item content counter */
.Rental__item__content__counter > .NumberPlusMinus {
  display: flex;
  align-items: center;
}

/* people selector options list item content counter buttons */
.Rental__item__content__counter .NumberPlusMinus__btn {
  width: 32px;
  height: 32px;
  background: #3552A6;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Rental__item__content__counter .NumberPlusMinus--min .NumberPlusMinus__minus,
.Rental__item__content__counter .NumberPlusMinus--max .NumberPlusMinus__plus {
  background: #6F7E96;
  opacity: 20%;
  color: #F3F5FB;
  cursor: default;
}

/* people selector options list item content counter */
.Rental__item__content__counter .NumberPlusMinus__value {
  color: #162349;
  font-weight: 400;
  padding: 0 14px;
}

/* people selector options list item resources and age range */
.Rental__item__resources,
.Rental__item__ages {
  margin-top: 8px;
}

.Rental__item__resources > div {
  display: flex;
  align-items: center;
}

.Rental__item__resources__divider {
  margin: 0 10px;
  height: 12px;
  width: 1px;
  background-color: #E8ECF8;
}

/* people selector options list item resources content */
.Rental__item__resources > div span,
.Rental__item__ages > span {
  color: #818D99;
  font-size: 12px;
  font-weight: 400;
}

.Rental__item__resources > div span.SharedRental__item__resources--success {
  color: #39DA8A;
}

.Rental__item__resources > div span.SharedRental__item__resources--danger {
  color: #FF5B5C;
}

/* options title */
.Rental__options h5 {
  color: #3552A6;
  font-size: 14px;
  font-weight: 700;
  margin: 20px 0 0;
}

/* opions container */
.Rental__options__container {
  background: #FFFFFF;
  border-radius: 3px;
  padding: 20px;
  margin-top: 20px;
}
.Rental__supplement__container{
  background: #FFFFFF;
  border-radius: 3px;
  padding: 20px;
  margin-top: 20px;
}

.Rental__supplement span{
  margin: 0;
  color: #3552A6;
  font-size: 14px;
  font-weight: 700;
}
/* options button */
.Rental__options__item__content__button button {
  background: #3552A6;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 400;
  border: none;
  height: 100%;
  width: 78px;
  padding: 7px 6px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.Rental__simplifyOrder{
  margin-bottom: 50px;
}

.Rental--full .Rental__simplifyOrder {
  margin-bottom: 0;
}

.Rental__options__item__content__button button.success {
  background: #39DA8A;
}

/* total price */
.PaxPicker__totalPrice {
  background: #FFFFFF;
  margin: 20px auto 0;
  width: 640px;
  border-radius: 4px 0 0 4px;
}

.PaxPicker__totalPrice__container {
  display: flex;
  height: 100%;
}

.PaxPicker__totalPrice__container > div {
  width: 50%;
}

/* total price - error */
.PaxPicker__totalPrice__error {
  background: #FF5B5C;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  padding: 5px 20px 3px;
}

/* total price - price */
.PaxPicker__totalPrice__price {
  padding: 16px 0 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.PaxPicker__totalPrice__price p {
  margin: 0;
}

.PaxPicker__totalPrice__price p:nth-child(1) {
  color: #668FC9;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: -4px;
}

.PaxPicker__totalPrice__price p:nth-child(2) {
  color: #162349;
  font-size: 18px;
  font-weight: 400;
}

/* total price - button */
.PaxPicker__totalPrice__button {
  background: #39DA8A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
  padding: 16px 20px 16px 11px;
}

.PaxPicker__totalPrice__button p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  margin-right: 10px;
}

.PaxPicker__totalPrice__button i {
  margin-bottom: 1px;
  font-size: 17px;
}

.Rental--shared .ClientSummaryCard--noCard {
  border-bottom: 0;
  padding: 0;
}

/* Dropdown button */
.Rental__dropdownButton {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  background-color: #FFFFFF;
  color: #3552A6;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 20px;
  border: none;
  border: 2px solid #3552A6;
}

.Rental__dropdownButton--card {
  border: 2px solid #FF0000;
}

.Rental__dropdownButton--cash {
  border: 2px solid #39DA8A;
}

/* Dropdown button text */
.Rental__dropdownButtonText {
  flex: 1;
  text-align: center;
}

/* Dropdown button icon */
.Rental__dropdownButtonIcon {
  margin-right: 10px;
  font-size: 20px;
}

.FullRental__warning {
  color: #FD9A53;
  border: 2px solid #FD9A53;
  background: #FFF2E9;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 16px;
  line-height: 32px;
}

@media (max-width: 700px) {
  .PaxPicker__sessionSummary__container,
  .Rental {
    width: initial;
    margin: 0;
  }

  .Rental {
    margin-bottom: 60px;
  }

  .PaxPicker__totalPrice {
    width: 100%;
    /*margin: 20px -20px 0;*/
    position: fixed;
    bottom: 0;
    left: 0;
    border-radius: 0;
  }

  .PaxPicker__totalPrice__button {
    border-radius: 0;
  }
}

/* modal full screen */
/* modal header */
.FormModalBtn .ModalFullScreen__header {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	align-items: center;
	padding: 15px 20px;
	padding: 15px calc(50% - 320px);
}

.FormModalBtn .ModalFullScreen__title {
	color: #EAECED;
	font-size: 16px;
	font-weight: 400;
	line-height: initial;
}

.FormModalBtn .ModalFullScreen__closeBtn {
	padding: 0;
	margin: 0;
	margin-right: 20px;
	display: flex;
	align-items: center;
}

.FormModalBtn .ModalFullScreen__closeBtn i {
	font-size: 20px;
	color: #EAECED;
}

/* modal container */
.FormModalBtn__container {
  padding: 20px;
  background: #F3F5FB;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  flex: 1;
}

/* modal content */
.FormModalBtn__content {
  background: #FFFFFF;
  padding: 20px;
  border: 1px solid #E8ECF8;
  border-radius: 4px;
  width: 640px;
  margin: 0 auto;
}

.FormModalBtn__content h5 {
  color: #3552A6;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

/* modal footer */
.FormModalBtn .FormModalBtn__Footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 25px calc(50% - 320px);
  background: #162349;
  z-index: 100000;
  height: 70px;
}

.FormModalBtn .FormModalBtn__Footer button {
  display: flex;
  align-items: center;
  background: transparent;
  color: #668FC9;
  font-size: 14px;
  font-weight: 400;
  border: none;
  padding: 0;
}

.FormModalBtn .FormModalBtn__Footer button:last-child {
  color: #6BE5DA;
}

.FormModalBtn .FormModalBtn__Footer button:hover {
  color: #6BE5DA;
  cursor: pointer;
}

.FormModalBtn .FormModalBtn__Footer button i {
  font-size: 18px;
}

.FormModalBtn .FormModalBtn__Footer button:nth-child(1) i {
  padding-right: 12px;
}

.FormModalBtn .FormModalBtn__Footer button:nth-child(2) i {
  padding-left: 12px;
}

/* form label */
.FormModalBtn__content .form-group__label {
  color: #668FC9;
  font-size: 12px;
  font-weight: 400;
}

/* form input */
.FormModalBtn__content input.form-control {
  background: #F3F5FB;
  border: none;
  box-shadow: none;
  padding: 10px;
  color: #162349;
  font-size: 14px;
  font-weight: 400;
  border-radius: 3px;
}

.FormModalBtn__content .has-error input.form-control {
  border: 1px solid #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
  box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
}

.FormModalBtn__content input.form-control::placeholder {
  color: #162349;
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 700px) {
  .FormModalBtn .ModalFullScreen__header {
    padding: 15px 20px;
  }

  .FormModalBtn__content {
    width: initial;
    margin: 0;
  }

  .FormModalBtn .FormModalBtn__Footer {
    padding: 25px 20px;
  }
}
.react-confirm-alert-body{
	width: 270px;
}

.react-confirm-alert-overlay{
	z-index: 9905
}@media (max-width: 991px) {
  
}div.ExistingUserChecker {
	margin-bottom: 64px;
}

.ExistingUserChecker__title{
    color: #536A90;
    font-size: 22px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 40px;
}


.ExistingUserChecker__step3{
	color: #437DEB;
    border: 2px solid #437DEB;
    background: #dbe7ff;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 0px;
    font-weight: bold;
    font-size: 16px;
    line-height: 32px;

}
.requirement-content h3{
	font-size: 20px;
}



/*# Item*/


.ExistingUserChecker__Item{
	margin-bottom: 30px;
    max-width: 320px;
    margin: 0 auto 30px;
}


.ExistingUserChecker__Item__imageContainer{
	float: left;
	width: 80px;
	padding: 10px;
}

.ExistingUserChecker__Item__content{
	float: left;
    width: calc(100% - 80px);
    padding: 15px 20px;
}



.ExistingUserChecker__Item__image{
	width: 60px;
	height: 60px;
	line-height: 60px;
	position: relative;
	display: inline-block;
}


.ExistingUserChecker__Item__image:after{
	content: " ";
	background: #9EA8B1;
	width: calc(100% + 20px);
	height: calc(100% + 20px);
	position: absolute;
	top: -10px;
	left: -10px;
	opacity: 0.13;
	border-radius: 50%;
}


.ExistingUserChecker__Item__title{
	color: #465E7C;
	font-size: 18px;
	padding-bottom: 5px;
	font-weight: bold;
}

.ExistingUserChecker__Item__subtitle{
	color: #9EA8B1;
}

.ExistingUserChecker__Item__subtitle button.btn {
	white-space: initial;
	height: auto;
}

.ExistingUserChecker__footer {
	text-align: unset;
	padding: 15px 20px;
	position: absolute;
	bottom: 0;
	background: #FFFFFF;
	width: 100%;
	left: 0;
	border-top: 1px solid #F0F0F0;
	display: flex;
	justify-content: flex-end;
}

.ExistingUserChecker__footer > div {
	display: flex;
	justify-content: flex-end;
	width: 100%;
}

.ExistingUserChecker__footer button {
	background: #E6E6E6;
	color: #475F7B;
	border: none;
	font-size: 13px;
	font-weight: 400;
	border-radius: 4px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30%;
}

.ExistingUserChecker__footer button:last-child {
	margin-left: 20px;
}

.ExistingUserChecker__footer button:disabled {
	opacity: 0.5;
}

.ExistingUserChecker__footer .nextButton {
	background: #0769CC;
	color: #FFFFFF;
}

@media (max-width: 550px) {
	.ExistingUserChecker__footer button {
		width: calc(50% - 10px);
	}
}
.requirement-item {
	margin-bottom: 25px;
	padding: 15px;
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  }
  
  .requirement-content {
	margin-bottom: 15px;
  }
  
  .requirement-question {
	font-weight: 500;
	color: #2c3e50;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
  }
  
  .requirement-answer {
	padding-left: 25px;
  }
  
  .requirement-info {
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid #eee;
	color: #666;
	font-size: 0.9em;
	display: flex;
	align-items: flex-start;
	gap: 10px;
  }
  
  .requirement-info i {
	color: #17a2b8;
	margin-top: 3px;
  }
  
  .requirement-footer {
	text-align: center;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #eee;
  }
  
  .requirement-footer .btn {
	min-width: 200px;
  }.BirthdayInput{
	margin: 0 -2px;
}

.BirthdayInput__part{
	float: left;
	/*width: calc(100% / 3);*/
	padding: 0 2px;
}

.BirthdayInput__part:nth-child(1){
	width: 30%;
}

.BirthdayInput__part:nth-child(2){
	width: 40%;
}

.BirthdayInput__part:nth-child(3){
	width: 30%;
}


.BirthdayInput__part select{
	padding-left: 5px;
	padding-right: 5px;
}.VideoImgPickerModal__VideoScanner{
	display: block;
	max-width: 100%;
}
.VideoImgPickerModal__VideoScanner_content{
	border: 2px solid #D0D9E2;
	border-radius: 4px;
	max-width: 480px;
    margin: auto;
	margin-bottom: 20px;
}
.VideoImgPickerModal__VideoScanner_video{
	position: relative;
	/*display: inline-block;*/
}


.VideoImgPickerModal__VideoScanner--withImg .VideoImgPickerModal__VideoScanner_video{
	display: none;
}


.VideoImgPickerModal__VideoScanner_video_content{
	display: block;
	max-width: 100%;
	width: 100%;
	position: relative;
	z-index: 2;
}

.VideoImgPickerModal__VideoScanner_videoLoader{
	font-size: 80px;
	line-height: 62px;
	color: #bbb;
	width: 100%;
	position: absolute;
	left: 0;
	top: 50%;
	text-align: center;
	transform: translate(0,-50%);
	z-index: 1;
}

.VideoImgPickerModal__VideoScanner_capture img{
	width: 100%;
}

.VideoImgPickerModal__VideoScanner__btn{
	border-radius: 4px;
	height: 38px;
	background: #39DA8A;
	color: white;
	font-size: 15px;
}
.VideoImgPickerModal__VideoScanner__btn_capture:hover{
	color: white;

}
.VideoImgPickerModal__VideoScanner_btn_afterCapture_delete{
	float: left;
	margin-right: 5px;
	width: calc(50% - 5px);
	background: #EAECF0;
	color: #475F7B;
}
.VideoImgPickerModal__VideoScanner_btn_afterCapture_delete:hover{
	color: #475F7B;

}
.VideoImgPickerModal__VideoScanner_btn_afterCapture_upload{
	float: right;
	margin-left: 5px;

	width: calc(50% - 5px);

}
.VideoImgPickerModal__VideoScanner_btn_afterCapture_upload:hover{
	color: white;
}.VideoImgPickerModal__PopUpBtn__Modal{
  position: fixed;
  z-index: 999;
  background: transparent;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: scroll;
  z-index: 2000;
}



.VideoImgPickerModal__PopUpBtn__Modal__background{
  background: rgba(0,0,0,0.8);
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 2000;
}


/*
.VideoImgPickerModal__PopUpBtn__Modal_close{
  position: fixed;
  right: 0;
    top: 15px;
  font-size: 22px;
}

.VideoImgPickerModal__PopUpBtn__Modal_close .closeIcon{
  height: 12px;
}*/

.VideoImgPickerModal__PopUpBtn__Modal__container{

    /*max-width: 1170px;
    padding: 0 56px;*/
    
    
    max-width: 522px;/*800px;*/
    margin: 100px auto;
    position: relative;
    background: #fff;
    border: 1px solid #fff;
    z-index: 2001;
    
}

.VideoImgPickerModal__PopUpBtn__Modal__header{
  border-bottom: 1px solid #D0D9E2;
}
 
.VideoImgPickerModal__PopUpBtn__Modal__closeBtn.VideoImgPickerModal__PopUpBtn__Modal__closeBtn{
  float: left;
  padding: 20px 20px;
  font-size: 22px;
}

.VideoImgPickerModal__PopUpBtn__Modal__tabs{
  float: left;
}


.VideoImgPickerModal__PopUpBtn__Modal .nav-tabs{
	border: none;
}

.VideoImgPickerModal__PopUpBtn__Modal .nav-tabs > li > a i{
  font-size: 22px;
  vertical-align: sub;
}
.VideoImgPickerModal__PopUpBtn__Modal .nav-tabs > li > a{
	font-size: 13px;
	padding: 20px 20px;
  color: #888;
  padding-bottom: 15px;
	/*background: transparent;
	border: none;
	position: relative;*/
}

.VideoImgPickerModal__PopUpBtn__Modal .nav-tabs > li.active > a,
.VideoImgPickerModal__PopUpBtn__Modal .nav-tabs > li.active > a:hover,
.VideoImgPickerModal__PopUpBtn__Modal .nav-tabs > li.active > a:focus{

	background: transparent;
	border: none;
	color: #3552A6;
}


.VideoImgPickerModal__PopUpBtn__Modal .nav-tabs > li.active > a:after,
.VideoImgPickerModal__PopUpBtn__Modal .nav-tabs > li.active > a:hover:after,
.VideoImgPickerModal__PopUpBtn__Modal .nav-tabs > li.active > a:focus:after{
	content: " ";
	background: #3552A6;
	position: absolute;
	width: 100%;
	height: 2px;
	left: 0;
	bottom: -2px;
}

.VideoImgPickerModal__PopUpBtn__Modal__content{
  padding: 20px;
}
/*Animations*/


.VideoImgPickerModal__PopUpBtn__Modal-leave.VideoImgPickerModal__PopUpBtn__Modal-leave-active .VideoImgPickerModal__PopUpBtn__Modal__background,
.VideoImgPickerModal__PopUpBtn__Modal-enter .VideoImgPickerModal__PopUpBtn__Modal__background{

  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}

.VideoImgPickerModal__PopUpBtn__Modal-enter.VideoImgPickerModal__PopUpBtn__Modal-enter-active .VideoImgPickerModal__PopUpBtn__Modal__background,
.VideoImgPickerModal__PopUpBtn__Modal-leave .VideoImgPickerModal__PopUpBtn__Modal__background{
  opacity: 1;
}




.VideoImgPickerModal__PopUpBtn__Modal-leave.VideoImgPickerModal__PopUpBtn__Modal-leave-active .VideoImgPickerModal__PopUpBtn__Modal__container,
.VideoImgPickerModal__PopUpBtn__Modal-enter .VideoImgPickerModal__PopUpBtn__Modal__container{

  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}

.VideoImgPickerModal__PopUpBtn__Modal-enter.VideoImgPickerModal__PopUpBtn__Modal-enter-active .VideoImgPickerModal__PopUpBtn__Modal__container,
.VideoImgPickerModal__PopUpBtn__Modal-leave .VideoImgPickerModal__PopUpBtn__Modal__container{

  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}



@media (max-width: 767px) {

  .VideoImgPickerModal__PopUpBtn__Modal__container{
    margin-left: 20px;
    margin-right: 20px;
    max-width: 100%;
  }
  
  .VideoImgPickerModal__PopUpBtn__Modal__background{
    background: #fff;
  }

  .VideoImgPickerModal__PopUpBtn__Modal__container{
    margin:0;
  }
}

@media (max-width: 480px) {

  
  
  .VideoImgPickerModal__PopUpBtn__Modal__container .divimg{
    height: 280px;
  }
  
  .VideoImgPickerModal__PopUpBtn__Modal_close{
    text-align: center;
    right: auto;
      top: 27px;
      width: 100%;  
  }
  
}
.VideoImgPickerModal_btn{
    border-radius: 4px;
    color: #475F7B;
    background: #EAECF0;
    font-size: 15px;
    height: 38px;
    line-height: 17px;
    line-height: 24px;

}.ImgUploader .uploaderBlock{

	border: 4px dashed #cccccc;
    border-radius: 2px;
    min-height: 80px;
    padding: 10px 10px 0;
    position: relative;
}


.ImgUploader .uploaderBlock.highlighted{
	border-color: #00BAF5;
}


.ImgUploader .uploaderBlock.hovered{
	border-color: #61C564;
}


.ImgUploader__header {
    color: #bbbbbb;
    line-height: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.ImgUploader__header_text {
    font-size: 20px;
    letter-spacing: 2px;
}


.ImgUploader__header_or {
    padding-left: 15px;
    padding-right: 20px;
}


.ImgUploader__item{
	margin-bottom: 20px;
}


.ImgUploader__item_img{
	border: 4px solid #ffffff;
    border-radius: 1px;
    box-shadow: 0 0 2px #666666;
    height: 120px;
    width: 100%;
    background-size: cover;
    background-position: center;
}


.ImgUploader__item_tools{
	text-align: center;
	padding-top: 5px 0;
}


.ImgUploader__fileHolder_content{
	transition: all 0.1s ease 0s;
}

.ImgUploader__fileHolder_content.hovered{
	transform: translate(60%,0);
	position: relative;
	z-index: 18;
}



/*individual mode*/
.ImgUploader__individual .uploaderBlock{
    padding-bottom: 20px;
}

.ImgUploader__individual .ImgUploader__item{

    max-width: 200px;
    margin: auto;
}

.ImgUploader__individual .ImgUploader__item_img{
    
    height: 200px;
}.ProfileItem{
	margin-bottom: 28px;
	background: #fff;
	border: 1px solid #F0F0F0;
	border-radius: 6px;
}

.ProfileItem__Header {
	display: flex;
	align-items: center;
	padding: 20px;
	border-bottom: 1px solid #F0F0F0;
}

.ProfileItem__image{
	width: 50px;
	height: 50px;
	line-height: 50px;
	margin-right: 16px;
	position: relative;
	display: inline-block;
}

.ProfileItem__image img {
	width: 50px;
	height: 50px;
}


.ProfileItem__image:after{
	content: " ";
	background: #9EA8B1;
	width: 50px;
	height: 50px;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.13;
	border-radius: 50%;
}

.ProfileItem__image__badge{
	position: absolute;
	bottom: 2px;
    right: -16px;
	background: #aaa;
	border-radius: 50%;
	border: 2px solid #fff;
	color: #fff;
	height: 24px;
	width: 24px;
	line-height: 20px;
	font-size: 10px;
	text-align: center;
	z-index: 100;
}

.blueDot {
	background: #437DEC;
	position: absolute;
	left: 0;
	top: 0;
	width: 12px;
	height: 12px;
	border-radius: 50%;
}

.ProfileItem__image__badge--danger{
	background-color: #D9534F;
}

.ProfileItem__title{
	color: #455E7D;
	font-size: 16px;
	font-weight: 700;
	padding-bottom: 5px;
}

.ProfileItem__subtitle{
	color: #455E7D;
	font-size: 12px;
	font-weight: 400;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.ProfileItem__subtitle_firstElm {
	margin-right: 8px;
	/*margin-bottom: 5px;*/
}

.ProfileItem__subtitle .badge{
	background: #E6E6E6;
	color: #818D9A;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 3px;
	padding: 4px 5px;
}

.ProfileItem__subtitle .stateInfo {
	background: #E2ECFF;
	color: #719DF0;
}

.ProfileItem__Tools {
	padding: 20px;
}

.ProfileItem__Tools button {
	width: 100%;
	background: #E6E6E6;
	border-color: #E6E6E6;
	color: #475F7B;
	font-size: 13px;
	font-weight: 400;
	padding: 0;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	text-decoration: none;
	border: none;
}

.ProfileItem__Tools button.ProfileItem__Tools--danger  {
	background: #FFFFFF;
	border: 0;
	color: #FF5B5C;
}

.ProfileItem .ClientSummaryCard {
	padding: 20px;
}

.ProfileItem .emancipateBtn{
	color: #5A8DEE;
	background: transparent;
}
/* General */
.ProfilesForm__account,
.ProfilesForm__thumb,
.ExistingUserChecker {
	background: #fff;
	border: 1px solid #F0F0F0;
	border-radius: 6px;
	padding: 20px;
	margin-bottom: 15px;
}

.ProfilesForm__title,
.Profiles__Modal__SlaveAuths h4 {
	color: #455E7D;
	font-size: 14px;
	font-weight: 700;
	margin: 0 0 20px;
}

/* Modal header */
.Profiles__Modal .modal-header {
	padding: 15px 20px;
	border-bottom: 1px solid #F0F0F0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.Profiles__Modal .modal-header i {
	font-size: 20px;
	color: #475F7B;
	cursor: pointer;
}

.Profiles__Modal .modal-header::before,
.Profiles__Modal .modal-header::after {
	display: none;
}

.Profiles__Modal .modal-header h4 {
	color: #455E7D;
	font-size: 16px;
	font-weight: 700;
}

/* Modal Body */
.Profiles__Modal .modal-body {
	padding: 20px;
	background: #FAFBFB;
}

/* Modal thumb */
.Profiles__Modal .ImgUploader__individual {
	cursor: pointer;
}

.Profiles__Modal .ImgUploader__individual .uploaderBlock {
	border: 3px dotted #E8ECF8;
}

.Profiles__Modal div.buttonFileInput > div {
	background: #E6E6E6;
	border-color: #E6E6E6 !important;
	color: #475F7B !important;
}

.Profiles__Modal .ImgUploader__individual .ImgUploader__header_text {
	color: grey;
	letter-spacing: initial;
	font-size: 14px;
	font-weight: 500;
}

.Profiles__Modal .ImgUploader__individual .ImgUploader__item{
	max-width: 120px;
}

.Profiles__Modal .ImgUploader__individual .ImgUploader__item_img{
	height: 120px;
}

/* Modal Form */
.ProfilesForm .form-group__label,
.ExistingUserChecker .form-group__label {
	color: #455E7D;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 4px;
}

.ProfilesForm input,
.ProfilesForm select,
.ExistingUserChecker input,
.ExistingUserChecker select,
.ExistingUserChecker .SuperChosen_v3-selection-container {
	border: 1px solid #E1E1E1;
	border-radius: 4px;
	color: #596778;
	font-size: 15px;
	font-weight: 400;
}

.ProfilesForm input::placeholder,
.ProfilesForm select::placeholder,
.ExistingUserChecker input::placeholder,
.ExistingUserChecker select::placeholder {
	color: #596778;
	font-size: 15px;
	font-weight: 400;
	
}

/* Modal Profiles List */
.Profiles__Modal__SlaveAuths .ProfileItem__Tools {
	display: none;
}

/* Modal Footer */
.Profiles__Modal .modal-footer {
	text-align: unset;
	padding: 15px 20px;
	display: flex;
	justify-content: space-between;
	border-top: 1px solid #F0F0F0;
}

.Profiles__Modal .modal-footer button {
	background: #E6E6E6;
	color: #475F7B;
	border: none;
	font-size: 13px;
	font-weight: 400;
	border-radius: 4px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	margin: 0 15px;
}

.Profiles__Modal .modal-footer.Profiles__Modal__footer--singleBtn {
	justify-content: flex-end;
}

.Profiles__Modal .modal-footer.Profiles__Modal__footer--singleBtn button{
	width: 50%;
	flex: initial;
	margin: 0;
}

.Profiles__Modal .modal-footer .cancelButton {
	background: #FFFFFF;
	color: #FF5B5C;
}

.Profiles__Modal .modal-footer .saveButton {
	background: #0769CC;
	color: #FFFFFF;
}

.Profiles__Modal .modal-footer .emancipateBtn {
	width: 100%;
	flex: 1;
	
}

.Profiles__Modal .modal-footer > span {
	flex: 1;
	margin: 0 15px;
}

.Profiles__Modal .modal-footer::before {
	display: none;
}

@media (max-width: 400px) {
	.Profiles__Modal .modal-footer.Profiles__Modal__footer--singleBtn button{
		width: 100%;
	}
}

/* modal fullscreen header */
.LinkClientModalBtn .ModalFullScreen__header {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	align-items: center;
	padding: 15px calc(50% - 320px);
}

.LinkClientModalBtn .ModalFullScreen__title {
	color: #EAECED;
	font-size: 16px;
	font-weight: 400;
	line-height: initial;
}

.LinkClientModalBtn .ModalFullScreen__closeBtn {
	padding: 0;
	margin: 0;
	margin-right: 20px;
	display: flex;
	align-items: center;
}

.LinkClientModalBtn .ModalFullScreen__closeBtn i {
	font-size: 20px;
	color: #EAECED;
}

/* modal container */
.LinkClientModalBtn__container {
  padding: 20px;
  background: #F3F5FB;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  flex: 1;
}

/* modal content */
.LinkClientModalBtn__content {
  background: #FFFFFF;
  padding: 20px;
  border: 1px solid #E8ECF8;
  border-radius: 4px;
	width: 640px;
	margin: 0 auto;
}

/* item */
.LinkClientModalBtn__Item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	/* padding: 15px 0;
	border-top: 1px solid #E8ECF8; */
	cursor: pointer;
}

.LinkClientModalBtn__Item__container {
	padding: 15px 0;
	border-top: 1px solid #E8ECF8;
}

.LinkClientModalBtn__Item__container:first-child {
	padding-top: 0;
	border: none;
}

.LinkClientModalBtn__Item__container:last-child {
	padding-bottom: 0;
}

.LinkClientModalBtn__Item:hover {
	opacity: 0.5;
}

/* item new profile */
/* .LinkClientModalBtn__Item.LinkClientModalBtn__Item--newProfile {
	padding-top: 15px;
	padding-bottom: 0;
	border-top: 1px solid #E8ECF8;
} */

/* item info */
.LinkClientModalBtn__Item__info {
	display: flex;
	align-items: center;
	flex: 1;
}

/* item info icon */
.LinkClientModalBtn__Item__icon {
	width: 32px;
	height: 32px;
	background: #F3F5FB;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.LinkClientModalBtn__Item__icon i {
  color: #668FC9;
  font-size: 16px;
}

/* item info content */
.LinkClientModalBtn__Item__content {
  padding-left: 10px;
}

.LinkClientModalBtn__Item__content p {
	margin: 0;
	color: #668FC9;
	font-size: 14px;
	font-weight: 700;
}

.LinkClientModalBtn__Item__content span {
	color: #668FC9;
	font-size: 12px;
	font-weight: 400;
	display: block;
}

.LinkClientModalBtn__Item__content--hasErrors {
	cursor: not-allowed;
	opacity: 0.5;
}

/* item arrow */
.LinkClientModalBtn__Item__arrow i {
	color: #668FC9;
	font-size: 16px;
}

@media (max-width: 700px) {
	.LinkClientModalBtn__content {
		width: initial;
		margin: 0;
	}
	
	.LinkClientModalBtn .ModalFullScreen__header {
		padding: 15px 20px;
	}
}
/* modal full screen */
/* modal header */
.CustomFieldsModalBtn .ModalFullScreen__header {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	align-items: center;
	padding: 15px 20px;
	padding: 15px calc(50% - 320px);
}

.CustomFieldsModalBtn .ModalFullScreen__title {
	color: #EAECED;
	font-size: 16px;
	font-weight: 400;
	line-height: initial;
}

.CustomFieldsModalBtn .ModalFullScreen__closeBtn {
	padding: 0;
	margin: 0;
	margin-right: 20px;
	display: flex;
	align-items: center;
}

.CustomFieldsModalBtn .ModalFullScreen__closeBtn i {
	font-size: 20px;
	color: #EAECED;
}

/* modal container */
.CustomFieldsModalBtn__container {
  padding: 20px;
  background: #F3F5FB;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  flex: 1;
}

/* modal content */
.CustomFieldsModalBtn__content {
  background: #FFFFFF;
  padding: 20px;
  border: 1px solid #E8ECF8;
  border-radius: 4px;
  width: 640px;
  margin: 0 auto;
}

.CustomFieldsModalBtn__content__item {
  margin: 0 0 15px 0;
}

.CustomFieldsModalBtn__content__item:last-child {
  margin: 0;
}

.CustomFieldsModalBtn__content__item__title {
  color: #3552A6;
  font-size: 15px;
  font-weight: 700;
  display: block;
}

/* modal footer */
.CustomFieldsModalBtn .CustomFieldsModalBtn__Footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 25px calc(50% - 320px);
  background: #162349;
  z-index: 100000;
  height: 70px;
}

.CustomFieldsModalBtn .CustomFieldsModalBtn__Footer button {
  display: flex;
  align-items: center;
  background: transparent;
  color: #668FC9;
  font-size: 14px;
  font-weight: 400;
  border: none;
  padding: 0;
}

.CustomFieldsModalBtn .CustomFieldsModalBtn__Footer button:last-child {
  color: #6BE5DA;
}

.CustomFieldsModalBtn .CustomFieldsModalBtn__Footer button:hover {
  color: #6BE5DA;
  cursor: pointer;
}

.CustomFieldsModalBtn .CustomFieldsModalBtn__Footer button i {
  font-size: 18px;
}

.CustomFieldsModalBtn .CustomFieldsModalBtn__Footer button:nth-child(1) i {
  padding-right: 12px;
}

.CustomFieldsModalBtn .CustomFieldsModalBtn__Footer button:nth-child(2) i {
  padding-left: 12px;
}

/* form label */
.CustomFieldsModalBtn__content .form-group__label {
  color: #668FC9;
  font-size: 12px;
  font-weight: 400;
}

/* form input */
.CustomFieldsModalBtn__content input.form-control {
  background: #F3F5FB;
  border: none;
  box-shadow: none;
  padding: 10px;
  color: #162349;
  font-size: 14px;
  font-weight: 400;
  border-radius: 3px;
}

.CustomFieldsModalBtn__content .has-error input.form-control {
  border: 1px solid #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
  box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
}

.CustomFieldsModalBtn__content input.form-control::placeholder {
  color: #162349;
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 700px) {
  .CustomFieldsModalBtn .ModalFullScreen__header {
    padding: 15px 20px;
  }

  .CustomFieldsModalBtn__content {
    width: initial;
    margin: 0;
  }

  .CustomFieldsModalBtn .CustomFieldsModalBtn__Footer {
    padding: 25px 20px;
  }
}
/* pax single item */
.PaxSingleItem {
  padding: 15px 0;
  border-bottom: 1px solid #E8ECF8;
}

.PaxSingleItem:last-child {
  border: none;
  padding-bottom: 0;
}

/* pax single item info */
.PaxSingleItem__info {
  display: flex;
  justify-content: space-between;
}

/* pax single item info title */
.PaxSingleItem__info__title {
  display: flex;
}

.PaxSingleItem__info__title p {
  margin: 0;
}

/* pax single item info icon */
.PaxSingleItem__info__title__icon {
  margin-right: 10px;
  background: #F3F5FB;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.PaxSingleItem__info__title__icon > div:first-child:hover {
  cursor: pointer;
}

.PaxSingleItem__info__title__icon i {
  color: #668FC9;
  font-size: 16px;
}

/* pax single item info when no selected */
.PaxSingleItem__info--noSelected p {
  padding-top: 7px;
  padding-bottom: 12px;
}

.PaxSingleItem__info--noSelected .PaxSingleItem__bottom__tools {
  padding: 0;
}

/* blue dot */
.PaxSingleItem__info__title__icon .blueDot {
	background: #437DEC;
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* thumb letter */
.letter {
  color: #668FC9;
  font-size: 18px;
  font-weight: 400;
}

/* pax item summary */
.PaxSingleItem__info__title__summary p {
  color: #668FC9;
  font-size: 14px;
  font-weight: 700;
}

.PaxSingleItem__info__title__summary span {
  color: #668FC9;
  font-size: 12px;
  font-weight: 400;
  display: block;
}

.PaxSingleItem__info__title__summary > div > div > div > span {
  margin-top: 9px;
  color: #5A8DEE; 
}

.PaxSingleItem--withError .PaxSingleItem__info__title__summary > div > div > div > span {
  margin: 0;
}

.PaxSingleItem__info__title__summary > div > div > div > span:hover {
  cursor: pointer;
}

/* bottom tools */
.PaxSingleItem__bottom__tools {
  display: flex;
  padding-top: 10px;
}

.PaxSingleItem__bottom__tools > div {
  padding-right: 20px;
}

.PaxSingleItem__bottom__tools span {
  color: #5A8DEE;
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
}

.PaxSingleItem__bottom__tools .deleteBtn span,
.PaxSingleItem__info__title__summary__error span {
  color: #FF5B5C;
}

/* pax intem tools */
.PaxSingleItem__info__tools {
  display: flex;
}

.PaxSingleItem__info__tools > div {
  padding-left: 12px;
}

/* pax item tools icons */
.PaxSingleItem__info__tools i {
  color: #668FC9;
  cursor: pointer;
  font-size: 17px;
}

.PaxSingleItem__info__title__summary__link span {
  color: #5A8DEE;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}

.paxUserVerified i.Icon {
  background-color: #458847;
  color: white;
  padding: .5em .5em;
  border-radius: 5em;
}
.paxUserVerified i.Icon:hover {
  background-color: #70c773;
  color: white;
}
.paxUserNotVerified i.Icon {
  background-color: #D54445;
  color: white;
  padding: .5em .5em;
  border-radius: 5em;
}
.paxUserNotVerified i.Icon:hover {
  background-color: #ff6666;
  color: white;
}
.QrAbono{
  padding-right: 10px;
}

.QrAbono__modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.QrAbono__modal-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
  position: relative;
}

.QrAbono__modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
div.QrAbono__modal-header h3{
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.QrAbono__modal-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5em;
  padding: 5px;
}

.QrAbono__modal-body {
  display: flex;
  justify-content: center;
  align-items: center;
}

.QrAbono__modal-body img {
  max-width: 300px;
  max-height: 300px;
}
.QrAbono__modal-body__qr__tools{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.QrAbono__modal-body__qr__tools div{
  padding: 10px;
}/* pax list */
.NewPaxSelector__PaxList--Multiple {
  padding-bottom: 15px;
  border-bottom: 1px solid #E8ECF8;
}

.NewPaxSelector__PaxList--Multiple:last-child {
  padding: 0;
  border: none;
}

/* pax list title */
.NewPaxSelector__option__title {
  padding-top: 15px;
  color: #3552A6;
  font-size: 14px;
  font-weight: 700;
}

.NewPaxSelector__option__title span {
  color: #818D99;
  font-weight: 400;
}

/* adder */
.NewPaxSelector__Adder {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #E8ECF8;
}

/* adder container */
.NewPaxSelector__Adder__container {
  border: 1px solid #E8ECF8;
  border-radius: 3px;
  padding: 8px 13px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

/* adder content */
.NewPaxSelector__Adder__container i {
  color: #3552A6;
  font-size: 24px;
  padding-right: 10px;
}

.NewPaxSelector__Adder__container h6 {
  color: #3552A6;
  font-size: 14px;
  font-weight: 700;
}/* personal data */
.PersonalData {
  position: relative;
}

/* summary */
.PersonalData__Summary {
  background: #FFFFFF;
  padding: 20px;
  margin: -20px -20px 20px;
}

/* summary container */
.PersonalData__Summary__container {
  width: 640px;
  margin: 0 auto;
}

/* summary product name */
.PersonalData__Summary .PersonalData__Summary__title h5,
.PersonalData__Summary__container h5 {
  margin: 0;
  color: #668FC9;
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
}

.PersonalData__Summary .PersonalData__Summary__title h5:last-child {
  color: #668FC9;
  font-weight: 400;
}

/* summary info */
.PersonalData__Summary__info,
.PersonalData__Summary__title {
  display: flex;
  align-items: center;
}

/* summary info divider */
.PersonalData__Summary__info > div,
.PersonalData__Summary__title > div {
  margin: 0 10px;
  height: 12px;
  background-color: #E8ECF8;
  width: 1px;
}

.PersonalData__Summary__title > div {
  background-color: #668FC9;
}

.PersonalData__Summary__info span {
  color: #818D99;
  font-size: 13px;
  font-weight: 400;
  text-transform: capitalize;
}

/* personal data change date */
.PersonalData__Summary__changeOption {
  display: flex;
  align-items: center;
  color: #5A8DEE;
  cursor: pointer;
}

.PersonalData__Summary__changeOption p {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
}

.PersonalData__Summary__changeOption i {
  font-size: 10px;
  padding-right: 8px;
}

/* pax selector container */
.PaxSelector__Wrapper {
  background: #FFFFFF;
  padding: 20px;
  border: 1px solid #E8ECF8;
  border-radius: 4px;
  width: 640px;
  margin: 0 auto;
}

.PaxSelector__Wrapper .PaxSelector__Wrapper__title {
  color: #3552A6;
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
}

/* personal data details */
.PersonalData__details {
  padding: 20px;
  width: 640px;
  margin: 20px auto;
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #E8ECF8;
}

/* personal data details title */
.PersonalData__details h5 {
  margin: 0 0 20px;
  color: #3552A6;
  font-size: 14px;
  font-weight: 700;
}

/* personal data details input label */
.PersonalData__details .form-group .form-group__label {
  color: #668FC9;
  font-size: 12px;
  font-weight: 400;
}

/* personal data details input */ 
.PersonalData__details .form-group .form-control {
  color: #162349;
  font-size: 14px;
  font-weight: 400;
  background: #F3F5FB;
  border: none;
  border-radius: 3px;
  box-shadow: none;
  width: 100% !important;
}

.PersonalData__details .form-group .form-control::placeholder {
  color: #668FC9;
  font-size: 14px;
  font-weight: 400;
  background: #F3F5FB;
  border: none;
  border-radius: 3px;
  box-shadow: none;
}

/* next button */
.PersonalData__nextButton {
  margin: 20px auto 0;
  width: 640px;
  display: flex;
  justify-content: flex-end;
}

.PersonalData__nextButton > div {
  background-color: #818D99;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  border-radius: 4px;
  width: 50%;
}

/* next button active */
.PersonalData__nextButton--active > div {
  background-color: #39DA8A;
  cursor: pointer;
}

/* next button content */
.PersonalData__nextButton p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.PersonalData__nextButton i {
  margin-left: 10px;
  transform: rotate(180deg);
  font-size: 12px;
  margin-bottom: 2px;
}

/* checkbox */
.PersonalData .rc-checkbox-checked:hover .rc-checkbox-inner,
.PersonalData .rc-checkbox:hover .rc-checkbox-inner {
  border-color: #437DEC;
}

.PersonalData .rc-checkbox .rc-checkbox-inner,
.PersonalData .rc-checkbox-checked .rc-checkbox-inner {
  border-color: #437DEC;
  background-color: #ffffff;
}

.PersonalData .rc-checkbox-checked .rc-checkbox-inner:after {
  border: 2px solid #437DEC;
  border-top: 0;
  border-left: 0;
  content: ' ';
}

.PersonalData__Profile__validation__errors {
  width: 640px;
  margin: 0 auto;
}

.PersonalData__Profile__validation__errors > div {
  margin-bottom: 20px;
}

.PersonalData__Profile__validation__errors > div:last-child {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .PersonalData__Summary__container,
  .PaxSelector__Wrapper,
  .PersonalData__Profile__validation__errors {
    width: initial;
    margin: 0;
  }

  .PersonalData__details {
    width: initial;
    margin: 20px 0 60px;
  }

  .PersonalData__nextButton {
    /*margin: 20px -20px 0;
    position: fixed;
    bottom: 0;*/
    width: 100%;
  }

  .PersonalData__nextButton > div {
    border-radius: 0;
    width: 100%;
  }
}
/* bono picker title */
.BonoPicker__title {
  margin: -20px -20px 20px;
  background: #FFFFFF;
  padding: 20px;
}

.BonoPicker__title__container {
  width: 640px;
  margin: 0 auto;
}

.BonoPicker__title h4 {
  margin: 0;
  color: #668FC9;
  font-size: 14px;
  font-weight: 700;
}

/* bonos list */
.BonoPicker__list {
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #E8ECF8;
  padding: 20px;
  width: 640px;
  margin: 0 auto;
}

/* bonos list item */
.BonoPicker__list__item {
  padding: 20px 0 10px;
  border-bottom: 1px solid #E8ECF8;
}

.BonoPicker__list__item:first-child {
  padding-top: 0;
}

.BonoPicker__list__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

/* bonos list item content */
.BonoPicker__list__item__content {
  display: flex;
  justify-content: space-between;
}

/* bonos list item title */
.BonoPicker__list__item__title h5 {
  margin: 0;
  color: #3552A6;
  font-size: 14px;
  font-weight: 700;
}

.BonoPicker__list__item__title span {
  color: #668FC9;
  font-size: 12px;
  font-weight: 400;
}

/* bonos list item button */
.BonoPicker__list__item__button {
  height: 100%;
}

.BonoPicker__list__item__button button {
  background: #39DA8A;
  border-radius: 4px;
  border: none;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 400;
  height: 100%;
  padding: 7px 18px;
}

.BonoPicker__list__item__title__seasonal {
  font-size: 12px;
  font-weight: 700;
  color: black;
}

/* Estilos generales para párrafos */
.BonoPicker__list__item p {
  margin: 0;
  color: #818D99;
  font-size: 12px;
  font-weight: 400;
}

/* Selector más específico para el párrafo seasonal */
.BonoPicker__list__item p.BonoPicker__list__item__title__seasonal {
  font-size: 12px;
  font-weight: 700;
  color: black;
}

.BonoPicker__list__item p:nth-child(2) {
  margin-top: 10px;
}
.Rental--shared__warning__bonos{
  color: #FD9A53;
  border: 2px solid #FD9A53;
  background: #FFF2E9;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 16px;
  line-height: 32px;
  width: 640px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .BonoPicker__title__container,
  .BonoPicker__list {
    width: initial;
    margin: 0;
  }
}
/* modal content */
.QuotaModalBtn .modal-content {
  border-radius: 8px;
}

/* modal header */
.QuotaModalBtn .modal-header > div {
  display: flex;
  justify-content: space-between;
}

/* modal header */
.QuotaModalBtn .modal-header {
  padding: 25px 22px 0;
  border-bottom: none;
}

/* modal header title */
.QuotaModalBtn .modal-header > div {
  border-bottom: 1px solid #E8ECF8;
  padding-bottom: 20px;
}

.QuotaModalBtn .modal-header > div .QuotaModalBtn__Header__title h5 {
  margin: 0;
  color: #3552A6;
  font-size: 16px;
  font-weight: 700;
}

.QuotaModalBtn .modal-header > div .QuotaModalBtn__Header__title span {
  color: #668FC9;
  font-size: 12px;
  font-weight: 400;
}

/* modal header close btn */
.QuotaModalBtn .modal-header > div .QuotaModalBtn__Header__closeBtn:hover {
  cursor: pointer;
}

.QuotaModalBtn .modal-header > div .QuotaModalBtn__Header__closeBtn i {
  color: #3552A6;
  font-size: 14px;
  font-weight: 400;
}

/* modal body */
.QuotaModalBtn .modal-body {
  padding: 18.5px 22px 34.5px;
  border: none;
  overflow-y: auto;
}

/* modal body title */
.QuotaModalBtn .modal-body > div h4 {
  margin: 0 0 13px;
  color: #3552A6;
  font-size: 16px;
  font-weight: 700;
}

/* modal body items */
.QuotaModalBtn .modal-body > div p {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #E8ECF8;
  color: #3552A6;
  font-size: 14px;
  font-weight: 400;
}

.QuotaModalBtn .modal-body > div p:nth-child(2) {
  font-weight: 700;
}

.QuotaModalBtn .modal-body > div p:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* moda footer */
.QuotaModalBtn .modal-footer {
  border-top: none;
  text-align: initial;
  padding: 0;
}

.QuotaModalBtn .modal-footer:hover {
  cursor: pointer;
}

.QuotaModalBtn .modal-footer > div {
  background-color: #39DA8A;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 20px;
  color: #FFFFFF;
  border-radius: 0 0 7px 7px;
}

/* modal footer content */
.QuotaModalBtn .modal-footer > div p {
  margin: 0;
  margin-right: 10px;
  font-size: 14px;
  font-weight: 400;
}

.QuotaModalBtn .modal-footer > div i {
  font-size: 10px;
  transform: rotate(180deg);
}

@media (max-width: 700px) {
  /* modal content */
  .QuotaModalBtn {
    display: flex !important;
    align-items: flex-end;
  }

  .QuotaModalBtn .modal-content {
    border-radius: 8px 8px 0 0;
    box-shadow: none;
    border: none;
  }

  .QuotaModalBtn .modal-dialog {
    width: 100%;
    margin: 0;
  }

  /* moda footer */
  .QuotaModalBtn .modal-footer > div {
    border-radius: 0;
  }
}
/* abono picker title */
.AbonoPicker__title {
  margin: -20px -20px 20px;
  background: #FFFFFF;
  padding: 20px;
}

.AbonoPicker__title__container {
  width: 640px;
  margin: 0 auto;
}

.AbonoPicker__title h4 {
  margin: 0;
  color: #668FC9;
  font-size: 14px;
  font-weight: 700;
}

/* abonos list */
.AbonoPicker__list {
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #E8ECF8;
  padding: 20px;
  width: 640px;
  margin: 0 auto;
}

/* bonos list item */
.AbonoPicker__list__item {
  padding: 20px 0 10px;
  border-bottom: 1px solid #E8ECF8;
}

.AbonoPicker__list__item:first-child {
  padding-top: 0;
}

.AbonoPicker__list__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

/* bonos list item content */
.AbonoPicker__list__item__content {
  display: flex;
  justify-content: space-between;
}

/* bonos list item title */
.AbonoPicker__list__item__title h5 {
  margin: 0;
  color: #3552A6;
  font-size: 14px;
  font-weight: 700;
}

.AbonoPicker__list__item__title span {
  color: #668FC9;
  font-size: 12px;
  font-weight: 400;
}

/* bonos list item button */
.AbonoPicker__list__item__button {
  height: 100%;
}

.AbonoPicker__list__item__button button {
  background: #39DA8A;
  border-radius: 4px;
  border: none;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 400;
  height: 100%;
  padding: 7px 18px;
}

/* bonos list item extra info */
.AbonoPicker__list__item p {
  margin: 0;
  color: #818D99;
  font-size: 12px;
  font-weight: 400;
}

.AbonoPicker__list__item > p {
  margin: 10px 0 0;
}

.AbonoPicker__list__item > p:nth-child(3) {
  margin: 0 0 -1px;
}

@media (max-width: 700px) {
  .AbonoPicker__title__container,
  .AbonoPicker__list {
    width: initial;
    margin: 0;
  }
}

/* section container */
.InscriptionPicker__container {
  width: 640px;
  margin: 0 auto;
}

/* section title */
.InscriptionPicker h5 {
  margin: 0 0 20px;
  color: #3552A6;
  font-size: 14px;
  font-weight: 700;
}

/* inscriptions list item */
.InscriptionPicker__list__item {
  background: #FFFFFF;
  padding: 20px;
  border-radius: 4px;
  border: 1px solid #E8ECF8;
  margin-bottom: 20px;
}

.InscriptionPicker__list__item:last-child {
  margin-bottom: 0;
}

/* inscriptions list item content */
.InscriptionPicker__list__item__content {
  display: flex;
  justify-content: space-between;
}

/* inscriptions list item content info */
.InscriptionPicker__list__item__content__info h4 {
  margin: 0;
  color: #3552A6;
  font-size: 16px;
  font-weight: 700;
}

.InscriptionPicker__list__item__content__info span {
  color: #668FC9;
  font-size: 12px;
  font-weight: 400;
}

/* inscriptions list item content button */
.InscriptionPicker__list__item__content__button button {
  background: #3552A6;
  border-radius: 4px;
  border: none;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 400;
  padding: 7px 18px;
}

/* inscritions list item schedules */
.InscriptionPicker__list__item__schedules {
  margin-top: 10px;
}

.InscriptionPicker__list__item__schedules p {
  margin: 0;
  color: #818D99;
  font-size: 12px;
  font-weight: 400;
}

/* item courses left */
.InscriptionPicker__list__item__coursesLeft {
  padding-top: 10px;
  border-top: 1px solid #E8ECF8;
  margin-top: 10px;
}

/* item courses left - bar text */
.InscriptionPicker__list__item__coursesLeft span {
  color: #818D99;
  font-size: 12px;
  font-weight: 400;
}

/* item courses left - bar */
.InscriptionPicker__list__item__coursesLeft__bar {
  height: 6px;
  width: 100%;
  background-color: #E7EDF3;
  border-radius: 8px;
}

/* item courses left - innet bar */
.InscriptionPicker__list__item__coursesLeft__bar__inner {
  height: 100%;
  background-color: #39DA8A;
  border-radius: 8px;
}

/* item courses left - innet bar - danger */
.InscriptionPicker__list__item__coursesLeft__bar__inner--danger {
  background-color: #FF5B5C;
}

/* item courses left - innet bar - warning */
.InscriptionPicker__list__item__coursesLeft__bar__inner--warning {
  background-color: #F5A623;
}

@media (max-width: 700px) {
  .InscriptionPicker__container {
    width: initial;
    margin: 0;
  }
}
/* rate picker content container */
.RatePicker__content__container {
  width: 640px;
  margin: 0 auto;
}

/* summary */
.RatePicker__Summary {
  background: #FFFFFF;
  padding: 20px;
  margin: -20px -20px 20px;
}

/* summary container */
.RatePicker__Summary__container {
  width: 640px;
  margin: 0 auto;
}

/* summary product name */
.RatePicker__Summary h5 {
  margin: 0;
  color: #668FC9;
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
}

/* summary info */
.RatePicker__Summary__info {
  display: flex;
  align-items: center;
}

.RatePicker__Summary__info span {
  color: #818D99;
  font-size: 13px;
  font-weight: 400;
  text-transform: capitalize;
}

/* personal data change date */
.RatePicker__Summary__changeOption {
  display: flex;
  align-items: center;
  color: #5A8DEE;
  cursor: pointer;
}

.RatePicker__Summary__changeOption p {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
}

.RatePicker__Summary__changeOption i {
  font-size: 10px;
  padding-right: 8px;
}

/* rate picker title */
.RatePicker h4 {
  margin: 20px 0;
  color: #3552A6;
  font-size: 14px;
  font-weight: 700;
}

/* rate picker list */
.RatePicker__list {
  background: #FFFFFF;
  padding: 20px;
  border-radius: 4px;
  border: 1px solid #E8ECF8;
}

/* rate picker list item */
.RatePicker__list__item {
  padding-bottom: 7px;
  margin-bottom: 15px;
  border-bottom: 1px solid #E8ECF8;
}

.RatePicker__list__item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

/* rate list item content */
.RatePicker__list__item__content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

/* rate list item title */
.RatePicker__list__item__title h5 {
  margin: 0;
  color: #3552A6;
  font-size: 14px;
  font-weight: 700;
}

.RatePicker__list__item__title span {
  color: #668FC9;
  font-size: 12px;
  font-weight: 400;
}

/* rate list item button */
.RatePicker__list__item__button {
  height: 100%;
}

.RatePicker__list__item__button button {
  background: #39DA8A;
  border-radius: 4px;
  border: none;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 400;
  height: 100%;
  padding: 7px 18px;
}

/* danger styles */
button.RatePicker__list__item__button--danger {
  background: #FFFFFF;
  color: #FF5B5C;
  border: 1px solid #FF5B5C;
  cursor: not-allowed;
}

/* rate list extra info */
.RatePicker__list__item p {
  margin: 0;
  color: #818D99;
  font-size: 12px;
  font-weight: 400;
}

@media (max-width: 700px) {
  .RatePicker__content__container,
  .RatePicker__Summary__container {
    width: initial;
    margin: 0;
  }
}
.CustomFields__field-displayInline {
  display: inline;/*inline-block*/
  font-size: 15px;
  color: #536E77;
  text-transform: none;
}

.CustomFields__field-displayInline p{
  margin-bottom: 5px;
}

.CustomFields__field-displayInline p:last-child{
  display: inline;
  margin-bottom: 0px;
}

.CustomFields__field-displayInline a {
  text-decoration: none;
  color: #54C0D3;
}

.CustomFields__field__displayText {
  color: #536E77;
  font-size: 15px;
}

.CustomFields__field__displayText p {
  margin-bottom: 5px;
}

.CustomFields__field__alert {
  color: #FF5B5C;
  font-size: 15px;
  background-color: #FFDEDE;
  padding: 15px;
  border-radius: 4px;
}

.CustomFields__field__alert p {
  margin: 0;
}

.FieldsCustomizer__Field__checkbox__icon {
  float: left;
  width: 30px;
}

.FieldsCustomizer__Field__checkbox__text {
  float: left;
  width: calc(100% - 30px);
}

/* File title */
.CustomFields__field__displayTitle {
  color: #536E77;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 12px;
}

/* File field */
.CustomFields__field-file .FileUploader_files_item,
.CustomFields__field-file .FileUploader_files_line {
  border: none;
  border-bottom: 1px dotted #D0D9E2;
}
.CustomFields__field-file .FileUploader_files_item_icon i {
  color: #88A1A7;
}

.CustomFields__field-file .FileUploader_files_item_name {
  color: #536E77;
  font-size: 13px;
}

/*
.CustomFields__field-file p {
  color: #536E77;
  font-size: 14px;
}*/

.CustomFields__field-file .FileUploader_files_item_delete i{
  font-size: 18px;
}

/* Field checkbox */
/*.CustomFields__field-checkbox .rc-checkbox-primary.rc-checkbox-checked .rc-checkbox-inner,
.CustomFields__field-checkbox .rc-checkbox-primary .rc-checkbox-inner {
  width: 18px;
  height: 18px;
}

.CustomFields__field-checkbox .rc-checkbox-primary.rc-checkbox-checked .rc-checkbox-inner::after {
  height: 9px;
  width: 5px;
  top: 2px;
}

.CustomFields__field-checkbox .align-rc-checkbox-text .rc-checkbox {
  padding-top: 2px;
}*/

/* Field checkbox double */
.CustomFields__field-checkboxDouble .CustomFields__field-displayInline p {
  margin-bottom: 17px;
}

.CustomFields__field-checkboxDouble .FieldsCustomizer__Field__conditioned__mode {
  margin-bottom: 15px;
}

.CustomFields__field-checkboxDouble .FieldsCustomizer__Field__conditioned__separator {
  margin: 15px 0;
}

.CustomFields__field-checkboxDouble__checkContainer:hover {
  cursor: pointer;
}

.CustomFields__field-checkboxDouble__checkContainer i {
  margin-right: 12px;
}

.CustomFields__field-checkboxDouble__checkContainer.active i {
  color: #39DA8A;
}

.FieldsCustomizer__Field__conditioned__separator {
  border-top: 1px dotted #D0D9E2;
  margin-top: 22px;
  margin-bottom: 20px;
}

.FieldsCustomizer__separator {
  border-top: 1px dotted #D0D9E2;
  margin-top: 22px;
  margin-bottom: 20px;
}

/* Field signature */
.CustomFields__field-signature .SignatureInput__pad {
  border: 2px dashed #D0D9E2;
}

.CustomFields_downloadFile_button {
  border-radius: 4px;
  color: #475F7B;
  background: #EAECF0;
  font-size: 15px;
  height: 38px;
  line-height: 17px;
  line-height: 24px;
}

.CustomFields__required {
  margin-left: 5px;
}.PaxForm {
  padding: 20px;
  margin: -20px -20px 20px;
}

.PaxForm__container {
  width: 640px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 20px;
  border: 1px solid #E8ECF8;
  border-radius: 4px;
}

/* next button */
.PaxForm__nextButton {
  margin: 20px auto 0;
  width: 640px;
  display: flex;
  justify-content: flex-end;
}

.PaxForm__nextButton > div {
  background-color: #818D99;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  border-radius: 4px;
  width: 50%;
}

/* next button active */
.PaxForm__nextButton--active > div {
  background-color: #39DA8A;
  cursor: pointer;
}

/* next button content */
.PaxForm__nextButton p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.PaxForm__nextButton i {
  margin-left: 10px;
  transform: rotate(180deg);
  font-size: 12px;
  margin-bottom: 2px;
}

.PaxForm__PaxSelector > div {
  width: 100%;
}

.PaxForm__PaxSelector__dropTitle .PaxForm__PaxSelector__item{
	float: left;
}
.PaxForm__PaxSelector__dropTitle .PaxForm__PaxSelector__dropTitle__icon{
	float: right;
	color: #B3C0CE;
}

.PaxForm__PaxSelector ul{
	width: 100%;
}
.PaxForm__PaxSelector ul li a{
    padding: 10px;
    padding-left: 20px;
}

.PaxForm__PaxSelector button {
  width: 100%;
  height: 36px;
  background-color: #FFFFFF;
  border: 1px solid #C7CFD6;
  border-radius: 4px;
  text-align: left;
  font-size: 15px;
  margin-bottom: 20px;
}

@media (max-width: 700px) {
  .PaxForm__container {
    width: initial;
    margin: 0;
  }
  .PaxForm__nextButton{
    width: 100%;
  }
  .PaxForm__nextButton > div{
    border-radius: 0;
    width: 100%;
  }
}
.Booker {
  padding: 20px;
}/* container */
.SelectPaymentSource {
  background-color: #FFFFFF;
  border-radius: 4px;
  padding: 20px;
  margin: 20px 0 20px;
  border: 1px solid #E8ECF8;
}

/* title */
.SelectPaymentSource h5 {
  margin: 0 0 20px;
  color: #3552A6;
  font-size: 14px;
  font-weight: 700;
}

/* subtitle */
.SelectPaymentSource span {
  color: #668FC9;
  font-size: 12px;
  font-weight: 400;
}

/* payment source item */
.PaymentSourceItem {
  background: #FFFFFF;
  border-radius: 3px;
  border: 1px solid #E8ECF8;
  padding: 10px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.PaymentSourceItem:last-child {
  margin-bottom: 0;
}

/* item hovered or selected */
.PaymentSourceItem:hover,
.PaymentSourceItem--selected {
  background: #F3F5FB;
  border-color: #668FC9;
  cursor: pointer;
}

/* item active icon */
.PaymentSourceItem__icon {
  display: flex;
  align-items: center;
  padding-right: 13px;
}

.PaymentSourceItem__icon i {
  font-size: 16px;
  color: #3552A6;
}

/* item thumb */
.PaymentSourceItem__thumb {
  display: flex;
  align-items: center;
}

.PaymentSourceItem__thumb i {
  color: #3552A6;
  font-size: 22px;
}

.PaymentSourceItem__thumb img {
  width: 28px;
}

/* item content */
.PaymentSourceItem__content {
  padding-left: 13px;
}

.PaymentSourceItem__content p {
  margin: 0;
  color: #3552A6;
  font-size: 14px;
  font-weight: 700;
  margin-top: 3px;
  line-height: 1;
}

.PaymentSourceItem__content span {
  color: #668FC9;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.167;
  display: inline-block;
}

@media (max-width: 700px) {
  .SelectPaymentSource {
    margin-bottom: 60px;
  }
}
.SaveCardPolicyModal .modal-dialog {
  max-width: 600px;
}

.SaveCardPolicyModal__content {
  padding: 10px 0;
}

.SaveCardPolicyModal__content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.SaveCardPolicyModal__content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #555;
  text-align: justify;
}

.SaveCardPolicyModal .modal-footer {
  border-top: 1px solid #e5e5e5;
  padding: 15px;
}

.SaveCardPolicyModal .modal-footer .btn {
  min-width: 120px;
}css
/* payment picker */
.PaymentPicker {
  position: relative;
  padding: 20px;
}

/* payment icker container */
.PaymentPicker__container {
  width: 640px;
  margin: 0 auto;
}

/* session sumary */
.PaymentPicker__sessionSummary {
  background: #FFFFFF;
  border-radius: 4px;
  padding: 20px;
  border: 1px solid #E8ECF8;
}

/* session sumary title */
.PaymentPicker__sessionSummary h5 {
  color: #3552A6;
  font-size: 14px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 20px;
}

/* session sumary product name */
.PaymentPicker__sessionSummary h4 {
  color: #668FC9;
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

/* session summary info */
.PaymentPicker__sessionSummary__info {
  display: flex;
  align-items: center;
}

/* session summary info divider */
.PaymentPicker__sessionSummary__info > div {
  margin: 0 10px;
  height: 12px;
  background-color: #E8ECF8;
  width: 1px;
}

.PaymentPicker__sessionSummary__info span {
  color: #818D99;
  font-size: 13px;
  font-weight: 400;
  text-transform: capitalize;
}

/* date modal */
.PaymentPicker .DateModalBtn,
.backToPicker {
  padding-bottom: 20px;
  border-bottom: 1px solid #E8ECF8;
}

/* inspcrition summary */
.backToPicker--inscription > p {
  margin: 0;
  color: #818D99;
  font-size: 13px;
}

.backToPicker--inscription .PaymentPicker__sessionSummary__info span {
  font-size: 14px;
  color: #668FC9;
}

.backToPicker--inscription .PaymentPicker__sessionSummary__info span:nth-child(1) {
  font-weight: 700;
}

.backToPicker--inscription .PaymentPicker__sessionSummary__info > div {
  margin: 0 5px;
}

.backToPicker--inscription .PaymentPicker__sessionSummary__changeDate {
  margin-top: 10px;
}

/* change date */
.PaymentPicker__sessionSummary__changeDate {
  display: flex;
  align-items: center;
  color: #5A8DEE;
  cursor: pointer;
}

.PaymentPicker__sessionSummary__changeDate p {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
}

.PaymentPicker__sessionSummary__changeDate i {
  font-size: 10px;
  padding-right: 8px;
}

/* ticket summary */
.PaymentPicker__ticketSummary {
  padding-top: 10px;
}

/* ticket summary item */
.PaymentPicker__ticketSummary__item {
  padding: 10px 0;
  border-bottom: 1px solid #E8ECF8;
}

.PaymentPicker__ticketSummary__item p {
  margin: 7px 0 0;
  color: #818D99;
  font-size: 12px;
}

/* ticket summary item content */
.PaymentPicker__ticketSummary__item__content {
  display: flex;
  justify-content: space-between;
}

/* ticket summary item content info */
.PaymentPicker__ticketSummary__item__content > div h4 {
  margin: 0;
  color: #3552A6;
  font-size: 14px;
  font-weight: 400;
}

.PaymentPicker__ticketSummary__item__content > div span,
.PaymentPicker__ticketSummary__item__content p {
  margin: 0;
  color: #668FC9;
  font-size: 12px;
  font-weight: 400;
}

.PaymentPicker__ticketSummary__item__content p {
  font-size: 14px;
}

.PaymentPicker__ticketSummary__item__content p:last-child {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.PaymentPicker__ticketSummary__item__content > div {
  flex: 5;
}

.PaymentPicker__ticketSummary__item__content > p:nth-child(2) {
  flex: 2;
}
.PaymentPicker__ticketSummary__item__content:has(.PaymentPicker__ticketSummary__item__content__bono) {
  margin-top: 1em;
}
.PaymentPicker__ticketSummary__item__content__bono {
  display: flex;
  gap: 2em;
}

/* ticket summary total */
.PaymentPicker__ticketSummary__total,
.PaymentPicker__ticketSummary__difference {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
}

.PaymentPicker__ticketSummary__total {
  align-items: center;
}

.PaymentPicker__ticketSummary__difference {
  padding: 0;
}

.PaymentPicker__ticketSummary__total h3 {
  margin: 0;
  color: #3552A6;
  font-size: 18px;
  font-weight: 700;
}

.PaymentPicker__ticketSummary__difference p {
  color: #668FC9;
  margin: 0;
}

.PaymentPicker__ticketSummary__total__input {
  display: flex;
  align-items: center;
}

.PaymentPicker__ticketSummary__total input,
.PaymentPicker__ticketSummary__total__input span {
  text-align: right;
  margin: 0;
  color: #3552A6;
  font-size: 18px;
  font-weight: 700;
  border: 0;
  outline: none;
}

.PaymentPicker__ticketSummary__total__input span {
  padding: 1px 0;
}

.PaymentPicker__ticketSummary__total input {
  width: 100%;
}

.PaymentPicker__ticketSummary__total input::placeholder {
  color: #3552A6;
  font-size: 18px;
  font-weight: 700;
}

/* Chrome, Safari, Edge, Opera */
.PaymentPicker__ticketSummary__total input::-webkit-outer-spin-button,
.PaymentPicker__ticketSummary__total input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.PaymentPicker__ticketSummary__total input[type=number] {
  -moz-appearance: textfield;
}

/* next button */
.PaymentPicker__nextButton {
  width: 640px;
  margin: 20px auto 0;
  display: flex;
  justify-content: flex-end;
}

.PaymentPicker__nextButton > div {
  background-color: #39DA8A;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  border-radius: 4px;
  width: 50%;
  cursor: pointer;
}

/* next button content */
.PaymentPicker__nextButton p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  margin-right: 10px;
}

.PaymentPicker__nextButton i {
  font-size: 12px;
}

@media (max-width: 700px) {
  .PaymentPicker__container {
    width: initial;
    margin: 0;
  }

  .PaymentPicker__nextButton {
    width: 100%;
    /*margin: 20px -20px 0;
    position: fixed;
    bottom: 0;*/
  }

  .PaymentPicker__nextButton > div {
    width: 100%;
    border-radius: 0;
  }
}
/*css añadido para buy more bono */
.PaymentPicker__buyMore{
  width: 45%;
  margin-right: 20px;
}
.PaymentPicker__buyMore__icon{
 display: flex;
 align-items: center;
 justify-content: space-evenly;
 width: 30%;
}
@media (max-width: 700px) {
  .PaymentPicker__ticketSummary__item__content:has(.PaymentPicker__ticketSummary__item__content__bono){
    flex-direction: column;
  }
  .PaymentPicker__ticketSummary__item__content > div{
    display: flex;
    justify-content: space-between;
  }
  .PaymentPicker__nextButton p{
    text-align: center;
  }
  .PaymentPicker__ticketSummary__item__content > p:nth-child(2){
    text-align: center;
  }
  .bono_uses p{
    text-align: end !important;
  }
}

/* Save card checkbox */
.PaymentPicker__saveCard {
  background: #FFFFFF;
  border-radius: 4px;
  padding: 15px 20px;
  border: 1px solid #E8ECF8;
  margin-top: 20px;
}

.PaymentPicker__saveCard__checkbox {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #333;
}

.PaymentPicker__saveCard__checkbox span {
  cursor: pointer;
}

.PaymentPicker__saveCard__checkbox a {
  color: #3552A6;
  white-space: nowrap;
}

.PaymentPicker__saveCard__checkbox a:hover {
  color: #668FC9;
  text-decoration: underline !important;
}

.PaymentPicker__saveCard__checkbox .rc-checkbox {
  flex-shrink: 0;
}/* Modal header */
.QRClientModalBtn__Modal .modal-header {
	padding: 15px 20px;
	border-bottom: 1px solid #F0F0F0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.QRClientModalBtn__Modal .modal-header i {
	font-size: 20px;
	color: #475F7B;
	cursor: pointer;
}

.QRClientModalBtn__Modal .modal-header::before,
.QRClientModalBtn__Modal .modal-header::after {
	display: none;
}

.QRClientModalBtn__Modal .modal-header h4 {
	color: #455E7D;
	font-size: 16px;
	font-weight: 700;
}

/* Modal Body */
.QRClientModalBtn__Modal .modal-body {
	padding: 20px;
	background: #FAFBFB;
  border-radius: 6px;
}

/* Modal Content */
.QRClientModalBtn__Modal__content {
	text-align: center;
	/* padding: 50px 20px; */
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 300px;
	max-width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
  /* border: 1px solid #F0F0F0;
  border-radius: 6px; */
}

.QRClientModalBtn__Modal__content p {
	font-size: 22px;
	color:#333;
	font-weight: bold;
	font-family: sans-serif;
	margin: 0;
}

/* .QRClientModalBtn__Modal__content img {
	width: 100%;
} */

.QRClientModalBtn__QR {
	border-radius: 4px;
	border: 1px solid #888888;
	max-width: 150px;
	margin-top: 15px;
	height: auto;
}

.QRClientModalBtn__InstallationLogo {
	margin-top: 24px;
	margin-bottom: 24px;
	max-width: 155px;
}

.QRClientModalBtn__Modal__content__Error {
	color: #FF5B5C;
	font-size: 22px;
}

@media (max-width: 450px) {
	.QRClientModalBtn__Modal__content {
		width: 100%;
		text-align: center;
	}
}.ConfirmSuccess {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

/* confirm success container */
.ConfirmSuccess__container {
  background: #FFFFFF;
  border: 2px solid #39DA8A;
  border-radius: 4px;
  padding: 20px;
  width: 640px;
  margin: 20px auto;
}

/* success message */
.ConfirmSuccess__message {
  text-align: center;
  padding-bottom: 20px;
  color: #39DA8A;
}

.ConfirmSuccess__message i {
  font-size: 50px;
}

.ConfirmSuccess__message h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

/* info message */ 
.ConfirmSuccess__info {
  padding: 20px 0;
  border-bottom: 1px solid #F0F0F0;
}

.ConfirmSuccess__info p {
  margin: 0;
  color: #818D99;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
}

/* qr code block */
.ConfirmSuccess__QR {
  padding-top: 20px;
  display: flex;
  justify-content: center;
  border-top: 1px solid #F0F0F0;
  flex-wrap: wrap;
  gap: 5%;
}
.ConfirmSuccess__QR>h3{
  width: 100%;
}
.ConfirmSuccess__QR__pax-container{
  max-width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* qr code */
.ConfirmSuccess__QR__code {
  border-radius: 4px;
  margin-right: 20px;
}

.ConfirmSuccess__QR__code img {
  border: 1px solid #F0F0F0;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* qr code error */
.ConfirmSuccess__QR__code span {
  color: #FF5B5C;
  font-size: 14px;
  font-weight: 400;
}

/* qr message */
.ConfirmSuccess__QR__message p {
  color: #818D99;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 7px;
}

/* qr message link */
.ConfirmSuccess__QR__message a,
.ConfirmSuccess__QR__message span,
.ConfirmSuccess__QR__message i {
  color: #5A8DEE;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

.ConfirmSuccess__QR__message i {
  margin-right: 10px;
  margin-top: 1px;
}

.ConfirmSuccess__QR__message span:hover {
  cursor: pointer;
}

.ConfirmSuccess__QR__message a:hover,
.ConfirmSuccess__QR__message a:focus {
  color: #5A8DEE;
  text-decoration: none;
}

/* reserve btn */
.ConfirmSuccess__reservBtn {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #F0F0F0;
}

/* reserve btn link */
.ConfirmSuccess__reservBtn a {
  text-decoration: none;
  background: #0769CC;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 400;
  padding: 6px 40px;
  border-radius: 4px;
}

.ConfirmSuccess__reservBtn a:hover {
  color: #FFFFFF;
  cursor: pointer;
}

/* confirm success footer */
.ConfirmSuccess__footer {
  background: #162349;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px calc(50% - 320px);
  height: 70px;
}

.ConfirmSuccess__footer > div:last-child,
.ConfirmSuccess__footer > div:last-child .ConfirmSuccess__footer__newReserveBtn {
  color: #6BE5DA;
}

.ConfirmSuccess__footer > div i {
  font-size: 18px;
}

.ConfirmSuccess__footer a:focus {
  text-decoration: none;
}

/* footer buttons */
.ConfirmSuccess__footer__closeBtn,
.ConfirmSuccess__footer__newReserveBtn {
  display: flex;
  align-items: center;
  color: #668FC9;
}

.ConfirmSuccess__footer__closeBtn:hover,
.ConfirmSuccess__footer__newReserveBtn:hover {
  color: #6BE5DA;
  cursor: pointer;
}

.ConfirmSuccess__footer__closeBtn p,
.ConfirmSuccess__footer__newReserveBtn p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

/* footer button icons */
.ConfirmSuccess__footer__closeBtn i {
  margin-right: 15px;
}

.ConfirmSuccess__footer__newReserveBtn i {
  margin-left: 15px;
}
.ConfirmSuccess__footer--public>div{
  width: 100%;
}
.ConfirmSuccess__footer--public>div .ConfirmSuccess__footer__newReserveBtn{
  display: flex;
  justify-content: center;
}
@media (max-width: 700px) {
  .ConfirmSuccess__container {
    width: initial;
    margin: 20px;
  }

  .ConfirmSuccess__footer {
    padding: 20px;
  }
}
.ticket-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #F0F0F0;
}

.ticket-info {
  flex: 5;
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}

.ticket-summary div:nth-child(2) {
  flex: 2;
  text-align: center;
}

.ticket-summary div:last-child {
  flex: 1;
  text-align: right;
}

.ticket-name {
  color: #4B4B4B;
  font-size: 14px;
}

.unit-price {
  color: #818D99;
  font-size: 12px;
  text-align: left !important;
}

/* Estilos para el método de pago */
.payment-method-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Estilos para el total */
.total-amount {
  margin-top: 10px;
  font-weight: bold;
  text-align: center;
  color: #39DA8A;
  font-size: 3.5em;
}

/* Modal styles */
.ConfirmSuccess__modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.ConfirmSuccess__modal-container {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  width: 80%;
  max-width: 400px;
}

.ConfirmSuccess__modal-title {
  margin-bottom: 20px;
  font-size: 18px;
  text-align: center;
}

.ConfirmSuccess__modal-buttons {
  display: flex;
  justify-content: space-around;
}

.ConfirmSuccess__modal-button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.ConfirmSuccess__modal-button--primary {
  background-color: #3552A6;
  color: white;
}

.ConfirmSuccess__modal-button--secondary {
  background-color: #ccc;
  color: white;
}.NewBookBtnModal__Modal__container {
	min-height: 100%;
	display: flex;
	flex-direction: column;
}

/* modal header */
.NewBookBtnModal__Modal .ModalFullScreen__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px calc(50% - 320px);
}

/* modal header title */
.NewBookBtnModal__Modal .ModalFullScreen__title {
	color: #EAECED;
	font-size: 16px;
	font-weight: 400;
	line-height: initial;
}

/* modal header title content icon */
.NewBookBtnModal__Modal__title__icon {
  margin-right: 20px;
  cursor: pointer;
}

.NewBookBtnModal__Modal__title__icon i {
  color: #EAECED;
  font-size: 24px;
}

/* modal header title content */
.NewBookBtnModal__Modal__title {
  display: flex;
  align-items: center;
}

.NewBookBtnModal__Modal__title__content span {
  color: #668FC9;
  font-size: 12px;
  font-weight: 700;
}

.NewBookBtnModal__Modal__title__content h4 {
  margin: 0;
  color: #EAECED;
  font-size: 16px;
  font-weight: 400;
}

/* modal header close button */
.NewBookBtnModal__Modal .ModalFullScreen__closeBtn {
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
}

.NewBookBtnModal__Modal .ModalFullScreen__closeBtn i {
	font-size: 18px;
	color: #EAECED;
}

/* modal body */
.NewBookBtnModal__Modal .ModalFullScreen__body {
	background: #F3F5FB;
}

@media (max-width: 991px) {
	.NewBookBtnModal > div.dropdown {
		display: none;
	}
}

@media (max-width: 700px) {
	.NewBookBtnModal__Modal .ModalFullScreen__header {
		padding: 15px 20px;
	}
}
.OpenDoor i {
  font-size: 13px;
}

.OpenDoor__Label {
  display: inline-block;
  margin-left: 5px;
}.SuscriptionDataBlock .alert{
	border: none;
	background-color: #E2ECFF;
	color: #719DF0;
	border-radius: 4px;
	display: inline-block;
	margin-bottom: 10px;
	width: 100%;
	font-family: 'Roboto', sans-serif;
	display: flex;
	align-items: center;
	padding: 14px 20px;
}

.SuscriptionDataBlock .alert.alert-warning {
	color: #F89426;
	background: #f8942642;
}

.SuscriptionDataBlock .alert.alert-danger {
	color: #FF5B5C;
	background-color: rgba(255, 91, 92, 10%);
}

.SuscriptionDataBlock__icon {
	font-size: 20px;
	padding-right: 14px;
}.MobileList {
  padding: 20px;
}

.MobileList__Item {
  padding: 10px;
  border: 1px solid #F0F0F0;
  /* border: 2px solid #E8ECF8; */
  box-shadow: 0px 0px 6px 2px rgb(0 0 0 / 10%);
  margin-bottom: 15px;
  border-radius: 4px;
}

.MobileList__Item div {
  line-height: 1;
  margin-bottom: 5px;
}

.MobileList__Item div:last-child {
  margin-bottom: 0;
}

.MobileList__Item:last-child {
  margin-bottom: 0;
}.SubscriptionModal table {
	margin: 0;
}

.SubscriptionModal .table > thead > tr > th {
	border-bottom: 1px solid #F0F0F0;
	padding-top: 5px;
	padding-bottom: 5px;
	color: #818D9A;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.SubscriptionModal .table > tbody > tr > td {
	color: #455E7D;
	font-size: 14px;
	font-weight: 400;
	border-top: 1px solid #F0F0F0;
}

.SubscriptionModal .modal-header {
	padding: 15px 20px;
	border-bottom: 1px solid #F0F0F0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.SubscriptionModal .modal-header i {
	font-size: 16px;
	color: #475F7B;
	cursor: pointer;
}

.SubscriptionModal .modal-header::before,
.SubscriptionModal .modal-header::after {
	display: none;
}

.SubscriptionModal .modal-header h4 {
	color: #455E7D;
	font-size: 16px;
	font-weight: 700;
}

.SubscriptionModal .modal-body {
	padding: 0;
}

.SubscriptionModal__price del {
  margin-right: 5px;
  opacity: 0.6;
}
.SubscriptionModal__row:nth-child(even){
	background-color: #F0F0F0;
}
.SubscriptionModal__row--active{
	border: 2px solid #2956a3 !important;
    box-shadow: 0 0 10px rgb(41 86 163 / 50%);
    background-color: rgb(41 86 163 / 5%) !important;
}
.SubscriptionModal__row:hover{
	cursor: pointer;
	background-color: #e9ecef;
}

div.SubscriptionModal__wide {
  width: 80%;
  max-width: 80%;
  margin: 30px auto;
}

.SubscriptionModal__wide .modal-content {
  width: 100%;
}/* modal header */
.PriceDetailModalBtn__title {
	display: flex;
	align-items: center;
}

.PriceDetailModalBtn__title > span.PriceDetailModalBtn__title__Details {
  display: flex;
  align-items: center;
}

.PriceDetailModalBtn__title i {
	transform: rotate(180deg);
	color: #B3C0CE;
	margin-left: 5px;
}

.PriceDetailModalBtn__title > span > div p.PriceDetailModalBtn__title__link {
  color: #5A8DEE;
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 0;
	margin-left: 5px;
	font-family: 'Roboto', sans-serif;
	cursor: pointer;
}

.PriceDetailModalBtn__Modal .modal-header {
	padding: 15px 20px;
	border-bottom: 1px solid #F0F0F0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.PriceDetailModalBtn__Modal .modal-header i {
	font-size: 16px;
	color: #475F7B;
	cursor: pointer;
}

.PriceDetailModalBtn__Modal .modal-header::before,
.PriceDetailModalBtn__Modal .modal-header::after {
	display: none;
}

.PriceDetailModalBtn__Modal .modal-header h4 {
	color: #455E7D;
	font-size: 16px;
	font-weight: 700;
}

/* modal body */
.PriceDetailModalBtn__Modal .modal-body {
	padding: 20px;
}

/* ticket summary */
.PriceDetailModalBtn__ticketSummary {
	padding: 20px;
	border: 1px solid #E8ECF8;
	border-radius: 4px;
	background: #FFFFFF;
}

/* ticket summary item */
.PriceDetailModalBtn__ticketSummary__item {
  padding: 10px 0;
  border-bottom: 1px solid #E8ECF8;
}

.PriceDetailModalBtn__ticketSummary__item:first-child {
  padding-top: 0;
}

.PriceDetailModalBtn__ticketSummary__item p {
  margin: 7px 0 0;
  color: #818D99;
  font-size: 12px;
}

/* ticket summary item content */
.PriceDetailModalBtn__ticketSummary__item__content {
  display: flex;
  justify-content: space-between;
}

/* ticket summary item content info */
.PriceDetailModalBtn__ticketSummary__item__content > div h4 {
  margin: 0;
  color: #3552A6;
  font-size: 14px;
  font-weight: 400;
}

.PriceDetailModalBtn__ticketSummary__item__content > div span,
.PriceDetailModalBtn__ticketSummary__item__content p {
  margin: 0;
  color: #668FC9;
  font-size: 12px;
  font-weight: 400;
}

.PriceDetailModalBtn__ticketSummary__item__content p {
  font-size: 14px;
}

.PriceDetailModalBtn__ticketSummary__item__content p:last-child {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.PriceDetailModalBtn__ticketSummary__item__content > div {
  flex: 5;
}

.PriceDetailModalBtn__ticketSummary__item__content > p:nth-child(2) {
  flex: 2;
}

/* ticket summary total */
.PriceDetailModalBtn__ticketSummary__total {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
}

.PriceDetailModalBtn__ticketSummary__total h3 {
  margin: 0;
  color: #3552A6;
  font-size: 18px;
  font-weight: 700;
}

.OrderItem__payment--abono {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px; 
}

.PriceDetailModalBtn__title {
  display: flex;
  align-items: center;
}

.OrderItem__bookBtn.OrderItem__bookBtn--cobrar {
  margin-left: 30px;
  padding: 6px 12px; 
  background-color: #FFA000; 
  color: white; 
  border: none; 
  border-radius: 5px; 
  cursor: pointer; 
  font-weight: bold; 
}

.OrderItem__bookBtn.OrderItem__bookBtn--cobrar:hover {
  background-color: #E68A00; 
}

.Scanner__result__tools--validateCheckin.BonoInfo__btn_cobrar {
  background-color: red;
  display: block;
  margin: 0 auto; 
  text-align: center;
  width: 50%;
  border-radius: 5px; 

}

.Scanner__result__tools--validateCheckin.BonoInfo__btn_cobrar span {
  font-weight: bold;
}

.Scanner__result__tools--validateCheckin.BonoInfo__btn_cobrar:hover {
  color: #8B0000
}

.PriceDetailModalBtn__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.PriceDetailModalBtn__left {
  display: flex;
  align-items: center;
}

.PriceDetailModalBtn__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.PriceDetailModalBtn__right-content {
  display: flex;
  align-items: center;
}

.OrderItem__bookBtn.OrderItem__bookBtn--cobrar {
  margin-right: 10px;
}

.circular-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #f0f0f0;
  font-size: 12px;
}
.OrderItem__payment.OrderItem__payment--abono > row {
  width: 100%;
}
.OrderItem .PriceDetailModalBtn .PriceDetailModalBtn__price.PriceDetailModalBtn__price--pending {
  color: #FF5B5C;
}
@media (max-width: 700px) {
  .Scanner-modal--ticketInfo .Scanner__result__tools .back-button {
    flex: 1;
    justify-content: center;
  }
}.OrderItem__CancelText p {
	color: #455E7D;
	margin-bottom: 20px;
	font-size: 12px;
	font-family: 'Roboto Condensed', sans-serif;
	text-align: center;
}
.modal-body-qrSinglgeDisplay{
	max-height: 80vh;
    overflow: hidden;
    overflow-y: scroll;
}
@media (max-width: 991px) {
	.modal-body-qr-mobile .qr-mobile-page{
		max-height: 85vh;
    	overflow: hidden;
    	overflow-y: scroll;
	}
}
/* modal header */
.PriceDetailModalBtn__title {
	display: flex;
	align-items: center;
}

.PriceDetailModalBtn__title > span.PriceDetailModalBtn__title__Details {
  display: flex;
  align-items: center;
}

.PriceDetailModalBtn__title i {
	transform: rotate(180deg);
	color: #B3C0CE;
	margin-left: 5px;
}

.PriceDetailModalBtn__title > span > div p.PriceDetailModalBtn__title__link {
  color: #5A8DEE;
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 0;
	margin-left: 5px;
	font-family: 'Roboto', sans-serif;
	cursor: pointer;
}

.PriceDetailModalBtn__Modal .modal-header {
	padding: 15px 20px;
	border-bottom: 1px solid #F0F0F0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.PriceDetailModalBtn__Modal .modal-header i {
	font-size: 16px;
	color: #475F7B;
	cursor: pointer;
}

.PriceDetailModalBtn__Modal .modal-header::before,
.PriceDetailModalBtn__Modal .modal-header::after {
	display: none;
}

.PriceDetailModalBtn__Modal .modal-header h4 {
	color: #455E7D;
	font-size: 16px;
	font-weight: 700;
}

/* modal body */
.PriceDetailModalBtn__Modal .modal-body {
	padding: 20px;
}

/* ticket summary */
.PriceDetailModalBtn__ticketSummary {
	padding: 20px;
	border: 1px solid #E8ECF8;
	border-radius: 4px;
	background: #FFFFFF;
}

/* ticket summary item */
.PriceDetailModalBtn__ticketSummary__item {
  padding: 10px 0;
  border-bottom: 1px solid #E8ECF8;
}

.PriceDetailModalBtn__ticketSummary__item:first-child {
  padding-top: 0;
}

.PriceDetailModalBtn__ticketSummary__item p {
  margin: 7px 0 0;
  color: #818D99;
  font-size: 12px;
}

/* ticket summary item content */
.PriceDetailModalBtn__ticketSummary__item__content {
  display: flex;
  justify-content: space-between;
}

/* ticket summary item content info */
.PriceDetailModalBtn__ticketSummary__item__content > div h4 {
  margin: 0;
  color: #3552A6;
  font-size: 14px;
  font-weight: 400;
}

.PriceDetailModalBtn__ticketSummary__item__content > div span,
.PriceDetailModalBtn__ticketSummary__item__content p {
  margin: 0;
  color: #668FC9;
  font-size: 12px;
  font-weight: 400;
}

.PriceDetailModalBtn__ticketSummary__item__content p {
  font-size: 14px;
}

.PriceDetailModalBtn__ticketSummary__item__content p:last-child {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.PriceDetailModalBtn__ticketSummary__item__content > div {
  flex: 5;
}

.PriceDetailModalBtn__ticketSummary__item__content > p:nth-child(2) {
  flex: 2;
}

/* ticket summary total */
.PriceDetailModalBtn__ticketSummary__total {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
}

.PriceDetailModalBtn__ticketSummary__total h3 {
  margin: 0;
  color: #3552A6;
  font-size: 18px;
  font-weight: 700;
}

.PriceDetailModalBtn__actions {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.PriceDetailModalBtn__actions .OrderItem__bookBtn {
  margin-right: 10px;
}

.Scanner__result__tools--validateCheckin.BonoInfo__btn_cobrar
{
	background-color: rgba(255, 1, 1, 0.753);
}
.Scanner__result__tools--validateCheckin.BonoInfo__btn_cobrar span
{
	font-weight: bold;
}

/* .OrdersList{
	padding: 50px 0;
} */

.OrderItem__uses {
	padding: 10px 0;
  margin: 0 15px;
	border-bottom: 1px solid #F0F0F0;
}

.OrderItem__uses p {
	margin: 0;
	font-size: 15px;
	font-weight: 400;
	color: #455E7D;
	font-family: 'Roboto', sans-serif;
}

.OrderItem__uses p.text-danger,
.OrderItem__uses p.text-success {
	font-weight: 700;
	font-family: 'Roboto', sans-serif;
}

.OrdersList__Header__Title {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	justify-content: space-between;
	justify-items: center;
	align-items: center;
	border: solid 1px lightgray;
    padding: .1em .5em;
	background: #eee;
	color: #455E7D;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}
.OrdersList__Body__Item {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	justify-content: space-between;
	justify-items: center;
	align-items: center;
	border: solid 1px lightgray;
    padding: .1em .5em;
}
.OrdersList__Body__Item:nth-child(even) {
	background-color: #f5f5f5;
}
.OrdersList__Body__Item:nth-child(odd) {
	background-color: #fff;
}
.modal-reservas-history * .Result.Result--left.Result--size-sm{
	display: flex;
}
/* modal header */
.PriceDetailModalBtn__title {
	display: flex;
	align-items: center;
}

.PriceDetailModalBtn__title > span.PriceDetailModalBtn__title__Details {
  display: flex;
  align-items: center;
}

.PriceDetailModalBtn__title i {
	transform: rotate(180deg);
	color: #B3C0CE;
	margin-left: 5px;
}

.PriceDetailModalBtn__title > span > div p.PriceDetailModalBtn__title__link {
  color: #5A8DEE;
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 0;
	margin-left: 5px;
	font-family: 'Roboto', sans-serif;
	cursor: pointer;
}

.PriceDetailModalBtn__Modal .modal-header {
	padding: 15px 20px;
	border-bottom: 1px solid #F0F0F0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.PriceDetailModalBtn__Modal .modal-header i {
	font-size: 16px;
	color: #475F7B;
	cursor: pointer;
}

.PriceDetailModalBtn__Modal .modal-header::before,
.PriceDetailModalBtn__Modal .modal-header::after {
	display: none;
}

.PriceDetailModalBtn__Modal .modal-header h4 {
	color: #455E7D;
	font-size: 16px;
	font-weight: 700;
}

/* modal body */
.PriceDetailModalBtn__Modal .modal-body {
	padding: 20px;
}

/* ticket summary */
.PriceDetailModalBtn__ticketSummary {
	padding: 20px;
	border: 1px solid #E8ECF8;
	border-radius: 4px;
	background: #FFFFFF;
}

/* ticket summary item */
.PriceDetailModalBtn__ticketSummary__item {
  padding: 10px 0;
  border-bottom: 1px solid #E8ECF8;
}

.PriceDetailModalBtn__ticketSummary__item:first-child {
  padding-top: 0;
}

.PriceDetailModalBtn__ticketSummary__item p {
  margin: 7px 0 0;
  color: #818D99;
  font-size: 12px;
}

/* ticket summary item content */
.PriceDetailModalBtn__ticketSummary__item__content {
  display: flex;
  justify-content: space-between;
}

/* ticket summary item content info */
.PriceDetailModalBtn__ticketSummary__item__content > div h4 {
  margin: 0;
  color: #3552A6;
  font-size: 14px;
  font-weight: 400;
}

.PriceDetailModalBtn__ticketSummary__item__content > div span,
.PriceDetailModalBtn__ticketSummary__item__content p {
  margin: 0;
  color: #668FC9;
  font-size: 12px;
  font-weight: 400;
}

.PriceDetailModalBtn__ticketSummary__item__content p {
  font-size: 14px;
}

.PriceDetailModalBtn__ticketSummary__item__content p:last-child {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.PriceDetailModalBtn__ticketSummary__item__content > div {
  flex: 5;
}

.PriceDetailModalBtn__ticketSummary__item__content > p:nth-child(2) {
  flex: 2;
}

/* ticket summary total */
.PriceDetailModalBtn__ticketSummary__total {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
}

.PriceDetailModalBtn__ticketSummary__total h3 {
  margin: 0;
  color: #3552A6;
  font-size: 18px;
  font-weight: 700;
}

.OrderItem__payment--abono {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px; 
}

.PriceDetailModalBtn__title {
  display: flex;
  align-items: center;
}

.PriceDetailModalBtn__price {
  font-weight: 700;
  color: #28a745;
}

.PriceDetailModalBtn__price--pending {
  color: #FFA000;
}

.PriceDetailModalBtn__actions {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.circular-timer {
  margin-left: 10px;
  padding: 5px 10px;
  background-color: #f0f0f0;
  border-radius: 50%;
  min-width: 40px;
  text-align: center;
}

.circular-timer span {
  font-size: 12px;
  font-weight: bold;
  color: #475F7B;
}

.SelectPaymentSource {
  margin-top: 20px;
  padding: 15px;
  border: 1px solid #E8ECF8;
  border-radius: 4px;
  background: #F8F9FA;
}

.SelectPaymentSource h5 {
  margin: 0 0 5px 0;
  color: #3552A6;
  font-size: 16px;
  font-weight: 700;
}

.SelectPaymentSource > span {
  display: block;
  margin-bottom: 15px;
  color: #668FC9;
  font-size: 14px;
}

.OrderItem__bookBtn.OrderItem__bookBtn--cobrar {
  margin-left: 30px;
  padding: 6px 12px; 
  background-color: #FFA000; 
  color: white; 
  border: none; 
  border-radius: 5px; 
  cursor: pointer; 
  font-weight: bold; 
}

.OrderItem__bookBtn.OrderItem__bookBtn--cobrar:hover {
  background-color: #E68A00; 
}

.Scanner__result__tools--validateCheckin.BonoInfo__btn_cobrar {
  background-color: red;
  display: block;
  margin: 0 auto; 
  text-align: center;
  width: 50%;
  border-radius: 5px; 

}

.Scanner__result__tools--validateCheckin.BonoInfo__btn_cobrar span {
  font-weight: bold;
}

.Scanner__result__tools--validateCheckin.BonoInfo__btn_cobrar:hover {
  color: #8B0000
}.OriginModal .modal-header {
	padding: 15px 20px;
	border-bottom: 1px solid #F0F0F0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.OriginModal .modal-header i {
	font-size: 16px;
	color: #475F7B;
	cursor: pointer;
}

.OriginModal .modal-header::before,
.OriginModal .modal-header::after {
	display: none;
}

.OriginModal .modal-header h4 {
	color: #455E7D;
	font-size: 16px;
	font-weight: 700;
}

.OriginModal .modal-body {
	padding: 20px;
}

.OriginModal .OrderItem {
  width: 100%;
  margin: 0;
}
/* title */
.BookingTable h4 {
  margin: 0 0 23px 0;
  color: #405A84;
  font-weight: 400;
  font-size: 20px;
}

/* table */
.BookingTable__container {
  border: 1px solid #F0F0F0;
  border-radius: 4px;
}

/* table header */
.BookingTable__container__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 27px;
  border-bottom: 1px solid #F0F0F0;
}

.BookingTable__container__header h6 {
  margin: 0;
  color: #818D9A;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  flex: 1;
  text-align: center;
}

.BookingTable__container__header h6:nth-child(1) {
  flex: 2;
  text-align: left;
}

/* table item */
.BookingTable__container__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 27px;
  border-bottom: 1px solid #F0F0F0;
}

.BookingTable__container__item:last-child {
  border: 0;
}

.BookingTable__container__item > div {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  text-align: center;
}

.BookingTable__container__item > div:nth-child(1) {
  flex: 2;
  justify-content: flex-start;
}

.BookingTable .badge {
  padding: 2px 13px;
  margin: 0 11px 1px 0;
  min-width: auto;
}

.BookingTable__container__item p {
  margin: 0;
  color: #455E7D;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}

.BookingTable__container__item > div:first-child p {
  font-size: 16px;
}

.OrderOriginBtn {
  font-size: 15px;
  font-weight: 400;
  line-height: 19px;
  border: 0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 5px 20px;
  background: #437DEC;
  color: #FFF;
  font-family: 'Roboto', sans-serif;
}

.checkin-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  margin: 0 auto;
}

.icon-close {
  color: red;
}

@media (max-width: 480px) {
  /* table item */
  .BookingTable__container__item__date{
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .BookingTable__container__item__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    
  }
}
.OriginModal .modal-header {
	padding: 15px 20px;
	border-bottom: 1px solid #F0F0F0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.OriginModal .modal-header i {
	font-size: 16px;
	color: #475F7B;
	cursor: pointer;
}

.OriginModal .modal-header::before,
.OriginModal .modal-header::after {
	display: none;
}

.OriginModal .modal-header h4 {
	color: #455E7D;
	font-size: 16px;
	font-weight: 700;
}

.OriginModal .modal-body {
	padding: 20px;
}

.OriginModal .OrderItem {
  width: 100%;
  margin: 0;
}
.OrderItem__bookBtn--admin{
	margin:auto;
	margin-bottom:10px;
	background: #f8EFF0;
	color: #969696;
	border: 2px #e99c44 solid;
	font-weight: bold;
	font-size: 15px;
	height:40px;
	line-height: 19px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	padding: 10px 20px;
	font-family: 'Roboto', sans-serif;
	white-space: nowrap;
}.mobile-growl-overlay {
    position: fixed;
    top: 25%;
    height: 50vh;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 6px solid #51799E;
    margin: 0 20px;
  }
  
  .mobile-growl-content {
    text-align: center;
    padding: 20px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .mobile-growl-spinner {
    font-size: 80px;
    margin-bottom: 30px;
    color: #00c853;
    transition: all 0.3s ease;
  }
  
  .mobile-growl-spinner .spinning {
    animation: spin 1s linear infinite;
  }
  
  .mobile-growl-message {
    font-size: 18px;
    color: #00c853;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 30px;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  /* Solo mostrar en móvil */
  @media (min-width: 768px) {
    .mobile-growl-overlay {
      display: none;
    }
  }
  
  .status-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  
  .success-icon {
    color: #00c853;
    font-size: 40px;
  }
  
  .mobile-growl-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 32px;
    color: #666;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 10000;
  }
  
  .mobile-growl-close:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  
  .close-icon {
    color: #666;
    font-size: 24px;
  }
  .ControlLightBtn__container {
  margin: 10px 0;
}

.ControlLightBtn__button {
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 400;
  margin-top: 20px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s;
  width: 100%;
  height: 42px;
  padding:0 20px;
}

.ControlLightBtn__button {
  background-color: #4CAF50;
}

.ControlLightBtn__button--off{
  background-color: #45a049;
}


.ControlLightBtn__button:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

.ControlLightBtn__button i {
  margin-right: 8px;
}

.ControlLightBtn__loading,
.ControlLightBtn__error {
  padding: 10px;
  border-radius: 4px;
  font-size: 14px;
  margin: 10px 0;
}

.ControlLightBtn__loading {
  background-color: #f0f0f0;
  color: #333;
}

.ControlLightBtn__error {
  background-color: #ffebee;
  color: #c62828;
}

.mobile-growl-overlay {
  position: fixed;
  top: 25%;
  height: 50vh;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 6px solid #51799E;
  margin: 0 20px;
}

.mobile-growl-content {
  text-align: center;
  padding: 20px;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mobile-growl-spinner {
  font-size: 80px;
  margin-bottom: 30px;
  color: #00c853;
  transition: all 0.3s ease;
}

.mobile-growl-spinner .spinning {
  animation: spin 1s linear infinite;
}

.mobile-growl-message {
  font-size: 18px;
  color: #00c853;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin-top: 30px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Solo mostrar en móvil */
@media (min-width: 768px) {
  .mobile-growl-overlay {
    display: none;
  }
}

.status-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 30px;
}

.success-icon {
  color: #00c853;
  font-size: 40px;
}

.mobile-growl-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 32px;
  color: #666;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 10000;
}

.mobile-growl-close:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.close-icon {
  color: #666;
  font-size: 24px;
}
/*.FormGroupFieldColorPicker .dropdown-toggle{
	width: 30px;
}*/

.FormGroupField__ColorPicker .dropdown-toggle{

	width: 32px;
	height: 32px;
}

.FormGroupField__ColorPicker .dropdown-menu{
	padding: 0;
}

.FormGroupField__ColorPicker .dropdown-menu > li > a{
	padding: 0;
}

.FormGroupField__ColorPicker .github-picker {
	width: 212px !important;
	box-shadow: none !important;
	border: none !important;
}.ColorPicker .dropdown{
	display: block;
}

.ColorPicker .dropdown-toggle{

    /*padding: 5px;*/
    padding: 0px;
	height: 34px;

	width: 100%;
	display: block;
	float: none;
}

.ColorPicker .dropdown-toggle.btn-default:hover,
.ColorPicker .dropdown-toggle.btn-default:active,
.ColorPicker .dropdown-toggle:focus,
.ColorPicker .btn-default:active, .ColorPicker .btn-default.active, .ColorPicker .open > .dropdown-toggle.btn-default{
	background-color: #fff;
    border-color: #02B3EA;
}

.ColorPicker .ColorPicker__toogleColor{

	/*width: 40px;
    height: 22px;*/
    height: 32px;
    padding: 5px;
    line-height: 25px;
    color: #fff;
}

.ColorPicker .dropdown-menu{
	padding: 0;
}

.ColorPicker .dropdown-menu > li > a{
	padding: 0;
}

.ColorPicker .github-picker {
	width: 212px !important;
	box-shadow: none !important;
	border: none !important;
}


.ColorPicker .chrome-picker{
	width: 208px !important;
}.DateTimePicker__container{

}


.DateTimePicker__container .react-datepicker__input-container{
	display: block;
	float: left;
	width: calc(100% - 120px);
}

.form-control.DateTimePicker__datepicker{

	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
}


.DateTimePicker__time{
	float: left;
	width: 120px;
}

.form-control.DateTimePicker__hour,
.form-control.DateTimePicker__minute{

	width: 60px;
	float: left;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	

	/*border-left: none;*/

	-webkit-appearance: none;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAMCAYAAABSgIzaAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDZFNDEwNjlGNzFEMTFFMkJEQ0VDRTM1N0RCMzMyMkIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDZFNDEwNkFGNzFEMTFFMkJEQ0VDRTM1N0RCMzMyMkIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0NkU0MTA2N0Y3MUQxMUUyQkRDRUNFMzU3REIzMzIyQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0NkU0MTA2OEY3MUQxMUUyQkRDRUNFMzU3REIzMzIyQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PuGsgwQAAAA5SURBVHjaYvz//z8DOYCJgUxAf42MQIzTk0D/M+KzkRGPoQSdykiKJrBGpOhgJFYTWNEIiEeAAAMAzNENEOH+do8AAAAASUVORK5CYII=);
	background-position: right 50%;
    background-repeat: no-repeat;
}

.form-control.DateTimePicker__hour{
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
	
	
}.RefundBtn__modal__blockText {
  background-color: #FFEBEC;
  border-radius: 4px;
  padding: 10px;
  font-size: 12px;
  color: #FF5156;
}

.RefundBtn__modal .modal-header>div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.RefundBtn__modal .modalCloseBtn {
  height: 15px;
  width: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.RefundBtn__modal .modalCloseBtn:hover {
  cursor: pointer;
}

.RefundBtn__modal .modalCloseBtn i {
  font-size: 14px;
  color: #88A1A7;
}

.RefundBtn__modal {
  width: 80%;
  max-width: 80%;
  margin: auto;
}

.btn-refund-cancel-container {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}/* modal header */
.PriceDetailModalBtn__title {
	display: flex;
	align-items: center;
}

.PriceDetailModalBtn__title > span.PriceDetailModalBtn__title__Details {
  display: flex;
  align-items: center;
}

.PriceDetailModalBtn__title i {
	transform: rotate(180deg);
	color: #B3C0CE;
	margin-left: 5px;
}

.PriceDetailModalBtn__title > span > div p.PriceDetailModalBtn__title__link {
  color: #5A8DEE;
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 0;
	margin-left: 5px;
	font-family: 'Roboto', sans-serif;
	cursor: pointer;
}

.PriceDetailModalBtn__Modal .modal-header {
	padding: 15px 20px;
	border-bottom: 1px solid #F0F0F0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.PriceDetailModalBtn__Modal .modal-header i {
	font-size: 16px;
	color: #475F7B;
	cursor: pointer;
}

.PriceDetailModalBtn__Modal .modal-header::before,
.PriceDetailModalBtn__Modal .modal-header::after {
	display: none;
}

.PriceDetailModalBtn__Modal .modal-header h4 {
	color: #455E7D;
	font-size: 16px;
	font-weight: 700;
}

/* modal body */
.PriceDetailModalBtn__Modal .modal-body {
	padding: 20px;
}

/* ticket summary */
.PriceDetailModalBtn__ticketSummary {
	padding: 20px;
	border: 1px solid #E8ECF8;
	border-radius: 4px;
	background: #FFFFFF;
}

/* ticket summary item */
.PriceDetailModalBtn__ticketSummary__item {
  padding: 10px 0;
  border-bottom: 1px solid #E8ECF8;
}

.PriceDetailModalBtn__ticketSummary__item:first-child {
  padding-top: 0;
}

.PriceDetailModalBtn__ticketSummary__item p {
  margin: 7px 0 0;
  color: #818D99;
  font-size: 12px;
}

/* ticket summary item content */
.PriceDetailModalBtn__ticketSummary__item__content {
  display: flex;
  justify-content: space-between;
}

/* ticket summary item content info */
.PriceDetailModalBtn__ticketSummary__item__content > div h4 {
  margin: 0;
  color: #3552A6;
  font-size: 14px;
  font-weight: 400;
}

.PriceDetailModalBtn__ticketSummary__item__content > div span,
.PriceDetailModalBtn__ticketSummary__item__content p {
  margin: 0;
  color: #668FC9;
  font-size: 12px;
  font-weight: 400;
}

.PriceDetailModalBtn__ticketSummary__item__content p {
  font-size: 14px;
}

.PriceDetailModalBtn__ticketSummary__item__content p:last-child {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.PriceDetailModalBtn__ticketSummary__item__content > div {
  flex: 5;
}

.PriceDetailModalBtn__ticketSummary__item__content > p:nth-child(2) {
  flex: 2;
}

/* ticket summary total */
.PriceDetailModalBtn__ticketSummary__total {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
}

.PriceDetailModalBtn__ticketSummary__total h3 {
  margin: 0;
  color: #3552A6;
  font-size: 18px;
  font-weight: 700;
}
.OrderItem__origin__title__link__admin{
    background-color: #5A8DEE;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    text-align: center;
    outline: none;
    
}
.Order_Item__origin__admin {
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.Scanner__result__content--warning{
    border: 2px solid yellow;
}

.Scanner__result__costumer--manual{
    background-color: #EFEFEF;
}.OrderItem__QR {
  border-bottom: 1px solid #F0F0F0;
  padding: 10px 0;
  margin: 0 15px;
}

.OrderItem__Order .OrderItem__payment {
  border-bottom: 1px solid #F0F0F0;
}

 .OrderItem__checkin {
  padding: 10px 0;
  margin: 0 15px;
}

.OrderItem__checkin span {
  color: #455E7D;
  font-size: 15px;
  font-weight: 700;
	font-family: 'Roboto', sans-serif;

}

.OrderItem__origin {
  margin-top: 10px;
}

.OrderItem__QR span {
  font-size: 15px;
  font-weight: 500;
}

.cancelButton {
  cursor: pointer;
}

.OrderItem__origin__content .OrderItem__origin__title {
	display: flex;
	align-items: center;
	font-family: 'Roboto', sans-serif;
}

.OrderItem__origin__content .OrderItem__origin__title span {
	text-transform: capitalize;
}

.OrderItem__origin__content .OrderItem__origin__title > span:nth-child(2) {
	display: flex;
}

.OrderItem__origin__content .OrderItem__origin__title i {
	transform: rotate(180deg);
	color: #B3C0CE;
	margin-left: 5px;
}
.OrderItem__title .OrderItem__title__content .OrderItem__specialAccess i{
	font-size: 30px;
	color: #536A90;
}
.OrderItem__origin__content p.OrderItem__origin__title__link {
	color: #5A8DEE;
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 0;
	margin-left: 5px;
	font-family: 'Roboto', sans-serif;
	cursor: pointer;
}

.OrderItem__checkin div > span:last-child {
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	color: #455E7D;
	font-family: 'Roboto', sans-serif;
	display: inline-block;
}

.OpenDoorBtn {
	width: 100%;
	background: #E6E6E6;
	border: none;
	color: #475F7B;
	font-size: 15px;
	font-weight: 400;
	padding: 0 20px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	text-decoration: none;
  margin-bottom: 5px;
}

.OpenDoorBtn:disabled {
	opacity: 50%;
}

.OpenDoorBtn i {
  margin-right: 3px;
  font-size: 14px;
}

.OrderItem__OpenDoorText p {
	color: #455E7D;
	margin-bottom: 20px;
	font-size: 12px;
	font-family: 'Roboto Condensed', sans-serif;
}

.OrderItem__missingPayment--ticket .alert > span {
	font-weight: 400;
	display: inline-block;
	margin-top: 5px;
}
.OrderItem__bookBtn.OrderItem__bookBtn--checkin.btn-warning{
	background-color: orange;
}

.OrderItem__payment span.OrderItem__taquillero {
	font-weight: normal;
	color: #888888 !important;
	font-size: 14px;
}
.OrderItem__cancelled_info{
	color: #FF5156;
	font-size: 12px;
}
.OrderItem__header_manual{
	background-color: #EFEFEF;
}

.OrderItem__Order--warning {
	border: 2px solid yellow;
  }

.checkout-client{
  width: 100%;
  margin-top: 30px;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.orderItem__pax-custom .row{
    display: flex;
    align-items: center;
    border-bottom: solid 1px lightgray;
}
.OrderItem__Pax__age{
	text-align: center;
}.Pagination-block{
	/*border-top: 2px solid #ddd;*/
	text-align: center;
	padding: 30px 0 30px;
}
.pagination{
	margin-right: 100;
    border: none;
    margin: 2px 10px 9px;
}
.btn-hollow-default, .pagination > li .btn-hollow-default, .pagination > .disabled > .btn-hollow-default, .pagination > .disabled > .btn-hollow-default:hover, .pagination > .disabled > .btn-hollow-default:focus{
	border:none;
}

.pagination > li > a, .pagination > li > span{
	font-size: 20px;
}/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 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 */
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  margin: .67em 0;
  font-size: 2em;
}
mark {
  color: #000;
  background: #ff0;
}
small {
  font-size: 80%;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sup {
  top: -.5em;
}
sub {
  bottom: -.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  height: 0;
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font: inherit;
  color: inherit;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  padding: .35em .625em .75em;
  margin: 0 2px;
  border: 1px solid #c0c0c0;
}
legend {
  padding: 0;
  border: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
td,
th {
  padding: 0;
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;

    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .navbar {
    display: none;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
@font-face {
  font-family: 'Glyphicons Halflings';

  src: url(/assets/glyphicons-halflings-regular.eot);
  src: url(/assets/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(/assets/glyphicons-halflings-regular.woff2) format('woff2'), url(/assets/glyphicons-halflings-regular.woff) format('woff'), url(/assets/glyphicons-halflings-regular.ttf) format('truetype'), url(/assets/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');
}
.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;
}
.glyphicon-asterisk:before {
  content: "*";
}
.glyphicon-plus:before {
  content: "+";
}
.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20AC";
}
.glyphicon-minus:before {
  content: "\2212";
}
.glyphicon-cloud:before {
  content: "\2601";
}
.glyphicon-envelope:before {
  content: "\2709";
}
.glyphicon-pencil:before {
  content: "\270F";
}
.glyphicon-glass:before {
  content: "\E001";
}
.glyphicon-music:before {
  content: "\E002";
}
.glyphicon-search:before {
  content: "\E003";
}
.glyphicon-heart:before {
  content: "\E005";
}
.glyphicon-star:before {
  content: "\E006";
}
.glyphicon-star-empty:before {
  content: "\E007";
}
.glyphicon-user:before {
  content: "\E008";
}
.glyphicon-film:before {
  content: "\E009";
}
.glyphicon-th-large:before {
  content: "\E010";
}
.glyphicon-th:before {
  content: "\E011";
}
.glyphicon-th-list:before {
  content: "\E012";
}
.glyphicon-ok:before {
  content: "\E013";
}
.glyphicon-remove:before {
  content: "\E014";
}
.glyphicon-zoom-in:before {
  content: "\E015";
}
.glyphicon-zoom-out:before {
  content: "\E016";
}
.glyphicon-off:before {
  content: "\E017";
}
.glyphicon-signal:before {
  content: "\E018";
}
.glyphicon-cog:before {
  content: "\E019";
}
.glyphicon-trash:before {
  content: "\E020";
}
.glyphicon-home:before {
  content: "\E021";
}
.glyphicon-file:before {
  content: "\E022";
}
.glyphicon-time:before {
  content: "\E023";
}
.glyphicon-road:before {
  content: "\E024";
}
.glyphicon-download-alt:before {
  content: "\E025";
}
.glyphicon-download:before {
  content: "\E026";
}
.glyphicon-upload:before {
  content: "\E027";
}
.glyphicon-inbox:before {
  content: "\E028";
}
.glyphicon-play-circle:before {
  content: "\E029";
}
.glyphicon-repeat:before {
  content: "\E030";
}
.glyphicon-refresh:before {
  content: "\E031";
}
.glyphicon-list-alt:before {
  content: "\E032";
}
.glyphicon-lock:before {
  content: "\E033";
}
.glyphicon-flag:before {
  content: "\E034";
}
.glyphicon-headphones:before {
  content: "\E035";
}
.glyphicon-volume-off:before {
  content: "\E036";
}
.glyphicon-volume-down:before {
  content: "\E037";
}
.glyphicon-volume-up:before {
  content: "\E038";
}
.glyphicon-qrcode:before {
  content: "\E039";
}
.glyphicon-barcode:before {
  content: "\E040";
}
.glyphicon-tag:before {
  content: "\E041";
}
.glyphicon-tags:before {
  content: "\E042";
}
.glyphicon-book:before {
  content: "\E043";
}
.glyphicon-bookmark:before {
  content: "\E044";
}
.glyphicon-print:before {
  content: "\E045";
}
.glyphicon-camera:before {
  content: "\E046";
}
.glyphicon-font:before {
  content: "\E047";
}
.glyphicon-bold:before {
  content: "\E048";
}
.glyphicon-italic:before {
  content: "\E049";
}
.glyphicon-text-height:before {
  content: "\E050";
}
.glyphicon-text-width:before {
  content: "\E051";
}
.glyphicon-align-left:before {
  content: "\E052";
}
.glyphicon-align-center:before {
  content: "\E053";
}
.glyphicon-align-right:before {
  content: "\E054";
}
.glyphicon-align-justify:before {
  content: "\E055";
}
.glyphicon-list:before {
  content: "\E056";
}
.glyphicon-indent-left:before {
  content: "\E057";
}
.glyphicon-indent-right:before {
  content: "\E058";
}
.glyphicon-facetime-video:before {
  content: "\E059";
}
.glyphicon-picture:before {
  content: "\E060";
}
.glyphicon-map-marker:before {
  content: "\E062";
}
.glyphicon-adjust:before {
  content: "\E063";
}
.glyphicon-tint:before {
  content: "\E064";
}
.glyphicon-edit:before {
  content: "\E065";
}
.glyphicon-share:before {
  content: "\E066";
}
.glyphicon-check:before {
  content: "\E067";
}
.glyphicon-move:before {
  content: "\E068";
}
.glyphicon-step-backward:before {
  content: "\E069";
}
.glyphicon-fast-backward:before {
  content: "\E070";
}
.glyphicon-backward:before {
  content: "\E071";
}
.glyphicon-play:before {
  content: "\E072";
}
.glyphicon-pause:before {
  content: "\E073";
}
.glyphicon-stop:before {
  content: "\E074";
}
.glyphicon-forward:before {
  content: "\E075";
}
.glyphicon-fast-forward:before {
  content: "\E076";
}
.glyphicon-step-forward:before {
  content: "\E077";
}
.glyphicon-eject:before {
  content: "\E078";
}
.glyphicon-chevron-left:before {
  content: "\E079";
}
.glyphicon-chevron-right:before {
  content: "\E080";
}
.glyphicon-plus-sign:before {
  content: "\E081";
}
.glyphicon-minus-sign:before {
  content: "\E082";
}
.glyphicon-remove-sign:before {
  content: "\E083";
}
.glyphicon-ok-sign:before {
  content: "\E084";
}
.glyphicon-question-sign:before {
  content: "\E085";
}
.glyphicon-info-sign:before {
  content: "\E086";
}
.glyphicon-screenshot:before {
  content: "\E087";
}
.glyphicon-remove-circle:before {
  content: "\E088";
}
.glyphicon-ok-circle:before {
  content: "\E089";
}
.glyphicon-ban-circle:before {
  content: "\E090";
}
.glyphicon-arrow-left:before {
  content: "\E091";
}
.glyphicon-arrow-right:before {
  content: "\E092";
}
.glyphicon-arrow-up:before {
  content: "\E093";
}
.glyphicon-arrow-down:before {
  content: "\E094";
}
.glyphicon-share-alt:before {
  content: "\E095";
}
.glyphicon-resize-full:before {
  content: "\E096";
}
.glyphicon-resize-small:before {
  content: "\E097";
}
.glyphicon-exclamation-sign:before {
  content: "\E101";
}
.glyphicon-gift:before {
  content: "\E102";
}
.glyphicon-leaf:before {
  content: "\E103";
}
.glyphicon-fire:before {
  content: "\E104";
}
.glyphicon-eye-open:before {
  content: "\E105";
}
.glyphicon-eye-close:before {
  content: "\E106";
}
.glyphicon-warning-sign:before {
  content: "\E107";
}
.glyphicon-plane:before {
  content: "\E108";
}
.glyphicon-calendar:before {
  content: "\E109";
}
.glyphicon-random:before {
  content: "\E110";
}
.glyphicon-comment:before {
  content: "\E111";
}
.glyphicon-magnet:before {
  content: "\E112";
}
.glyphicon-chevron-up:before {
  content: "\E113";
}
.glyphicon-chevron-down:before {
  content: "\E114";
}
.glyphicon-retweet:before {
  content: "\E115";
}
.glyphicon-shopping-cart:before {
  content: "\E116";
}
.glyphicon-folder-close:before {
  content: "\E117";
}
.glyphicon-folder-open:before {
  content: "\E118";
}
.glyphicon-resize-vertical:before {
  content: "\E119";
}
.glyphicon-resize-horizontal:before {
  content: "\E120";
}
.glyphicon-hdd:before {
  content: "\E121";
}
.glyphicon-bullhorn:before {
  content: "\E122";
}
.glyphicon-bell:before {
  content: "\E123";
}
.glyphicon-certificate:before {
  content: "\E124";
}
.glyphicon-thumbs-up:before {
  content: "\E125";
}
.glyphicon-thumbs-down:before {
  content: "\E126";
}
.glyphicon-hand-right:before {
  content: "\E127";
}
.glyphicon-hand-left:before {
  content: "\E128";
}
.glyphicon-hand-up:before {
  content: "\E129";
}
.glyphicon-hand-down:before {
  content: "\E130";
}
.glyphicon-circle-arrow-right:before {
  content: "\E131";
}
.glyphicon-circle-arrow-left:before {
  content: "\E132";
}
.glyphicon-circle-arrow-up:before {
  content: "\E133";
}
.glyphicon-circle-arrow-down:before {
  content: "\E134";
}
.glyphicon-globe:before {
  content: "\E135";
}
.glyphicon-wrench:before {
  content: "\E136";
}
.glyphicon-tasks:before {
  content: "\E137";
}
.glyphicon-filter:before {
  content: "\E138";
}
.glyphicon-briefcase:before {
  content: "\E139";
}
.glyphicon-fullscreen:before {
  content: "\E140";
}
.glyphicon-dashboard:before {
  content: "\E141";
}
.glyphicon-paperclip:before {
  content: "\E142";
}
.glyphicon-heart-empty:before {
  content: "\E143";
}
.glyphicon-link:before {
  content: "\E144";
}
.glyphicon-phone:before {
  content: "\E145";
}
.glyphicon-pushpin:before {
  content: "\E146";
}
.glyphicon-usd:before {
  content: "\E148";
}
.glyphicon-gbp:before {
  content: "\E149";
}
.glyphicon-sort:before {
  content: "\E150";
}
.glyphicon-sort-by-alphabet:before {
  content: "\E151";
}
.glyphicon-sort-by-alphabet-alt:before {
  content: "\E152";
}
.glyphicon-sort-by-order:before {
  content: "\E153";
}
.glyphicon-sort-by-order-alt:before {
  content: "\E154";
}
.glyphicon-sort-by-attributes:before {
  content: "\E155";
}
.glyphicon-sort-by-attributes-alt:before {
  content: "\E156";
}
.glyphicon-unchecked:before {
  content: "\E157";
}
.glyphicon-expand:before {
  content: "\E158";
}
.glyphicon-collapse-down:before {
  content: "\E159";
}
.glyphicon-collapse-up:before {
  content: "\E160";
}
.glyphicon-log-in:before {
  content: "\E161";
}
.glyphicon-flash:before {
  content: "\E162";
}
.glyphicon-log-out:before {
  content: "\E163";
}
.glyphicon-new-window:before {
  content: "\E164";
}
.glyphicon-record:before {
  content: "\E165";
}
.glyphicon-save:before {
  content: "\E166";
}
.glyphicon-open:before {
  content: "\E167";
}
.glyphicon-saved:before {
  content: "\E168";
}
.glyphicon-import:before {
  content: "\E169";
}
.glyphicon-export:before {
  content: "\E170";
}
.glyphicon-send:before {
  content: "\E171";
}
.glyphicon-floppy-disk:before {
  content: "\E172";
}
.glyphicon-floppy-saved:before {
  content: "\E173";
}
.glyphicon-floppy-remove:before {
  content: "\E174";
}
.glyphicon-floppy-save:before {
  content: "\E175";
}
.glyphicon-floppy-open:before {
  content: "\E176";
}
.glyphicon-credit-card:before {
  content: "\E177";
}
.glyphicon-transfer:before {
  content: "\E178";
}
.glyphicon-cutlery:before {
  content: "\E179";
}
.glyphicon-header:before {
  content: "\E180";
}
.glyphicon-compressed:before {
  content: "\E181";
}
.glyphicon-earphone:before {
  content: "\E182";
}
.glyphicon-phone-alt:before {
  content: "\E183";
}
.glyphicon-tower:before {
  content: "\E184";
}
.glyphicon-stats:before {
  content: "\E185";
}
.glyphicon-sd-video:before {
  content: "\E186";
}
.glyphicon-hd-video:before {
  content: "\E187";
}
.glyphicon-subtitles:before {
  content: "\E188";
}
.glyphicon-sound-stereo:before {
  content: "\E189";
}
.glyphicon-sound-dolby:before {
  content: "\E190";
}
.glyphicon-sound-5-1:before {
  content: "\E191";
}
.glyphicon-sound-6-1:before {
  content: "\E192";
}
.glyphicon-sound-7-1:before {
  content: "\E193";
}
.glyphicon-copyright-mark:before {
  content: "\E194";
}
.glyphicon-registration-mark:before {
  content: "\E195";
}
.glyphicon-cloud-download:before {
  content: "\E197";
}
.glyphicon-cloud-upload:before {
  content: "\E198";
}
.glyphicon-tree-conifer:before {
  content: "\E199";
}
.glyphicon-tree-deciduous:before {
  content: "\E200";
}
.glyphicon-cd:before {
  content: "\E201";
}
.glyphicon-save-file:before {
  content: "\E202";
}
.glyphicon-open-file:before {
  content: "\E203";
}
.glyphicon-level-up:before {
  content: "\E204";
}
.glyphicon-copy:before {
  content: "\E205";
}
.glyphicon-paste:before {
  content: "\E206";
}
.glyphicon-alert:before {
  content: "\E209";
}
.glyphicon-equalizer:before {
  content: "\E210";
}
.glyphicon-king:before {
  content: "\E211";
}
.glyphicon-queen:before {
  content: "\E212";
}
.glyphicon-pawn:before {
  content: "\E213";
}
.glyphicon-bishop:before {
  content: "\E214";
}
.glyphicon-knight:before {
  content: "\E215";
}
.glyphicon-baby-formula:before {
  content: "\E216";
}
.glyphicon-tent:before {
  content: "\26FA";
}
.glyphicon-blackboard:before {
  content: "\E218";
}
.glyphicon-bed:before {
  content: "\E219";
}
.glyphicon-apple:before {
  content: "\F8FF";
}
.glyphicon-erase:before {
  content: "\E221";
}
.glyphicon-hourglass:before {
  content: "\231B";
}
.glyphicon-lamp:before {
  content: "\E223";
}
.glyphicon-duplicate:before {
  content: "\E224";
}
.glyphicon-piggy-bank:before {
  content: "\E225";
}
.glyphicon-scissors:before {
  content: "\E226";
}
.glyphicon-bitcoin:before {
  content: "\E227";
}
.glyphicon-btc:before {
  content: "\E227";
}
.glyphicon-xbt:before {
  content: "\E227";
}
.glyphicon-yen:before {
  content: "\A5";
}
.glyphicon-jpy:before {
  content: "\A5";
}
.glyphicon-ruble:before {
  content: "\20BD";
}
.glyphicon-rub:before {
  content: "\20BD";
}
.glyphicon-scale:before {
  content: "\E230";
}
.glyphicon-ice-lolly:before {
  content: "\E231";
}
.glyphicon-ice-lolly-tasted:before {
  content: "\E232";
}
.glyphicon-education:before {
  content: "\E233";
}
.glyphicon-option-horizontal:before {
  content: "\E234";
}
.glyphicon-option-vertical:before {
  content: "\E235";
}
.glyphicon-menu-hamburger:before {
  content: "\E236";
}
.glyphicon-modal-window:before {
  content: "\E237";
}
.glyphicon-oil:before {
  content: "\E238";
}
.glyphicon-grain:before {
  content: "\E239";
}
.glyphicon-sunglasses:before {
  content: "\E240";
}
.glyphicon-text-size:before {
  content: "\E241";
}
.glyphicon-text-color:before {
  content: "\E242";
}
.glyphicon-text-background:before {
  content: "\E243";
}
.glyphicon-object-align-top:before {
  content: "\E244";
}
.glyphicon-object-align-bottom:before {
  content: "\E245";
}
.glyphicon-object-align-horizontal:before {
  content: "\E246";
}
.glyphicon-object-align-left:before {
  content: "\E247";
}
.glyphicon-object-align-vertical:before {
  content: "\E248";
}
.glyphicon-object-align-right:before {
  content: "\E249";
}
.glyphicon-triangle-right:before {
  content: "\E250";
}
.glyphicon-triangle-left:before {
  content: "\E251";
}
.glyphicon-triangle-bottom:before {
  content: "\E252";
}
.glyphicon-triangle-top:before {
  content: "\E253";
}
.glyphicon-console:before {
  content: "\E254";
}
.glyphicon-superscript:before {
  content: "\E255";
}
.glyphicon-subscript:before {
  content: "\E256";
}
.glyphicon-menu-left:before {
  content: "\E257";
}
.glyphicon-menu-right:before {
  content: "\E258";
}
.glyphicon-menu-down:before {
  content: "\E259";
}
.glyphicon-menu-up:before {
  content: "\E260";
}
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
html {
  font-size: 10px;

  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
  background-color: #fff;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #337ab7;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #23527c;
  text-decoration: underline;
}
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  display: inline-block;
  max-width: 100%;
  height: auto;
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all .2s ease-in-out;
       -o-transition: all .2s ease-in-out;
          transition: all .2s ease-in-out;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
[role="button"] {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #777;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
  font-size: 65%;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
  font-size: 75%;
}
h1,
.h1 {
  font-size: 36px;
}
h2,
.h2 {
  font-size: 30px;
}
h3,
.h3 {
  font-size: 24px;
}
h4,
.h4 {
  font-size: 18px;
}
h5,
.h5 {
  font-size: 14px;
}
h6,
.h6 {
  font-size: 12px;
}
p {
  margin: 0 0 10px;
}
.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
}
small,
.small {
  font-size: 85%;
}
mark,
.mark {
  padding: .2em;
  background-color: #fcf8e3;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-muted {
  color: #777;
}
.text-primary {
  color: #337ab7;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #286090;
}
.text-success {
  color: #3c763d;
}
a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}
.text-info {
  color: #31708f;
}
a.text-info:hover,
a.text-info:focus {
  color: #245269;
}
.text-warning {
  color: #8a6d3b;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}
.text-danger {
  color: #a94442;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}
.bg-primary {
  color: #fff;
  background-color: #337ab7;
}
a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #286090;
}
.bg-success {
  background-color: #dff0d8;
}
a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}
.bg-info {
  background-color: #d9edf7;
}
a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}
.bg-warning {
  background-color: #fcf8e3;
}
a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}
.bg-danger {
  background-color: #f2dede;
}
a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}
.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eee;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  margin-left: -5px;
  list-style: none;
}
.list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}
dl {
  margin-top: 0;
  margin-bottom: 20px;
}
dt,
dd {
  line-height: 1.42857143;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    overflow: hidden;
    clear: left;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eee;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #777;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014   \A0';
}
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  text-align: right;
  border-right: 5px solid #eee;
  border-left: 0;
}
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
  content: '';
}
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
  content: '\A0   \2014';
}
address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857143;
}
code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}
kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  -webkit-box-shadow: none;
          box-shadow: none;
}
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.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-right: 15px;
  padding-left: 15px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0;
}
@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
}
table {
  background-color: transparent;
}
caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777;
  text-align: left;
}
th {
  text-align: left;
}
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}
.table .table {
  background-color: #fff;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}
.table-bordered {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}
table col[class*="col-"] {
  position: static;
  display: table-column;
  float: none;
}
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  display: table-cell;
  float: none;
}
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}
.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}
.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}
.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}
.table-responsive {
  min-height: .01%;
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}
input[type="search"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}
input[type="file"] {
  display: block;
}
input[type="range"] {
  display: block;
  width: 100%;
}
select[multiple],
select[size] {
  height: auto;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
}
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
       -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
          transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
          box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eee;
  opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed;
}
textarea.form-control {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: none;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: 34px;
  }
  input[type="date"].input-sm,
  input[type="time"].input-sm,
  input[type="datetime-local"].input-sm,
  input[type="month"].input-sm,
  .input-group-sm input[type="date"],
  .input-group-sm input[type="time"],
  .input-group-sm input[type="datetime-local"],
  .input-group-sm input[type="month"] {
    line-height: 30px;
  }
  input[type="date"].input-lg,
  input[type="time"].input-lg,
  input[type="datetime-local"].input-lg,
  input[type="month"].input-lg,
  .input-group-lg input[type="date"],
  .input-group-lg input[type="time"],
  .input-group-lg input[type="datetime-local"],
  .input-group-lg input[type="month"] {
    line-height: 46px;
  }
}
.form-group {
  margin-bottom: 15px;
}
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.radio label,
.checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-top: 4px \9;
  margin-left: -20px;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  vertical-align: middle;
  cursor: pointer;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}
.form-control-static {
  min-height: 34px;
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
}
.form-control-static.input-lg,
.form-control-static.input-sm {
  padding-right: 0;
  padding-left: 0;
}
.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-sm {
  height: 30px;
  line-height: 30px;
}
textarea.input-sm,
select[multiple].input-sm {
  height: auto;
}
.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px;
}
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto;
}
.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.input-lg {
  height: 46px;
  line-height: 46px;
}
textarea.input-lg,
select[multiple].input-lg {
  height: auto;
}
.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.form-group-lg select.form-control {
  height: 46px;
  line-height: 46px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}
.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 42.5px;
}
.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
}
.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}
.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #3c763d;
}
.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
}
.has-success .input-group-addon {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #3c763d;
}
.has-success .form-control-feedback {
  color: #3c763d;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #8a6d3b;
}
.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #8a6d3b;
}
.has-warning .form-control-feedback {
  color: #8a6d3b;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442;
}
.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442;
}
.has-error .form-control-feedback {
  color: #a94442;
}
.has-feedback label ~ .form-control-feedback {
  top: 25px;
}
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}
@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  padding-top: 7px;
  margin-top: 0;
  margin-bottom: 0;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px;
}
.form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: right;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}
@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}
.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus,
.btn.focus {
  color: #333;
  text-decoration: none;
}
.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: .65;
}
a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default:focus,
.btn-default.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}
.btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none;
}
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus {
  background-color: #fff;
  border-color: #ccc;
}
.btn-default .badge {
  color: #fff;
  background-color: #333;
}
.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary:focus,
.btn-primary.focus {
  color: #fff;
  background-color: #286090;
  border-color: #122b40;
}
.btn-primary:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background-image: none;
}
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary .badge {
  color: #337ab7;
  background-color: #fff;
}
.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success:focus,
.btn-success.focus {
  color: #fff;
  background-color: #449d44;
  border-color: #255625;
}
.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
  color: #fff;
  background-color: #398439;
  border-color: #255625;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  background-image: none;
}
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus {
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}
.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info:focus,
.btn-info.focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}
.btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
  color: #fff;
  background-color: #269abc;
  border-color: #1b6d85;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  background-image: none;
}
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus {
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}
.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning:focus,
.btn-warning.focus {
  color: #fff;
  background-color: #ec971f;
  border-color: #985f0d;
}
.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
  color: #fff;
  background-color: #d58512;
  border-color: #985f0d;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  background-image: none;
}
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus {
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}
.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger:focus,
.btn-danger.focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #761c19;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
  color: #fff;
  background-color: #ac2925;
  border-color: #761c19;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  background-image: none;
}
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus {
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}
.btn-link {
  font-weight: normal;
  color: #337ab7;
  border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #777;
  text-decoration: none;
}
.btn-lg,
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-xs,
.btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity .15s linear;
       -o-transition: opacity .15s linear;
          transition: opacity .15s linear;
}
.fade.in {
  opacity: 1;
}
.collapse {
  display: none;
}
.collapse.in {
  display: block;
}
tr.collapse.in {
  display: table-row;
}
tbody.collapse.in {
  display: table-row-group;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: .35s;
       -o-transition-duration: .35s;
          transition-duration: .35s;
  -webkit-transition-property: height, visibility;
       -o-transition-property: height, visibility;
          transition-property: height, visibility;
}
.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;
}
.dropup,
.dropdown {
  position: relative;
}
.dropdown-toggle:focus {
  outline: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
          box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #337ab7;
  outline: 0;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #777;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}
.dropdown-menu-right {
  right: 0;
  left: auto;
}
.dropdown-menu-left {
  right: auto;
  left: 0;
}
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777;
  white-space: nowrap;
}
.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  .navbar-right .dropdown-menu-left {
    right: auto;
    left: 0;
  }
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}
.btn-toolbar {
  margin-left: -5px;
}
.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group > .btn-group {
  float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px;
}
.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn .caret {
  margin-left: 0;
}
.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
.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;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  display: table-cell;
  float: none;
  width: 1%;
}
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}
[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*="col-"] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.input-group .form-control:focus {
  z-index: 3;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  line-height: 46px;
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
  height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
  height: auto;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}
.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .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-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group-addon:first-child {
  border-right: 0;
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .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-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group-addon:last-child {
  border-left: 0;
}
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.input-group-btn > .btn {
  position: relative;
}
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
  z-index: 2;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}
.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eee;
}
.nav > li.disabled > a {
  color: #777;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #777;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eee;
  border-color: #337ab7;
}
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}
.nav-tabs {
  border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #eee #eee #ddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555;
  cursor: default;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
}
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}
.nav-tabs.nav-justified > li {
  float: none;
}
.nav-tabs.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs.nav-justified > .active > a,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}
.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 4px;
}
.nav-pills > li + li {
  margin-left: 2px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #337ab7;
}
.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}
.nav-justified {
  width: 100%;
}
.nav-justified > li {
  float: none;
}
.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
@media (min-width: 768px) {
  .navbar {
    border-radius: 4px;
  }
}
@media (min-width: 768px) {
  .navbar-header {
    float: left;
  }
}
.navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}
.navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
  }
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .container > .navbar-header,
  .container-fluid > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0;
  }
}
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
@media (min-width: 768px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}
.navbar-brand {
  float: left;
  height: 50px;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
}
.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}
.navbar-brand > img {
  display: block;
}
@media (min-width: 768px) {
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}
.navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-top: 8px;
  margin-right: 15px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.navbar-toggle:focus {
  outline: 0;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}
.navbar-nav {
  margin: 7.5px -15px;
}
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}
@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.navbar-form {
  padding: 10px 15px;
  margin-top: 8px;
  margin-right: -15px;
  margin-bottom: 8px;
  margin-left: -15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
}
@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .navbar-form .form-control-static {
    display: inline-block;
  }
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto;
  }
  .navbar-form .input-group > .form-control {
    width: 100%;
  }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0;
  }
  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}
@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}
.navbar-btn.btn-sm {
  margin-top: 10px;
  margin-bottom: 10px;
}
.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px;
}
.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-right: 15px;
    margin-left: 15px;
  }
}
@media (min-width: 768px) {
  .navbar-left {
    float: left !important;
  }
  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}
.navbar-default .navbar-brand {
  color: #777;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}
.navbar-default .navbar-text {
  color: #777;
}
.navbar-default .navbar-nav > li > a {
  color: #777;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}
.navbar-default .navbar-toggle {
  border-color: #ddd;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}
.navbar-default .navbar-link {
  color: #777;
}
.navbar-default .navbar-link:hover {
  color: #333;
}
.navbar-default .btn-link {
  color: #777;
}
.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
  color: #333;
}
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}
.navbar-inverse {
  background-color: #222;
  border-color: #080808;
}
.navbar-inverse .navbar-brand {
  color: #9d9d9d;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-text {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #080808;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}
.navbar-inverse .navbar-toggle {
  border-color: #333;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
  color: #fff;
  background-color: #080808;
}
@media (max-width: 767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}
.navbar-inverse .navbar-link {
  color: #9d9d9d;
}
.navbar-inverse .navbar-link:hover {
  color: #fff;
}
.navbar-inverse .btn-link {
  color: #9d9d9d;
}
.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
  color: #fff;
}
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444;
}
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}
.breadcrumb > li {
  display: inline-block;
}
.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/\A0";
}
.breadcrumb > .active {
  color: #777;
}
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  z-index: 2;
  color: #23527c;
  background-color: #eee;
  border-color: #ddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}
.pager li {
  display: inline;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eee;
}
.pager .next > a,
.pager .next > span {
  float: right;
}
.pager .previous > a,
.pager .previous > span {
  float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
}
.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;
}
a.label:hover,
a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.label:empty {
  display: none;
}
.btn .label {
  position: relative;
  top: -1px;
}
.label-default {
  background-color: #777;
}
.label-default[href]:hover,
.label-default[href]:focus {
  background-color: #5e5e5e;
}
.label-primary {
  background-color: #337ab7;
}
.label-primary[href]:hover,
.label-primary[href]:focus {
  background-color: #286090;
}
.label-success {
  background-color: #5cb85c;
}
.label-success[href]:hover,
.label-success[href]:focus {
  background-color: #449d44;
}
.label-info {
  background-color: #5bc0de;
}
.label-info[href]:hover,
.label-info[href]:focus {
  background-color: #31b0d5;
}
.label-warning {
  background-color: #f0ad4e;
}
.label-warning[href]:hover,
.label-warning[href]:focus {
  background-color: #ec971f;
}
.label-danger {
  background-color: #d9534f;
}
.label-danger[href]:hover,
.label-danger[href]:focus {
  background-color: #c9302c;
}
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #777;
  border-radius: 10px;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.btn-xs .badge,
.btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}
a.badge:hover,
a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #337ab7;
  background-color: #fff;
}
.list-group-item > .badge {
  float: right;
}
.list-group-item > .badge + .badge {
  margin-right: 5px;
}
.nav-pills > li > a > .badge {
  margin-left: 3px;
}
.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eee;
}
.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}
.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}
.jumbotron > hr {
  border-top-color: #d5d5d5;
}
.container .jumbotron,
.container-fluid .jumbotron {
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 6px;
}
.jumbotron .container {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .container .jumbotron,
  .container-fluid .jumbotron {
    padding-right: 60px;
    padding-left: 60px;
  }
  .jumbotron h1,
  .jumbotron .h1 {
    font-size: 63px;
  }
}
.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: border .2s ease-in-out;
       -o-transition: border .2s ease-in-out;
          transition: border .2s ease-in-out;
}
.thumbnail > img,
.thumbnail a > img {
  margin-right: auto;
  margin-left: auto;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #337ab7;
}
.thumbnail .caption {
  padding: 9px;
  color: #333;
}
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@-o-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
}
.progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
  -webkit-transition: width .6s ease;
       -o-transition: width .6s ease;
          transition: width .6s ease;
}
.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  -webkit-background-size: 40px 40px;
          background-size: 40px 40px;
}
.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
       -o-animation: progress-bar-stripes 2s linear infinite;
          animation: progress-bar-stripes 2s linear infinite;
}
.progress-bar-success {
  background-color: #5cb85c;
}
.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-info {
  background-color: #5bc0de;
}
.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-warning {
  background-color: #f0ad4e;
}
.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-danger {
  background-color: #d9534f;
}
.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.media {
  margin-top: 15px;
}
.media:first-child {
  margin-top: 0;
}
.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}
.media-body {
  width: 10000px;
}
.media-object {
  display: block;
}
.media-object.img-thumbnail {
  max-width: none;
}
.media-right,
.media > .pull-right {
  padding-left: 10px;
}
.media-left,
.media > .pull-left {
  padding-right: 10px;
}
.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}
.media-middle {
  vertical-align: middle;
}
.media-bottom {
  vertical-align: bottom;
}
.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.media-list {
  padding-left: 0;
  list-style: none;
}
.list-group {
  padding-left: 0;
  margin-bottom: 20px;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}
.list-group-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
a.list-group-item,
button.list-group-item {
  color: #555;
}
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333;
}
a.list-group-item:hover,
button.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus {
  color: #555;
  text-decoration: none;
  background-color: #f5f5f5;
}
button.list-group-item {
  width: 100%;
  text-align: left;
}
.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
  color: #777;
  cursor: not-allowed;
  background-color: #eee;
}
.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}
.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
  color: #777;
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}
.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
  color: #c7ddef;
}
.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}
a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d;
}
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit;
}
a.list-group-item-success:hover,
button.list-group-item-success:hover,
a.list-group-item-success:focus,
button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}
a.list-group-item-success.active,
button.list-group-item-success.active,
a.list-group-item-success.active:hover,
button.list-group-item-success.active:hover,
a.list-group-item-success.active:focus,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}
.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}
a.list-group-item-info,
button.list-group-item-info {
  color: #31708f;
}
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit;
}
a.list-group-item-info:hover,
button.list-group-item-info:hover,
a.list-group-item-info:focus,
button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}
a.list-group-item-info.active,
button.list-group-item-info.active,
a.list-group-item-info.active:hover,
button.list-group-item-info.active:hover,
a.list-group-item-info.active:focus,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}
.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}
a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b;
}
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
a.list-group-item-warning:hover,
button.list-group-item-warning:hover,
a.list-group-item-warning:focus,
button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}
a.list-group-item-warning.active,
button.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}
.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}
a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442;
}
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
a.list-group-item-danger:hover,
button.list-group-item-danger:hover,
a.list-group-item-danger:focus,
button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}
a.list-group-item-danger.active,
button.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus,
button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}
.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
          box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}
.panel-body {
  padding: 15px;
}
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}
.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}
.list-group + .panel-footer {
  border-top-width: 0;
}
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-right: 15px;
  padding-left: 15px;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .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 > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .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 td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .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 td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .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 > tfoot:last-child > tr:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .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 td:first-child,
.panel > .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 td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .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 td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
.panel > .table-responsive {
  margin-bottom: 0;
  border: 0;
}
.panel-group {
  margin-bottom: 20px;
}
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}
.panel-group .panel + .panel {
  margin-top: 5px;
}
.panel-group .panel-heading {
  border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd;
}
.panel-group .panel-footer {
  border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}
.panel-default {
  border-color: #ddd;
}
.panel-default > .panel-heading {
  color: #333;
  background-color: #f5f5f5;
  border-color: #ddd;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}
.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}
.panel-primary {
  border-color: #337ab7;
}
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7;
}
.panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #fff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7;
}
.panel-success {
  border-color: #d6e9c6;
}
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}
.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}
.panel-info {
  border-color: #bce8f1;
}
.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}
.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}
.panel-warning {
  border-color: #faebcc;
}
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}
.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}
.panel-danger {
  border-color: #ebccd1;
}
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}
.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
  padding-bottom: 75%;
}
.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, .05);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, .15);
}
.well-lg {
  padding: 24px;
  border-radius: 6px;
}
.well-sm {
  padding: 9px;
  border-radius: 3px;
}
.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2;
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: .5;
}
button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.modal-open {
  overflow: hidden;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform .3s ease-out;
       -o-transition:      -o-transform .3s ease-out;
          transition:         transform .3s ease-out;
  -webkit-transform: translate(0, -25%);
      -ms-transform: translate(0, -25%);
       -o-transform: translate(0, -25%);
          transform: translate(0, -25%);
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
       -o-transform: translate(0, 0);
          transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #fff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 6px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
          box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}
.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: .5;
}
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
            box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  filter: alpha(opacity=0);
  opacity: 0;

  line-break: auto;
}
.tooltip.in {
  filter: alpha(opacity=90);
  opacity: .9;
}
.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}
.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}
.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}
.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-left .tooltip-arrow {
  right: 5px;
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  background-color: #fff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, .2);

  line-break: auto;
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}
.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}
.popover-content {
  padding: 9px 14px;
}
.popover > .arrow,
.popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.popover > .arrow {
  border-width: 11px;
}
.popover > .arrow:after {
  content: "";
  border-width: 10px;
}
.popover.top > .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, .25);
  border-bottom-width: 0;
}
.popover.top > .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-right-color: #999;
  border-right-color: rgba(0, 0, 0, .25);
  border-left-width: 0;
}
.popover.right > .arrow:after {
  bottom: -10px;
  left: 1px;
  content: " ";
  border-right-color: #fff;
  border-left-width: 0;
}
.popover.bottom > .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999;
  border-bottom-color: rgba(0, 0, 0, .25);
}
.popover.bottom > .arrow:after {
  top: 1px;
  margin-left: -10px;
  content: " ";
  border-top-width: 0;
  border-bottom-color: #fff;
}
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999;
  border-left-color: rgba(0, 0, 0, .25);
}
.popover.left > .arrow:after {
  right: 1px;
  bottom: -10px;
  content: " ";
  border-right-width: 0;
  border-left-color: #fff;
}
.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner > .item {
  position: relative;
  display: none;
  -webkit-transition: .6s ease-in-out left;
       -o-transition: .6s ease-in-out left;
          transition: .6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform .6s ease-in-out;
         -o-transition:      -o-transform .6s ease-in-out;
            transition:         transform .6s ease-in-out;

    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-perspective: 1000px;
            perspective: 1000px;
  }
  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    left: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    left: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}
.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
  background-color: rgba(0, 0, 0, 0);
  filter: alpha(opacity=50);
  opacity: .5;
}
.carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  background-image:      -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
  background-image:         linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control.right {
  right: 0;
  left: auto;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  background-image:      -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
  background-image:         linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control:hover,
.carousel-control:focus {
  color: #fff;
  text-decoration: none;
  filter: alpha(opacity=90);
  outline: 0;
  opacity: .9;
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
  margin-top: -10px;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  font-family: serif;
  line-height: 1;
}
.carousel-control .icon-prev:before {
  content: '\2039';
}
.carousel-control .icon-next:before {
  content: '\203A';
}
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
}
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 10px;
}
.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff;
}
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
}
.carousel-caption .btn {
  text-shadow: none;
}
@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px;
  }
  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}
.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
  display: table;
  content: " ";
}
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-header:after,
.modal-footer:after {
  clear: both;
}
.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}
@-ms-viewport {
  width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}
.OrderItem {
	/*background-color: #eee;
	border: 1px solid #ddd;
	padding: 20px;
	font-size: 18px;
	margin-bottom: 50px;
	*/
	width: 49%;
	background: #fff;
	display: inline-flex !important;
	color: #536A90;
	/* padding: 10px 20px; */
	border: 1px solid #F0F0F0;
	border-radius: 6px;
	margin-bottom: 2%;
}

.OrderItem:nth-child(2n+1) {
	margin-right: 1%;
}

.OrderItem:nth-child(2n) {
	margin-left: 1%;
}

.OrderItem__Order,
.OrderItem__Abono,
.OrderItem__Inscription {
	width: 100%;
}


.OrderItem__bookBtn {
	font-size: 15px;
	font-weight: 400;
	height: 40px;
	line-height: 19px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	padding: 10px 20px;
	background: #437DEC;
	color: #FFF;
	font-family: 'Roboto', sans-serif;
	border: none;
	white-space: nowrap;
}

.OrderItem__bookBtn:hover,
.OrderItem__bookBtn:focus {
	background: #437DEC;
	color: #FFF;
	border: none;
}

.OrderItem__bookBtn--checkin,
.OrderItem__bookBtn--checkin:hover,
.OrderItem__bookBtn--checkin:focus {
	background: #39DA8A;
	border: none;
}

.OrderItem__bookBtn--checkout,
.OrderItem__bookBtn--checkout:hover,
.OrderItem__bookBtn--checkout:focus {
	background: #F5A623;
	border: none;
}

.OrderItem__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 15px 18px;
	border-bottom: 1px solid #F0F0F0;
}

.OrderItem__header h5 {
	color: #455E7D;
	font-size: 16px;
	font-weight: 700;
	line-height: 16px;
	text-transform: capitalize;
	margin: 0;
}

.OrderItem__header i {
	color: #668FC9;
	font-size: 15px;
}

.OrderItem__title__icon {
	float: left;
	width: 54px;
	font-size: 40px;
}

.OrderItem__title {
	width: 100%;
}

.OrderItem__title .OrderItem__title__content {
	width: 100%;
	float: initial;
	border-bottom: 1px solid #F0F0F0;
	padding: 10px 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.OrderItem__title .OrderItem__title__content h5 {
	color: #455E7D;
	font-size: 16px;
	font-weight: 700;
	margin-top: 5px;
	margin-bottom: 0;
	font-family: 'Roboto', sans-serif;
}

.OrderItem__title__content {
	float: left;
	width: calc(100% - 54px);
	font-size: 20px;
	line-height: 24px;
}

.OrderItem__title .OrderItem__title__content i {
	font-size: 16px;
}

.OrderItem__title .badge,
.HistoricalTable .badge {
	background: #E6E6E6;
	color: #818D9A;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 3px;
	padding: 2px 10px;
	font-family: 'Roboto', sans-serif;
}

.OrderItem__title__content>div>span {
	margin-right: 5px;
}

.OrderItem__title .stateSuccess {
	background: #D2FFE8;
	color: #39DA8A;
}

.OrderItem__title .stateDanger {
	color: #FF5B5C;
	background: #FFCCCC;
}

.OrderItem__title .stateWarning {
	background: #f8942642;
	color: #F89426;
}

span.text-danger,
p.text-danger {
	color: #FF5B5C;
}

span.text-success,
p.text-success {
	color: #39DA8A !important;
}

.OrderItem__uses {
	border-bottom: 1px solid #F0F0F0;
	padding: 16px 0 13px;
	margin: 0 15px;
}

.OrderItem__uses p {
	margin: 0;
	font-size: 15px;
	font-family: 'Roboto', sans-serif;
}

.OrderItem__info {
	border-bottom: 1px solid #F0F0F0;
	padding: 10px 0;
	margin: 0 15px;
}

.OrderItem__orderDetailes {
	padding: 10px 0;
	margin: 0 15px;
	border-top: 1px solid #F0F0F0;
}

.OrderItem__orderDetailes span {
	color: #5A8DEE;
	font-size: 14px;
	font-weight: 400;
	font-family: 'Roboto', sans-serif;
	cursor: pointer;
}

.OrderItem__payment {
	padding: 10px 0;
	margin: 0 15px;
}

.OrderItem__payment p.OrderItem__payment__refounded {
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	color: #F89426;
	font-family: 'Roboto', sans-serif;
}

.OrderItem__schedule {
	margin-bottom: 10px;
}

.OrderItem__schedule span,
.OrderItem__payment span {
	color: #455E7D;
	font-size: 15px;
	font-weight: 700;
	font-family: 'Roboto', sans-serif;
}

.OrderItem__installation span,
.OrderItem__Pax span {
	color: #455E7D;
	font-size: 15px;
	font-weight: 400;
	font-family: 'Roboto', sans-serif;
}

.OrderItem__Pax {
	margin-top: 10px;
}

.OrderItem__Pax span {
	display: block;
}

.OrderItem__payment__date div p:last-child {
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	color: #455E7D;
	font-family: 'Roboto', sans-serif;
}

.OrderItem__subscription,
.OrderItem__missingPayment {
	padding: 0 15px;
}

.OrderItem__subscription .alert {
	border: none;
	background-color: #E2ECFF;
	color: #719DF0;
	border-radius: 4px;
	display: inline-block;
	margin-bottom: 10px;
	width: 100%;
	font-family: 'Roboto', sans-serif;
	display: flex;
	align-items: center;
	padding: 14px 20px;
}

.OrderItem__missingPayment .alert.alert-danger {
	color: #FF5B5C;
	background-color: rgba(255, 91, 92, 10%);
	border: none;
	font-size: 12px;
	font-weight: 700;
	padding: 5px 15px;
	margin-bottom: 10px;
	border-radius: 4px;
	font-family: 'Roboto', sans-serif;
}

.OrderItem__missingPayment__title {
	display: flex;
	align-items: center;
}

.OrderItem__missingPayment>div>div {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.OrderItem__missingPayment i {
	font-size: 26px;
	padding-right: 11px;
}

.OrderItem__missingPayment a {
	background: #437DEC;
	color: #FFF;
	text-decoration: none;
	text-transform: uppercase;
	border-radius: 3px;
	padding: 2px 9px;
	font-family: 'Roboto', sans-serif;
}

.OrderItem__Tools {
	padding: 0 15px 10px;
}

.SubscriptionBtnModal__Btn,
.cancelBtn {
	width: 100%;
	background: #E6E6E6;
	border-color: #E6E6E6;
	color: #475F7B;
	font-size: 15px;
	font-weight: 400;
	padding: 0 20px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	text-decoration: none;
	font-family: 'Roboto', sans-serif;
}

.SubscriptionBtnModal__Btn:hover {
	cursor: pointer;
}

.cancelBtn {
	background: #FFF;
	color: #FF5B5C;
	font-size: 14px;
	font-weight: 500;
	border: none;
	font-family: 'Roboto', sans-serif;
}

.paynowBtn {
	font-size: 12px;
	font-weight: 700;
	background: #437DEC;
	color: #FFF;
	text-decoration: none;
	text-transform: uppercase;
	border-radius: 3px;
	padding: 2px 9px;
}

.newtext-default {
	color: #818D9A;
	font-size: 14px;
	font-weight: 700;
}

.newtext-success {
	color: #39DA8A;
	font-size: 14px;
	font-weight: 700;
}

.newtext-danger {
	color: #FF5B5C;
	font-size: 14px;
	font-weight: 700;
}

.OrderItem__label {
	color: #818D9A;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0;
	font-family: 'Roboto Condensed', sans-serif;
}

/*
.OrderItem h3{
	margin-top: 0;
	margin-bottom: 20px;
}*/

.OrderItem__QRBlock {
	text-align: center;
	max-width: 200px;
}

.OrderItem__QRBlock img {
	border: 1px solid #eee;
	border-radius: 3px;
	width: 100%;
}

/* .OrderItem--isCancelled{
	opacity: 0.7;
	border-color: #d5444585;
} */

.OrderItem--isClickable:hover {
	cursor: pointer;
}

.Scanner-modal {
	z-index: 1002 !important;
}

@media (max-width: 767px) {

	.OrderItem {
		width: 100%;
		display: static;
		margin: auto;
		margin-bottom: 50px;
	}

	.OrderItem__QRBlock {
		text-align: left;
	}

	.OrderItem__QRBlock img {
		margin: 0;
	}

}

.PriceDetailModalBtn {
	width: 100%;
  }
  
  .PriceDetailModalBtn__content {
	display: flex;
	justify-content: space-between;
	width: 100%;
  }
  
  .PriceDetailModalBtn__left {
	display: flex;
	align-items: center;
	flex: 1;
  }
  
  .PriceDetailModalBtn__price {
	font-weight: bold;
	color: #455E7D;
	margin-right: 10px;
  }
  
  .PriceDetailModalBtn__title__Details {
	display: flex;
	align-items: center;
  }
  
  .PriceDetailModalBtn__title__link {
	color: #5A8DEE;
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 0;
	margin-left: 5px;
	font-family: 'Roboto', sans-serif;
	cursor: pointer;
  }
  .PriceDetailModalBtn__title__Details i {
    transform: rotate(180deg);
    color: #B3C0CE;
    margin-left: 5px;
}
  .PriceDetailModalBtn__right {
	display: flex;
	align-items: center;
	white-space: nowrap;
  }
  

  
  .circular-timer {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid #ff5b5c;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: white;
  }
  
  .circular-timer span {
	font-size: 10px;
	color: #ff5b5c;
  }
  
  
  .OrderItem__payment > .row > div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
  }
  
  .OrderItem__payment > .row > div > div:first-child {
	flex: 1;
  }.Result{
  text-align: center;
  color: #888888;
  padding: 50px 0;
  font-size: 24px;
}

.Result--size-sm{
	padding: 30px 0;
	font-size: 18px;
}

.Result--size-xs{
	padding: 16px 0;
	font-size: 16px;
}


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


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

.Result--error{
	color: #CF5742;
}.LoaderStandar{
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: 12;
    
    font-size: 50px;
}

.LoaderStandar--static{
    height: 100px;
    position: relative;

}

.LoaderStandar--overlay{
    
    background: rgba(255,255,255,0.7);
}

.LoaderStandar__blob {
    width: 2rem;
    height: 2rem;
    background: #4B91E3;
    border-radius: 50%;
    position: absolute;
    left: calc(50% - 1rem);
    top: calc(50% - 1rem);
    box-shadow: 0 0 1rem rgba(255, 255, 255, 0.15);
}

.LoaderStandar--blob-2 {
    animation: LoaderStandar__animate-to-2 1.5s infinite;
}

.LoaderStandar--blob-3 {
    animation: LoaderStandar__animate-to-3 1.5s infinite;
}

.LoaderStandar--blob-1 {
    animation: LoaderStandar__animate-to-1 1.5s infinite;
}

.LoaderStandar--blob-4 {
    animation: LoaderStandar__animate-to-4 1.5s infinite;
}

.LoaderStandar--blob-0 {
    animation: LoaderStandar__animate-to-0 1.5s infinite;
}

.LoaderStandar--blob-5 {
    animation: LoaderStandar__animate-to-5 1.5s infinite;
}

@keyframes LoaderStandar__animate-to-2 {
    25%,
    75% {
        transform: translateX(-1.5rem) scale(0.75);
    }
    95% {
        transform: translateX(0rem) scale(1);
    }
}

@keyframes LoaderStandar__animate-to-3 {
    25%,
    75% {
        transform: translateX(1.5rem) scale(0.75);
    }
    95% {
        transform: translateX(0rem) scale(1);
    }
}

@keyframes LoaderStandar__animate-to-1 {
    25% {
        transform: translateX(-1.5rem) scale(0.75);
    }
    50%,
    75% {
        transform: translateX(-4.5rem) scale(0.6)
    }
    95% {
        transform: translateX(0rem) scale(1);
    }
}

@keyframes LoaderStandar__animate-to-4 {
    25% {
        transform: translateX(1.5rem) scale(0.75);
    }
    50%,
    75% {
        transform: translateX(4.5rem) scale(0.6)
    }
    95% {
        transform: translateX(0rem) scale(1);
    }
}

@keyframes LoaderStandar__animate-to-0 {
    25% {
        transform: translateX(-1.5rem) scale(0.75);
    }
    50% {
        transform: translateX(-4.5rem) scale(0.6)
    }
    75% {
        transform: translateX(-7.5rem) scale(0.5)
    }
    95% {
        transform: translateX(0rem) scale(1);
    }
}

@keyframes LoaderStandar__animate-to-5 {
    25% {
        transform: translateX(1.5rem) scale(0.75);
    }
    50% {
        transform: translateX(4.5rem) scale(0.6)
    }
    75% {
        transform: translateX(7.5rem) scale(0.5)
    }
    95% {
        transform: translateX(0rem) scale(1);
    }
}.UserMenuAvatar__btn{
    padding: 0;
    border-radius: 50%;
    border: none;
}

.UserMenuAvatar__avatarHolder {
    background: rgba(0,0,0,0.2);
    border-radius: 50%;
    color: rgba(255,255,255,0.6);
    font-size: 20px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    width: 40px;
    overflow: hidden;
    position: relative;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.4);
}

.UserMenuAvatar__divImg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    box-shadow: 0 0 2px rgba(0,0,0,0.2) inset;
}

.UserMenuAvatar .dropdown-menu {
    margin: 0;
    padding: 0;
    top: 59px;
}

.UserMenuAvatar .dropdown-menu li a, 
.UserMenuAvatar .dropdown-menu li {
    color: #818D9A;
    font-size: 13px;
    font-weight: 400;
}

.UserMenuAvatar .dropdown-menu li a i {
    font-size: 13px;
    margin-right: 8px;
    color: #A1A1A0;
}

.UserMenuAvatar .dropdown-menu li {
    padding: 0;
}

.UserMenuAvatar .dropdown-menu li a,
.UserMenuAvatar .dropdown-menu li.dropdown-header {
    padding: 8px 18px;
}

.UserMenuAvatar .dropdown-menu > li:first-child {
    padding: 11px 18px;
}

.UserMenuAvatar .dropdown-menu .QRClientModalBtn__link li a {
    display: flex;
}

.UserMenuAvatar .dropdown-menu li.divider {
    margin: 0;
    padding: 0;
}

.UserMenuAvatar .dropdown-menu li:nth-child(2) {
    margin-bottom: 10px;
}

.UserMenuAvatar .dropdown-menu li:nth-child(6) {
    margin-top: 13px;
}

.UserMenuAvatar .dropdown-menu li:nth-child(7) a {
    padding: 17px 18px 9px;
}

.UserMenuAvatar .dropdown.open .dropdown-menu::after,
.UserMenuAvatar .dropdown.open .dropdown-menu::before {
    content:'';
    width: 0px;
    height: 0px;
    position: absolute;
    left: 68px;
    border-style: solid;
  }

  .UserMenuAvatar .dropdown.open .dropdown-menu::after {
    top: -18px;
    border-color: transparent transparent white  transparent;
    border-width: 9px;
  }

  .UserMenuAvatar .dropdown.open .dropdown-menu::before {
    top: -19.5px;
    border-color: transparent transparent rgba(0, 0, 0, .15)  transparent;
    border-width: 9px;
}

.UserMenuAvatar .dropdown.open .dropdown-menu::before,
.UserMenuAvatar .dropdown.open .dropdown-menu::after {
  left: 130px;
}
.HelpBtn{
    
    margin-top: 13px;
    margin-right: 18px;
}


.HelpBtn .dropdown-toggle{
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    color: #6F7E96;
    font-size: 17px;
    line-height: 24px;
    padding: 0;
    width: 26px;
    height: 26px;
    box-shadow: none;
}


.HelpBtn .dropdown-toggle:hover,
.HelpBtn .dropdown-toggle:active,
.HelpBtn .dropdown-toggle:focus{
  box-shadow: none;
}

.HelpBtn .dropdown-toggle:hover{
  opacity: 0.8;
}

.HelpBtn .dropdown-menu{
    margin-top: 14px;
}




.HelpBtn__content{
    padding: 15px;
    min-width: 300px;
    max-width: 400px;
}

.HelpBtn__content__title{
  margin-bottom: 5px;
  font-weight: bold;
}

.HelpBtn__content a{
    display: block;
    padding: 8px 0;
}

.help-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    color: #162349;
    background-color: #FFFFFF;
    padding: 10px 15px;
    margin-bottom: 10px;
    border: 2px solid #162349;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.help-cursor-icon {
  font-size: 16px;
  display: inline-block;
  transform: rotate(-15deg) scale(2);
  margin-left: 10px;
  position: relative;
  top: 9px;
  animation: clickMotion 1.5s infinite;
  color: #2c2c2c;
}

@keyframes clickMotion {
  0% {
    transform: rotate(-15deg) scale(2);
  }
  50% {
    transform: rotate(-15deg) scale(1.8) translateY(2px);
  }
  100% {
    transform: rotate(-15deg) scale(2);
  }
}

.help-link:hover {
    background-color: #162349;
    color: white;
    text-decoration: none;
}

.help-link:hover .help-cursor-icon {
    color: white;
}

.help-contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 5px 0;
  word-break: break-all;
  margin-left: 20px;
}

.help-contact-link span {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-left: 15px;
}

.help-icon {
  font-size: 16px;
  width: 20px;
  margin-right: 10px;
}

/* Colores específicos para los iconos */
.help-contact-link .fa-envelope-o {
  color: #5A8DEE;
}

.help-contact-link .fa-whatsapp {
  color: #25D366;
}

.help-divider {
    width: 80%;
    height: 3px;
    background-color: #E8ECF8;
    margin: 5px auto;
}

.help-contact-section {
    padding-top: 5px;
}

.help-contact-title {
    color: #162349;
    font-size: 12px;
    font-weight: 600;
    margin: 0 0 10px 0;
}
/* Añadir estos estilos al archivo CSS existente */

.help-map-container {
  margin-top: 10px;
  width: 100%;
}

.help-divider-small {
  height: 1px;
  background-color: #eee;
  margin: 10px 0;
}

.help-map {
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
}

.help-map-actions {
  padding: 5px;
  font-size: 12px;
  background-color: #f8f8f8;
  border-top: 1px solid #eee;
}

.help-map-links {
  display: flex;
  justify-content: space-between;
}

.help-map-links a,
.help-copy-address-btn,
.help-copy-phone-btn,
.help-copy-email-btn {
  color: #337ab7;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  font-size: 12px;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
}

.help-map-links a:hover,
.help-copy-address-btn:hover,
.help-copy-phone-btn:hover,
.help-copy-email-btn:hover {
  text-decoration: underline;
}
div:has(>.help-contact-link) {
  display: flex;
  justify-content: space-between;
}
.help-copy-email-btn >i,
.help-copy-phone-btn >i {
  margin-top: auto;
  margin-bottom: .5em;
}
.help-icon {
  margin-right: 5px;
}
.help-icon-map{
  font-size: 40px; 
  color: #FF0000;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}.Breadcrumbs{

	border-bottom: 1px solid #C7CFD6;
	padding: 20px 0;
	font-size: 15px;
}

.Breadcrumbs__icon{
	vertical-align: top;
    display: inline-block;
    width: 18px;
}.Header__Top{
  /*background: #52B7C8;*/
  height: 52px;
}


.Header__Top .smetauserBtn-container{
  float: right;
  margin-top: 4px;
}

.header__toogle{
	display: block;
	float: left;
	color: #fff;
	font-size: 24px;
	margin-top: 12px;
	margin-right: 10px;
	display: none;
	cursor: pointer;
}

.header__logo{
	display: block;
	/*width: 32px;
  margin-top: 10px;*/
	float: left;
  padding: 8px 0;
	
}
/*
.header__logo img{
  filter: invert(100%);  
}*/

.header__logo img{
  width: auto;
  height: 36px; 
}


.header__title{
	display: block;
  color: #fff;
  line-height: 36px;
  margin-left: 10px;
  float: left;
  font-size: 20px;
  font-weight: bold;
  padding: 8px 0;
  padding-left: 12px;
}

.Header__bottom{
	background: #E3EEF9;
}


.Header__LoginBtn{
  color: #fff;
  border: 2px solid #fff;
  border-radius: 4px;
  display: inline-block;
  padding: 4px 20px;
  text-transform: uppercase;
  margin-top: 10px;
  font-weight: bold;
}

.Header__LoginBtn:hover{
  color: #536A90;
  background:#fff;
}


.Header__LoginBtnIcon{
  color: #fff;
  display: inline-block;
  padding: 3px 0px;
  /* margin-top: 10px; */
  font-size: 32px;
}

.Header__LoginBtnIcon:hover{
  color: #fff;
  opacity: 0.8;
}

/*
.Header__bottom__menu{
	margin: 0;
	padding: 0;
	list-style: none;
	float: left;
}

.Header__bottom__menu li{
	
	display: inline-block;
}

.Header__bottom__menu li a{
	color: #404748;
	padding: 12px 15px;
	display: inline-block;
	text-decoration: none;
}

.Header__bottom__menu li a:hover,
.Header__bottom__menu li a.active{
	color: #4B91E3;
	cursor: pointer;
	
}*/





.Header .UserMenuAvatar__btn{
  padding: 6px 0;

}



.Header .smetauserBtn-container{
  margin-top: 5px;
  padding-right: 5px;
}



/*menu*/

.Header__menu{
  float: left;
  list-style: none;
  margin: 0;
}

.Header__menu > li{
  float: left;
  display: block;
}

.Header__menu a{
  color: #fff;
  padding: 16px 15px;
  display: block;
  text-decoration: none;
}

.Header__menu a.active{
  background: rgba(255,255,255,0.3);
}

.Header__menu a:hover{
  color: #fff;
  background: rgba(255,255,255,0.3);
}



@media (max-width: 767px) {

  .Header__menu{
  display: none;
  }

	.Header__bottom{
		display: none;
	}	

	.header__toogle{
		display: block;
	}

  .header__title{
    /*display: none;*/

    max-width: 220px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}

@media (max-width: 450px) {

  .header__title{

    max-width: 200px;
  }
}

@media (max-width: 380px) {

  .header__title{

    max-width: 128px;
  }
}.Footer{
    padding: 20px 0 120px;
}

.Footer__credits{
	color: #444;
    font-weight: 700;
    font-size: 12px;
}

.Footer__credits img {
    width: 25px;
    height: auto;
    margin-left: 3px;
    margin-top: -2px;
}.AdminBar{
	background: #2E303A;
}

.AdminBar__logo{
	float: left;
	width: 32px;
  padding: 6px;
}

.AdminBar__name{
	float: left;
	width: calc(100% - 50px);
	padding: 8px;
  color: #ddd;
  font-size: 12px;
}

@media (max-width: 480px) {

	.AdminBar__name{
		display: none;
	}
}.Offcanvas ul{
	list-style: none;
	margin: 0;
	padding:0;
}

.Offcanvas ul > li > a{
	padding: 15px 20px;
	display: block;
	border-bottom: 1px solid rgba(255,255,255,0.2);
	color: #fff;
}

.Offcanvas ul > li > a:hover,
.Offcanvas ul > li > a.active{
	color: #02ceff;
}

.Offcanvas .dropdown{
	height: auto;
}

.Offcanvas .dropdown-menu{
	display: block;
	float: none;
	border-radius: 0;
	border: none;
	position: relative;

	/*box-shadow: inset 0 0 11px rgba(0, 0, 0, .5);*/
}


.Offcanvas .dropdown-menu > li > a{
	background: #444;
	padding: 10px 20px;
}



/*
.Offcanvas .ul .UserPreview__avatarHolder{
	border-color: #fff;
	color: rgba(255,255,255,0.5);
	-webkit-transition: border .2s ease 0s,box-shadow .2s ease 0s,color .2s ease 0s;
    transition: border .2s ease 0s,box-shadow .2s ease 0s,color .2s ease 0s;
}

.Offcanvas .ul > li > a:hover .UserPreview__avatarHolder{
	border-color: #02ceff;
	box-shadow: 0 0 0 1px #02ceff;
	
}*/.flex-wrapper {


    display: flex;
    display: -webkit-flex; /* Para navegadores webkit, como Safari */
/*
    flex-flow: row wrap;
    -webkit-flex-flow: row wrap;
*/

    flex-direction: column; /* hijos se agrupan en filas (se comportan como columnas)*/
    -webkit-flex-direction: column;
    
    flex-wrap: nowrap; /* wrap = Contenedor tiene más líneas (filas?) (más util nowrap?)*/
    -webkit-flex-wrap: nowrap;
    /*

    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    */
    position: absolute;
    width: 100%;
    height: 100%;
    background: #FAFBFB;
    

}
/*
.flex-wrapper > div{
    flex: 1 1 auto;
}
*/

.flex-header{
    flex: 0 0 52px;
    -webkit-flex: 0 0 52px;
}

.flex-subHeader{
    flex: 0 0 1px;
    -webkit-flex: 0 0 1px;
}

.flex-footer{
    flex: 0 0 40px;
    -webkit-flex: 0 0 40px;
}

.flex-content { 

    flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    
    min-height: 0px;

    display: flex;
    display: -webkit-flex;

    flex-direction: row;     
    -webkit-flex-direction: row;  
}


.flex-content-sidebar{

    /*flex: 1 0 150px;
    -webkit-flex: 1 0 200px;*/

    flex: 0 0 238px;
    -webkit-flex: 0 0 238px;

    min-height: 0px;
    /*
    overflow-y: auto;
    */
    overflow: hidden;
    position: relative;

    /*transition: flex 0.3s ease 0s;
    -webkit-transition: flex 0.3s ease 0s;
    */
    transition: flex 0.3s ease;
    -webkit-transition: flex 0.3s ease;

}

.flex-content-content{

    flex: 8;
    -webkit-flex: 8;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0px;
    position: relative;
}





.flex-content-sidebar{
    background: #2E303A;
    color: #fff;    
}


/*interno de sidebar... aquí o en cada uno?*/

.Sidebar{

    display: flex;
    display: -webkit-flex; /* Para navegadores webkit, como Safari */

    flex-direction: column; /* hijos se agrupan en filas (se comportan como columnas)*/
    -webkit-flex-direction: column;
    
    flex-wrap: nowrap; /* wrap = Contenedor tiene más líneas (filas?) (más util nowrap?)*/
    -webkit-flex-wrap: nowrap;

    position: absolute;
    width: 100%;
    height: 100%;
}

.Sidebar_container{
    flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    overflow-y: auto;
    overflow-x: hidden;
}

.Sidebar_controls{

    flex: 0 0 46px;
    -webkit-flex: 0 0 46px;

    border-top: 1px solid #2D2D2D;
}

.Sidebar_controls .btn{
    border-radius: 0;
}


.LayoutStandar--collapsed .flex-content-sidebar{
    flex: 0 0 62px;
    -webkit-flex: 0 0 62px;
}


.LayoutStandar__modalBtn{
    display: none;
}



@media (max-width: 768px) {


    .flex-content-sidebar{
        display: none;
    }

    .LayoutStandar__modalBtn{
        display: block;
    }

}

@media (max-width: 480px) {


}
/*### General ###*/

html{
  background: #FEFFFE;
}

body{

  font-family: 'Roboto Condensed', sans-serif;
  color: #6F7E96;
  background: #FEFFFE;
}


a:hover,
.btn-link:hover,
.btn-link:focus{
	text-decoration: none;
	cursor: pointer;
}


.CookieMonster__MainBtn.CookieMonster__MainBtn{
	z-index: 1000;
}

.modal-backdrop, .modal{
	z-index: 9900;
}
/*
@media (max-width: 768px) {
	.container {
			width: 90%;
	}
}
*/

/*@media (max-width: 767px) {*/
/*
	.react-datepicker{
		width: 241px;
	}

	.react-datepicker__day-name, 
	.react-datepicker__day{
		width: 34px;
    	line-height: 30px;
	}

	.react-datepicker__year-read-view--down-arrow, 
	.react-datepicker__month-read-view--down-arrow{
		float: none;
    	margin-left: 20px;
	}

	.react-datepicker__year-read-view, 
	.react-datepicker__month-read-view{
		padding: 5px;
    	font-size: 14px;
	}

	.react-datepicker__year-read-view--down-arrow, 
	.react-datepicker__month-read-view--down-arrow{
		top: 13px;
	}

	.react-datepicker__year-option,
	.react-datepicker__month-option{

		height: 30px;
	}

	.react-datepicker__navigation--years-upcoming {
	    top: 0px;
	}

	.react-datepicker__navigation--years-previous {
    	top: 12px;
	}*/
/*}*/
.btn{
  border-radius: 2px;
}

/*# fix icon heights*/

.btn{
  height: 32px;
  line-height: 1;
  /*line-height: 1.42857143;*/

}
.btn-xs{
  height: 22px;
  line-height: 1.5;
}
.btn-sm{
  height: 30px;
  line-height: 1.5;
}
.btn-lg{
  height: 48px;
  line-height: 1.333333;
}
.btn-link{
  height: auto
}
/*# END fix icon heights*/

.btn-sm, .btn-group-sm > .btn{
  border-radius: 2px; 
}

.btn.disabled, .btn[disabled], fieldset[disabled] .btn{
  opacity: 0.5;
}

.btn:active, .btn.active {
    /*box-shadow: none;*//*0 0 2px rgba(0, 0, 0, 0.125) inset;*/
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.125) inset;
}
/* 
.btn .Icon{#! iconmmoon fix
  padding: 1px 0;
  display: inline-block;
}

.input-group .btn .Icon{
  padding: 0px;
  height: 18px;
}*/

.btn-primary{
  background-color: #00A7E8;
  border-color: #00A7E8;
}

.btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary{
  background-color: #158DC6;
  border-color: #158DC6;
}

.btn-primary:active:hover, .btn-primary.active:hover, .open > .dropdown-toggle.btn-primary:hover, .btn-primary:active:focus, .btn-primary.active:focus, .open > .dropdown-toggle.btn-primary:focus, .btn-primary.focus:active, .btn-primary.active.focus, .open > .dropdown-toggle.btn-primary.focus {
  background-color: #158DC6;
  border-color: #158DC6;
}

.btn-primary:hover{
  background-color: #158DC6;
  border-color: #158DC6;
}

.btn-warning{
  background-color: #FF9C09;
  border-color: #FF9C09;
}

.btn-white{
  color: #444;
  background: #fff;
}

.btn-hollow{
  background: transparent;
  color: #A4D6EF;
  border-color: #A4D6EF;
}


.btn-hollow-primary{

  background: transparent;
  border-color: #00A7E8;
  color: #00A7E8;
}


.btn-hollow-primary:hover, .btn-hollow-primary:focus{

  background: #00A7E8;
  border-color: #00A7E8;
  color: #fff;
}



.btn-hollow:hover, .btn-hollow:focus,
.pagination > .active > .btn-hollow,
.pagination > .active > .btn-hollow:hover,
.pagination > .active > .btn-hollow:focus{
  background: #00A7E8;
  color: #fff;
  border-color: #00A7E8;
}



.btn-hollow-default,
.pagination > li .btn-hollow-default,
.pagination > .disabled > .btn-hollow-default,
.pagination > .disabled > .btn-hollow-default:hover,
.pagination > .disabled > .btn-hollow-default:focus{
  background: transparent;
  color: #6E7F84;
  border-color: #6E7F84;
}

.btn-hollow-default:hover, .btn-hollow-default:focus,
.pagination > li > .btn-hollow-default:hover,
.pagination > li > .btn-hollow-default:focus,
.pagination > .active > .btn-hollow-default,
.pagination > .active > .btn-hollow-default:hover,
.pagination > .active > .btn-hollow-default:focus{
  background: transparent;
  color: #00A8E6;
  border-color: #00A8E6;
}




/* ### dropdowns ###*/

.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus{
  color: #02ceff;
  background: transparent;
  
}

.dropdown-menu > li > a{
  color: #6f7e96;
}



.dropdown-checkbox-item-div{
  width: 100%;
  height: 1px;
  background: #ddd;
  margin: 5px 0;
}

.dropdown-checkbox-item{

  color: #444;
  padding: 4px 8px;
}

.dropdown-checkbox-item__name{

  float: left;
  width: calc(100% - 20px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropdown-checkbox-item__checkbox{

  float: right;
  width: 20px;
  text-align:right;
}


/* ### groups ###*/
/*
.btn-group-bordered .btn-primary{
  border-right: 2px solid #0090C9;
}

.btn-group-bordered > .btn:last-child{
  border-right: none;
}*/

/*
.nav-pills.btn-group li a{
  padding: 0;
  background-color: transparent;
  color: #fff;
}
*/
/*
.control-label{
  margin-left: 10px;
}*/

/* ### extra ###*/


.btn-profile-add,
.btn-profile-listen{
  cursor:pointer;
  padding: 6px;
  font-size: 12px;
}

.btn-profile-add--active{
  color: #BD81FB;
}

.btn-profile-listen--active{
  color: #6CCE46;
}



/* ### Hollow versions *redo  ### */




.btn-hollow-style.btn-white{
  background: transparent;
  border-color: #fff;
  color: #fff;
}


.btn-hollow-style.btn-white:hover, .btn-hollow-style.btn-white:focus{

  background: #fff;
  border-color: #fff;
  color: #444;
}



.btn-hollow-style.btn-default{
  background: transparent;
  border-color: #707F96;
  color: #707F96;
}


.btn-hollow-style.btn-default:hover, .btn-hollow-style.btn-default:focus{

  background: #707F96;
  border-color: #707F96;
  color: #fff;
}



.btn-hollow-style.btn-primary{
  background: transparent;
  border-color: #00A7E8;
  color: #00A7E8;
}


.btn-hollow-style.btn-primary:hover, .btn-hollow-style.btn-primary:focus{

  background: #00A7E8;
  border-color: #00A7E8;
  color: #fff;
}



.btn-hollow-style.btn-info{
  background: transparent;
  border-color: #437DEB;
  color: #437DEB;
}


.btn-hollow-style.btn-info:hover, .btn-hollow-style.btn-info:focus{

  background: #437DEB;
  border-color: #437DEB;
  color: #fff;
}


.btn-hollow-style.btn-success{
  background: transparent;
  border-color: #45DD91;
  color: #45DD91;
}


.btn-hollow-style.btn-success:hover, .btn-hollow-style.btn-success:focus{

  background: #45DD91;
  border-color: #45DD91;
  color: #fff;
}


.btn-hollow-style.btn-warning{
  background: transparent;
  border-color: #FF9C09;
  color: #FF9C09;
}


.btn-hollow-style.btn-warning:hover, .btn-hollow-style.btn-warning:focus{

  background: #FF9C09;
  border-color: #FF9C09;
  color: #fff;
}


.btn-hollow-style.btn-danger{
  background: transparent;
  border-color: #D9534F;
  color: #D9534F;
}


.btn-hollow-style.btn-danger:hover, .btn-hollow-style.btn-danger:focus{

  background: #D9534F;
  border-color: #D9534F;
  color: #fff;
}.form-group__label{
  display: block;
}

.form-control{
  border-radius: 2px;
}

.select-no-appearance{

  -webkit-appearance: none;
  -moz-appearance:    none;
  appearance:         none;
}

select.select-no-appearance.form-control{
    
  line-height: 1.42857143 
}


select.select-no-appearance.form-control.input-lg{

  line-height: 1.3333333;
}


.InputAutoSave{

  background: transparent;
  border: none;
}


.InputAutoSave:focus{

  border-bottom: 1px dashed transparent;
  margin-bottom: -1px;
  animation: borderBlink 1s infinite;
}

@keyframes borderBlink {

    0%,100% {
        border-color: transparent;/*rgba(0,0,0,0.2) transparent*/
    }

    50%{
      border-color: rgba(0,0,0,0.2);/*#0C9ADB #EC7E38;*/
    }
}


.control-label {
  margin: 0;
  display: inline;
}


.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: #C5474F;
}


/* # checkbox # */

.rc-checkbox {
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  display: inline-block;
  position: relative;
  line-height: 1;
  vertical-align: middle;
}
.rc-checkbox:hover .rc-checkbox-inner {
  border-color: #437DEC;
}
.rc-checkbox-inner {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block;
  width: 16px;
  height: 16px;
  border-width: 2px;
  border-style: solid;
  border-radius: 3px;
  border-color: #437DEC;
  background-color: #ffffff;
  -webkit-transition: border-color 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55), background-color 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
          transition: border-color 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55), background-color 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.rc-checkbox-inner:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  position: absolute;
  left: 4px;
  top: 1px;
  display: table;
  width: 5px;
  height: 8px;
  border: 2px solid #FFFFFF;
  border-top: 0;
  border-left: 0;
  content: ' ';
  -webkit-animation-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);
          animation-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-name: amCheckboxOut;
          animation-name: amCheckboxOut;
}

.rc-checkbox-input.rc-checkbox-input {
  margin: 0;
  position: absolute;
  left: 0;
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  filter: unquote('alpha(opacity=0)');
  top: 0;
  bottom: 0;
  right: 0;

  height: 16px;
  width: 16px;
}

.rc-checkbox-checked:hover .rc-checkbox-inner {
  border-color: #437DEC;
}
.rc-checkbox-checked .rc-checkbox-inner {
  border-color: #437DEC;/*#3dbcf6*/
  background-color: #ffffff;/*#3dbcf6*/
}
.rc-checkbox-checked .rc-checkbox-inner:after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  left: 4px;
  top: 1px;
  display: table;
  width: 5px;
  height: 8px;
  border: 2px solid #437DEC;
  border-top: 0;
  border-left: 0;
  content: ' ';
  -webkit-animation-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);
          animation-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-name: amCheckboxOut;
          animation-name: amCheckboxOut;
}
.rc-checkbox-disabled.rc-checkbox-checked:hover .rc-checkbox-inner {
  border-color: #d9d9d9;
}
.rc-checkbox-disabled.rc-checkbox-checked .rc-checkbox-inner {
  background-color: #f3f3f3;
  border-color: #d9d9d9;
}
.rc-checkbox-disabled.rc-checkbox-checked .rc-checkbox-inner:after {
  -webkit-animation-name: none;
          animation-name: none;
  border-color: #cccccc;
}
.rc-checkbox-disabled:hover .rc-checkbox-inner {
  border-color: #d9d9d9;
}
.rc-checkbox-disabled .rc-checkbox-inner {
  border-color: #d9d9d9;
  background-color: #f3f3f3;
}
.rc-checkbox-disabled .rc-checkbox-inner:after {
  -webkit-animation-name: none;
          animation-name: none;
  border-color: #f3f3f3;
}
.rc-checkbox-disabled .rc-checkbox-inner-input {
  cursor: default;
}
@-webkit-keyframes amCheckboxIn {
  0% {
    opacity: 0;
    filter: unquote('alpha(opacity=0)');
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale(0, 0) rotate(45deg);
            transform: scale(0, 0) rotate(45deg);
  }
  100% {
    opacity: 1;
    filter: unquote('alpha(opacity=100)');
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale(1, 1) rotate(45deg);
            transform: scale(1, 1) rotate(45deg);
  }
}
@keyframes amCheckboxIn {
  0% {
    opacity: 0;
    filter: unquote('alpha(opacity=0)');
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale(0, 0) rotate(45deg);
            transform: scale(0, 0) rotate(45deg);
  }
  100% {
    opacity: 1;
    filter: unquote('alpha(opacity=100)');
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale(1, 1) rotate(45deg);
            transform: scale(1, 1) rotate(45deg);
  }
}
@-webkit-keyframes amCheckboxOut {
  0% {
    opacity: 1;
    filter: unquote('alpha(opacity=100)');
  }
  100% {
    opacity: 0;
    filter: unquote('alpha(opacity=0)');
  }
}
@keyframes amCheckboxOut {
  0% {
    opacity: 1;
    filter: unquote('alpha(opacity=100)');
  }
  100% {
    opacity: 0;
    filter: unquote('alpha(opacity=0)');
  }
}


/*# general label*/
.checkbox.checkbox-rc label{
  padding-left: 0px;
}

.checkbox.checkbox-rc input[type="checkbox"]{
  margin: 0;
}

.checkbox.checkbox-rc .rc-checkbox{
  margin-top: -3px;
  margin-right: 6px;
}



/*### END checkbox  ###*/


/*fixes*/

.react-datepicker__input-container{
  width: 100%;
}


/*

.react-datepicker__tether-enabled ~ .form-group__label .Icon{

  color: #00CCFF;
}
*//*### checkbox override ###*/

input[type="checkbox"].rc-checkbox-input{
  margin: 0;
}

.rc-checkbox-primary .rc-checkbox-input{
  height: 20px;
  width: 20px;
}

.rc-checkbox-primary .rc-checkbox-inner{
  border-color: #A1A1A1;
  border-width: 2px;
  height: 20px;
  width: 20px;
}

.rc-checkbox-primary.rc-checkbox-checked .rc-checkbox-inner{
  background: #fff;
  border-color: #4E92E0;
  
}

.rc-checkbox-primary.rc-checkbox-checked .rc-checkbox-inner::after{
  border-color: #4E92E0;
  height: 11px;
  left: 5px;
  top: 1px;
  width: 7px;
}

/*Geosuggest*/



/**
 * The geosuggest module
 */

 .geosuggest {
  
  position: relative;
  
}

 /*
.geosuggest {
  font-size: 18px;
  font-size: 1rem;
  position: relative;
  width: 50%;
  margin: 1em auto;
  text-align: left;
}
.geosuggest__input {
  width: 100%;
  border: 2px solid transparent;
  box-shadow: 0 0 1px #3d464d;
  padding: .5em 1em;
  -webkit-transition: border 0.2s, box-shadow 0.2s;
          transition: border 0.2s, box-shadow 0.2s;
}
.geosuggest__input:focus {
  border-color: #267dc0;
  box-shadow: 0 0 0 transparent;
}*/
.geosuggest__suggests {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 25em;
  padding: 0;
  margin-top: -1px;
  background: #fff;
  border: 2px solid #267dc0;
  /*border-top-width: 0;*/
  overflow-x: hidden;
  overflow-y: auto;
  list-style: none;
  z-index: 5;
  -webkit-transition: max-height 0.2s, border 0.2s;
          transition: max-height 0.2s, border 0.2s;
}
.geosuggest__suggests--hidden {
  max-height: 0;
  overflow: hidden;
  border-width: 0;
}

/**
 * A geosuggest item
 */
.geosuggest-item {
  font-size: 15px;
  /*font-size: 1rem;*/
  padding: .5em .65em;
  cursor: pointer;
}
.geosuggest-item:hover,
.geosuggest-item:focus {
  background: #f5f5f5;
}
.geosuggest-item--active {
  background: #267dc0;
  color: #fff;
}
.geosuggest-item--active:hover,
.geosuggest-item--active:focus {
  background: #ccc;
}


/*END Geosuggest*/
.stateborder-default{

  border-left: 10px solid #9C9C9C;  
}

.stateborder-warning{

  border-left: 10px solid #F89426;
}

.stateborder-important{

  border-left: 10px solid #D54445;
  
}

.stateborder-success{

  border-left: 10px solid #458847;
  
}

.stateborder-info{

  border-left: 10px solid #3A87AD; 
}
.stateborder-extra-1 {
    border-left: 10px solid #9D2ECA;
}
.stateborder-extra-2 {
    border-left: 10px solid #FF41B0;
}
.stateborder-extra-3 {
    border-left: 10px solid #7EC8FC;
    
}





.text-default{
  color: #9C9C9C;
}

.text-warning{
  color: #F89426;
}

.text-danger, .text-important{
  color: #D54445;
}

.text-success{
  color: #458847;
}

.text-info{
  color: #3A85C8;
}

.text-extra-1{
  color: #9D2ECA;
}

.text-extra-2{
  color: #FF41B0;
}

.text-extra-3{
  color: #7EC8FC;
}





.stateBackground-default{
  background-color: #9C9C9C;
}
.stateBackground-warning{
  background-color: #F89426;
}
.stateBackground-danger,
.stateBackgroundSoft-important{
  background-color: #D54445;
}
.stateBackground-success{
  background-color: #458847;
}
.stateBackground-info{
  background-color: #3A85C8;
}
.stateBackground-extra-1{
  background-color: #9D2ECA;
}
.stateBackground-extra-2{
  background-color: #FF41B0;
}
.stateBackground-extra-3{
  background-color: #7EC8FC;
}





.stateBackgroundSoft-default{
  background-color: rgba(165,160,165,0.1);
}
.stateBackgroundSoft-warning{
  background-color: rgba(247,158,62,0.1);
}
.stateBackgroundSoft-danger,
.stateBackgroundSoft-important{
  background-color: rgba(216,79,83,0.1);
}
.stateBackgroundSoft-success{
  background-color: rgba(82,146,83,0.1);
}
.stateBackgroundSoft-info{
  background-color: rgba(72,145,204,0.1);
}
.stateBackgroundSoft-extra-1{
  background-color: rgba(165,63,205,0.1);
}
.stateBackgroundSoft-extra-2{
  background-color: rgba(253,82,183,0.1);
}
.stateBackgroundSoft-extra-3{
  background-color: rgba(140,207,251,0.1);
}.TabsStandard .nav-tabs > li > a{
  color: #878887;
  padding: 10px 20px;
  font-size: 15px;
  border: none;
}

.TabsStandard .nav-tabs > li > a:focus{
	outline: none;
}

.TabsStandard .nav-tabs > li.active > a, 
.TabsStandard .nav-tabs > li.active > a:hover, 
.TabsStandard .nav-tabs > li.active > a:focus,
.TabsStandard .nav-tabs > li > a:hover{
  color: #222;
  background: transparent;
  border: none;
  border-bottom: 3px solid #00BCF3;
}




@media (max-width: 1200px){
   
  .TabsStandard .nav-tabs > li > a{

    padding: 10px 15px;
    font-size: 13px;
  }

}.color-twitter{
  color: #1B94DF;
}

.color-facebook{
  color: #3A5898;
}

.color-google,
.color-google-plus,
.color-googleplus{
  color: #D95231;
}

.color-youtube{
  color: #EE1C1B;
}

.color-linkedin{
  color: #1B94DF;
}

.color-instagram{
  color: #AB3990;
}



.background-twitter{
  background: #1B94DF;
}

.background-facebook{
  background: #3A5898;
}

.background-google,
.background-google-plus,
.background-googleplus{
  background: #D95231;
}


.background-youtube{
  background: #EE1C1B;
}

.background-linkedin{
  background: #1B94DF;
}

.background-instagram{
  background: #AB3990;
}

.background-listening{
  background: #70CD4F;
}





.form-control.readOnlyFix{
  background-color: #fff;
}


.noMargin{
  margin: 0;
}

.masonryRowFix{
  margin-left: -8px;
  margin-right: -8px;
}



.text-warning {
    color: #EA7D42;
}


.alert{
  border-radius: 2px;
}

.modal-header .close{
  line-height: 27px;
  font-size: 35px;
}

@media (max-width: 767px) {

  .masonryColFix{
    width: 100%;
  }
}
/*@import 'styles/base.css';
@import 'styles/grid.css';
@import 'styles/form.css';
@import 'styles/buttons.css';
@import 'styles/nav.css';
@import 'styles/alert.css';
@import 'styles/pagination.css';
@import 'styles/datepicker.css';
@import 'styles/slider.css';
@import 'styles/reactTaggerInput.css';
@import 'styles/formBlock.css';
@import 'styles/misc.css';*/
/*@import '../styles/summaryItem.css';*/

.facebookForm-btn.facebookForm-btn{
	background-color: #3A5898;
	color: #fff;
}.PageLogin__loginFormContainer{
	margin: 100px auto;
	max-width: 320px; 
	padding: 0 15px;
}


.PageLogin h3,
.PageLogin .form-alert-container{

	text-align: center;
}


.PageLogin__addon{

	padding: 15px 0;
	text-align: center;
	font-size: 14px;
    line-height: 28px;
}

.PageLogin__addonAlt hr{

	border-color: #ddd;
	margin-top: 20px;
    margin-bottom: 30px;
}.Register .RegisterForm{
	margin: 50px auto;
	max-width: 450px; 
	padding: 0 15px;
}

.Register .RegisterForm .alert.alert-info {
	background: #E2ECFF;
	color: #719DF0;
	border-color: #E2ECFF;
}

.RegisterForm__title{
	text-align: center;
}

.RegisterForm__FB_picture{
	border-radius: 10px;
	display: block;
	margin: 0 auto 30px;
}

.RegisterForm__emancipateLink {
	color: #C5474F;
	font-weight: 700;
	display: inline-block;
}

.RegisterForm__emancipateLink .RequestEmancipateBtn {
	display: inline-block;
}
/*
.RegisterForm__emancipateLink span {
	font-weight: 400;
	color: #337ab7;
}

.RegisterForm__emancipateLink span:hover {
	cursor: pointer;
}

.RegisterForm__emancipateLink i {
	color: #6F7E96;
}*/
.padron-info{
	margin-top: 10px;
}



/*FIXES*/

.react-datepicker{
	width: 241px;
}

.react-datepicker__day-name, 
.react-datepicker__day{
	width: 34px;
	line-height: 30px;
}

.react-datepicker__year-read-view--down-arrow, 
.react-datepicker__month-read-view--down-arrow{
	float: none;
	margin-left: 20px;
}

.react-datepicker__year-read-view, 
.react-datepicker__month-read-view{
	padding: 5px;
	font-size: 14px;
}

.react-datepicker__year-read-view--down-arrow, 
.react-datepicker__month-read-view--down-arrow{
	top: 13px;
}

.react-datepicker__year-option,
.react-datepicker__month-option{
	/*line-height: 31px;*/
	height: 30px;
}

.react-datepicker__navigation--years-upcoming {
    top: 0px;
}

.react-datepicker__navigation--years-previous {
	top: 12px;
}.CheckEmail__content{
	font-size: 18px;
	padding: 60px 0;
}.DropdownMenu {
	padding: 6px 0;
	border-bottom: 1px solid #C7CFD6;
	background: #FFFFFF;
	display: flex;
}

.DropdownMenu,
.DropdownMenu > div > button {
	width: 100%;
}

.DropdownMenu > div {
	width: 750px;
	margin: 0 auto;
	padding: 0 15px;
}

.DropdownMenu .dropdown-menu {
	width: 100%;
  padding: 0;
}

.DropdownMenu > div > button,
.DropdownMenu > div > button:hover {
	border: none !important;
	background: transparent !important;
	padding: 0;
	box-shadow: none !important;
}

.DropdownMenu__title {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.DropdownMenu__title p {
	margin: 0;
	color: #3552A6;
	font-size: 16px;
	font-weight: 700;
}

.DropdownMenu__title i {
	color: #3552A6;
}

.DropdownMenu__title p i {
	padding-right: 10px;
	font-weight: 700;
}

.DropdownMenu__title__Icon {
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #E2E5EA;
	border-radius: 50%;
}

.DropdownMenu__title__Icon i {
	font-size: 18px;
}

.DropdownMenu .dropdown-menu > li > a {
  padding: 10px 20px;
}
/*
@media (max-width: 768px) {
	.DropdownMenu > div {
		width: 90%;
	}
}*/.Product__Item{

	display: block;
	position: relative;
	margin-bottom: 30px;
	background: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    border-radius: 6px 6px 6px 6px;
    overflow: hidden;
}

.Product__Item__thumb__container{
	width: 100%;
    height: 300px;
    
}

.Product__Item__thumb{
	width: 100%;
    display: block;
    height: 200px;
	position: relative;
	background-size: cover;
	background-position: center;
	
	/*border: 1px solid #ddd;*/	
}

.Product__Item__content{
    padding: 20px 22px;
}

.Product__Item__title {
    color: #465E7C;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Product__Item__priceFrom{
	position: absolute;
	background-color: #fa5003;
    font-size: 16px;
    bottom: -10px;
    left: 15px;
    color: white;
  	font-weight: 600;
  	border-radius: 3px 3px 3px 3px;
	-moz-border-radius: 3px 3px 3px 3px;
	-webkit-border-radius: 3px 3px 3px 3px;
	border: 0px solid #000000;
	padding-left: 10px;
    padding-right: 10px;

}

/*.Product__Item{

	display: block;
	position: relative;
	margin-bottom: 30px;
}

.Product__Item__thumb__container{
	width: 100%;
    height: 300px;
}

.Product__Item__thumb{
	width: 100%;
    display: block;
    height: 300px;
	position: relative;
	background-size: cover;
	background-position: center;
	border-radius: 6px 6px 6px 6px;
	-moz-border-radius: 6px 6px 6px 6px;
	-webkit-border-radius: 6px 6px 6px 6px;
	border: 1px solid #ddd;
	

}

.Product__Item__content{
	position: absolute;
	display: block;
    width: 100%;
    bottom: 0;
    margin: 0;
    padding: 45px 10px 24px 16px;
  	background: linear-gradient(to bottom, transparent, black);
  	background-position: center;
	border-radius: 6px 6px 6px 6px;
	-moz-border-radius: 6px 6px 6px 6px;
	-webkit-border-radius: 6px 6px 6px 6px;
}

.Product__Item__title{
	
    color: white;
  	font-weight: 600;
  	margin-bottom: 5px;
  	font-size: 18px;
}

.Product__Item__priceFrom{
	position: absolute;
	background-color: #fa5003;
    font-size: 16px;
    bottom: -10px;
    left: 15px;
    color: white;
  	font-weight: 600;
  	border-radius: 3px 3px 3px 3px;
	-moz-border-radius: 3px 3px 3px 3px;
	-webkit-border-radius: 3px 3px 3px 3px;
	border: 0px solid #000000;
	padding-left: 10px;
    padding-right: 10px;

}*/
.Product__Item__title__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #465E7C; 
    color: #fff;
    margin-left: 10px; 
}.container-iframe{
    height: 100%;
    margin: auto;
}.Installation__product__list{
	padding: 30px 0;
}
/*
.Installation__product{

	text-align: center;
	border: 2px solid #ddd;
	border-radius: 4px;
	display: block;
	text-decoration: none;
	padding: 15px;
	margin-bottom: 30px;
}

.Installation__product:hover{
	text-decoration: none;
}

.Installation__product__thumb{
	font-size: 110px;
	line-height: 125px;
}

.Installation__product__title{
	color: #444;
	font-size: 20px;
	font-weight: bold;

}*/


.Installation__product__list_navTitle{
	font-size: 14px;
  	text-transform: uppercase;
  	font-weight: bold;
}


.Installation__product__list .nav-tabs{
	border-color: #003657;
	border-width: 2px;
}


.Installation__product__list .nav-tabs > li > a{

	color: #888;
	outline: none;
	max-width: 230px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.Installation__product__list .nav-tabs > li.active > a,
.Installation__product__list .nav-tabs > li.active > a:hover,
.Installation__product__list .nav-tabs > li.active > a:focus{

	
	background: #003657;
	border-color: #003657;
	color: #fff;
}

.Installation__product__list .nav-tabs > li > a:hover,
.Installation__product__list .nav > li > a:hover, 
.Installation__product__list .nav > li > a:focus{
	color: #01AECA;
	background: transparent;
	border-color: transparent;
}

.Installation__product__list .nav-pills > li > a {
	border-radius: 0;
	color: #818D9B;
	font-size: 14px;
	font-weight: 400;
	padding: 7px 15px;
}

/* Dropdown */
.Installation__Dropdown {
	padding: 6px 0;
	border-bottom: 1px solid #C7CFD6;
	background: #FFFFFF;
	display: flex;
}

.Installation__Dropdown,
.Installation__Dropdown > div > button {
	width: 100%;
}

.Installation__Dropdown > div {
	width: 1170px;
	margin: 0 auto;
	padding: 0 15px;
}

.Installation__Dropdown .dropdown-menu {
	width: 100%;
  padding: 0;
}

.Installation__Dropdown > div > button,
.Installation__Dropdown > div > button:hover {
	border: none !important;
	background: transparent !important;
	padding: 0;
	box-shadow: none !important;
}

.Installation__Dropdown__title {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.Installation__Dropdown__title p {
	margin: 0;
	color: #3552A6;
	font-size: 16px;
	font-weight: 700;
}

.Installation__Dropdown__title i {
	color: #3552A6;
}

.Installation__Dropdown__title p i {
	padding-right: 10px;
	font-weight: 700;
}

.Installation__Dropdown .dropdown-menu > li > a {
  padding: 10px 20px;
}
.Installation__product__page__iframe{
	height: 800px;
}


.row-external{
	height:100vh;
}
@media (max-width: 1199px) {
	.Installation__Dropdown > div {
		width: 970px;
	}
}

@media (max-width: 991px) {
	.Installation__Dropdown > div {
		width: 750px;
	}
}

@media (max-width: 768px) {
	.Installation__Dropdown > div {
		width: 100%;
	}
}/*General page*/
.Installation__product__page__header{
	padding-bottom: 40px;
}

.Installation__product__page__title{
	color: #536A90;
	font-size: 26px;
	font-weight: bold;
	/*font-weight: bold;*/
}

.Installation__product__page__subtitle{
	color: #536A90;
	font-size: 18px;
	padding: 20px 0 20px;
}

.Installation__product__page__thumb{
	object-fit:cover;
	width: 100%;
	height: 450px;
	display: block;
	border: 1px solid #eee;
	box-shadow: 0 10px 20px rgba(0,0,0,0.15);
	border-radius: 6px 6px 6px 6px;
}

.Installation__product__page__alert{
	color: #45DD91;
	border: 2px solid #45DD91;
	background: #D2FFE8;
	padding: 15px;
	border-radius: 6px;
	margin-bottom: 20px;
	font-weight: bold;
	font-size: 16px;
	line-height: 32px;
}
.Installation__product__page__warning{
	color: #FD9A53;
	border: 2px solid #FD9A53;
	background: #FFF2E9;
	padding: 15px;
	border-radius: 6px;
	margin-bottom: 20px;
	font-weight: bold;
	font-size: 16px;
	line-height: 32px;
}

.Installation__product__page__alert a{
	color: #45DD91;
	font-weight: bold;
	text-decoration: underline;
}

.Installation__product__page__alert .btn{
	border-width: 2px;
    font-weight: bold;
    border-radius: 5px;
}

    

.Installation__product__page__alert--info{
	color: #437DEB;
	border-color: #437DEB;
	background: #dbe7ff;
}

.Installation__product__page__alert--info a{
	color: #437DEB;
	font-weight: bold;
	text-decoration: underline;
}
.Installation__product__page__iframe{
	width: 100%;
	margin:auto;
	height: 800px;
}
.container-external{	
	width:100%;
	margin:auto;
}

.row-external{
	height:100vh;
}

/*ITEM*/
.Installation__product{

	box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    border-radius: 7px;
	margin-bottom: 30px;
	display: block;
}


.Installation__product:hover{
	/*box-shadow: none;
	border: 2px solid #45DD91;*/
	opacity: 0.6;
}
/*
.Installation__product:hover .Installation__product__title{
	border: none;
}*/

.Installation__product__thumb{
	font-size: 40px;
	float: left;
	width: 100px;
	color: #fff;
	border-radius: 6px 0px 0px 6px;
	text-align: center;
	height: 65px;
}

.Installation__product__thumb img{
	width: calc(100% - 52px);
}

.Installation__product__title{
	float: left;
	width: calc(100% - 100px);
	padding: 10px 20px;
	color: #444;
	font-weight: bold;
	font-size: 16px;
	line-height: 46px;
	border: 1px solid #eee;
	height: 65px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}


/*Text blocks*/
.Installation__product__page__textBlock{

	color: #536A90;
	padding: 30px;
	box-shadow: 0 10px 20px rgba(0,0,0,0.15);
	border: 1px solid #eee;
    border-radius: 6px 6px 6px 6px;
	margin-bottom: 30px;
}

.Installation__product__page__textBlock__title{
	font-size: 22px;
	font-weight: bold;
	margin-top: 0;
	margin-bottom: 15px;
}

.CartModalBtn .OrderItem {
	margin-bottom: 20px;
}

.CartModalBtn .modal-header {
	padding: 15px 20px;
	border-bottom: 1px solid #F0F0F0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.CartModalBtn .modal-header::before,
.CartModalBtn .modal-header::after {
	display: none;
}

.CartModalBtn .modal-header h4 {
	color: #455E7D;
	font-size: 16px;
	font-weight: 700;
}

.CartModalBtn .modal-header i {
	font-size: 20px;
	color: #475F7B;
	cursor: pointer;
}

/* Modal Body */
.CartModalBtn .modal-body {
	padding: 20px;
	background: #FAFBFB;
}

.CartModalBtn .modal-footer {
	text-align: unset;
	padding: 15px 20px;
	display: flex;
	justify-content: flex-end;
	border-top: 1px solid #F0F0F0;
}

.CartModalBtn .modal-footer button {
	width: 30%;
	background: #E6E6E6;
	color: #475F7B;
	border: none;
	font-size: 13px;
	font-weight: 400;
	border-radius: 4px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 15px;
}
.btn-normativa {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 15px;
	background-color: #fff; 
	border: 2px solid #d2d2d2; 
	border-radius: 10px;
	color: #536A90; 
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
	transition: background-color 0.3s ease, border-color 0.3s ease;
	cursor: pointer;
	position: relative; 
	margin-bottom: 15px;
  }
  
  .btn-normativa:hover {
	background-color: #f0f0f0; 
	border-color: #bdbdbd; 
  }
  
  .btn-normativa .Icon {
	font-size: 24px; 
	margin-right: 10px;
	margin-left: 0;
	position: absolute; 
	left: 15px; 
  }
  
  .btn-normativa span {
	width: 100%;
	text-align: center;
	font-size: 20px;
  }
  /*
  .BtnModalForm button {
	width: 100%;
	border: none;
	background: none;
	padding: 0;
	margin: 0;
  }
  /*
  .BtnModalForm a {
	display: inline-block;
	width: 100%;
	text-align: center; 
  }
  */
  
  .btn-ver-mas {
	background: none;
	border: none;
	color: #007bff;
	cursor: pointer;
	text-decoration: underline;
	font-size: 14px;
	margin-top: 10px;
  }
  
  .btn-ver-mas:hover {
	color: #0056b3;
  }
  .Installation__product__page__requirements {
	margin-top: 20px;
	padding: 15px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 4px;
  }
  
  .Installation__product__page__requirements h4 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 16px;
  }
  
  .Installation__product__page__requirements ul {
	list-style: none;
	padding: 0;
	margin: 0;
  }
  
  .Installation__product__page__requirements li {
	margin-bottom: 5px;
  }
  
  .Installation__product__page__requirements small {
	color: #666;
  }
  
  .radio-group-example {
	display: inline-flex;
	gap: 20px;
	margin-left: 10px;
  }
  
  .radio-option-example {
	display: inline-flex;
	align-items: center;
	color: #666;
  }
  
  .radio-option-example i {
	margin-right: 5px;
	font-size: 14px;
  }
  /*css para el boton de actualizar perfil*/
  .btn-christmas:has(.UpdateProfiles-Button){
	white-space: normal; 
	height: unset;
  }
  /*--------------------------------------*/
@media (min-width: 768px) {
	.CartModalBtn .modal-dialog {
		width: 650px;
	}
}

.Installation__product__page__warning {
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.Installation__product__page__requirements {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.requirements-header {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #dee2e6;
}

.requirements-header h4 {
  margin: 0;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 10px;
}

.requirement-item {
  margin-bottom: 25px;
  padding: 15px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.requirement-content {
  margin-bottom: 15px;
}

.requirement-question {
  font-weight: 500;
  color: #2c3e50;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.requirement-answer {
  padding-left: 25px;
}

.requirement-info {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
  color: #666;
  font-size: 0.9em;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.requirement-info i {
  color: #17a2b8;
  margin-top: 3px;
}

.requirement-footer {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.requirement-footer .btn {
  min-width: 200px;
}
.Installation__product__page__alert_yellow{
	color: #FD9A53;
	border: 2px solid #FD9A53;
	background: #FFF2E9;
	padding: 15px;
	border-radius: 6px;
	margin-bottom: 20px;
	font-weight: bold;
	font-size: 16px;
	line-height: 32px;
}
.CustomFields{
	margin-top: 2em;
}
.orderItem_zonasAfectadas {
	font-size: 12px;
    color: lightslategray;
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    padding: 10px 10px 0px 10px;
  }
  .LayoutMyShopping__container {
    padding: 30px 0 80px 0;
}

.LayoutMyShopping__container .nav-pills > li > a {
	border-radius: 0;
	color: #818D9B;
	font-size: 14px;
	font-weight: 400;
	padding: 7px 15px 7px 22px;
}

.LayoutMyShopping__container .nav-pills > li:first-child > a {
	padding: 7px 15px 7px 12px;
}

.LayoutMyShopping__container .nav-pills > li {
	margin: 0;
}

.LayoutMyShopping__sidebar{
	margin-bottom: 40px;
	padding-right: 50px;
}

.LayoutMyShopping__content h1{
	color: #405A84;
	font-size: 20px;
	font-weight: 400;
	margin-top: 0;
	margin-bottom: 30px;
}
.LayoutMyShopping__content.OrdersBonos * .OrdersList{
	display: flex;
	flex-wrap: wrap;
}

@media (max-width:767px){

	.LayoutMyShopping__container {
	    padding: 15px 0 30px;
	}

	.LayoutMyShopping__sidebar{
		padding-right: 0px;
	}

}.HistoricalTable {
  margin-top: 40px;
}

/* title */
.HistoricalTable h4 {
  margin: 0 0 23px 0;
  color: #405A84;
  font-weight: 400;
  font-size: 20px;
}

/* table */
.HistoricalTable__container {
  border: 1px solid #F0F0F0;
  border-radius: 4px;
}

/* table header */
.HistoricalTable__container__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 27px;
  border-bottom: 1px solid #F0F0F0;
}

.HistoricalTable__container__header h6 {
  margin: 0;
  color: #818D9A;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  flex: 1;
}

.HistoricalTable__container__header h6:nth-child(1) {
  flex: 2;
}

/* table item */
.HistoricalTable__container__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 27px;
  border-bottom: 1px solid #F0F0F0;
}

.HistoricalTable__container__item:last-child {
  border: 0;
}

.HistoricalTable__container__item > div {
  display: flex;
  align-items: center;
  flex: 1;
}

.HistoricalTable__container__item > div:nth-child(1) {
  flex: 2;
}

.HistoricalTable .badge {
	padding: 2px 13px;
  margin: 0 11px 1px 0;
  min-width: auto;
}

.HistoricalTable__container__item p {
  margin: 0;
  color: #455E7D;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}

.HistoricalTable__container__item > div:first-child p {
  font-size: 16px;
}

.OrderOriginBtn {
	font-size: 15px;
	font-weight: 400;
	line-height: 19px;
  border: 0;
	border-radius: 6px;
	display: flex;
	align-items: center;
	padding: 5px 20px;
	background: #437DEC;
	color: #FFF;
	font-family: 'Roboto', sans-serif;
}

@media (max-width: 480px) {
  /* table item */
  .HistoricalTable__container__item > div {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}.SingleTicket__container {
  max-width: 440px;
  margin: 30px auto 0;
}

.SingleTicket__container .OrderItem {
  margin: 0;
  width: 100%;
  max-width: 440px;
}

.SingleTicket h1 {
  color: #405A84;
  font-size: 20px;
  font-weight: 400;
  margin: 50px 0 30px;
  text-align: center;
}


.SingleTicket__thumbContainer{
  padding: 30px 0;
  max-width: 155px;
  margin: auto;
}

.SingleTicket .flex-header {

  display: none;
}

.SingleTicket .Footer {

  text-align: center;
  padding-bottom: 30px;
}

.body--SingleTicket .CookieMonster__App{
  display:none
}

/* override styles when printing */
@media print {

  .body--SingleTicket .flex-wrapper {
  
    background-color: #fff;
  }

  .body--SingleTicket .container{

    width: 100%;
    padding: 0;
  }

  .body--SingleTicket .SingleTicket__container{
    margin: auto;
  }


  .body--SingleTicket .Footer,
  .body--SingleTicket .PriceDetailModalBtn__title i,
  .body--SingleTicket .PriceDetailModalBtn__title__link{
    display: none;
  }


}.OrderItem__CancelText p {
	color: #455E7D;
	margin-bottom: 20px;
	font-size: 12px;
	font-family: 'Roboto Condensed', sans-serif;
	text-align: center;
}

.PageSendResetPass__formContainer{
	margin: 100px auto;
	max-width: 320px; 
	padding: 0 15px;
}

.PageResetPass__formContainer{
	margin: 100px auto;
	max-width: 320px; 
	padding: 0 15px;
}

.Rules .flex-content-content img{
	
	max-width: 100%;
	height: auto;
}.ScannerTracking__item{

	padding: 50px 30px;
	font-size: 20px;
	border-bottom: 1px solid #ddd;

}.PaymentSourceSelect__Item{
	margin-bottom: 5px;
	cursor: pointer;
}

.PaymentSourceSelect__Item__dot{
	float: left;
	width: 25px;
	color: #00AECA;
	font-size: 20px;
}

.PaymentSourceSelect__Item__label{
	float: left;
	width: calc(100% - 180px - 25px);
	line-height: 28px;
}

.PaymentSourceSelect__Item__label--full{
	width: calc(100% - 25px);
}

.PaymentSourceSelect__Item__icons{
	float: right;
	width: 180px;
}


.PaymentSourceSelect__Item__icons ul{
	list-style: none;
    margin: 0;
    padding: 0;
}

.PaymentSourceSelect__Item__icons li{
	display: table-cell;
    width: 1%;
    padding-right: 3px;
    line-height: 28px;
}

.PaymentSourceSelect__Item__icons img{
	width: 100%;
}.PaymentSourceSelect{}
.PaymentPage__background{
	overflow: hidden;
	background: #f4f6fc;
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
}

.PaymentPage__Header{
	height: 500px;
	position: relative;
}

.PaymentPage__Header:after{
	content: " ";
    height: 220px;
    width: 105%;
    background-color: #f4f6fc;
    position: absolute;
    display: block;
    bottom: -220px;
    transform: rotate(-6deg);
    transform-origin: 0 0;
    z-index: 5;
    left: 0;
}

.PaymentPage__Header__logo{
	margin: auto;
    width: 90px;
    padding-top: 100px;
    display: block;
}

.PaymentPage__Header .UserMenuAvatar{
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 6;
}

.PaymentPage__blockContainer{
	
	padding: 220px 30px 150px;
}



.PaymentPage__block{

	text-align: center;
	max-width: 500px;
	margin: auto;
	box-shadow: 0 7px 14px 0 rgba(60,66,87, 0.1), 0 3px 6px 0 rgba(0, 0, 0, .07);
	border-radius: 4px;
	background: #fff;
	position: relative;
	z-index: 6;
}

.PaymentPage__block--notReady{
	padding: 50px;
}

.PaymentPage__block__body{
	padding: 40px;
	
}

.PaymentPage__block__header{
	font-size: 20px;
	font-weight: bold;
	padding: 40px 40px 0;
}

.PaymentPage__block__body__title{
	line-height: 28px;
	font-size: 20px;
}

.PaymentPage__block__body__subtitle{
	font-size: 13px;
	line-height: 18px/*28px;*/
}
/*
.PaymentPage__CardElement{

	border: 1px solid #ccc;
    border-radius: 2px;
    padding: 7px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

.PaymentPage__CardName{
	border-radius: 2px;
}

.PaymentPage__CardName::placeholder{
	color: #777;
}*/

.PaymentPage__block__body__totals {
	padding: 20px 0 0;
	border-top: 1px solid #DDE3EA;
	font-size: 15px;
}

.PaymentPage__block__body__totals > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 5px;
}

.PaymentPage__block__body__totals__paid{
	color: #39DA8A;
}

.PaymentPage__block__body__totals__pending{
	color:#F89426;
}

.PaymentPage__block__body__totals__toPay {
	font-weight: bold;
    margin-top: 15px;
    font-size: 16px;
}

.PaymentPage__block .PaymentSourceSelect{
	text-align: left;
	padding: 0 15px 15px;
	margin-top: 20px;
	padding-top: 40px;
	border-top: 1px solid #DDE3EA;
}

.PaymentPage .alert-success {
	background: #D2FFE8;
	border-color: #D2FFE8;
	color: #39DA8A;
}

.PaymentPage .alert-danger {
	color: #FF5B5C;
	background: #FFCCCC;
	border-color: #FFCCCC;
}

.PaymentPage .alert-warning {
	background: #f8942642;
  	color: #F89426;
}


@media (max-width: 480px) {

	.PaymentPage__block__body{
		padding: 15px;
	}

	.PaymentPage__block__header{
		padding: 15px 15px 0;
	}

	.PaymentPage__block__body__totals {
		margin-left: 15px;
		margin-right: 15px;
	}

	.PaymentPage__block .PaymentSourceSelect {
		padding: 15px 0 15px;
		margin-left: 15px;
		margin-right: 15px;
	}
}.LayoutMyAccount__container {
    padding: 30px 0 80px 0;
}

.LayoutMyAccount__container .nav-pills > li > a {
	border-radius: 0;
	color: #818D9B;
	font-size: 14px;
	font-weight: 400;
	padding: 7px 15px 7px 22px;
}

.LayoutMyAccount__container .nav-pills > li {
	margin: 0;
}

.LayoutMyAccount__sidebar{
	margin-bottom: 40px;
	padding-right: 50px;
}

.LayoutMyAccount__content h1{
	color: #405A84;
	font-size: 20px;
	font-weight: 400;
	margin-top: 0;
	margin-bottom: 30px;
}


@media (max-width:767px){

	.LayoutMyAccount__container {
	    padding: 15px 0 30px;
	}

	.LayoutMyAccount__sidebar{
		padding-right: 0px;
	}

}/*# Empty block*/
.Profiles__EmptyBlock{
	width: 100%;
	background: #fff;
	border: 1px solid #F0F0F0;
	border-radius: 6px;
	padding: 20px 30px;
}


.Profiles__EmptyBlock__image {
	display: inline-block;
	font-size: 44px;
	color: #B3C0CE;
}

.Profiles__EmptyBlock__image i {
	font-weight: 500;
}

.Profiles__EmptyBlock__title{
	color: #455E7D;
	font-size: 16px;
	font-weight: 700;
}

.Profiles__EmptyBlock__subtitle{
	color: #455E7D;
	font-size: 15px;
	font-weight: 400;
	margin-bottom: 15px;
}

.Profiles__EmptyBlock__subtitle a {
	color: #719DF0;
	font-size: 15px;
	font-weight: 400;
}

.Profiles__EmptyBlock button {
	background: #437DEC;
	color: #FFF;
	border: none;
	font-size: 13px;
	font-weight: 400;
	border-radius: 4px;
	width: 172px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/*# List */
/*.ProfilesListContainer{
	padding: 30px 0 100px;
}

.ProfilesList__title {
    color: #536A90;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 50px;
}

.ProfilesList{
	margin-bottom: 60px;
}*/
.ProfilesList{
	margin-bottom: 60px;
}

.Profiles__addAccount {
	min-height: 163.84px;
	background: #FFFFFF;
	border: 1px solid #F0F0F0;
	padding: 20px;
	border-radius: 6px;
	margin-bottom: 15px;
	display: flex;
	flex-direction: column;
}

.Profiles__addAccount > div {
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	border: 2px dotted #D1DFFA;
	color: #818D9B;
	font-size: 14px;
	font-weight: 400;
	cursor: pointer;
}

.Profiles__addAccount i {
	color: #B3C0CE;
	margin-right: 15px;
}/* General */
.MyAccount__Form__thumb,
.MyAccount__Form__account,
.MyAccount__Form__changePass {
	background: #fff;
	border: 1px solid #F0F0F0;
	border-radius: 6px;
	padding: 10px 20px;
	margin-bottom: 15px;
}

.MyAccount__Form__title {
	color: #455E7D;
	font-size: 16px;
	font-weight: 700;
	margin: 20px 0;
}

/* Form Thumb */
.MyAccount__Form .ImgUploader__individual .ImgUploader__item{
	max-width: 120px;
}

.MyAccount__Form__thumb__container {
	border: 3px dotted #E8ECF8;
	border-radius: 2px;
	min-height: 80px;
	padding: 20px;
	position: relative;
}


.MyAccount__Form .ImgUploader__individual .ImgUploader__item_img{
	height: 120px;
}

.MyAccount__Form__thumb__container__thumb {
	height: 120px;
	width: 120px;
	border: 4px solid #ffffff;
    border-radius: 1px;
    box-shadow: 0 0 2px #666666;
    background-size: cover;
    background-position: center;
	margin: 0 auto;
}

.MyAccount__Form .ImgUploader__individual {
	cursor: pointer;
}

.MyAccount__Form .ImgUploader__individual .uploaderBlock {
	border: 3px dotted #E8ECF8;
}

.MyAccount__Form div.buttonFileInput > div {
	background: #E6E6E6;
	border-color: #E6E6E6 !important;
	color: #475F7B !important;
}

.MyAccount__Form .ImgUploader__individual .ImgUploader__header_text {
	color: grey;
	letter-spacing: initial;
	font-size: 14px;
	font-weight: 500;
}

/* Modal Form */
.MyAccount__Form .form-group__label {
	color: #455E7D;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.MyAccount__Form input,
.MyAccount__Form select {
	border: 1px solid #E1E1E1;
	border-radius: 4px;
	color: #596778;
	font-size: 15px;
	font-weight: 400;
}

.MyAccount__Form input::placeholder,
.MyAccount__Form select::placeholder {
	color: #596778;
	font-size: 15px;
	font-weight: 400;
}

.MyAccount__Form .saveBtn {
	background: #0769CC;
	border: none;
	border-radius: 4px;
	color: #FFFFFF;
	font-size: 15px;
	font-weight: 400;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 38px;
	min-width: 122px;
	padding: 6px;
}

/* Form Password */
.MyAccount__Form__changePass > div {
	display: flex;
}

.MyAccount__Form__changePass > div > div {
	width: 50%;
}

.MyAccount__Form__changePass .MyAccount__Form__changePass--fb {
	width: 100%;
}

.MyAccount__Form__changePass .alert {
	margin: 0;
}

/* Form submit */
.MyAccount__Form__submit {
	display: flex;
	justify-content: flex-end;
}

@media (max-width: 450px) {
	.MyAccount__Form__changePass > div {
		flex-direction: column;
	}

	.MyAccount__Form__changePass > div > div {
		width: 100%;
	}
}/*# Empty block*/
.MyPaymentsSources__EmptyBlock{
	width: 100%;
	background: #fff;
	display: inline-flex;
	border: 1px solid #F0F0F0;
	border-radius: 6px;
	padding: 20px 30px;
}


.MyPaymentsSources__EmptyBlock__image {
	display: inline-block;
	font-size: 34px;
	color: #B3C0CE;
}

.MyPaymentsSources__EmptyBlock__image i {
	font-weight: 700;
}

.MyPaymentsSources__EmptyBlock__title {
	color: #455E7D;
	font-size: 16px;
	font-weight: bold;
}

.MyPaymentsSources__EmptyBlock__subtitle {
	color: #455E7D;
	font-size: 15px;
	font-weight: 400;
}

/*ITEM*/
.MyPaymentsSources__Item{
	width: 49%;
	background: #fff;
	display: inline-flex;
	font-weight: bold;
	font-size: 18px;
	border: 1px solid #F0F0F0;
	border-radius: 6px;
	margin-bottom: 2%;
}

.MyPaymentsSources__Item:nth-child(2n+1) {
	margin-left: 1%;
}

.MyPaymentsSources__Item:nth-child(2n) {
	margin-right: 1%;
}

.MyPaymentsSources__Item > div {
	width: 100%;
}

.MyPaymentsSources__Item__header {
	display: flex;
	align-items: center;
	padding: 20px;
	border-bottom: 1px solid #F0F0F0;
}

.MyPaymentsSources__Item__title {
	margin-left: 15px;
}

.MyPaymentsSources__Item__title > div:first-child {
	display: flex;
	align-items: center;
}

.MyPaymentsSources__Item__title h4 {
	color: #455E7D;
	font-size: 16px;
	font-weight: 700;
	margin: 0;
	text-transform: uppercase;
}

.MyPaymentsSources__Item__title p {
	margin: 0;
	color: #455E7D;
	font-size: 12px;
	font-weight: 400;
}

.MyPaymentsSources__Item__Image img {
	width: 50px;
}

.MyPaymentsSources__Item__Image i {
	font-size: 34px;
	font-weight: 500;
	color: #B3C0CE;
}

.MyPaymentsSources__Item__Tools {
	padding: 20px;
}

.MyPaymentsSources__Item .badge{
	background: #E6E6E6;
	color: #818D9A;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 3px;
	padding: 4px 5px;
	margin-left: 5px;
}

.MyPaymentsSources__Item .stateInfo {
	background: #E2ECFF;
	color: #719DF0;
}

.MyPaymentsSources__Item__Tools button {
	width: 100%;
	background: #E6E6E6;
	border-color: #E6E6E6;
	color: #475F7B;
	font-size: 13px;
	font-weight: 400;
	padding: 0;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	text-decoration: none;
	border: none;
}

button.cancelBtn {
	background: #FFF;
	color: #FF5B5C;
	font-size: 14px;
	font-weight: 500;
	padding-left: 0;
	padding-right: 0;
}

@media (max-width: 991px) {
  .MyPaymentsSources__Item:nth-child(2n+1) {
		margin-right: 1%;
		margin-left: 0;
	}
	
	.MyPaymentsSources__Item:nth-child(2n) {
		margin-left: 1%;
		margin-right: 0;
	}
}

@media (max-width: 767px) {
  .MyPaymentsSources__Item{
		width: 100%;
    margin: auto;
    margin-bottom: 20px;
  }

	.MyPaymentsSources__Item:nth-child(2n+1),
	.MyPaymentsSources__Item:nth-child(2n) {
		margin-left: 0;
		margin-right: 0;
	}
}