@charset "UTF-8";
.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: 0.75s;
  animation-duration: 0.75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: 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.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

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

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

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

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

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

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*!
 * Bootstrap v3.3.5 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
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;
}

.row {
  margin: 0 -1.5rem;
}

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

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  margin: 0.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: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

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

figure {
  margin: 1em 40px;
}

hr {
  height: 0;
  -webkit-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;
  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;
  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: 0.35em 0.625em 0.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("/fonts/glyphicons-halflings-regular.eot");
  src: url("/fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("/fonts/glyphicons-halflings-regular.woff2") format("woff2"), url("../fonts/glyphicons-halflings-regular.woff") format("woff"), url("/fonts/glyphicons-halflings-regular.ttf") format("truetype"), url("/fonts/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: "€";
}

.glyphicon-minus:before {
  content: "−";
}

.glyphicon-cloud:before {
  content: "☁";
}

.glyphicon-envelope:before {
  content: "✉";
}

.glyphicon-pencil:before {
  content: "✏";
}

.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: "⛺";
}

.glyphicon-blackboard:before {
  content: "\e218";
}

.glyphicon-bed:before {
  content: "\e219";
}

.glyphicon-apple:before {
  content: "\f8ff";
}

.glyphicon-erase:before {
  content: "\e221";
}

.glyphicon-hourglass:before {
  content: "⌛";
}

.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: "¥";
}

.glyphicon-jpy:before {
  content: "¥";
}

.glyphicon-ruble:before {
  content: "₽";
}

.glyphicon-rub:before {
  content: "₽";
}

.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;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-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: thin dotted;
  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 0.2s ease-in-out;
  transition: all 0.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: 0.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: "— ";
}

.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: " —";
}

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, 0.25);
  box-shadow: inset 0 -1px 0 rgba(0, 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: 100%;
  }
}
@media (min-width: 992px) {
  .container {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 100%;
    width: 1024px;
  }
}
.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: 0.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;
  box-sizing: border-box;
}

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

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

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

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

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

output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.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, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
}

.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #999;
}

.form-control::-webkit-input-placeholder {
  color: #999;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #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, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

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

.has-success .input-group-addon {
  color: #3c763d;
  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, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

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

.has-warning .input-group-addon {
  color: #8a6d3b;
  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, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

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

.has-error .input-group-addon {
  color: #a94442;
  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: 14.333333px;
    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: thin dotted;
  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, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 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: 0.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,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.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,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
  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,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.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,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
  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,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.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,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
  background-color: #5cb85c;
  border-color: #4cae4c;
}

.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}

.btn-info: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,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.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,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
  background-color: #5bc0de;
  border-color: #46b8da;
}

.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}

.btn-warning: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,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.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,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
  background-color: #f0ad4e;
  border-color: #eea236;
}

.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}

.btn-danger: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,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.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,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
  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 0.15s linear;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
}

.collapse.in {
  display: block;
}

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

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

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-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, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.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, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn .caret {
  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-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-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-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, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.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, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
}

@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: #fff;
}

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}

.navbar-default .navbar-text {
  color: #fff;
}

.navbar-default .navbar-nav > li > a {
  color: #fff;
}

.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: "/ ";
}

.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: 3;
  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: 2;
  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: 0.2em 0.6em 0.3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.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 {
  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 0.2s ease-in-out;
  transition: border 0.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;
  }
}
@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, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

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

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

.progress.active .progress-bar,
.progress-bar.active {
  -webkit-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: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-info {
  background-color: #5bc0de;
}

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

.progress-bar-warning {
  background-color: #f0ad4e;
}

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

.progress-bar-danger {
  background-color: #d9534f;
}

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

.media {
  margin-top: 15px;
}

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

.media,
.media-body {
  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, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.panel-body {
  padding: 15px;
}

.panel-heading {
  padding: 10px 20px;
  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, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 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: 0.2;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: 0.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 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -25%);
  transform: translate(0, -25%);
}

.modal.in .modal-dialog {
  -webkit-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, 0.2);
  border-radius: 6px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 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: 0.5;
}

.modal-header {
  min-height: 16.42857143px;
  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, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-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: 0.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, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  line-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, 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, 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, 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, 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: 0.6s ease-in-out left;
  transition: 0.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 0.6s ease-in-out;
    transition: -webkit-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, -webkit-transform 0.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, 0.6);
  filter: alpha(opacity=50);
  opacity: 0.5;
}

.carousel-control.left {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 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-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 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: 0.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: "‹";
}

.carousel-control .icon-next:before {
  content: "›";
}

.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, 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: -15px;
    font-size: 30px;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -15px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -15px;
  }
  .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-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-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;
  }
}

.iti {
  position: relative;
  display: inline-block;
}

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

.iti__hide {
  display: none;
}

.iti__v-hide {
  visibility: hidden;
}

.iti input, .iti input[type=text], .iti input[type=tel] {
  position: relative;
  z-index: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-right: 36px;
  margin-right: 0;
}

.iti__flag-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 1px;
}

.iti__selected-flag {
  z-index: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0 6px 0 8px;
}

.iti__arrow {
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #555;
}

.iti__arrow--up {
  border-top: none;
  border-bottom: 4px solid #555;
}

.iti__country-list {
  position: absolute;
  z-index: 2000 !important;
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0 0 0 -1px;
  -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  background-color: white;
  border: 1px solid #ccc;
  white-space: nowrap;
  max-height: 200px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.iti__country-list--dropup {
  bottom: 100%;
  margin-bottom: -1px;
}

@media (max-width: 500px) {
  .iti__country-list {
    white-space: normal;
  }
}
.iti__flag-box {
  display: inline-block;
  width: 20px;
}

.iti__divider {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #ccc;
}

.iti__country {
  padding: 5px 10px;
  outline: none;
}

.iti__dial-code {
  color: #999;
}

.iti__country.iti__highlight {
  background-color: rgba(0, 0, 0, 0.05);
}

.iti__flag-box, .iti__country-name, .iti__dial-code {
  vertical-align: middle;
}

.iti__flag-box, .iti__country-name {
  margin-right: 6px;
}

.iti--allow-dropdown input, .iti--allow-dropdown input[type=text], .iti--allow-dropdown input[type=tel], .iti--separate-dial-code input, .iti--separate-dial-code input[type=text], .iti--separate-dial-code input[type=tel] {
  padding-right: 6px;
  padding-left: 52px;
  margin-left: 0;
}

.iti--allow-dropdown .iti__flag-container, .iti--separate-dial-code .iti__flag-container {
  right: auto;
  left: 0;
}

.iti--allow-dropdown .iti__flag-container:hover {
  cursor: pointer;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
}

.iti--allow-dropdown input[disabled] + .iti__flag-container:hover,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover {
  cursor: default;
}

.iti--allow-dropdown input[disabled] + .iti__flag-container:hover .iti__selected-flag,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover .iti__selected-flag {
  background-color: transparent;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
}

.iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 6px;
}

.iti--container {
  position: absolute;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: 1px;
}

.iti--container:hover {
  cursor: pointer;
}

.iti-mobile .iti--container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed;
}

.iti-mobile .iti__country-list {
  max-height: 100%;
  width: 100%;
}

.iti-mobile .iti__country {
  padding: 10px 10px;
  line-height: 1.5em;
}

.iti__flag {
  width: 20px;
}

.iti__flag.iti__be {
  width: 18px;
}

.iti__flag.iti__ch {
  width: 15px;
}

.iti__flag.iti__mc {
  width: 19px;
}

.iti__flag.iti__ne {
  width: 18px;
}

.iti__flag.iti__np {
  width: 13px;
}

.iti__flag.iti__va {
  width: 15px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-size: 5652px 15px;
  }
}
.iti__flag.iti__ac {
  height: 10px;
  background-position: 0px 0px;
}

.iti__flag.iti__ad {
  height: 14px;
  background-position: -22px 0px;
}

.iti__flag.iti__ae {
  height: 10px;
  background-position: -44px 0px;
}

.iti__flag.iti__af {
  height: 14px;
  background-position: -66px 0px;
}

.iti__flag.iti__ag {
  height: 14px;
  background-position: -88px 0px;
}

.iti__flag.iti__ai {
  height: 10px;
  background-position: -110px 0px;
}

.iti__flag.iti__al {
  height: 15px;
  background-position: -132px 0px;
}

.iti__flag.iti__am {
  height: 10px;
  background-position: -154px 0px;
}

.iti__flag.iti__ao {
  height: 14px;
  background-position: -176px 0px;
}

.iti__flag.iti__aq {
  height: 14px;
  background-position: -198px 0px;
}

.iti__flag.iti__ar {
  height: 13px;
  background-position: -220px 0px;
}

.iti__flag.iti__as {
  height: 10px;
  background-position: -242px 0px;
}

.iti__flag.iti__at {
  height: 14px;
  background-position: -264px 0px;
}

.iti__flag.iti__au {
  height: 10px;
  background-position: -286px 0px;
}

.iti__flag.iti__aw {
  height: 14px;
  background-position: -308px 0px;
}

.iti__flag.iti__ax {
  height: 13px;
  background-position: -330px 0px;
}

.iti__flag.iti__az {
  height: 10px;
  background-position: -352px 0px;
}

.iti__flag.iti__ba {
  height: 10px;
  background-position: -374px 0px;
}

.iti__flag.iti__bb {
  height: 14px;
  background-position: -396px 0px;
}

.iti__flag.iti__bd {
  height: 12px;
  background-position: -418px 0px;
}

.iti__flag.iti__be {
  height: 15px;
  background-position: -440px 0px;
}

.iti__flag.iti__bf {
  height: 14px;
  background-position: -460px 0px;
}

.iti__flag.iti__bg {
  height: 12px;
  background-position: -482px 0px;
}

.iti__flag.iti__bh {
  height: 12px;
  background-position: -504px 0px;
}

.iti__flag.iti__bi {
  height: 12px;
  background-position: -526px 0px;
}

.iti__flag.iti__bj {
  height: 14px;
  background-position: -548px 0px;
}

.iti__flag.iti__bl {
  height: 14px;
  background-position: -570px 0px;
}

.iti__flag.iti__bm {
  height: 10px;
  background-position: -592px 0px;
}

.iti__flag.iti__bn {
  height: 10px;
  background-position: -614px 0px;
}

.iti__flag.iti__bo {
  height: 14px;
  background-position: -636px 0px;
}

.iti__flag.iti__bq {
  height: 14px;
  background-position: -658px 0px;
}

.iti__flag.iti__br {
  height: 14px;
  background-position: -680px 0px;
}

.iti__flag.iti__bs {
  height: 10px;
  background-position: -702px 0px;
}

.iti__flag.iti__bt {
  height: 14px;
  background-position: -724px 0px;
}

.iti__flag.iti__bv {
  height: 15px;
  background-position: -746px 0px;
}

.iti__flag.iti__bw {
  height: 14px;
  background-position: -768px 0px;
}

.iti__flag.iti__by {
  height: 10px;
  background-position: -790px 0px;
}

.iti__flag.iti__bz {
  height: 14px;
  background-position: -812px 0px;
}

.iti__flag.iti__ca {
  height: 10px;
  background-position: -834px 0px;
}

.iti__flag.iti__cc {
  height: 10px;
  background-position: -856px 0px;
}

.iti__flag.iti__cd {
  height: 15px;
  background-position: -878px 0px;
}

.iti__flag.iti__cf {
  height: 14px;
  background-position: -900px 0px;
}

.iti__flag.iti__cg {
  height: 14px;
  background-position: -922px 0px;
}

.iti__flag.iti__ch {
  height: 15px;
  background-position: -944px 0px;
}

.iti__flag.iti__ci {
  height: 14px;
  background-position: -961px 0px;
}

.iti__flag.iti__ck {
  height: 10px;
  background-position: -983px 0px;
}

.iti__flag.iti__cl {
  height: 14px;
  background-position: -1005px 0px;
}

.iti__flag.iti__cm {
  height: 14px;
  background-position: -1027px 0px;
}

.iti__flag.iti__cn {
  height: 14px;
  background-position: -1049px 0px;
}

.iti__flag.iti__co {
  height: 14px;
  background-position: -1071px 0px;
}

.iti__flag.iti__cp {
  height: 14px;
  background-position: -1093px 0px;
}

.iti__flag.iti__cr {
  height: 12px;
  background-position: -1115px 0px;
}

.iti__flag.iti__cu {
  height: 10px;
  background-position: -1137px 0px;
}

.iti__flag.iti__cv {
  height: 12px;
  background-position: -1159px 0px;
}

.iti__flag.iti__cw {
  height: 14px;
  background-position: -1181px 0px;
}

.iti__flag.iti__cx {
  height: 10px;
  background-position: -1203px 0px;
}

.iti__flag.iti__cy {
  height: 14px;
  background-position: -1225px 0px;
}

.iti__flag.iti__cz {
  height: 14px;
  background-position: -1247px 0px;
}

.iti__flag.iti__de {
  height: 12px;
  background-position: -1269px 0px;
}

.iti__flag.iti__dg {
  height: 10px;
  background-position: -1291px 0px;
}

.iti__flag.iti__dj {
  height: 14px;
  background-position: -1313px 0px;
}

.iti__flag.iti__dk {
  height: 15px;
  background-position: -1335px 0px;
}

.iti__flag.iti__dm {
  height: 10px;
  background-position: -1357px 0px;
}

.iti__flag.iti__do {
  height: 14px;
  background-position: -1379px 0px;
}

.iti__flag.iti__dz {
  height: 14px;
  background-position: -1401px 0px;
}

.iti__flag.iti__ea {
  height: 14px;
  background-position: -1423px 0px;
}

.iti__flag.iti__ec {
  height: 14px;
  background-position: -1445px 0px;
}

.iti__flag.iti__ee {
  height: 13px;
  background-position: -1467px 0px;
}

.iti__flag.iti__eg {
  height: 14px;
  background-position: -1489px 0px;
}

.iti__flag.iti__eh {
  height: 10px;
  background-position: -1511px 0px;
}

.iti__flag.iti__er {
  height: 10px;
  background-position: -1533px 0px;
}

.iti__flag.iti__es {
  height: 14px;
  background-position: -1555px 0px;
}

.iti__flag.iti__et {
  height: 10px;
  background-position: -1577px 0px;
}

.iti__flag.iti__eu {
  height: 14px;
  background-position: -1599px 0px;
}

.iti__flag.iti__fi {
  height: 12px;
  background-position: -1621px 0px;
}

.iti__flag.iti__fj {
  height: 10px;
  background-position: -1643px 0px;
}

.iti__flag.iti__fk {
  height: 10px;
  background-position: -1665px 0px;
}

.iti__flag.iti__fm {
  height: 11px;
  background-position: -1687px 0px;
}

.iti__flag.iti__fo {
  height: 15px;
  background-position: -1709px 0px;
}

.iti__flag.iti__fr {
  height: 14px;
  background-position: -1731px 0px;
}

.iti__flag.iti__ga {
  height: 15px;
  background-position: -1753px 0px;
}

.iti__flag.iti__gb {
  height: 10px;
  background-position: -1775px 0px;
}

.iti__flag.iti__gd {
  height: 12px;
  background-position: -1797px 0px;
}

.iti__flag.iti__ge {
  height: 14px;
  background-position: -1819px 0px;
}

.iti__flag.iti__gf {
  height: 14px;
  background-position: -1841px 0px;
}

.iti__flag.iti__gg {
  height: 14px;
  background-position: -1863px 0px;
}

.iti__flag.iti__gh {
  height: 14px;
  background-position: -1885px 0px;
}

.iti__flag.iti__gi {
  height: 10px;
  background-position: -1907px 0px;
}

.iti__flag.iti__gl {
  height: 14px;
  background-position: -1929px 0px;
}

.iti__flag.iti__gm {
  height: 14px;
  background-position: -1951px 0px;
}

.iti__flag.iti__gn {
  height: 14px;
  background-position: -1973px 0px;
}

.iti__flag.iti__gp {
  height: 14px;
  background-position: -1995px 0px;
}

.iti__flag.iti__gq {
  height: 14px;
  background-position: -2017px 0px;
}

.iti__flag.iti__gr {
  height: 14px;
  background-position: -2039px 0px;
}

.iti__flag.iti__gs {
  height: 10px;
  background-position: -2061px 0px;
}

.iti__flag.iti__gt {
  height: 13px;
  background-position: -2083px 0px;
}

.iti__flag.iti__gu {
  height: 11px;
  background-position: -2105px 0px;
}

.iti__flag.iti__gw {
  height: 10px;
  background-position: -2127px 0px;
}

.iti__flag.iti__gy {
  height: 12px;
  background-position: -2149px 0px;
}

.iti__flag.iti__hk {
  height: 14px;
  background-position: -2171px 0px;
}

.iti__flag.iti__hm {
  height: 10px;
  background-position: -2193px 0px;
}

.iti__flag.iti__hn {
  height: 10px;
  background-position: -2215px 0px;
}

.iti__flag.iti__hr {
  height: 10px;
  background-position: -2237px 0px;
}

.iti__flag.iti__ht {
  height: 12px;
  background-position: -2259px 0px;
}

.iti__flag.iti__hu {
  height: 10px;
  background-position: -2281px 0px;
}

.iti__flag.iti__ic {
  height: 14px;
  background-position: -2303px 0px;
}

.iti__flag.iti__id {
  height: 14px;
  background-position: -2325px 0px;
}

.iti__flag.iti__ie {
  height: 10px;
  background-position: -2347px 0px;
}

.iti__flag.iti__il {
  height: 15px;
  background-position: -2369px 0px;
}

.iti__flag.iti__im {
  height: 10px;
  background-position: -2391px 0px;
}

.iti__flag.iti__in {
  height: 14px;
  background-position: -2413px 0px;
}

.iti__flag.iti__io {
  height: 10px;
  background-position: -2435px 0px;
}

.iti__flag.iti__iq {
  height: 14px;
  background-position: -2457px 0px;
}

.iti__flag.iti__ir {
  height: 12px;
  background-position: -2479px 0px;
}

.iti__flag.iti__is {
  height: 15px;
  background-position: -2501px 0px;
}

.iti__flag.iti__it {
  height: 14px;
  background-position: -2523px 0px;
}

.iti__flag.iti__je {
  height: 12px;
  background-position: -2545px 0px;
}

.iti__flag.iti__jm {
  height: 10px;
  background-position: -2567px 0px;
}

.iti__flag.iti__jo {
  height: 10px;
  background-position: -2589px 0px;
}

.iti__flag.iti__jp {
  height: 14px;
  background-position: -2611px 0px;
}

.iti__flag.iti__ke {
  height: 14px;
  background-position: -2633px 0px;
}

.iti__flag.iti__kg {
  height: 12px;
  background-position: -2655px 0px;
}

.iti__flag.iti__kh {
  height: 13px;
  background-position: -2677px 0px;
}

.iti__flag.iti__ki {
  height: 10px;
  background-position: -2699px 0px;
}

.iti__flag.iti__km {
  height: 12px;
  background-position: -2721px 0px;
}

.iti__flag.iti__kn {
  height: 14px;
  background-position: -2743px 0px;
}

.iti__flag.iti__kp {
  height: 10px;
  background-position: -2765px 0px;
}

.iti__flag.iti__kr {
  height: 14px;
  background-position: -2787px 0px;
}

.iti__flag.iti__kw {
  height: 10px;
  background-position: -2809px 0px;
}

.iti__flag.iti__ky {
  height: 10px;
  background-position: -2831px 0px;
}

.iti__flag.iti__kz {
  height: 10px;
  background-position: -2853px 0px;
}

.iti__flag.iti__la {
  height: 14px;
  background-position: -2875px 0px;
}

.iti__flag.iti__lb {
  height: 14px;
  background-position: -2897px 0px;
}

.iti__flag.iti__lc {
  height: 10px;
  background-position: -2919px 0px;
}

.iti__flag.iti__li {
  height: 12px;
  background-position: -2941px 0px;
}

.iti__flag.iti__lk {
  height: 10px;
  background-position: -2963px 0px;
}

.iti__flag.iti__lr {
  height: 11px;
  background-position: -2985px 0px;
}

.iti__flag.iti__ls {
  height: 14px;
  background-position: -3007px 0px;
}

.iti__flag.iti__lt {
  height: 12px;
  background-position: -3029px 0px;
}

.iti__flag.iti__lu {
  height: 12px;
  background-position: -3051px 0px;
}

.iti__flag.iti__lv {
  height: 10px;
  background-position: -3073px 0px;
}

.iti__flag.iti__ly {
  height: 10px;
  background-position: -3095px 0px;
}

.iti__flag.iti__ma {
  height: 14px;
  background-position: -3117px 0px;
}

.iti__flag.iti__mc {
  height: 15px;
  background-position: -3139px 0px;
}

.iti__flag.iti__md {
  height: 10px;
  background-position: -3160px 0px;
}

.iti__flag.iti__me {
  height: 10px;
  background-position: -3182px 0px;
}

.iti__flag.iti__mf {
  height: 14px;
  background-position: -3204px 0px;
}

.iti__flag.iti__mg {
  height: 14px;
  background-position: -3226px 0px;
}

.iti__flag.iti__mh {
  height: 11px;
  background-position: -3248px 0px;
}

.iti__flag.iti__mk {
  height: 10px;
  background-position: -3270px 0px;
}

.iti__flag.iti__ml {
  height: 14px;
  background-position: -3292px 0px;
}

.iti__flag.iti__mm {
  height: 14px;
  background-position: -3314px 0px;
}

.iti__flag.iti__mn {
  height: 10px;
  background-position: -3336px 0px;
}

.iti__flag.iti__mo {
  height: 14px;
  background-position: -3358px 0px;
}

.iti__flag.iti__mp {
  height: 10px;
  background-position: -3380px 0px;
}

.iti__flag.iti__mq {
  height: 14px;
  background-position: -3402px 0px;
}

.iti__flag.iti__mr {
  height: 14px;
  background-position: -3424px 0px;
}

.iti__flag.iti__ms {
  height: 10px;
  background-position: -3446px 0px;
}

.iti__flag.iti__mt {
  height: 14px;
  background-position: -3468px 0px;
}

.iti__flag.iti__mu {
  height: 14px;
  background-position: -3490px 0px;
}

.iti__flag.iti__mv {
  height: 14px;
  background-position: -3512px 0px;
}

.iti__flag.iti__mw {
  height: 14px;
  background-position: -3534px 0px;
}

.iti__flag.iti__mx {
  height: 12px;
  background-position: -3556px 0px;
}

.iti__flag.iti__my {
  height: 10px;
  background-position: -3578px 0px;
}

.iti__flag.iti__mz {
  height: 14px;
  background-position: -3600px 0px;
}

.iti__flag.iti__na {
  height: 14px;
  background-position: -3622px 0px;
}

.iti__flag.iti__nc {
  height: 10px;
  background-position: -3644px 0px;
}

.iti__flag.iti__ne {
  height: 15px;
  background-position: -3666px 0px;
}

.iti__flag.iti__nf {
  height: 10px;
  background-position: -3686px 0px;
}

.iti__flag.iti__ng {
  height: 10px;
  background-position: -3708px 0px;
}

.iti__flag.iti__ni {
  height: 12px;
  background-position: -3730px 0px;
}

.iti__flag.iti__nl {
  height: 14px;
  background-position: -3752px 0px;
}

.iti__flag.iti__no {
  height: 15px;
  background-position: -3774px 0px;
}

.iti__flag.iti__np {
  height: 15px;
  background-position: -3796px 0px;
}

.iti__flag.iti__nr {
  height: 10px;
  background-position: -3811px 0px;
}

.iti__flag.iti__nu {
  height: 10px;
  background-position: -3833px 0px;
}

.iti__flag.iti__nz {
  height: 10px;
  background-position: -3855px 0px;
}

.iti__flag.iti__om {
  height: 10px;
  background-position: -3877px 0px;
}

.iti__flag.iti__pa {
  height: 14px;
  background-position: -3899px 0px;
}

.iti__flag.iti__pe {
  height: 14px;
  background-position: -3921px 0px;
}

.iti__flag.iti__pf {
  height: 14px;
  background-position: -3943px 0px;
}

.iti__flag.iti__pg {
  height: 15px;
  background-position: -3965px 0px;
}

.iti__flag.iti__ph {
  height: 10px;
  background-position: -3987px 0px;
}

.iti__flag.iti__pk {
  height: 14px;
  background-position: -4009px 0px;
}

.iti__flag.iti__pl {
  height: 13px;
  background-position: -4031px 0px;
}

.iti__flag.iti__pm {
  height: 14px;
  background-position: -4053px 0px;
}

.iti__flag.iti__pn {
  height: 10px;
  background-position: -4075px 0px;
}

.iti__flag.iti__pr {
  height: 14px;
  background-position: -4097px 0px;
}

.iti__flag.iti__ps {
  height: 10px;
  background-position: -4119px 0px;
}

.iti__flag.iti__pt {
  height: 14px;
  background-position: -4141px 0px;
}

.iti__flag.iti__pw {
  height: 13px;
  background-position: -4163px 0px;
}

.iti__flag.iti__py {
  height: 11px;
  background-position: -4185px 0px;
}

.iti__flag.iti__qa {
  height: 8px;
  background-position: -4207px 0px;
}

.iti__flag.iti__re {
  height: 14px;
  background-position: -4229px 0px;
}

.iti__flag.iti__ro {
  height: 14px;
  background-position: -4251px 0px;
}

.iti__flag.iti__rs {
  height: 14px;
  background-position: -4273px 0px;
}

.iti__flag.iti__ru {
  height: 14px;
  background-position: -4295px 0px;
}

.iti__flag.iti__rw {
  height: 14px;
  background-position: -4317px 0px;
}

.iti__flag.iti__sa {
  height: 14px;
  background-position: -4339px 0px;
}

.iti__flag.iti__sb {
  height: 10px;
  background-position: -4361px 0px;
}

.iti__flag.iti__sc {
  height: 10px;
  background-position: -4383px 0px;
}

.iti__flag.iti__sd {
  height: 10px;
  background-position: -4405px 0px;
}

.iti__flag.iti__se {
  height: 13px;
  background-position: -4427px 0px;
}

.iti__flag.iti__sg {
  height: 14px;
  background-position: -4449px 0px;
}

.iti__flag.iti__sh {
  height: 10px;
  background-position: -4471px 0px;
}

.iti__flag.iti__si {
  height: 10px;
  background-position: -4493px 0px;
}

.iti__flag.iti__sj {
  height: 15px;
  background-position: -4515px 0px;
}

.iti__flag.iti__sk {
  height: 14px;
  background-position: -4537px 0px;
}

.iti__flag.iti__sl {
  height: 14px;
  background-position: -4559px 0px;
}

.iti__flag.iti__sm {
  height: 15px;
  background-position: -4581px 0px;
}

.iti__flag.iti__sn {
  height: 14px;
  background-position: -4603px 0px;
}

.iti__flag.iti__so {
  height: 14px;
  background-position: -4625px 0px;
}

.iti__flag.iti__sr {
  height: 14px;
  background-position: -4647px 0px;
}

.iti__flag.iti__ss {
  height: 10px;
  background-position: -4669px 0px;
}

.iti__flag.iti__st {
  height: 10px;
  background-position: -4691px 0px;
}

.iti__flag.iti__sv {
  height: 12px;
  background-position: -4713px 0px;
}

.iti__flag.iti__sx {
  height: 14px;
  background-position: -4735px 0px;
}

.iti__flag.iti__sy {
  height: 14px;
  background-position: -4757px 0px;
}

.iti__flag.iti__sz {
  height: 14px;
  background-position: -4779px 0px;
}

.iti__flag.iti__ta {
  height: 10px;
  background-position: -4801px 0px;
}

.iti__flag.iti__tc {
  height: 10px;
  background-position: -4823px 0px;
}

.iti__flag.iti__td {
  height: 14px;
  background-position: -4845px 0px;
}

.iti__flag.iti__tf {
  height: 14px;
  background-position: -4867px 0px;
}

.iti__flag.iti__tg {
  height: 13px;
  background-position: -4889px 0px;
}

.iti__flag.iti__th {
  height: 14px;
  background-position: -4911px 0px;
}

.iti__flag.iti__tj {
  height: 10px;
  background-position: -4933px 0px;
}

.iti__flag.iti__tk {
  height: 10px;
  background-position: -4955px 0px;
}

.iti__flag.iti__tl {
  height: 10px;
  background-position: -4977px 0px;
}

.iti__flag.iti__tm {
  height: 14px;
  background-position: -4999px 0px;
}

.iti__flag.iti__tn {
  height: 14px;
  background-position: -5021px 0px;
}

.iti__flag.iti__to {
  height: 10px;
  background-position: -5043px 0px;
}

.iti__flag.iti__tr {
  height: 14px;
  background-position: -5065px 0px;
}

.iti__flag.iti__tt {
  height: 12px;
  background-position: -5087px 0px;
}

.iti__flag.iti__tv {
  height: 10px;
  background-position: -5109px 0px;
}

.iti__flag.iti__tw {
  height: 14px;
  background-position: -5131px 0px;
}

.iti__flag.iti__tz {
  height: 14px;
  background-position: -5153px 0px;
}

.iti__flag.iti__ua {
  height: 14px;
  background-position: -5175px 0px;
}

.iti__flag.iti__ug {
  height: 14px;
  background-position: -5197px 0px;
}

.iti__flag.iti__um {
  height: 11px;
  background-position: -5219px 0px;
}

.iti__flag.iti__un {
  height: 14px;
  background-position: -5241px 0px;
}

.iti__flag.iti__us {
  height: 11px;
  background-position: -5263px 0px;
}

.iti__flag.iti__uy {
  height: 14px;
  background-position: -5285px 0px;
}

.iti__flag.iti__uz {
  height: 10px;
  background-position: -5307px 0px;
}

.iti__flag.iti__va {
  height: 15px;
  background-position: -5329px 0px;
}

.iti__flag.iti__vc {
  height: 14px;
  background-position: -5346px 0px;
}

.iti__flag.iti__ve {
  height: 14px;
  background-position: -5368px 0px;
}

.iti__flag.iti__vg {
  height: 10px;
  background-position: -5390px 0px;
}

.iti__flag.iti__vi {
  height: 14px;
  background-position: -5412px 0px;
}

.iti__flag.iti__vn {
  height: 14px;
  background-position: -5434px 0px;
}

.iti__flag.iti__vu {
  height: 12px;
  background-position: -5456px 0px;
}

.iti__flag.iti__wf {
  height: 14px;
  background-position: -5478px 0px;
}

.iti__flag.iti__ws {
  height: 10px;
  background-position: -5500px 0px;
}

.iti__flag.iti__xk {
  height: 15px;
  background-position: -5522px 0px;
}

.iti__flag.iti__ye {
  height: 14px;
  background-position: -5544px 0px;
}

.iti__flag.iti__yt {
  height: 14px;
  background-position: -5566px 0px;
}

.iti__flag.iti__za {
  height: 14px;
  background-position: -5588px 0px;
}

.iti__flag.iti__zm {
  height: 14px;
  background-position: -5610px 0px;
}

.iti__flag.iti__zw {
  height: 10px;
  background-position: -5632px 0px;
}

.iti__flag {
  height: 15px;
  -webkit-box-shadow: 0px 0px 1px 0px #888;
          box-shadow: 0px 0px 1px 0px #888;
  background-image: url("/images/flags.png");
  background-repeat: no-repeat;
  background-color: #dbdbdb;
  background-position: 20px 0;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("/images/flags@2x.png");
  }
}
.iti__flag.iti__np {
  background-color: transparent;
}

/*! jQuery UI - v1.11.4 - 2015-03-11
* http://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, draggable.css, menu.css, progressbar.css, resizable.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=cccccc&bgTextureHeader=highlight_soft&bgImgOpacityHeader=75&borderColorHeader=aaaaaa&fcHeader=222222&iconColorHeader=222222&bgColorContent=ffffff&bgTextureContent=flat&bgImgOpacityContent=75&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=222222&bgColorDefault=e6e6e6&bgTextureDefault=glass&bgImgOpacityDefault=75&borderColorDefault=d3d3d3&fcDefault=555555&iconColorDefault=888888&bgColorHover=dadada&bgTextureHover=glass&bgImgOpacityHover=75&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
* Copyright 2015 jQuery Foundation and other contributors; Licensed MIT */
/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
  display: none;
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}

.ui-helper-clearfix:after {
  clear: both;
}

.ui-helper-clearfix {
  min-height: 0; /* support: IE7 */
}

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0); /* support: IE8 */
}

.ui-front {
  z-index: 100;
}

/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
  cursor: default !important;
}

/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}

/* Misc visuals
----------------------------------*/
/* Overlays */
.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ui-accordion .ui-accordion-header {
  display: block;
  cursor: pointer;
  position: relative;
  margin: 2px 0 0 0;
  padding: 0.5em 0.5em 0.5em 0.7em;
  min-height: 0; /* support: IE7 */
  font-size: 100%;
}

.ui-accordion .ui-accordion-icons {
  padding-left: 2.2em;
}

.ui-accordion .ui-accordion-icons .ui-accordion-icons {
  padding-left: 2.2em;
}

.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
  position: absolute;
  left: 0.5em;
  top: 50%;
  margin-top: -8px;
}

.ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  overflow: auto;
}

.ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default;
}

.ui-button {
  display: inline-block;
  position: relative;
  padding: 0;
  line-height: normal;
  margin-right: 0.1em;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  overflow: visible; /* removes extra width in IE */
}

.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
  text-decoration: none;
}

/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
  width: 2.2em;
}

/* button elements seem to need a little more width */
button.ui-button-icon-only {
  width: 2.4em;
}

.ui-button-icons-only {
  width: 3.4em;
}

button.ui-button-icons-only {
  width: 3.7em;
}

/* button text element */
.ui-button .ui-button-text {
  display: block;
  line-height: normal;
}

.ui-button-text-only .ui-button-text {
  padding: 0.4em 1em;
}

.ui-button-icon-only .ui-button-text,
.ui-button-icons-only .ui-button-text {
  padding: 0.4em;
  text-indent: -9999999px;
}

.ui-button-text-icon-primary .ui-button-text,
.ui-button-text-icons .ui-button-text {
  padding: 0.4em 1em 0.4em 2.1em;
}

.ui-button-text-icon-secondary .ui-button-text,
.ui-button-text-icons .ui-button-text {
  padding: 0.4em 2.1em 0.4em 1em;
}

.ui-button-text-icons .ui-button-text {
  padding-left: 2.1em;
  padding-right: 2.1em;
}

/* no icon support for input elements, provide padding by default */
input.ui-button {
  padding: 0.4em 1em;
}

/* button icon element(s) */
.ui-button-icon-only .ui-icon,
.ui-button-text-icon-primary .ui-icon,
.ui-button-text-icon-secondary .ui-icon,
.ui-button-text-icons .ui-icon,
.ui-button-icons-only .ui-icon {
  position: absolute;
  top: 50%;
  margin-top: -8px;
}

.ui-button-icon-only .ui-icon {
  left: 50%;
  margin-left: -8px;
}

.ui-button-text-icon-primary .ui-button-icon-primary,
.ui-button-text-icons .ui-button-icon-primary,
.ui-button-icons-only .ui-button-icon-primary {
  left: 0.5em;
}

.ui-button-text-icon-secondary .ui-button-icon-secondary,
.ui-button-text-icons .ui-button-icon-secondary,
.ui-button-icons-only .ui-button-icon-secondary {
  right: 0.5em;
}

/* button sets */
.ui-buttonset {
  margin-right: 7px;
}

.ui-buttonset .ui-button {
  margin-left: 0;
  margin-right: -0.3em;
}

/* workarounds */
/* reset extra padding in Firefox, see h5bp.com/l */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.ui-datepicker {
  width: 17em;
  padding: 0.2em 0.2em 0;
  display: none;
}

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: 0.2em 0;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  top: 1px;
}

.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next {
  right: 2px;
}

.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}

.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}

.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 45%;
}

.ui-datepicker table {
  width: 100%;
  font-size: 0.9em;
  border-collapse: collapse;
  margin: 0 0 0.4em;
}

.ui-datepicker th {
  padding: 0.7em 0.3em;
  text-align: center;
  font-weight: bold;
  border: 0;
}

.ui-datepicker td {
  border: 0;
  padding: 1px;
}

.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: 0.2em;
  text-align: right;
  text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: 0.7em 0 0 0;
  padding: 0 0.2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: 0.5em 0.2em 0.4em;
  cursor: pointer;
  padding: 0.2em 0.6em 0.3em 0.6em;
  width: auto;
  overflow: visible;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
  width: auto;
}

.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}

.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto 0.4em;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
  direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}

.ui-dialog {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.2em;
  outline: 0;
}

.ui-dialog .ui-dialog-titlebar {
  padding: 0.4em 1em;
  position: relative;
}

.ui-dialog .ui-dialog-title {
  float: left;
  margin: 0.1em 0;
  white-space: nowrap;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: 0.3em;
  top: 50%;
  width: 20px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 20px;
}

.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: 0.5em 1em;
  background: none;
  overflow: auto;
}

.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin-top: 0.5em;
  padding: 0.3em 1em 0.5em 0.4em;
}

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}

.ui-dialog .ui-dialog-buttonpane button {
  margin: 0.5em 0.4em 0.5em 0;
  cursor: pointer;
}

.ui-dialog .ui-resizable-se {
  width: 12px;
  height: 12px;
  right: -5px;
  bottom: -5px;
  background-position: 16px 16px;
}

.ui-draggable .ui-dialog-titlebar {
  cursor: move;
}

.ui-draggable-handle {
  -ms-touch-action: none;
  touch-action: none;
}

.ui-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  outline: none;
}

.ui-menu .ui-menu {
  position: absolute;
}

.ui-menu .ui-menu-item {
  position: relative;
  margin: 0;
  padding: 3px 1em 3px 0.4em;
  cursor: pointer;
  min-height: 0; /* support: IE7 */
  /* support: IE10, see #8844 */
  list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}

.ui-menu .ui-menu-divider {
  margin: 5px 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0 0;
}

.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
  margin: -1px;
}

/* icon support */
.ui-menu-icons {
  position: relative;
}

.ui-menu-icons .ui-menu-item {
  padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.2em;
  margin: auto 0;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
  left: auto;
  right: 0;
}

.ui-progressbar {
  height: 2em;
  text-align: left;
  overflow: hidden;
}

.ui-progressbar .ui-progressbar-value {
  margin: -1px;
  height: 100%;
}

.ui-progressbar .ui-progressbar-overlay {
  background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
  height: 100%;
  filter: alpha(opacity=25); /* support: IE8 */
  opacity: 0.25;
}

.ui-progressbar-indeterminate .ui-progressbar-value {
  background-image: none;
}

.ui-resizable {
  position: relative;
}

.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
  -ms-touch-action: none;
  touch-action: none;
}

.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
  display: none;
}

.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0;
}

.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0;
}

.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px;
}

.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px;
}

.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}

.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px;
}

.ui-selectable {
  -ms-touch-action: none;
  touch-action: none;
}

.ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border: 1px dotted black;
}

.ui-selectmenu-menu {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

.ui-selectmenu-menu .ui-menu {
  overflow: auto;
  /* Support: IE7 */
  overflow-x: hidden;
  padding-bottom: 1px;
}

.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.5;
  padding: 2px 0.4em;
  margin: 0.5em 0 0 0;
  height: auto;
  border: 0;
}

.ui-selectmenu-open {
  display: block;
}

.ui-selectmenu-button {
  display: inline-block;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  cursor: pointer;
}

.ui-selectmenu-button span.ui-icon {
  right: 0.5em;
  left: auto;
  margin-top: -8px;
  position: absolute;
  top: 50%;
}

.ui-selectmenu-button span.ui-selectmenu-text {
  text-align: left;
  padding: 0.4em 2.1em 0.4em 1em;
  display: block;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ui-slider {
  position: relative;
  text-align: left;
}

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
  -ms-touch-action: none;
  touch-action: none;
}

.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: 0.7em;
  display: block;
  border: 0;
  background-position: 0 0;
}

/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
  -webkit-filter: inherit;
          filter: inherit;
}

.ui-slider-horizontal {
  height: 0.8em;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -0.3em;
  margin-left: -0.6em;
}

.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}

.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}

.ui-slider-vertical {
  width: 0.8em;
  height: 100px;
}

.ui-slider-vertical .ui-slider-handle {
  left: -0.3em;
  margin-left: 0;
  margin-bottom: -0.6em;
}

.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}

.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}

.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}

.ui-sortable-handle {
  -ms-touch-action: none;
  touch-action: none;
}

.ui-spinner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  vertical-align: middle;
}

.ui-spinner-input {
  border: none;
  background: none;
  color: inherit;
  padding: 0;
  margin: 0.2em 0;
  vertical-align: middle;
  margin-left: 0.4em;
  margin-right: 22px;
}

.ui-spinner-button {
  width: 16px;
  height: 50%;
  font-size: 0.5em;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  cursor: default;
  display: block;
  overflow: hidden;
  right: 0;
}

/* more specificity required here to override default borders */
.ui-spinner a.ui-spinner-button {
  border-top: none;
  border-bottom: none;
  border-right: none;
}

/* vertically center icon */
.ui-spinner .ui-icon {
  position: absolute;
  margin-top: -8px;
  top: 50%;
  left: 0;
}

.ui-spinner-up {
  top: 0;
}

.ui-spinner-down {
  bottom: 0;
}

/* TR overrides */
.ui-spinner .ui-icon-triangle-1-s {
  /* need to fix icons sprite */
  background-position: -65px -16px;
}

.ui-tabs {
  position: relative; /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
  padding: 0.2em;
}

.ui-tabs .ui-tabs-nav {
  margin: 0;
  padding: 0.2em 0.2em 0;
}

.ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 0;
  margin: 1px 0.2em 0 0;
  border-bottom-width: 0;
  padding: 0;
  white-space: nowrap;
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  float: left;
  padding: 0.5em 1em;
  text-decoration: none;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -1px;
  padding-bottom: 1px;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
  cursor: text;
}

.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
  cursor: pointer;
}

.ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  padding: 1em 1.4em;
  background: none;
}

.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px;
  -webkit-box-shadow: 0 0 5px #aaa;
  box-shadow: 0 0 5px #aaa;
}

body .ui-tooltip {
  border-width: 2px;
}

/* Component containers
----------------------------------*/
.ui-widget {
  font-family: Verdana, Arial, sans-serif;
  font-size: 1.1em;
}

.ui-widget .ui-widget {
  font-size: 1em;
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: Verdana, Arial, sans-serif;
  font-size: 1em;
}

.ui-widget-content {
  border: 1px solid #aaaaaa;
  background: #ffffff url("images/ui-bg_flat_75_ffffff_40x100.png") 50% 50% repeat-x;
  color: #222222;
}

.ui-widget-content a {
  color: #222222;
}

.ui-widget-header {
  border: 1px solid #aaaaaa;
  background: #cccccc url("images/ui-bg_highlight-soft_75_cccccc_1x100.png") 50% 50% repeat-x;
  color: #222222;
  font-weight: bold;
}

.ui-widget-header a {
  color: #222222;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  border: 1px solid #d3d3d3;
  background: #e6e6e6 url("images/ui-bg_glass_75_e6e6e6_1x400.png") 50% 50% repeat-x;
  font-weight: normal;
  color: #555555;
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
  color: #555555;
  text-decoration: none;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
  border: 1px solid #999999;
  background: #dadada url("images/ui-bg_glass_75_dadada_1x400.png") 50% 50% repeat-x;
  font-weight: normal;
  color: #212121;
}

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited {
  color: #212121;
  text-decoration: none;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
  border: 1px solid #aaaaaa;
  background: #ffffff url("images/ui-bg_glass_65_ffffff_1x400.png") 50% 50% repeat-x;
  font-weight: normal;
  color: #212121;
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #212121;
  text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #fcefa1;
  background: #fbf9ee url("images/ui-bg_glass_55_fbf9ee_1x400.png") 50% 50% repeat-x;
  color: #363636;
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #363636;
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #cd0a0a;
  background: #fef1ec url("images/ui-bg_glass_95_fef1ec_1x400.png") 50% 50% repeat-x;
  color: #cd0a0a;
}

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #cd0a0a;
}

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #cd0a0a;
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold;
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: 0.7;
  filter: Alpha(Opacity=70); /* support: IE8 */
  font-weight: normal;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: 0.35;
  filter: Alpha(Opacity=35); /* support: IE8 */
  background-image: none;
}

.ui-state-disabled .ui-icon {
  filter: Alpha(Opacity=35); /* support: IE8 - See #6059 */
}

/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  width: 16px;
  height: 16px;
}

.ui-icon,
.ui-widget-content .ui-icon {
  background-image: url("images/ui-icons_222222_256x240.png");
}

.ui-widget-header .ui-icon {
  background-image: url("images/ui-icons_222222_256x240.png");
}

.ui-state-default .ui-icon {
  background-image: url("images/ui-icons_888888_256x240.png");
}

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
  background-image: url("images/ui-icons_454545_256x240.png");
}

.ui-state-active .ui-icon {
  background-image: url("images/ui-icons_454545_256x240.png");
}

.ui-state-highlight .ui-icon {
  background-image: url("images/ui-icons_2e83ff_256x240.png");
}

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
  background-image: url("images/ui-icons_cd0a0a_256x240.png");
}

/* positioning */
.ui-icon-blank {
  background-position: 16px 16px;
}

.ui-icon-carat-1-n {
  background-position: 0 0;
}

.ui-icon-carat-1-ne {
  background-position: -16px 0;
}

.ui-icon-carat-1-e {
  background-position: -32px 0;
}

.ui-icon-carat-1-se {
  background-position: -48px 0;
}

.ui-icon-carat-1-s {
  background-position: -64px 0;
}

.ui-icon-carat-1-sw {
  background-position: -80px 0;
}

.ui-icon-carat-1-w {
  background-position: -96px 0;
}

.ui-icon-carat-1-nw {
  background-position: -112px 0;
}

.ui-icon-carat-2-n-s {
  background-position: -128px 0;
}

.ui-icon-carat-2-e-w {
  background-position: -144px 0;
}

.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}

.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}

.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}

.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}

.ui-icon-triangle-1-s {
  background-position: -64px -16px;
}

.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}

.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}

.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}

.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}

.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}

.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}

.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}

.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}

.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}

.ui-icon-arrow-1-s {
  background-position: -64px -32px;
}

.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}

.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}

.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}

.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}

.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}

.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}

.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}

.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}

.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}

.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}

.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}

.ui-icon-arrowthick-1-n {
  background-position: 0 -48px;
}

.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}

.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}

.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}

.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}

.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}

.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}

.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}

.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}

.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}

.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}

.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}

.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}

.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}

.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}

.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}

.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}

.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}

.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}

.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}

.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}

.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}

.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}

.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}

.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}

.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}

.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}

.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}

.ui-icon-arrow-4 {
  background-position: 0 -80px;
}

.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}

.ui-icon-extlink {
  background-position: -32px -80px;
}

.ui-icon-newwin {
  background-position: -48px -80px;
}

.ui-icon-refresh {
  background-position: -64px -80px;
}

.ui-icon-shuffle {
  background-position: -80px -80px;
}

.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}

.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}

.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}

.ui-icon-folder-open {
  background-position: -16px -96px;
}

.ui-icon-document {
  background-position: -32px -96px;
}

.ui-icon-document-b {
  background-position: -48px -96px;
}

.ui-icon-note {
  background-position: -64px -96px;
}

.ui-icon-mail-closed {
  background-position: -80px -96px;
}

.ui-icon-mail-open {
  background-position: -96px -96px;
}

.ui-icon-suitcase {
  background-position: -112px -96px;
}

.ui-icon-comment {
  background-position: -128px -96px;
}

.ui-icon-person {
  background-position: -144px -96px;
}

.ui-icon-print {
  background-position: -160px -96px;
}

.ui-icon-trash {
  background-position: -176px -96px;
}

.ui-icon-locked {
  background-position: -192px -96px;
}

.ui-icon-unlocked {
  background-position: -208px -96px;
}

.ui-icon-bookmark {
  background-position: -224px -96px;
}

.ui-icon-tag {
  background-position: -240px -96px;
}

.ui-icon-home {
  background-position: 0 -112px;
}

.ui-icon-flag {
  background-position: -16px -112px;
}

.ui-icon-calendar {
  background-position: -32px -112px;
}

.ui-icon-cart {
  background-position: -48px -112px;
}

.ui-icon-pencil {
  background-position: -64px -112px;
}

.ui-icon-clock {
  background-position: -80px -112px;
}

.ui-icon-disk {
  background-position: -96px -112px;
}

.ui-icon-calculator {
  background-position: -112px -112px;
}

.ui-icon-zoomin {
  background-position: -128px -112px;
}

.ui-icon-zoomout {
  background-position: -144px -112px;
}

.ui-icon-search {
  background-position: -160px -112px;
}

.ui-icon-wrench {
  background-position: -176px -112px;
}

.ui-icon-gear {
  background-position: -192px -112px;
}

.ui-icon-heart {
  background-position: -208px -112px;
}

.ui-icon-star {
  background-position: -224px -112px;
}

.ui-icon-link {
  background-position: -240px -112px;
}

.ui-icon-cancel {
  background-position: 0 -128px;
}

.ui-icon-plus {
  background-position: -16px -128px;
}

.ui-icon-plusthick {
  background-position: -32px -128px;
}

.ui-icon-minus {
  background-position: -48px -128px;
}

.ui-icon-minusthick {
  background-position: -64px -128px;
}

.ui-icon-close {
  background-position: -80px -128px;
}

.ui-icon-closethick {
  background-position: -96px -128px;
}

.ui-icon-key {
  background-position: -112px -128px;
}

.ui-icon-lightbulb {
  background-position: -128px -128px;
}

.ui-icon-scissors {
  background-position: -144px -128px;
}

.ui-icon-clipboard {
  background-position: -160px -128px;
}

.ui-icon-copy {
  background-position: -176px -128px;
}

.ui-icon-contact {
  background-position: -192px -128px;
}

.ui-icon-image {
  background-position: -208px -128px;
}

.ui-icon-video {
  background-position: -224px -128px;
}

.ui-icon-script {
  background-position: -240px -128px;
}

.ui-icon-alert {
  background-position: 0 -144px;
}

.ui-icon-info {
  background-position: -16px -144px;
}

.ui-icon-notice {
  background-position: -32px -144px;
}

.ui-icon-help {
  background-position: -48px -144px;
}

.ui-icon-check {
  background-position: -64px -144px;
}

.ui-icon-bullet {
  background-position: -80px -144px;
}

.ui-icon-radio-on {
  background-position: -96px -144px;
}

.ui-icon-radio-off {
  background-position: -112px -144px;
}

.ui-icon-pin-w {
  background-position: -128px -144px;
}

.ui-icon-pin-s {
  background-position: -144px -144px;
}

.ui-icon-play {
  background-position: 0 -160px;
}

.ui-icon-pause {
  background-position: -16px -160px;
}

.ui-icon-seek-next {
  background-position: -32px -160px;
}

.ui-icon-seek-prev {
  background-position: -48px -160px;
}

.ui-icon-seek-end {
  background-position: -64px -160px;
}

.ui-icon-seek-start {
  background-position: -80px -160px;
}

/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first {
  background-position: -80px -160px;
}

.ui-icon-stop {
  background-position: -96px -160px;
}

.ui-icon-eject {
  background-position: -112px -160px;
}

.ui-icon-volume-off {
  background-position: -128px -160px;
}

.ui-icon-volume-on {
  background-position: -144px -160px;
}

.ui-icon-power {
  background-position: 0 -176px;
}

.ui-icon-signal-diag {
  background-position: -16px -176px;
}

.ui-icon-signal {
  background-position: -32px -176px;
}

.ui-icon-battery-0 {
  background-position: -48px -176px;
}

.ui-icon-battery-1 {
  background-position: -64px -176px;
}

.ui-icon-battery-2 {
  background-position: -80px -176px;
}

.ui-icon-battery-3 {
  background-position: -96px -176px;
}

.ui-icon-circle-plus {
  background-position: 0 -192px;
}

.ui-icon-circle-minus {
  background-position: -16px -192px;
}

.ui-icon-circle-close {
  background-position: -32px -192px;
}

.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}

.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}

.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}

.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}

.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}

.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}

.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}

.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}

.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}

.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}

.ui-icon-circle-check {
  background-position: -208px -192px;
}

.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}

.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}

.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}

.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}

.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}

.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}

.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}

.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}

.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}

.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}

.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}

.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}

/* Misc visuals
----------------------------------*/
/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 4px;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 4px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 4px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 4px;
}

/* Overlays */
.ui-widget-overlay {
  background: #aaaaaa url("images/ui-bg_flat_0_aaaaaa_40x100.png") 50% 50% repeat-x;
  opacity: 0.3;
  filter: Alpha(Opacity=30); /* support: IE8 */
}

.ui-widget-shadow {
  margin: -8px 0 0 -8px;
  padding: 8px;
  background: #aaaaaa url("images/ui-bg_flat_0_aaaaaa_40x100.png") 50% 50% repeat-x;
  opacity: 0.3;
  filter: Alpha(Opacity=30); /* support: IE8 */
  border-radius: 8px;
}

/*------------------------------------------------------
					Fonts
--------------------------------------------------------*/
@font-face {
  font-family: "playballregular";
  src: url("/fonts/playball-webfont.woff2") format("woff2"), url("/fonts/playball-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "icomoon";
  src: url("/fonts/icomoon.eot?45xf98");
  src: url("/fonts/icomoon.eot?45xf98#iefix") format("embedded-opentype"), url("/fonts/icomoon.ttf?45xf98") format("truetype"), url("/fonts/icomoon.woff?45xf98") format("woff"), url("/fonts/icomoon.svg?45xf98#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=icon-], [class*=" icon-"] {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-facebook:before {
  content: "\e900";
}

.icon-google-plus:before {
  content: "\e901";
}

.icon-twitter:before {
  content: "\e902";
}

/*------------------------------------------------------
					General style
--------------------------------------------------------*/
body {
  background: #fff none repeat scroll 0 0;
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

p {
  color: #313131;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  font-family: "Nunito Sans", sans-serif;
  margin-bottom: 18px;
}

ul, li, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  color: #313131;
}

.inline li {
  display: inline-block;
  vertical-align: top;
}

a, a:hover, a:focus, a:active {
  display: inline-block;
  vertical-align: top;
  color: #313131;
  text-decoration: none;
}

a:hover, a:focus, a:active {
  color: #313131;
}

img {
  display: inline-block;
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  color: #313131;
  font-family: "playballregular", serif;
  font-style: normal;
  font-weight: normal;
  line-height: 1.05;
  text-rendering: optimizelegibility;
}

h1, .h1 {
  font-size: 40px;
  margin: 32px 0 16px;
  text-align: center;
}

h2, .h2 {
  color: #fbf5d2;
  font-size: 35px;
  margin: 24px 0 32px;
  text-align: center;
  font-family: "playballregular", serif !important;
}

h3, .h3 {
  color: #fff;
  font-size: 44px;
  margin: 32px 0 32px;
  text-align: center;
}

h4, .h4 {
  color: #fff;
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3rem;
  margin: 9.5rem 0 2rem;
  text-align: center;
}

h5 {
  font-size: 0.95rem;
}

.h5 {
  color: #313131;
  margin: 0;
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1.8rem;
  padding: 19px 0px;
  font-weight: 100;
}

.h6 {
  text-transform: uppercase;
  display: inline-block;
  vertical-align: top;
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
}

*:focus {
  outline: none !important;
}

.radius {
  border-radius: 50%;
}

.inline li {
  display: inline-block;
  position: relative;
  vertical-align: top;
}

.align_left {
  text-align: left;
}

.align_right {
  text-align: right;
}

.center {
  text-align: center;
}

.wght_light {
  font-weight: 100;
}

.wght_bold {
  font-weight: 600;
}

.fl {
  float: left !important;
}

.fr {
  float: right !important;
}

.clr {
  clear: both !important;
  float: none !important;
}

.noleft {
  padding-left: 0;
}

.noright {
  padding-right: 0;
}

.nopadding {
  padding-left: 0;
  padding-right: 0;
}

.full-width {
  width: 100% !important;
  max-width: inherit;
}

section {
  padding: 2rem 0 0;
}

.card-area {
  margin-top: 53px;
  position: relative;
}

.dark-section {
  background-size: cover;
  padding: 64px 0 64px;
  color: #fff;
}

.dark-section.section-step {
  padding: 3rem 0 7rem;
}

.dark-section p {
  color: #fff;
}

.radius.profil.fl {
  height: 107px;
  margin: 2rem 2rem 0rem 0;
  width: 106px;
}

.title {
  border-bottom: 1px solid #fff;
  display: inline-block;
  font-size: 1.8rem;
}

@media screen and (max-width: 520px) {
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 33px;
  }
}
@media screen and (max-width: 767px) {
  .see-more {
    margin: 2rem 0 10rem;
  }
  .about-section {
    padding: 7.5rem 0 0;
  }
}
/*------------------------------------------------------
          ABOUT
--------------------------------------------------------*/
.about-section {
  padding: 7.5rem 0;
}

.about-section .h3 {
  font-family: "playballregular", serif;
  margin: 0 0 3rem;
}

.about-section .col-sm-4 {
  padding: 0 3rem;
}

.about-section .row {
  margin: 0 -3rem;
}

.about-section .h4 {
  font-weight: 700;
  margin: 4rem 0 1.5rem;
}

.see-more {
  font-size: 1.4rem;
  margin: 2rem 0;
}

.social-network {
  margin: 0.5rem 0 1rem;
}

/*------------------------------------------------------
		  Autres Tarots - pour aller plus loin
--------------------------------------------------------*/
.other-tarot {
  max-width: 830px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 64px;
  margin-bottom: 32px;
}
.other-tarot > ul {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr 16px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.other-tarot li {
  position: relative;
  width: 100%;
}
.other-tarot a {
  display: block;
  -webkit-transition: 0.4s ease 0s;
  transition: 0.4s ease 0s;
}
.other-tarot a img {
  display: block;
  max-height: inherit;
  width: 100%;
  border-radius: 6px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.other-tarot a:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.other-tarot h5 {
  color: #fff;
  font-size: 22px;
  font-weight: 100;
  line-height: 1.1;
  margin: 0.6em 0 0;
  text-align: center;
}
.other-tarot .current img {
  border: 2px solid #84399f;
}
.other-tarot .off a, .other-tarot .off a:hover {
  opacity: 0.5;
}
.other-tarot li span {
  position: absolute;
  font-size: 13.5px;
  letter-spacing: 0.08ch;
  left: 50%;
  top: 100%;
  font-style: italic;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  color: #fff;
  pointer-events: none;
}
.other-tarot .off-span {
  opacity: 0;
  top: 30%;
  text-decoration: underline;
}
.other-tarot .off:hover .off-span {
  opacity: 1;
}

@media screen and (max-width: 880px) {
  .other-tarot > ul {
    -ms-grid-columns: 1fr 12px 1fr 12px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 12px;
  }
}
@media screen and (max-width: 600px) {
  .other-tarot > ul {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
/*------------------------------------------------------
          FOOTER
--------------------------------------------------------*/
footer {
  padding-top: 32px;
  padding-bottom: 16px;
  border-top: 1px solid #000;
  background: #101017;
  font-size: 13px;
}
footer .logo {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin: auto;
  text-align: center;
  font-family: "playballregular", serif;
  font-size: 36px;
  line-height: 1.1;
}
footer .logo, footer .logo a {
  color: rgba(255, 255, 255, 0.9);
}
footer, footer a {
  color: #999;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
footer a:hover {
  color: #fff !important;
}

.menu-footer {
  gap: 8px 24px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.menu-footer > * {
  font-size: 12px;
  letter-spacing: 0.05ch;
  line-height: 1.4;
}

@media (max-width: 470px) {
  .menu-footer {
    gap: 0px 10px;
  }
  .menu-footer > * {
    font-size: 11px;
  }
}
.footer-pictos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 24px;
  margin: 28px auto 42px;
}
.footer-pictos, .footer-pictos a {
  font-size: 20px;
  color: #989898;
}
.footer-pictos:hover, .footer-pictos a:hover {
  color: #000;
}
.footer-pictos img {
  height: 25px !important;
  width: 27px !important;
  -o-object-fit: contain;
     object-fit: contain;
}

.subfooter {
  background: #000 none repeat scroll 0 0;
  padding: 48px 20px;
  text-align: center;
}

.subfooter p {
  text-align: center !important;
  font-family: "playballregular", serif;
  color: #fff;
  font-size: 32px;
  line-height: 1.1;
}

@media screen and (max-width: 500px) {
  .subfooter {
    padding: 28px 16px;
  }
  .subfooter p {
    font-size: 24px;
  }
}
.right-form {
  text-align: right;
}

.bottom-form {
  margin-bottom: 10px;
}

.bottom-form.tel {
  margin-bottom: 8px;
  margin-top: -3px;
}

.eva-mail-ok input {
  color: #000;
}

.mentions {
  margin: 16px auto 0;
  line-height: 14px;
  font-size: 11px;
}

.mentions a {
  color: #fff;
  text-decoration: underline;
}

.mentions.bas {
  margin-top: 0px;
}

@media screen and (max-width: 767px) {
  .see-more {
    margin: 2rem 0 10rem;
  }
  .about-section {
    padding: 7.5rem 0 0;
  }
  .dark-section .col-sm-5 {
    margin: 0 0 5rem;
  }
  .interpretation-step .col-md-2 .col-md-2 {
    width: 100%;
    padding: 0;
  }
  .btn-group .button {
    margin: 0 0.5rem 2rem;
  }
  .dark-section .card-chosen::after {
    left: 0;
  }
}
/* -----------    Cookie consent    ------------------  */
.cc-link {
  margin-top: -2px;
  margin-left: -1px;
}

.cc-compliance {
  display: none !important;
}

.cc-window {
  background: rgba(0, 0, 0, 0.9) !important;
  padding: 10px !important;
}

.cc-banner.cc-bottom {
  text-align: center;
}

.cc-message {
  font-size: 11px !important;
  line-height: 12px !important;
}

@media screen and (max-width: 1200px) {
  .cc-message {
    margin-bottom: 0px;
    font-size: 11px;
    line-height: 12px;
    padding: 0;
  }
  .cc-window.cc-bottom {
    padding: 15px 0px !important;
  }
}
/*--------------   Divers   --------*/
@media screen and (max-width: 1200px) {
  .about-section .row {
    margin: 0;
  }
}
/* --------   Forms dans les pages  ------------- */
.eva-mail-ok {
  color: #fff;
  width: 420px;
  max-width: 100%;
  margin: auto;
}

#form_inside, .eva-delattre-with-ia {
  padding: 24px 0;
  max-width: 450px;
  margin: auto;
}

form {
  position: relative;
}

button, .button, .btn {
  background: #ffffff;
  background: linear-gradient(75deg, #fff 0%, #fff 51%, #ddd 100%);
  background-size: 200% auto;
  background-position: right center;
  color: #000;
  display: inline-block;
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  padding: 14px 20px;
  vertical-align: middle;
  width: auto;
  border-radius: 5px;
  -webkit-transition: 0.25s ease 0s;
  transition: 0.25s ease 0s;
  -webkit-box-shadow: 1px 1px 6px rgba(0, 0, 0, 0);
          box-shadow: 1px 1px 6px rgba(0, 0, 0, 0);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: none;
  min-width: 100px;
}
button.uppercase, .button.uppercase, .btn.uppercase {
  letter-spacing: 0.12ch;
  text-transform: uppercase;
}
button:hover, button:focus, button:active, .button:hover, .button:focus, .button:active, .btn:hover, .btn:focus, .btn:active {
  background-position: left center; /* change the direction of the change here */
  -webkit-box-shadow: 1px 1px 6px rgb(0, 0, 0);
          box-shadow: 1px 1px 6px rgb(0, 0, 0);
}

.btn-group {
  display: block;
  margin: 24px 0 32px;
  text-align: center;
}

form input[type=radio] {
  display: inline-block;
  margin: 0.5rem 1rem 0 0;
}

label {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05ch;
}

.radios-group-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 20px;
}
.radios-group-buttons input[type=radio] {
  display: none;
}

input[type=text], input[type=email], input[type=tel], input[type=password], input[type=search], input[type=url], input[type=number], input[type=date], input[type=time], input[type=datetime-local], input[type=file], select, textarea {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  color: #000;
  display: block;
  font-family: "Nunito Sans", sans-serif;
  font-size: 14.5px;
  line-height: 1.35;
  margin: 10px auto 20px;
  padding: 12px 15px 11px;
  width: 100%;
  -webkit-transition: 0.25s ease 0s;
  transition: 0.25s ease 0s;
  -webkit-box-shadow: 1px 1px 6px rgba(0, 0, 0, 0);
          box-shadow: 1px 1px 6px rgba(0, 0, 0, 0);
}
input[type=text]:focus, input[type=email]:focus, input[type=tel]:focus, input[type=password]:focus, input[type=search]:focus, input[type=url]:focus, input[type=number]:focus, input[type=date]:focus, input[type=time]:focus, input[type=datetime-local]:focus, input[type=file]:focus, select:focus, textarea:focus {
  border-color: #000;
  -webkit-box-shadow: 1px 1px 6px rgb(0, 0, 0);
          box-shadow: 1px 1px 6px rgb(0, 0, 0);
}

.input-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 16px 0;
  gap: 10px 16px;
}
.input-inline input, .input-inline label {
  margin: 0;
}
.input-inline input {
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.check_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 2px 12px;
  padding: 10px 0 20px;
}
.check_row.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.check_row label {
  font-size: 15px;
  font-weight: 400;
  margin: 0;
  text-align: left;
  cursor: pointer;
}
.check_row input[type=checkbox] {
  margin: 0;
}
.check_row a {
  color: inherit;
  text-decoration: underline;
}

/* Récup depuis le bas du fichier styles.css, à enlever je pense
select{
    color: #000;
    width: 200px;
    margin-bottom: 5px;
}

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

.form-optin input{
    color: #000;
}

.form-optin .btn-group{
    margin-top: 15px;
    padding: 0px;
}

.form-optin input[type="text"]{
    border: 0;
    height: 25px;
    padding-left: 10px;
}

.select-optin{
    font-size: 1em;
    width: auto;
    display: inline-block;
    background-color: #eee;
    margin-bottom: 0px;
    height: 28px;
    border: 0;
}

.form-optin{
    color: #fff;
}

*/
/*------------------------------------------------------
					HEADER
--------------------------------------------------------*/
header {
  background: rgba(0, 0, 0, 0.95) none repeat scroll 0 0;
  left: 0;
  padding: 0.5rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.logo img {
  vertical-align: top;
  width: 43px;
}

.logo h1 {
  color: #fff;
  display: inline-block;
  font-size: 2.5rem;
  letter-spacing: 0.5rem;
  line-height: 3.5rem;
  margin: 0.4rem 0 0 0.5rem;
}

.logo span {
  font-size: 1.6rem;
}

.right-header a {
  color: #989898;
  font-size: 2rem;
  margin: 1.1rem 1rem 0;
  opacity: 0.5;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}

.right-header a:hover {
  opacity: 1;
}

/* Mobile Menu */
.the_span {
  font-size: 30px;
  cursor: pointer;
  color: #ddd;
  padding: 0 12px;
  text-align: center;
  min-width: 48px;
}

.overlay {
  /* Height & width depends on how you want to reveal the overlay (see JS below) */
  width: 320px;
  max-width: 90%;
  position: fixed; /* Stay in place */
  top: 0;
  bottom: 0;
  right: -100%;
  margin-top: 53px;
  background-color: #151517; /* Black w/opacity */
  overflow-y: hidden;
  z-index: 9999999;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.overlay.open {
  right: 0;
}

.overlay-content {
  position: relative;
  text-align: center; /* Centered text/links */
  padding: 10px 16px;
}

.overlay a {
  padding: 16px 0;
  text-decoration: none;
  font-size: 16px;
  color: #fff;
  display: block; /* Display block instead of inline */
  -webkit-transition: 0.3s;
  transition: 0.3s; /* Transition effects on hover (color) */
}

.overlay a.actif, .overlay a:hover {
  color: #fbf5d2;
}

.overlay a:hover, .overlay a:focus {
  color: #ddd;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 10px;
  font-size: 60px;
  font-family: Arial, sans-serif;
  color: #ddd;
}

@media screen and (max-height: 450px) {
  .overlay a {
    font-size: 20px;
  }
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}
@media screen and (max-width: 500px) {
  header .col-xs-6 {
    text-align: center;
    width: 100%;
  }
  .right-header.align_right {
    display: none;
  }
}
.right-header.align_right {
  display: block;
}

@media screen and (max-height: 450px) {
  .overlay a {
    font-size: 20px;
  }
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}
@media screen and (max-width: 1200px) {
  .the_span {
    position: fixed;
    top: 5px;
    right: 10px;
  }
}
/*------------------------------------------------------
          CONTENT
--------------------------------------------------------*/
.card-area {
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hide-card {
  display: none;
  visibility: hidden;
}

.full-height {
  min-height: calc(100vh - 50px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
}

.card .hidden-card {
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transform: rotateY(90deg);
          transform: rotateY(90deg);
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.card .hidden-card.rotate-in {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}

.card li {
  width: 15%;
  z-index: 20;
  position: absolute;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}

.card li.block {
  z-index: 0;
}

.card li:nth-child(1) {
  left: 0%;
}

.card li:nth-child(2) {
  left: 4%;
}

.card li:nth-child(3) {
  left: 8%;
}

.card li:nth-child(4) {
  left: 12%;
}

.card li:nth-child(5) {
  left: 16%;
}

.card li:nth-child(6) {
  left: 20%;
}

.card li:nth-child(7) {
  left: 24%;
}

.card li:nth-child(8) {
  left: 28%;
}

.card li:nth-child(9) {
  left: 32%;
}

.card li:nth-child(10) {
  left: 36%;
}

.card li:nth-child(11) {
  left: 40%;
}

.card li:nth-child(12) {
  left: 44%;
}

.card li:nth-child(13) {
  left: 48%;
}

.card li:nth-child(14) {
  left: 52%;
}

.card li:nth-child(15) {
  left: 56%;
}

.card li:nth-child(16) {
  left: 60%;
}

.card li:nth-child(17) {
  left: 64%;
}

.card li:nth-child(18) {
  left: 68%;
}

.card li:nth-child(19) {
  left: 72%;
}

.card li:nth-child(20) {
  left: 76%;
}

.card li:nth-child(21) {
  left: 80%;
}

.card li:nth-child(22) {
  left: 84%;
}

.card.shake li:nth-child(5) {
  left: 0% !important;
  z-index: 1;
}

.card.shake li:nth-child(21) {
  left: 4% !important;
  z-index: 2;
}

.card.shake li:nth-child(22) {
  left: 8% !important;
  z-index: 3;
}

.card.shake li:nth-child(8) {
  left: 12% !important;
  z-index: 4;
}

.card.shake li:nth-child(16) {
  left: 16% !important;
  z-index: 5;
}

.card.shake li:nth-child(1) {
  left: 20% !important;
  z-index: 6;
}

.card.shake li:nth-child(2) {
  left: 24% !important;
  z-index: 7;
}

.card.shake li:nth-child(11) {
  left: 28% !important;
  z-index: 8;
}

.card.shake li:nth-child(18) {
  left: 32% !important;
  z-index: 9;
}

.card.shake li:nth-child(20) {
  left: 36% !important;
  z-index: 10;
}

.card.shake li:nth-child(3) {
  left: 40% !important;
  z-index: 11;
}

.card.shake li:nth-child(12) {
  left: 44% !important;
  z-index: 12;
}

.card.shake li:nth-child(9) {
  left: 48% !important;
  z-index: 13;
}

.card.shake li:nth-child(17) {
  left: 52% !important;
  z-index: 14;
}

.card.shake li:nth-child(15) {
  left: 56% !important;
  z-index: 15;
}

.card.shake li:nth-child(4) {
  left: 60% !important;
  z-index: 16;
}

.card.shake li:nth-child(10) {
  left: 64% !important;
  z-index: 17;
}

.card.shake li:nth-child(13) {
  left: 68% !important;
  z-index: 18;
}

.card.shake li:nth-child(19) {
  left: 72% !important;
  z-index: 19;
}

.card.shake li:nth-child(6) {
  left: 76% !important;
  z-index: 20;
}

.card.shake li:nth-child(7) {
  left: 80% !important;
  z-index: 21;
}

.card.shake li:nth-child(14) {
  left: 84% !important;
  z-index: 22;
}

.card li.cut-li {
  left: 42.5% !important;
  position: absolute;
  z-index: 1;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}

.card ul {
  left: 7px;
  margin: 0 auto;
  min-height: 220px;
  position: relative;
  width: 80%;
}

.btn-group .button {
  margin: 0 0.5rem;
  min-width: 15rem;
  text-align: center;
}

.mask {
  background: rgba(0, 0, 0, 0.8) none repeat scroll 0 0;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  display: none;
}

.mobile-cards {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px 10px;
  margin: auto;
  width: 400px;
  max-width: 100%;
  text-align: center;
  margin-bottom: 24px;
  margin-top: 24px;
}

.mobile-cards img {
  max-width: 60px;
  width: 100%;
  height: auto;
  min-width: 0;
}

.title_result {
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 30px;
}

/*------------------------------------------------------
          ANIMATION CARTE
--------------------------------------------------------*/
.card img {
  max-width: inherit;
  top: 0;
  width: 114px;
  position: relative;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0);
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}

.card .back-card.hover {
  top: -10px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}

/*
.card .hidden-card{
	left: 0;
	position: absolute;
	top: 0;
	transform: rotateY(90deg);
	transition: .5s ease 0s;
}
.card .hidden-card.rotate-in{
	transform: rotateY(0deg);
	transition: .5s ease 0s;
}*/
.card-block.retourne {
  pointer-events: none !important;
}

.card .back-card {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}

.card .back-card.rotate {
  -webkit-transform: rotateY(90deg);
          transform: rotateY(90deg);
  width: 114px;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}

.hide-mask {
  height: 218px;
  left: 0;
  position: absolute;
  top: 0;
  width: 114px;
  z-index: 1000;
}

.no-interaction {
  pointer-events: none;
  cursor: default;
}

.ten-cards,
.seven-cards,
.eight-cards,
.five-cards,
.four-cards {
  position: relative;
  margin: 0 auto 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ten-cards .card-block-wrap,
.seven-cards .card-block-wrap,
.eight-cards .card-block-wrap,
.five-cards .card-block-wrap,
.four-cards .card-block-wrap {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -ms-flex-preferred-size: calc(25% - 10px);
      flex-basis: calc(25% - 10px);
  position: relative;
}

.ten-cards {
  max-width: 800px;
}
.ten-cards .card-block-wrap {
  -ms-flex-preferred-size: calc(20% - 10px);
      flex-basis: calc(20% - 10px);
}

.seven-cards {
  max-width: 620px;
}
.seven-cards .card-block-wrap {
  -ms-flex-preferred-size: calc(25% - 10px);
      flex-basis: calc(25% - 10px);
}

.four-cards, .eight-cards {
  max-width: 620px;
}
.four-cards .card-block-wrap, .eight-cards .card-block-wrap {
  -ms-flex-preferred-size: calc(25% - 10px);
      flex-basis: calc(25% - 10px);
}

.five-cards {
  max-width: 490px;
}
.five-cards .card-block-wrap {
  -ms-flex-preferred-size: calc(33% - 10px);
      flex-basis: calc(33% - 10px);
}

@media (max-width: 541px) {
  .ten-cards .card-block-wrap {
    -ms-flex-preferred-size: calc(25% - 10px);
        flex-basis: calc(25% - 10px);
  }
  .ten-cards,
  .seven-cards,
  .four-cards,
  .five-cards,
  .eight-cards {
    margin-left: -10px;
    margin-right: -10px;
  }
}
.card-block-wrap {
  cursor: pointer;
}

.forIllusion {
  height: 0;
}

.forIllusion .card-block-wrap {
  position: absolute;
  z-index: 9999;
  -webkit-box-shadow: 4px 3px 19px #000000;
          box-shadow: 4px 3px 19px #000000;
  -webkit-transition: All 0.3s ease-in;
  transition: All 0.3s ease-in;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.forIllusion .card-block-wrap.disappearNow {
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  -webkit-transform: scale(0.5, 0.5);
          transform: scale(0.5, 0.5);
}

.c-notes {
  padding: 30px 0 50px;
  text-align: center;
  max-width: 600px;
  margin: auto;
}

.c-notes * {
  color: #fff;
}

.c-notes strong {
  margin-bottom: 15px;
  display: block;
  text-decoration: underline;
}

/* ----------    Nom sous les cartes  ---------------- */
.card-front {
  text-align: center;
}

.nom-carte {
  display: block;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 5px 8px 6px;
  text-align: center;
  border-radius: 4px;
  margin-top: 6px;
  line-height: 1.1;
  font-size: 12px;
  letter-spacing: 0.05ch;
}

@media (max-width: 640px) {
  .nom-carte {
    font-size: 10.5px;
  }
}
/*------------------------------------------------------
          STEP
--------------------------------------------------------*/
.card-chosen li {
  float: left;
  left: inherit;
  margin: 0 0 3rem;
  position: relative;
  text-align: center;
  width: 20%;
  z-index: 10;
}

.card-chosen ul {
  left: inherit !important;
}

.card-chosen a {
  display: block;
}

.card-chosen img {
  opacity: 1;
  display: block;
  width: 114px;
  margin: 0 auto;
  -webkit-transition: 2s ease 0s;
  transition: 2s ease 0s;
}

.card-chosen img.hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.dark-section .card-chosen {
  padding: 2rem 0;
  position: relative;
  min-height: 620px;
  min-height: 510px;
  -webkit-transition: margin 0s ease 0s;
  transition: margin 0s ease 0s;
}

.dark-section .card-chosen.opacity-zero {
  opacity: 0;
  -webkit-transition: 2s ease 0s;
  transition: 2s ease 0s;
}

.step3 .card-chosen li, .final-step .card-chosen li {
  width: 25%;
}

.step3 .card-chosen ul, .final-step .card-chosen ul {
  margin: 0 auto;
  width: 70%;
}

.interpretation-step .col-md-2 img {
  margin: 0 0 3rem;
}

.card-chosen .hide-mask {
  left: 50%;
}

.final-step .card-chosen li.move-center {
  left: 42% !important;
  top: 33% !important;
  -webkit-transition: left 0.5s ease 0s, top 0.5s ease 0s;
  transition: left 0.5s ease 0s, top 0.5s ease 0s;
}

.final-step form {
  color: #fff;
  position: relative;
  text-align: center;
  z-index: 10;
  display: none;
  margin-top: 30px;
}

.card-chosen .inline.full {
  left: 0;
  width: 100%;
  text-align: center;
  position: initial;
}

.inline.full > li {
  display: inline-block;
  float: none;
  position: initial;
  vertical-align: top;
  width: 14%;
}

.card-chosen.rotate {
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  -webkit-animation-name: rotate;
          animation-name: rotate;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

.last-card.rotate {
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  -webkit-animation-name: pouf;
          animation-name: pouf;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}

.not-chosen {
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  -webkit-animation-name: fade;
          animation-name: fade;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(2160deg);
            transform: rotate(2160deg);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(2160deg);
            transform: rotate(2160deg);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
/*------------------------------------------------------
          INTERPRETATION
--------------------------------------------------------*/
.interpretation-step h3 {
  font-size: 2.7rem;
  line-height: 3rem;
  margin: 40px 0 20px;
  text-align: left;
}
.interpretation-step h3:first-child {
  margin-top: 0;
}

.top-cards img, .bottom-cards img {
  margin-bottom: 8px;
}

/*------------------------------------------------------
          Responsive
--------------------------------------------------------*/
@media screen and (max-width: 980px) {
  .dark-section .card-chosen::after {
    left: 16%;
  }
  .right-form {
    text-align: center !important;
  }
  .bottom-cards, .top-cards {
    display: none;
  }
  .mobile-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .middle-cards h3 {
    text-align: center;
    font-size: 30px;
    line-height: 1.1;
  }
}
@media screen and (max-width: 800px) {
  .dark-section .card-chosen::after {
    left: 6%;
  }
}
@media screen and (max-width: 767px) {
  .dark-section .col-sm-5 {
    margin: 0 0 5rem;
  }
  .interpretation-step .col-md-2 .col-md-2 {
    width: 100%;
    padding: 0;
  }
  .btn-group .button {
    margin: 0 0.5rem 2rem;
  }
  .dark-section .card-chosen::after {
    left: 0;
  }
}
@media screen and (max-width: 640px) {
  .card img, .card .back-card.rotate {
    width: 100% !important;
    max-width: 130px;
  }
  .dark-section .card-chosen {
    min-height: 490px;
  }
}
@media screen and (max-width: 500px) {
  .card li {
    margin: 8px 0;
    width: 15%;
  }
  .dark-section .card-chosen {
    min-height: 300px;
  }
}
@media screen and (max-width: 340px) {
  .card ul {
    left: -11px;
  }
  .dark-section .card-chosen {
    min-height: 270px;
  }
}
/*------------------------------------------------------
           DIVERS
--------------------------------------------------------*/
#inside_step2 {
  -webkit-animation: 4s fadeIn;
          animation: 4s fadeIn;
  color: #fff;
}

.send-form {
  text-align: center;
  padding: 10px 0px;
}

.eva-modal {
  color: #000;
}

.home-optin-form {
  margin: 24px auto;
  display: none;
  padding-bottom: 1px !important;
}

.home-optin-form-container {
  display: none;
}
.home-optin-form-container span {
  font-weight: 500;
  line-height: 1.2;
}
.home-optin-form-container .btn-group {
  margin-bottom: 0;
}
.home-optin-form-container .button {
  min-width: 110px;
}

.optin-panel {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border-radius: 8px;
  padding: 24px 16px 24px;
  margin: 24px auto 8px;
  max-width: 700px;
}

.question-prompt {
  max-width: 700px;
  margin: 24px auto 16px;
}
.question-prompt .input-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px 0;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  width: 100%;
}
.question-prompt .input-container input {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  outline: none;
  border: none !important;
}
.question-prompt .input-container .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background: #ddd;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: none;
}
.question-prompt .input-container .btn:hover {
  background: #aaa;
}
.question-prompt .summary-container {
  text-align: center;
  display: none;
}
.question-prompt .summary-container .question-display {
  font-size: 21px;
}

.module-ia-question-sur-votre-tirage {
  margin: 32px auto 0px;
  max-width: 540px;
}
.module-ia-question-sur-votre-tirage h3 {
  font-size: 29px;
  text-align: left;
}
.module-ia-question-sur-votre-tirage .response-container {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 24px 16px;
}

/* HTML: <div class="my-loader"></div> */
.my-loader {
  width: 40px;
  aspect-ratio: 4;
  --_g: no-repeat radial-gradient(circle closest-side, #fff 90%, #fff0);
  background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
  background-size: 33.3333333333% 100%;
  -webkit-animation: l7 1s infinite linear;
          animation: l7 1s infinite linear;
  margin: 16px auto;
}

@-webkit-keyframes l7 {
  33% {
    background-size: 33.3333333333% 0%, 33.3333333333% 100%, 33.3333333333% 100%;
  }
  50% {
    background-size: 33.3333333333% 100%, 33.3333333333% 0%, 33.3333333333% 100%;
  }
  66% {
    background-size: 33.3333333333% 100%, 33.3333333333% 100%, 33.3333333333% 0%;
  }
}

@keyframes l7 {
  33% {
    background-size: 33.3333333333% 0%, 33.3333333333% 100%, 33.3333333333% 100%;
  }
  50% {
    background-size: 33.3333333333% 100%, 33.3333333333% 0%, 33.3333333333% 100%;
  }
  66% {
    background-size: 33.3333333333% 100%, 33.3333333333% 100%, 33.3333333333% 0%;
  }
}
.page-tarot-marseille {
  background: #000;
}
.page-tarot-marseille, .page-tarot-marseille p {
  color: #fff;
}
.page-tarot-marseille .h2-home-marseille {
  margin: 28px 0 10px;
}
.page-tarot-marseille .card-area {
  background: #000 url("/images/bg.jpg") no-repeat fixed 50% 0;
  background-size: cover;
}
.page-tarot-marseille .card-chosen {
  background: url("/images/bg/sprite-sun.png") no-repeat scroll 0 0 transparent;
}
.page-tarot-marseille .card-home {
  width: 100%;
  /* Positionnement des cartes */
}
.page-tarot-marseille .card-home ul {
  width: 100%;
  min-height: 0;
  height: auto;
  left: 0;
}
.page-tarot-marseille .card-home .card-block {
  top: 0;
}
.page-tarot-marseille .card-home .card-block:hover {
  top: -8px;
}
.page-tarot-marseille .card-home .card-block img {
  width: 100%;
  height: auto;
}
.page-tarot-marseille .card-home .card-block a {
  display: block;
}
.page-tarot-marseille .card-home .card-block {
  width: 12%;
}
.page-tarot-marseille .card-home ul {
  aspect-ratio: 4.3;
}
.page-tarot-marseille .card-home .card-block:nth-child(1) {
  left: 0%;
}
.page-tarot-marseille .card-home .card-block:nth-child(2) {
  left: 4.1904761905%;
}
.page-tarot-marseille .card-home .card-block:nth-child(3) {
  left: 8.380952381%;
}
.page-tarot-marseille .card-home .card-block:nth-child(4) {
  left: 12.5714285714%;
}
.page-tarot-marseille .card-home .card-block:nth-child(5) {
  left: 16.7619047619%;
}
.page-tarot-marseille .card-home .card-block:nth-child(6) {
  left: 20.9523809524%;
}
.page-tarot-marseille .card-home .card-block:nth-child(7) {
  left: 25.1428571429%;
}
.page-tarot-marseille .card-home .card-block:nth-child(8) {
  left: 29.3333333333%;
}
.page-tarot-marseille .card-home .card-block:nth-child(9) {
  left: 33.5238095238%;
}
.page-tarot-marseille .card-home .card-block:nth-child(10) {
  left: 37.7142857143%;
}
.page-tarot-marseille .card-home .card-block:nth-child(11) {
  left: 41.9047619048%;
}
.page-tarot-marseille .card-home .card-block:nth-child(12) {
  left: 46.0952380952%;
}
.page-tarot-marseille .card-home .card-block:nth-child(13) {
  left: 50.2857142857%;
}
.page-tarot-marseille .card-home .card-block:nth-child(14) {
  left: 54.4761904762%;
}
.page-tarot-marseille .card-home .card-block:nth-child(15) {
  left: 58.6666666667%;
}
.page-tarot-marseille .card-home .card-block:nth-child(16) {
  left: 62.8571428571%;
}
.page-tarot-marseille .card-home .card-block:nth-child(17) {
  left: 67.0476190476%;
}
.page-tarot-marseille .card-home .card-block:nth-child(18) {
  left: 71.2380952381%;
}
.page-tarot-marseille .card-home .card-block:nth-child(19) {
  left: 75.4285714286%;
}
.page-tarot-marseille .card-home .card-block:nth-child(20) {
  left: 79.619047619%;
}
.page-tarot-marseille .card-home .card-block:nth-child(21) {
  left: 83.8095238095%;
}
.page-tarot-marseille .card-home .card-block:nth-child(22) {
  left: 88%;
}
.page-tarot-marseille .card-chosen li {
  margin-bottom: 18px;
}
.page-tarot-marseille #preload-bg2 {
  background: url("/images/bg/bg2.png") no-repeat scroll 50% 0 transparent;
}
.page-tarot-marseille #preload-bg3 {
  background: url("/images/bg/bg3.png") no-repeat scroll 50% 0 transparent;
}
.page-tarot-marseille #preload-bg4 {
  background: url("/images/bg/bg4.png") no-repeat scroll 50% 0 transparent;
}
.page-tarot-marseille #preload-bg5 {
  background: url("/images/bg/bg5.png") no-repeat scroll 50% 0 transparent;
}
.page-tarot-marseille #preload-bg6 {
  background: url("/images/bg/bg6.png") no-repeat scroll 50% 0 transparent;
}
.page-tarot-marseille #preload-bg7 {
  background: url("/images/bg/bg7.png") no-repeat scroll 50% 0 transparent;
}
.page-tarot-marseille #preload-bg8 {
  background: url("/images/bg/bg8.png") no-repeat scroll 50% 0 transparent;
}
.page-tarot-marseille #preload-bg9 {
  background: url("/images/bg/bg9.png") no-repeat scroll 50% 0 transparent;
}
.page-tarot-marseille #preload-bg10 {
  background: url("/images/bg/bg10.png") no-repeat scroll 50% 0 transparent;
}
.page-tarot-marseille #preload-bg11 {
  background: url("/images/bg/bg11.png") no-repeat scroll 50% 0 transparent;
}
.page-tarot-marseille #preload-bg {
  background: url("/images/bg/bg.png") no-repeat scroll 50% 0 transparent;
}
.page-tarot-marseille .card-chosen {
  background: url("/images/bg/bg1.png") no-repeat scroll 50% 0 transparent;
  background-size: contain;
}
.page-tarot-marseille .card-chosen.bg2 {
  background-image: url("/images/bg/bg2.png");
  background-position: 50% 0;
}
.page-tarot-marseille .card-chosen.bg3 {
  background-image: url("/images/bg/bg3.png");
  background-position: 50% 0;
}
.page-tarot-marseille .card-chosen.bg4 {
  background-image: url("/images/bg/bg4.png");
  background-position: 50% 0;
}
.page-tarot-marseille .card-chosen.bg5 {
  background-image: url("/images/bg/bg5.png");
  background-position: 50% 0;
}
.page-tarot-marseille .card-chosen.bg6 {
  background-image: url("/images/bg/bg6.png");
  background-position: 50% 0;
}
.page-tarot-marseille .card-chosen.bg7 {
  background-image: url("/images/bg/bg7.png");
  background-position: 50% 0;
}
.page-tarot-marseille .card-chosen.bg8 {
  background-image: url("/images/bg/bg8.png");
  background-position: 50% 0;
}
.page-tarot-marseille .card-chosen.bg9 {
  background-image: url("/images/bg/bg9.png");
  background-position: 50% 0;
}
.page-tarot-marseille .card-chosen.bg10 {
  background-image: url("/images/bg/bg10.png");
  background-position: 50% 0;
}
.page-tarot-marseille .card-chosen.bg11 {
  background-image: url("/images/bg/bg11.png");
  background-position: 50% 0;
}
.page-tarot-marseille .card-chosen.bg {
  background-image: url("/images/bg/bg.png");
  background-position: 50% 0;
}
.page-tarot-marseille .card-chosen::after {
  content: "" !important;
}

@media screen and (max-width: 660px) {
  .page-tarot-marseille .h2-home-marseille {
    margin: 28px 0 0;
  }
  .page-tarot-marseille .card-home {
    /* Positionnement des cartes */
  }
  .page-tarot-marseille .card-home .card-block {
    width: 18%;
  }
  .page-tarot-marseille .card-home ul {
    aspect-ratio: 2.9;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(1) {
    left: 0%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(2) {
    left: 3.9047619048%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(3) {
    left: 7.8095238095%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(4) {
    left: 11.7142857143%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(5) {
    left: 15.619047619%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(6) {
    left: 19.5238095238%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(7) {
    left: 23.4285714286%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(8) {
    left: 27.3333333333%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(9) {
    left: 31.2380952381%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(10) {
    left: 35.1428571429%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(11) {
    left: 39.0476190476%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(12) {
    left: 42.9523809524%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(13) {
    left: 46.8571428571%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(14) {
    left: 50.7619047619%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(15) {
    left: 54.6666666667%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(16) {
    left: 58.5714285714%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(17) {
    left: 62.4761904762%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(18) {
    left: 66.380952381%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(19) {
    left: 70.2857142857%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(20) {
    left: 74.1904761905%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(21) {
    left: 78.0952380952%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(22) {
    left: 82%;
  }
}
@media screen and (max-width: 530px) {
  .page-tarot-marseille .card-home {
    /* Positionnement des cartes */
  }
  .page-tarot-marseille .card-home .card-block {
    width: 24%;
  }
  .page-tarot-marseille .card-home ul {
    aspect-ratio: 2;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(1) {
    left: 0%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(2) {
    left: 3.619047619%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(3) {
    left: 7.2380952381%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(4) {
    left: 10.8571428571%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(5) {
    left: 14.4761904762%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(6) {
    left: 18.0952380952%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(7) {
    left: 21.7142857143%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(8) {
    left: 25.3333333333%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(9) {
    left: 28.9523809524%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(10) {
    left: 32.5714285714%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(11) {
    left: 36.1904761905%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(12) {
    left: 39.8095238095%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(13) {
    left: 43.4285714286%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(14) {
    left: 47.0476190476%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(15) {
    left: 50.6666666667%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(16) {
    left: 54.2857142857%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(17) {
    left: 57.9047619048%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(18) {
    left: 61.5238095238%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(19) {
    left: 65.1428571429%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(20) {
    left: 68.7619047619%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(21) {
    left: 72.380952381%;
  }
  .page-tarot-marseille .card-home .card-block:nth-child(22) {
    left: 76%;
  }
}
.page-love-tarot, .page-love-tarot p {
  color: #fff;
}
.page-love-tarot header {
  background: url("/images/love-tarot/bg-header.jpg") no-repeat scroll 0 0;
  background-size: cover;
  -webkit-box-shadow: 0 1px 2px rgba(255, 255, 255, 0.25);
          box-shadow: 0 1px 2px rgba(255, 255, 255, 0.25);
}
.page-love-tarot .interpretation .col-md-12 > h3 {
  color: #fbf5d2;
}
.page-love-tarot .card-area {
  background: #000 url("/images/love-tarot/bg-amour.jpg") no-repeat scroll 50% 0;
  background-size: cover;
  overflow-x: hidden;
}
.page-love-tarot .card-home {
  width: 100%;
  /* Positionnement des cartes */
}
.page-love-tarot .card-home ul {
  width: 100%;
  min-height: 0;
  height: auto;
  left: 0;
  padding: 0;
}
.page-love-tarot .card-home .card-block {
  top: 0;
  -webkit-transition: all 0.5s ease-out, top 0.1s ease-out;
  transition: all 0.5s ease-out, top 0.1s ease-out;
}
.page-love-tarot .card-home .card-block:hover {
  top: -8px;
}
.page-love-tarot .card-home .card-block img {
  width: 100%;
  height: auto;
}
.page-love-tarot .card-home .card-block a {
  display: block;
}
.page-love-tarot .card-home .card-block {
  width: 15%;
}
.page-love-tarot .card-home ul {
  aspect-ratio: 4;
}
.page-love-tarot .card-home .card-block:nth-child(1) {
  left: 0%;
}
.page-love-tarot .card-home .card-block:nth-child(2) {
  left: 4.0476190476%;
}
.page-love-tarot .card-home .card-block:nth-child(3) {
  left: 8.0952380952%;
}
.page-love-tarot .card-home .card-block:nth-child(4) {
  left: 12.1428571429%;
}
.page-love-tarot .card-home .card-block:nth-child(5) {
  left: 16.1904761905%;
}
.page-love-tarot .card-home .card-block:nth-child(6) {
  left: 20.2380952381%;
}
.page-love-tarot .card-home .card-block:nth-child(7) {
  left: 24.2857142857%;
}
.page-love-tarot .card-home .card-block:nth-child(8) {
  left: 28.3333333333%;
}
.page-love-tarot .card-home .card-block:nth-child(9) {
  left: 32.380952381%;
}
.page-love-tarot .card-home .card-block:nth-child(10) {
  left: 36.4285714286%;
}
.page-love-tarot .card-home .card-block:nth-child(11) {
  left: 40.4761904762%;
}
.page-love-tarot .card-home .card-block:nth-child(12) {
  left: 44.5238095238%;
}
.page-love-tarot .card-home .card-block:nth-child(13) {
  left: 48.5714285714%;
}
.page-love-tarot .card-home .card-block:nth-child(14) {
  left: 52.619047619%;
}
.page-love-tarot .card-home .card-block:nth-child(15) {
  left: 56.6666666667%;
}
.page-love-tarot .card-home .card-block:nth-child(16) {
  left: 60.7142857143%;
}
.page-love-tarot .card-home .card-block:nth-child(17) {
  left: 64.7619047619%;
}
.page-love-tarot .card-home .card-block:nth-child(18) {
  left: 68.8095238095%;
}
.page-love-tarot .card-home .card-block:nth-child(19) {
  left: 72.8571428571%;
}
.page-love-tarot .card-home .card-block:nth-child(20) {
  left: 76.9047619048%;
}
.page-love-tarot .card-home .card-block:nth-child(21) {
  left: 80.9523809524%;
}
.page-love-tarot .card-home .card-block:nth-child(22) {
  left: 85%;
}
.page-love-tarot .card-chosen img {
  width: 100%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.page-love-tarot .card-chosen img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.page-love-tarot .card-chosen .hide-mask {
  display: none;
}
.page-love-tarot .card-block-wrap {
  margin-bottom: 16px;
  cursor: default;
}
.page-love-tarot .card-block-wrap .animated {
  pointer-events: none;
  cursor: default;
}
.page-love-tarot .last-card > img:last-child {
  left: 50%;
  position: absolute;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  z-index: -1;
}
.page-love-tarot svg path:nth-child(3) {
  opacity: 0.3;
}
.page-love-tarot svg text:nth-child(9), .page-love-tarot svg text:nth-child(10) {
  display: none;
}
.page-love-tarot svg text:nth-child(7) {
  font-family: "Nunito Sans", sans-serif !important;
}
.page-love-tarot .final-hearth .white-hearth {
  background: transparent url("/images/love-tarot/coeur-blanc.png") no-repeat scroll 50% 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 15%;
  width: 100%;
  display: none;
  position: relative;
}
.page-love-tarot #g1 span {
  font-family: "playballregular";
  position: absolute;
  color: #fff;
}
.page-love-tarot #g1 span {
  color: #fff;
  font-family: "playballregular";
  font-size: 4rem;
  left: 21px;
  position: absolute;
  text-transform: capitalize;
  top: 253px;
}
.page-love-tarot #g1 span:last-child {
  left: inherit;
  right: 29px;
}
.page-love-tarot .body-amour .last-step > h2 {
  margin: 2rem 0 6rem;
}
.page-love-tarot .body-amour .last-step h3 {
  font-size: 4rem;
  margin: 0 0 4rem;
  text-decoration: underline;
}
.page-love-tarot .body-amour .last-step p + h3 {
  color: #fff;
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 5rem;
  margin: 8rem 0 4rem;
  text-align: center;
}
.page-love-tarot .body-amour .last-step p + h3 {
  color: #fff;
  font-size: 3.3rem;
  font-weight: 500;
  line-height: 5rem;
  margin: 5rem 0 1rem;
  text-align: left;
  text-decoration: none;
}
@-webkit-keyframes fade {
  from {
    opacity: 100%;
  }
  to {
    opacity: 0;
  }
}
@keyframes fade {
  from {
    opacity: 100%;
  }
  to {
    opacity: 0;
  }
}
.page-love-tarot .final-hearth {
  display: none;
}
.page-love-tarot .final-hearth li {
  /*opacity: 0;*/
}
.page-love-tarot .final-hearth {
  background: none no-repeat scroll 50% 0 transparent;
  min-height: 555px;
}
.page-love-tarot .final-hearth .col-sm-6 li {
  left: 5%;
  text-align: center;
  top: 48%;
  width: 33.33%;
}
.page-love-tarot .final-hearth .col-sm-6 li:nth-child(2) {
  left: 33.33%;
  top: 110%;
}
.page-love-tarot .final-hearth .col-sm-6 li:nth-child(3) {
  left: 61.66%;
}
.page-love-tarot .final-hearth .col-sm-6 > ul {
  left: 0;
  position: relative;
  width: 100%;
}
.page-love-tarot .final-hearth .col-sm-3 > ul {
  left: 0;
  width: 100%;
}
.page-love-tarot .final-hearth .col-sm-3 li {
  display: block;
  left: inherit;
  margin: 5rem 0;
  position: relative;
  text-align: center;
  width: 100%;
}
.page-love-tarot .final-hearth img {
  opacity: 0;
}

/*------------------------------------------------------
          INTERPRETATION
--------------------------------------------------------*/
.page-love-tarot {
  /*.card .col-md-8.col-sm-6 h3{

  	margin: 0 0 1.5rem;
  	text-align: left;
  }*/
}
.page-love-tarot .interpretation + .card .col-sm-3 img {
  max-width: 127px;
  width: 100%;
}

/*------------------------------------------------------
          TIRAGE OUI NON
--------------------------------------------------------*/
.page-love-tarot .body-amour .card .chosen-amour ul {
  left: 0;
  width: 100%;
  text-align: center;
  max-width: 650px;
}
.page-love-tarot .body-amour .card-chosen.chosen-amour li {
  float: none;
  left: inherit;
  width: 24%;
}
.page-love-tarot .body-amour .card-chosen.chosen-amour .hide-mask {
  left: 0;
  width: 100% !important;
}
.page-love-tarot .body-amour .dark-section .card-chosen.chosen-amour {
  background: transparent none no-repeat scroll 0 0;
  min-height: inherit;
}
.page-love-tarot .body-amour .body-amour .dark-section {
  background: #000 url("/images/love-tarot/bg-amour.jpg") no-repeat scroll 50% 0/cover;
  overflow-x: hidden;
}
.page-love-tarot .saturate {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.page-love-tarot .body-amour .last-step .col-sm-3 img {
  margin: 0 0 3rem;
}
.page-love-tarot .body-amour .card .other-tarot ul {
  left: inherit;
}
.page-love-tarot .heart {
  stroke-dasharray: 540;
  stroke-dashoffset: 540;
  -webkit-animation: dash 3s forwards;
          animation: dash 3s forwards;
}
.page-love-tarot .final-hearth svg {
  display: block;
  left: 50%;
  margin: 0 auto 0 -150px;
  position: absolute;
}
.page-love-tarot .body-ouinon .dark-section {
  min-height: 800px;
}
@-webkit-keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}
.page-love-tarot .eva-sexe, .page-love-tarot .eva-sexe-suite {
  display: none;
  color: #fff;
  text-align: center;
  margin-top: 20px;
  min-height: 200px;
}
.page-love-tarot .body-ouinon .dark-section {
  min-height: 800px;
}

@media screen and (max-width: 780px) {
  .page-love-tarot .card-home {
    /* Positionnement des cartes */
  }
  .page-love-tarot .card-home .card-block {
    width: 20%;
  }
  .page-love-tarot .card-home ul {
    aspect-ratio: 3;
  }
  .page-love-tarot .card-home .card-block:nth-child(1) {
    left: 0%;
  }
  .page-love-tarot .card-home .card-block:nth-child(2) {
    left: 3.8095238095%;
  }
  .page-love-tarot .card-home .card-block:nth-child(3) {
    left: 7.619047619%;
  }
  .page-love-tarot .card-home .card-block:nth-child(4) {
    left: 11.4285714286%;
  }
  .page-love-tarot .card-home .card-block:nth-child(5) {
    left: 15.2380952381%;
  }
  .page-love-tarot .card-home .card-block:nth-child(6) {
    left: 19.0476190476%;
  }
  .page-love-tarot .card-home .card-block:nth-child(7) {
    left: 22.8571428571%;
  }
  .page-love-tarot .card-home .card-block:nth-child(8) {
    left: 26.6666666667%;
  }
  .page-love-tarot .card-home .card-block:nth-child(9) {
    left: 30.4761904762%;
  }
  .page-love-tarot .card-home .card-block:nth-child(10) {
    left: 34.2857142857%;
  }
  .page-love-tarot .card-home .card-block:nth-child(11) {
    left: 38.0952380952%;
  }
  .page-love-tarot .card-home .card-block:nth-child(12) {
    left: 41.9047619048%;
  }
  .page-love-tarot .card-home .card-block:nth-child(13) {
    left: 45.7142857143%;
  }
  .page-love-tarot .card-home .card-block:nth-child(14) {
    left: 49.5238095238%;
  }
  .page-love-tarot .card-home .card-block:nth-child(15) {
    left: 53.3333333333%;
  }
  .page-love-tarot .card-home .card-block:nth-child(16) {
    left: 57.1428571429%;
  }
  .page-love-tarot .card-home .card-block:nth-child(17) {
    left: 60.9523809524%;
  }
  .page-love-tarot .card-home .card-block:nth-child(18) {
    left: 64.7619047619%;
  }
  .page-love-tarot .card-home .card-block:nth-child(19) {
    left: 68.5714285714%;
  }
  .page-love-tarot .card-home .card-block:nth-child(20) {
    left: 72.380952381%;
  }
  .page-love-tarot .card-home .card-block:nth-child(21) {
    left: 76.1904761905%;
  }
  .page-love-tarot .card-home .card-block:nth-child(22) {
    left: 80%;
  }
}
@media screen and (max-width: 580px) {
  .page-love-tarot .card-home {
    /* Positionnement des cartes */
  }
  .page-love-tarot .card-home .card-block {
    width: 27%;
  }
  .page-love-tarot .card-home ul {
    aspect-ratio: 2.2;
  }
  .page-love-tarot .card-home .card-block:nth-child(1) {
    left: 0%;
  }
  .page-love-tarot .card-home .card-block:nth-child(2) {
    left: 3.4761904762%;
  }
  .page-love-tarot .card-home .card-block:nth-child(3) {
    left: 6.9523809524%;
  }
  .page-love-tarot .card-home .card-block:nth-child(4) {
    left: 10.4285714286%;
  }
  .page-love-tarot .card-home .card-block:nth-child(5) {
    left: 13.9047619048%;
  }
  .page-love-tarot .card-home .card-block:nth-child(6) {
    left: 17.380952381%;
  }
  .page-love-tarot .card-home .card-block:nth-child(7) {
    left: 20.8571428571%;
  }
  .page-love-tarot .card-home .card-block:nth-child(8) {
    left: 24.3333333333%;
  }
  .page-love-tarot .card-home .card-block:nth-child(9) {
    left: 27.8095238095%;
  }
  .page-love-tarot .card-home .card-block:nth-child(10) {
    left: 31.2857142857%;
  }
  .page-love-tarot .card-home .card-block:nth-child(11) {
    left: 34.7619047619%;
  }
  .page-love-tarot .card-home .card-block:nth-child(12) {
    left: 38.2380952381%;
  }
  .page-love-tarot .card-home .card-block:nth-child(13) {
    left: 41.7142857143%;
  }
  .page-love-tarot .card-home .card-block:nth-child(14) {
    left: 45.1904761905%;
  }
  .page-love-tarot .card-home .card-block:nth-child(15) {
    left: 48.6666666667%;
  }
  .page-love-tarot .card-home .card-block:nth-child(16) {
    left: 52.1428571429%;
  }
  .page-love-tarot .card-home .card-block:nth-child(17) {
    left: 55.619047619%;
  }
  .page-love-tarot .card-home .card-block:nth-child(18) {
    left: 59.0952380952%;
  }
  .page-love-tarot .card-home .card-block:nth-child(19) {
    left: 62.5714285714%;
  }
  .page-love-tarot .card-home .card-block:nth-child(20) {
    left: 66.0476190476%;
  }
  .page-love-tarot .card-home .card-block:nth-child(21) {
    left: 69.5238095238%;
  }
  .page-love-tarot .card-home .card-block:nth-child(22) {
    left: 73%;
  }
}
@media screen and (max-width: 767px) {
  .page-love-tarot .inline.full > li {
    width: 28%;
  }
  .page-love-tarot .final-hearth .col-sm-6 {
    margin-top: -70px;
  }
  .page-love-tarot .final-hearth .col-sm-6 li:nth-child(1) {
    left: 0;
    top: 0;
  }
  .page-love-tarot .final-hearth .col-sm-6 li:nth-child(2) {
    left: 33.5%;
    top: 40%;
  }
  .page-love-tarot .final-hearth .col-sm-6 li:nth-child(3) {
    left: auto;
    right: 0;
    top: 0;
  }
  .page-love-tarot .final-hearth .col-sm-3 > ul {
    height: 350px;
    min-height: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 16px 28px;
  }
  .page-love-tarot .final-hearth .col-sm-3 li {
    width: auto;
  }
  .page-love-tarot .final-hearth {
    background-size: contain !important;
    background-position: 50% 50% !important;
  }
  .page-love-tarot .final-hearth svg {
    top: 34%;
  }
  .page-love-tarot .right-header.align_right.social-network {
    text-align: center;
  }
  .page-love-tarot .social-network {
    margin: 1rem 0 2rem;
  }
  .page-love-tarot .logo {
    display: block;
    margin: 0 auto;
    width: 185px;
  }
}
@media screen and (max-width: 500px) {
  .page-love-tarot #g1 {
    height: 320px;
    width: 300px;
  }
  .page-love-tarot .body-amour .last-step h3 {
    font-size: 3rem;
    line-height: 3rem;
  }
  .page-love-tarot .body-amour .last-step .col-sm-6 p {
    text-align: justify;
  }
  .page-love-tarot .body-amour .last-step p + h3 {
    font-size: 2.5rem;
    line-height: 3rem;
  }
  .page-love-tarot .btn-group {
    margin: 2.5rem auto 2rem;
  }
}
.page-tarot-yes-no {
  /*.dark-section{
  	background: #000 url("/images/tarot-yes-no/bg-ouinon.jpg") no-repeat scroll 50% 0;
  	background-size: cover;
  	overflow-x: hidden;
  	padding: 5rem 0 7rem;
  }*/
  /*.last-step > h2{
  	margin: 2rem 0 6rem;
  }*/
  /*.last-step h3{
  	font-size: 4rem;
  	margin: 0 0 4rem;
  	text-decoration: underline;
  }
  .last-step p + h3{
  	color: #fff;
  	font-size: 4.8rem;
  	font-weight: 500;
  	line-height: 5rem;
  	margin: 8rem 0 4rem;
  	text-align: center;
  }
  .last-step p + h3{
  	color: #fff;
  	font-size: 3.3rem;
  	font-weight: 500;
  	line-height: 5rem;
  	margin: 5rem 0 1rem;
  	text-align: left;
  	text-decoration: none;
  }*/
  /*------------------------------------------------------
  		  TIRAGE OUI NON
  --------------------------------------------------------*/
}
.page-tarot-yes-no, .page-tarot-yes-no p {
  color: #fff;
}
.page-tarot-yes-no {
  background: url("/images/tarot-yes-no/bg-ouinon.jpg") no-repeat fixed center center #000000;
  background-size: cover;
}
.page-tarot-yes-no .card-home ul {
  width: auto;
  min-height: 0;
  left: 0;
}
.page-tarot-yes-no .card-home .card-block {
  top: 0;
  -webkit-transition: all 0.5s ease-out, top 0.15s ease-out;
  transition: all 0.5s ease-out, top 0.15s ease-out;
}
.page-tarot-yes-no .card-home .card-block a {
  display: block;
}
.page-tarot-yes-no .card-home .card-block img {
  width: 100%;
  height: auto;
}
.page-tarot-yes-no .card-home .card-block:hover {
  top: -10px;
}
.page-tarot-yes-no .card-home ul {
  aspect-ratio: 3.7;
}
.page-tarot-yes-no .card-home .card-block {
  width: 14%;
}
.page-tarot-yes-no .card-home .card-block:nth-child(1) {
  left: 0%;
}
.page-tarot-yes-no .card-home .card-block:nth-child(2) {
  left: 4.0952380952%;
}
.page-tarot-yes-no .card-home .card-block:nth-child(3) {
  left: 8.1904761905%;
}
.page-tarot-yes-no .card-home .card-block:nth-child(4) {
  left: 12.2857142857%;
}
.page-tarot-yes-no .card-home .card-block:nth-child(5) {
  left: 16.380952381%;
}
.page-tarot-yes-no .card-home .card-block:nth-child(6) {
  left: 20.4761904762%;
}
.page-tarot-yes-no .card-home .card-block:nth-child(7) {
  left: 24.5714285714%;
}
.page-tarot-yes-no .card-home .card-block:nth-child(8) {
  left: 28.6666666667%;
}
.page-tarot-yes-no .card-home .card-block:nth-child(9) {
  left: 32.7619047619%;
}
.page-tarot-yes-no .card-home .card-block:nth-child(10) {
  left: 36.8571428571%;
}
.page-tarot-yes-no .card-home .card-block:nth-child(11) {
  left: 40.9523809524%;
}
.page-tarot-yes-no .card-home .card-block:nth-child(12) {
  left: 45.0476190476%;
}
.page-tarot-yes-no .card-home .card-block:nth-child(13) {
  left: 49.1428571429%;
}
.page-tarot-yes-no .card-home .card-block:nth-child(14) {
  left: 53.2380952381%;
}
.page-tarot-yes-no .card-home .card-block:nth-child(15) {
  left: 57.3333333333%;
}
.page-tarot-yes-no .card-home .card-block:nth-child(16) {
  left: 61.4285714286%;
}
.page-tarot-yes-no .card-home .card-block:nth-child(17) {
  left: 65.5238095238%;
}
.page-tarot-yes-no .card-home .card-block:nth-child(18) {
  left: 69.619047619%;
}
.page-tarot-yes-no .card-home .card-block:nth-child(19) {
  left: 73.7142857143%;
}
.page-tarot-yes-no .card-home .card-block:nth-child(20) {
  left: 77.8095238095%;
}
.page-tarot-yes-no .card-home .card-block:nth-child(21) {
  left: 81.9047619048%;
}
.page-tarot-yes-no .card-home .card-block:nth-child(22) {
  left: 86%;
}
.page-tarot-yes-no #g1 {
  display: none;
  height: 320px;
  margin: 0 auto;
  max-width: 90%;
  opacity: 0;
  position: relative;
  top: -9rem;
  width: 400px;
}
.page-tarot-yes-no svg path:nth-child(3) {
  opacity: 0.3;
}
.page-tarot-yes-no svg text:nth-child(9), .page-tarot-yes-no svg text:nth-child(10) {
  display: none;
}
.page-tarot-yes-no svg text:nth-child(7) {
  font-family: "Nunito Sans", sans-serif !important;
}
.page-tarot-yes-no svg + svg {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}
.page-tarot-yes-no #g1 span {
  font-family: "playballregular";
  position: absolute;
  color: #fff;
}
.page-tarot-yes-no #g1 span {
  color: #fff;
  font-family: "playballregular";
  font-size: 4rem;
  left: 21px;
  position: absolute;
  text-transform: capitalize;
  top: 253px;
}
.page-tarot-yes-no #g1 span:last-child {
  left: inherit;
  right: 29px;
}
.page-tarot-yes-no .last-card > img:last-child {
  left: 50%;
  position: absolute;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  z-index: -1;
}
.page-tarot-yes-no .last-card.rotate {
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  -webkit-animation-name: pouf;
          animation-name: pouf;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}
@-webkit-keyframes pouf {
  from {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  to {
    -webkit-transform: rotateY(12000deg);
            transform: rotateY(12000deg);
  }
}
@keyframes pouf {
  from {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  to {
    -webkit-transform: rotateY(12000deg);
            transform: rotateY(12000deg);
  }
}
.page-tarot-yes-no .card-chosen img {
  max-width: 90%;
}
.page-tarot-yes-no .card .chosen-ouinon ul {
  left: 0;
  width: 100%;
  text-align: center;
}
.page-tarot-yes-no .card-chosen.chosen-ouinon li {
  float: none;
  left: inherit;
  width: 15%;
}
.page-tarot-yes-no .card-chosen.chosen-ouinon .hide-mask {
  left: 0;
  width: 100% !important;
}
.page-tarot-yes-no .dark-section .card-chosen.chosen-ouinon {
  background: none no-repeat scroll 0 0 transparent;
  min-height: inherit;
}
.page-tarot-yes-no .saturate {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.page-tarot-yes-no .last-step .col-sm-3 img {
  margin: 0 0 3rem;
}
.page-tarot-yes-no .dark-section {
  min-height: 800px;
}
.page-tarot-yes-no #form_inside {
  display: block;
}

@media screen and (max-width: 980px) {
  .page-tarot-yes-no .card ul {
    left: 0;
  }
}
@media screen and (max-width: 760px) {
  .page-tarot-yes-no .card-home ul {
    aspect-ratio: 2.6;
  }
  .page-tarot-yes-no .card-home .card-block {
    width: 20%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(1) {
    left: 0%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(2) {
    left: 3.8095238095%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(3) {
    left: 7.619047619%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(4) {
    left: 11.4285714286%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(5) {
    left: 15.2380952381%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(6) {
    left: 19.0476190476%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(7) {
    left: 22.8571428571%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(8) {
    left: 26.6666666667%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(9) {
    left: 30.4761904762%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(10) {
    left: 34.2857142857%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(11) {
    left: 38.0952380952%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(12) {
    left: 41.9047619048%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(13) {
    left: 45.7142857143%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(14) {
    left: 49.5238095238%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(15) {
    left: 53.3333333333%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(16) {
    left: 57.1428571429%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(17) {
    left: 60.9523809524%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(18) {
    left: 64.7619047619%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(19) {
    left: 68.5714285714%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(20) {
    left: 72.380952381%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(21) {
    left: 76.1904761905%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(22) {
    left: 80%;
  }
  .page-tarot-yes-no .card-chosen.chosen-ouinon li {
    width: 24%;
  }
  .page-tarot-yes-no .card-chosen.chosen-ouinon img {
    width: 90% !important;
  }
  .page-tarot-yes-no .card-chosen {
    max-width: 440px;
    margin: auto;
  }
}
@media screen and (max-width: 500px) {
  .page-tarot-yes-no .card-home h3 {
    font-size: 30px;
  }
  .page-tarot-yes-no .card-home h2 {
    margin-bottom: 22px;
  }
  .page-tarot-yes-no .card-home ul {
    aspect-ratio: 1.8;
  }
  .page-tarot-yes-no .card-home .card-block {
    width: 27%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(1) {
    left: 0%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(2) {
    left: 3.4761904762%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(3) {
    left: 6.9523809524%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(4) {
    left: 10.4285714286%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(5) {
    left: 13.9047619048%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(6) {
    left: 17.380952381%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(7) {
    left: 20.8571428571%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(8) {
    left: 24.3333333333%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(9) {
    left: 27.8095238095%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(10) {
    left: 31.2857142857%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(11) {
    left: 34.7619047619%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(12) {
    left: 38.2380952381%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(13) {
    left: 41.7142857143%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(14) {
    left: 45.1904761905%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(15) {
    left: 48.6666666667%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(16) {
    left: 52.1428571429%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(17) {
    left: 55.619047619%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(18) {
    left: 59.0952380952%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(19) {
    left: 62.5714285714%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(20) {
    left: 66.0476190476%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(21) {
    left: 69.5238095238%;
  }
  .page-tarot-yes-no .card-home .card-block:nth-child(22) {
    left: 73%;
  }
  .page-tarot-yes-no #g1 {
    height: 320px;
    width: 300px;
  }
  .page-tarot-yes-no .last-step h3 {
    font-size: 3rem;
    line-height: 3rem;
  }
  .page-tarot-yes-no .last-step p + h3 {
    font-size: 2.5rem;
    line-height: 3rem;
  }
}
.page-psychic-reading {
  overflow-x: hidden;
  --aspect-ratio: 0.655;
  /*------------------------------------------------------
  		  CONTENT
  --------------------------------------------------------*/
  /*------------------------------------------------------
  		  STEP
  --------------------------------------------------------*/
  /* --------- ???  ------------- */
  /*card flipper*/
  /*make circle*/
  /*============*/
  /*================*/
  /*===============
  step 5
  ==============*/
  /*======
  association
  =========*/
  /* Ajouts Guillaume */
}
.page-psychic-reading, .page-psychic-reading p {
  color: #fff;
}
.page-psychic-reading .card-area {
  background: url("/images/psychic-reading/bg.jpg") center center no-repeat #000000;
  background-size: cover;
  background-attachment: fixed;
}
.page-psychic-reading .dark-section {
  background: #000 url("/images/psychic-reading/bg.JPG") no-repeat scroll 50% 0/cover;
  overflow-x: hidden;
}
.page-psychic-reading .cards-round-deck > div:nth-child(1) {
  left: 0%;
}
.page-psychic-reading .cards-round-deck > div:nth-child(2) {
  left: 2.86%;
}
.page-psychic-reading .cards-round-deck > div:nth-child(3) {
  left: 5.71%;
}
.page-psychic-reading .cards-round-deck > div:nth-child(4) {
  left: 8.57%;
}
.page-psychic-reading .cards-round-deck > div:nth-child(5) {
  left: 11.43%;
}
.page-psychic-reading .cards-round-deck > div:nth-child(6) {
  left: 14.29%;
}
.page-psychic-reading .cards-round-deck > div:nth-child(7) {
  left: 17.14%;
}
.page-psychic-reading .cards-round-deck > div:nth-child(8) {
  left: 20%;
}
.page-psychic-reading .cards-round-deck > div:nth-child(9) {
  left: 22.86%;
}
.page-psychic-reading .cards-round-deck > div:nth-child(10) {
  left: 25.71%;
}
.page-psychic-reading .cards-round-deck > div:nth-child(11) {
  left: 28.57%;
}
.page-psychic-reading .cards-round-deck > div:nth-child(12) {
  left: 31.43%;
}
.page-psychic-reading .cards-round-deck > div:nth-child(13) {
  left: 34.29%;
}
.page-psychic-reading .cards-round-deck > div:nth-child(14) {
  left: 37.14%;
}
.page-psychic-reading .cards-round-deck > div:nth-child(15) {
  left: 40%;
}
.page-psychic-reading .cards-round-deck > div:nth-child(16) {
  left: 42.86%;
}
.page-psychic-reading .cards-round-deck > div:nth-child(17) {
  left: 45.71%;
}
.page-psychic-reading .cards-round-deck > div:nth-child(18) {
  left: 48.57%;
}
.page-psychic-reading .cards-round-deck > div:nth-child(19) {
  left: 51.43%;
}
.page-psychic-reading .cards-round-deck > div:nth-child(20) {
  left: 54.29%;
}
.page-psychic-reading .cards-round-deck > div:nth-child(21) {
  left: 57.14%;
}
.page-psychic-reading .cards-round-deck > div:nth-child(22) {
  left: 60%;
}
.page-psychic-reading .cards-round-deck > div:nth-child(23) {
  left: 62.86%;
}
.page-psychic-reading .cards-round-deck > div:nth-child(24) {
  left: 65.71%;
}
.page-psychic-reading .cards-round-deck > div:nth-child(25) {
  left: 68.57%;
}
.page-psychic-reading .cards-round-deck > div:nth-child(26) {
  left: 71.43%;
}
.page-psychic-reading .cards-round-deck > div:nth-child(27) {
  left: 74.29%;
}
.page-psychic-reading .cards-round-deck > div:nth-child(28) {
  left: 77.14%;
}
.page-psychic-reading .cards-round-deck > div:nth-child(29) {
  left: 80%;
}
.page-psychic-reading .cards-round-deck > div:nth-child(30) {
  left: 82.86%;
}
.page-psychic-reading .cards-round-deck > div:nth-child(31) {
  left: 85.71%;
}
.page-psychic-reading .cards-round-deck > div:nth-child(32) {
  left: 88.57%;
}
.page-psychic-reading .cards-round-deck > div:nth-child(33) {
  left: 91.43%;
}
.page-psychic-reading .cards-round-deck > div:nth-child(34) {
  left: 94.29%;
}
.page-psychic-reading .cards-round-deck > div:nth-child(35) {
  left: 97.14%;
}
.page-psychic-reading .cards-round-deck > div:nth-child(36) {
  left: 100%;
}
.page-psychic-reading .card ul {
  left: 31px;
  min-height: 285px;
}
.page-psychic-reading li.last-card img {
  position: absolute;
}
.page-psychic-reading li.last-card img:nth-child(1) {
  left: 20%;
  top: 0;
}
.page-psychic-reading li.last-card img:nth-child(2) {
  left: 45%;
  top: 0;
}
.page-psychic-reading li.last-card img:nth-child(3) {
  left: 70%;
  top: 0;
}
.page-psychic-reading li.last-card img:nth-child(4) {
  left: 20%;
  top: 250px;
}
.page-psychic-reading li.last-card img:nth-child(5) {
  left: 45%;
  top: 250px;
}
.page-psychic-reading li.last-card img:nth-child(6) {
  left: 70%;
  top: 250px;
}
.page-psychic-reading .card-chosen .hide-mask {
  left: 0;
  width: 100%;
  height: 100%;
}
.page-psychic-reading .last-card.rotate {
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  -webkit-animation-name: pouf;
          animation-name: pouf;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}
.page-psychic-reading svg + svg {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}
.page-psychic-reading .blink {
  -webkit-animation: blink 1s infinite;
  animation: blink 1s infinite;
}
@-webkit-keyframes blink {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes blink {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes pouf {
  from {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  to {
    -webkit-transform: rotateY(12000deg);
            transform: rotateY(12000deg);
  }
}
.page-psychic-reading .before-results .card-front-only {
  opacity: 0;
}
.page-psychic-reading .before-results .card-front-only.card-1 {
  top: 0;
}
.page-psychic-reading .before-results .card-front-only.card-2 {
  -webkit-transform: rotate(36deg);
          transform: rotate(36deg);
  left: 58%;
  top: 5%;
}
.page-psychic-reading .before-results .card-front-only.card-3 {
  -webkit-transform: rotate(72deg);
          transform: rotate(72deg);
  left: 66%;
  top: 17%;
}
.page-psychic-reading .before-results .card-front-only.card-4 {
  -webkit-transform: rotate(108deg);
          transform: rotate(108deg);
  top: 34%;
  left: 66%;
}
.page-psychic-reading .before-results .card-front-only.card-5 {
  -webkit-transform: rotate(144deg);
          transform: rotate(144deg);
  left: 56%;
  top: 48%;
}
.page-psychic-reading .before-results .card-front-only.card-6 {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  left: 42%;
  top: 52%;
}
.page-psychic-reading .before-results .card-front-only.card-7 {
  -webkit-transform: rotate(216deg);
          transform: rotate(216deg);
  left: 27%;
  top: 47%;
}
.page-psychic-reading .before-results .card-front-only.card-8 {
  -webkit-transform: rotate(252deg);
          transform: rotate(252deg);
  left: 17%;
  top: 33%;
}
.page-psychic-reading .before-results .card-front-only.card-9 {
  -webkit-transform: rotate(288deg);
          transform: rotate(288deg);
  left: 17%;
  top: 16%;
}
.page-psychic-reading .before-results .card-front-only.card-10 {
  -webkit-transform: rotate(324deg);
          transform: rotate(324deg);
  left: 27%;
  top: 5%;
}
.page-psychic-reading .line-content-init .ligne-1, .page-psychic-reading .line-content-init .ligne-2, .page-psychic-reading .line-content-init .ligne-3, .page-psychic-reading .line-content-init .ligne-4, .page-psychic-reading .line-content-init .ligne-5 {
  width: 27%;
  height: 0.3%;
  background: #ffff00;
  position: absolute;
  top: 35.5%;
  left: 34.5%;
  opacity: 0;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.page-psychic-reading .line-content-init .ligne-1 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.page-psychic-reading .line-content-init .ligne-2 {
  -webkit-transform: rotate(123deg);
          transform: rotate(123deg);
}
.page-psychic-reading .line-content-init .ligne-3 {
  -webkit-transform: rotate(160deg);
          transform: rotate(160deg);
}
.page-psychic-reading .line-content-init .ligne-4 {
  -webkit-transform: rotate(200deg);
          transform: rotate(200deg);
}
.page-psychic-reading .line-content-init .ligne-5 {
  -webkit-transform: rotate(234deg);
          transform: rotate(234deg);
}
.page-psychic-reading .association-left, .page-psychic-reading .association-right, .page-psychic-reading .association-bottom {
  opacity: 0;
}
.page-psychic-reading .line-content-final .line-1, .page-psychic-reading .line-content-final .line-2, .page-psychic-reading .line-content-final .line-3 {
  width: 52.2%;
  height: 2px;
  background: #3fff56;
  position: absolute;
  top: 9%;
  left: 24.1%;
  opacity: 0;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.page-psychic-reading .line-content-final .line-1 {
  width: 52.2%;
  top: 9%;
  left: 24.1%;
}
.page-psychic-reading .line-content-final .line-2 {
  width: 44.8%;
  top: 49.3%;
  left: 40.8%;
  -webkit-transform: rotate(-54.5deg);
          transform: rotate(-54.5deg);
}
.page-psychic-reading .line-content-final .line-3 {
  width: 44.8%;
  top: 49.3%;
  left: 14.8%;
  -webkit-transform: rotate(54.5deg);
          transform: rotate(54.5deg);
}
.page-psychic-reading .faceGraphic {
  position: absolute;
  top: 13%;
  left: 50%;
  margin-left: -160px;
  opacity: 0;
}
.page-psychic-reading .faceGraphic.rotate {
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
  -webkit-animation-name: rotate;
          animation-name: rotate;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.page-psychic-reading .before-results.rotate {
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
  -webkit-animation-name: bizarre;
          animation-name: bizarre;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
@-webkit-keyframes bizarre {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(3);
            transform: scale(3);
  }
}
@keyframes bizarre {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(3);
            transform: scale(3);
  }
}
@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(2160deg);
            transform: rotate(2160deg);
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.page-psychic-reading .blink {
  -webkit-animation: blink 2s ease 1;
          animation: blink 2s ease 1;
}
.page-psychic-reading .interpretation p + h2 {
  margin-top: 9rem;
}
.page-psychic-reading .card li {
  position: absolute;
  display: none;
}
.page-psychic-reading .card li.norm {
  top: -200px;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.page-psychic-reading .moveOpenCards .card-inner .name {
  position: absolute;
  top: 188px;
  width: 114px;
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
  padding: 0px 0 3px;
}
.page-psychic-reading .cards-round-deck .name {
  display: none;
}
.page-psychic-reading .card-front-only .name, .page-psychic-reading .center.detail .name, .page-psychic-reading .center.to-insert .name, .page-psychic-reading .center.detailgo .name {
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
  padding: 3px 0;
}
.page-psychic-reading .card-front-only img {
  width: 100%;
}
.page-psychic-reading .card-block:hover {
  cursor: pointer;
}
.page-psychic-reading .moveOpenCards a {
  cursor: inherit;
}
.page-psychic-reading .card form {
  display: none;
}
.page-psychic-reading .card-block {
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}
.page-psychic-reading .card-block.retourne {
  z-index: 100;
  -webkit-transform: scale3d(1.4, 1.4, 1.4);
          transform: scale3d(1.4, 1.4, 1.4);
}
.page-psychic-reading .card-block.retourne .card-inner {
  -webkit-transform: rotateY(179.9deg);
          transform: rotateY(179.9deg);
}
.page-psychic-reading .card-block, .page-psychic-reading .pseudo-card {
  height: auto;
  width: 15%;
  aspect-ratio: var(--aspect-ratio);
}
.page-psychic-reading .pseudo-card {
  margin-right: -100% !important;
}
.page-psychic-reading .card-inner {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  position: relative;
}
.page-psychic-reading .card-back, .page-psychic-reading .card-front {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: var(--aspect-ratio);
}
.page-psychic-reading .card-back {
  z-index: 2;
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  background: url("/images/psychic-reading/card-back.png") center center no-repeat;
  background-size: cover;
}
.page-psychic-reading .card-front {
  -webkit-transform: rotateY(179.9deg);
          transform: rotateY(179.9deg);
}
.page-psychic-reading .card img {
  width: 100%;
}
.page-psychic-reading .nom-carte {
  position: absolute;
  bottom: 2px;
  left: 2px;
  right: 2px;
  margin: 0 auto;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.page-psychic-reading .cards-round-deck {
  position: relative;
  height: auto;
  aspect-ratio: 4.2;
  margin-bottom: 0;
  margin-right: 13%;
}
.page-psychic-reading .cards-round-deck .card-block {
  position: absolute;
  left: 250px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
}
.page-psychic-reading .cards-round-deck .card-block:hover {
  margin-top: -20px;
}
.page-psychic-reading .moveOpenCards {
  position: absolute;
  bottom: 100%;
  width: 100%;
  height: auto;
  margin: auto;
  pointer-events: none;
}
.page-psychic-reading .moveOpenCards .card-block, .page-psychic-reading .moveOpenCards .pseudo-card {
  aspect-ratio: var(--aspect-ratio);
  display: inline-block;
  z-index: 999;
  margin-right: -5.6%;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}
.page-psychic-reading .moveOpenCards .animation-done {
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}
.page-psychic-reading .forEffect .card-block {
  position: absolute;
  -webkit-transition: All 0.5s ease-in;
  transition: All 0.5s ease-in;
  z-index: 9999;
  -webkit-box-shadow: 4px 3px 19px #000000;
          box-shadow: 4px 3px 19px #000000;
  aspect-ratio: var(--aspect-ratio);
}
.page-psychic-reading .t-pageHeader {
  text-align: center;
  max-width: 600px;
  margin: auto;
}
.page-psychic-reading .t-pageHeader h1 {
  color: #ffffff;
}
.page-psychic-reading .t-pageHeader h2 {
  color: #fff09c;
  margin: 0 0 30px;
  font-size: 28px;
}
.page-psychic-reading .c-intro {
  color: #fff;
  text-align: center;
  padding-top: 0;
}
.page-psychic-reading .c-intro h1 {
  position: relative;
  display: inline-block;
  border-bottom: 2px solid #fff;
  margin-bottom: 32px;
}
.page-psychic-reading .c-intro p {
  max-width: 630px;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
}
.page-psychic-reading .before-results {
  position: relative;
  width: 710px;
  height: 710px;
  margin: 0px auto;
}
.page-psychic-reading .before-results .card-front-only {
  position: absolute;
  left: 42.5%;
  top: 25%;
  -webkit-transition: All 0.6s ease-in;
  transition: All 0.6s ease-in;
  z-index: 50;
  width: 12.5%;
}
.page-psychic-reading .before-results .card-front-only:after {
  content: "";
  background: #f0ff00;
  height: 0;
  z-index: -1;
  width: 2px;
  position: absolute;
  top: 100%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-transition: all 0.8s ease-in;
  transition: all 0.8s ease-in;
}
.page-psychic-reading .before-results .card-front-only.yellow-line:after {
  height: 150%;
  width: 2px;
  opacity: 1;
}
.page-psychic-reading .before-results .card-front-only:before {
  content: attr(data-number);
  background: #fff;
  color: #ff0000;
  text-align: center;
  line-height: 24px;
  font-weight: bold;
  border-radius: 50%;
  opacity: 0;
  z-index: 0;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 100%;
  margin-top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-transition: All 0.3s ease-in;
  transition: All 0.3s ease-in;
}
.page-psychic-reading .before-results .card-front-only.showNumbers:before {
  opacity: 1;
  margin-top: 20px;
}
.page-psychic-reading .before-results .card-front-only.yellow-line.card-4:after,
.page-psychic-reading .before-results .card-front-only.yellow-line.card-5:after,
.page-psychic-reading .before-results .card-front-only.yellow-line.card-6:after,
.page-psychic-reading .before-results .card-front-only.yellow-line.card-4:before,
.page-psychic-reading .before-results .card-front-only.yellow-line.card-5:before,
.page-psychic-reading .before-results .card-front-only.yellow-line.card-6:before {
  display: none;
}
.page-psychic-reading .association-left, .page-psychic-reading .association-right {
  float: left;
  width: 50%;
}
.page-psychic-reading .associations {
  text-align: center;
  position: relative;
}
.page-psychic-reading .associations .tehConnectingTriangle {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 80%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 99;
  opacity: 0;
  -webkit-transition: All 0.8s ease-in;
  transition: All 0.8s ease-in;
}
.page-psychic-reading .associations .tehConnectingTriangle.active {
  opacity: 1;
}
.page-psychic-reading .associations span {
  font-family: "Playball", cursive;
  font-size: 18px;
  display: block;
  color: #fff;
}
.page-psychic-reading .associations strong {
  text-decoration: underline;
  color: #fff;
  font-weight: normal;
  font-size: 24px;
}
.page-psychic-reading .associations .card-front-only {
  display: inline-block;
  margin: 15px 6px;
  width: 90px;
}
.page-psychic-reading .association-top {
  margin-bottom: 50px;
}
.page-psychic-reading .cards-round-deck .card-block.zero-opacity {
  z-index: -100;
}
.page-psychic-reading .cards-round-deck .card-block.zero-opacity .card-inner {
  opacity: 0 !important;
}
.page-psychic-reading .eva-sexe {
  display: none;
}
.page-psychic-reading .eva-sexe, .page-psychic-reading .eva-sexe-suite {
  display: none;
  color: #fff;
  text-align: center;
  margin-top: 20px;
  min-height: 200px;
}
.page-psychic-reading .middle-cards, .page-psychic-reading #ajax_question {
  padding: 0 25px;
  margin-top: 20px;
}

@media screen and (max-width: 1200px) {
  .page-psychic-reading .card ul {
    left: 22px;
  }
}
@media screen and (max-width: 960px) {
  .page-psychic-reading .moveOpenCards .card-block, .page-psychic-reading .moveOpenCards .pseudo-card {
    width: 17%;
    margin-right: -7.9%;
  }
}
@media screen and (max-width: 800px) {
  .page-psychic-reading .card ul {
    left: -50px;
    margin-top: 35px;
  }
  .page-psychic-reading .line-content-final .line-1, .page-psychic-reading .line-content-final .ligne-1 {
    left: 15.1%;
  }
  .page-psychic-reading .line-content-final .line-2, .page-psychic-reading .line-content-final .ligne-2 {
    left: 37.8%;
  }
  .page-psychic-reading .line-content-final .line-3, .page-psychic-reading .line-content-final .ligne-3 {
    left: 2.8%;
  }
  .page-psychic-reading .faceGraphic {
    top: 8%;
  }
  .page-psychic-reading .association-top {
    margin-bottom: 0px !important;
  }
  .page-psychic-reading .ten-cards .card-block-wrap {
    padding: 0px;
  }
  .page-psychic-reading .t-pageHeader h2 {
    font-size: 20px;
  }
  .page-psychic-reading .cards-round-deck {
    margin-right: 14.5%;
    aspect-ratio: 4;
  }
  .page-psychic-reading .cards-round-deck {
    margin-right: 19%;
    aspect-ratio: 3;
  }
  .page-psychic-reading .cards-round-deck .card-block {
    width: 22%;
  }
  .page-psychic-reading .moveOpenCards .card-block, .page-psychic-reading .moveOpenCards .pseudo-card {
    width: 20%;
    margin-right: -11.3%;
  }
}
@media screen and (max-width: 767px) {
  .page-psychic-reading .dark-section .card-chosen::after {
    left: 0;
  }
  .page-psychic-reading .c-intro {
    padding-top: 10px !important;
  }
  .page-psychic-reading .card ul {
    left: -136px;
    min-height: 120px;
  }
  .page-psychic-reading #g1 {
    height: 320px;
    width: 300px;
  }
  .page-psychic-reading .card li .name {
    top: 119px;
    width: 74px;
  }
  .page-psychic-reading .association-top .card-front-only {
    max-width: 35%;
    vertical-align: top;
  }
  .page-psychic-reading .line-content-final {
    display: none;
  }
  .page-psychic-reading .associations .name {
    display: none;
  }
  .page-psychic-reading .card-front-only .name, .page-psychic-reading .center.detail .name, .page-psychic-reading .center.detailgo .name, .page-psychic-reading .center.to-insert .name {
    font-size: 0.8rem;
  }
  .page-psychic-reading .card-block-wrap {
    vertical-align: top;
  }
  .page-psychic-reading .before-results {
    width: 90vw;
    height: 90vw;
  }
}
@media screen and (max-width: 640px) {
  .page-psychic-reading .cards-round-deck {
    margin-right: 22.5%;
    aspect-ratio: 2.3;
  }
  .page-psychic-reading .cards-round-deck .card-block {
    width: 28%;
  }
}
@media screen and (max-width: 520px) {
  .page-psychic-reading .cards-round-deck {
    margin-right: 30%;
    aspect-ratio: 1.6;
  }
  .page-psychic-reading .cards-round-deck .card-block {
    width: 40%;
  }
  .page-psychic-reading .moveOpenCards .card-block, .page-psychic-reading .moveOpenCards .pseudo-card {
    width: 30%;
    margin-right: -22.5%;
  }
}
@media screen and (max-width: 380px) {
  .page-psychic-reading .cards-round-deck {
    margin-right: 36%;
    aspect-ratio: 1.3;
  }
  .page-psychic-reading .cards-round-deck .card-block {
    width: 57%;
  }
  .page-psychic-reading .moveOpenCards .card-block, .page-psychic-reading .moveOpenCards .pseudo-card {
    width: 38%;
    margin-right: -31.5%;
  }
}
@media screen and (max-width: 320px) {
  .page-psychic-reading .cards-round-deck {
    margin: 0 0 20px -32px;
  }
}
.page-celtic-cross-tarot {
  /*------------------------------------------------------
            STEP
  --------------------------------------------------------*/
  /*.last-step h3{
  	color: #fff;
  	font-size: 3.3rem;
  	font-weight: 500;
  	line-height: 5rem;
  	margin: 0 0 1rem;
  	text-align: left;
  	text-decoration: none;
  }*/
  /*------------------------------------------------------
  		  TIRAGE PERSAN
  --------------------------------------------------------*/
}
.page-celtic-cross-tarot .dark-section {
  background: #000 url("/images/celtic-cross-tarot/bg-persan.jpg") no-repeat fixed 50% 0;
  background-size: cover;
  overflow-x: hidden;
  padding: 7rem 0 7rem;
}
.page-celtic-cross-tarot .card form {
  display: none;
}
.page-celtic-cross-tarot #form_inside {
  display: block;
}
.page-celtic-cross-tarot .card-home .nom-carte {
  display: none;
  position: absolute;
  min-width: 100%;
}
.page-celtic-cross-tarot .card-home .nom-carte.voir {
  display: block;
}
.page-celtic-cross-tarot .card-front {
  text-align: center;
}
.page-celtic-cross-tarot .card img {
  width: 100%;
  height: auto;
}
.page-celtic-cross-tarot .card .hidden-card {
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transform: rotateY(90deg);
          transform: rotateY(90deg);
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.page-celtic-cross-tarot .card-home li:nth-child(1) {
  left: 0%;
  -webkit-transform: rotate(-28deg);
          transform: rotate(-28deg);
  top: 86px;
}
.page-celtic-cross-tarot .card-home li:nth-child(2) {
  left: 5.56%;
  -webkit-transform: rotate(-24deg);
          transform: rotate(-24deg);
  top: 62px;
}
.page-celtic-cross-tarot .card-home li:nth-child(3) {
  left: 11.11%;
  -webkit-transform: rotate(-21deg);
          transform: rotate(-21deg);
  top: 44px;
}
.page-celtic-cross-tarot .card-home li:nth-child(4) {
  left: 16.67%;
  -webkit-transform: rotate(-17deg);
          transform: rotate(-17deg);
  top: 32px;
}
.page-celtic-cross-tarot .card-home li:nth-child(5) {
  left: 22.22%;
  -webkit-transform: rotate(-13deg);
          transform: rotate(-13deg);
  top: 22px;
}
.page-celtic-cross-tarot .card-home li:nth-child(6) {
  left: 27.78%;
  -webkit-transform: rotate(-9deg);
          transform: rotate(-9deg);
  top: 14px;
}
.page-celtic-cross-tarot .card-home li:nth-child(7) {
  left: 33.33%;
  -webkit-transform: rotate(-6deg);
          transform: rotate(-6deg);
  top: 7px;
}
.page-celtic-cross-tarot .card-home li:nth-child(8) {
  left: 38.89%;
  -webkit-transform: rotate(-3deg);
          transform: rotate(-3deg);
  top: 3px;
}
.page-celtic-cross-tarot .card-home li:nth-child(9) {
  left: 44.44%;
  -webkit-transform: rotate(-1deg);
          transform: rotate(-1deg);
  top: 1px;
}
.page-celtic-cross-tarot .card-home li:nth-child(10) {
  left: 50%;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  top: 0px;
}
.page-celtic-cross-tarot .card-home li:nth-child(11) {
  left: 55.56%;
  -webkit-transform: rotate(1deg);
          transform: rotate(1deg);
  top: 1px;
}
.page-celtic-cross-tarot .card-home li:nth-child(12) {
  left: 61.11%;
  -webkit-transform: rotate(3deg);
          transform: rotate(3deg);
  top: 3px;
}
.page-celtic-cross-tarot .card-home li:nth-child(13) {
  left: 66.67%;
  -webkit-transform: rotate(6deg);
          transform: rotate(6deg);
  top: 7px;
}
.page-celtic-cross-tarot .card-home li:nth-child(14) {
  left: 72.22%;
  -webkit-transform: rotate(9deg);
          transform: rotate(9deg);
  top: 14px;
}
.page-celtic-cross-tarot .card-home li:nth-child(15) {
  left: 77.78%;
  -webkit-transform: rotate(13deg);
          transform: rotate(13deg);
  top: 22px;
}
.page-celtic-cross-tarot .card-home li:nth-child(16) {
  left: 83.33%;
  -webkit-transform: rotate(17deg);
          transform: rotate(17deg);
  top: 32px;
}
.page-celtic-cross-tarot .card-home li:nth-child(17) {
  left: 88.89%;
  -webkit-transform: rotate(21deg);
          transform: rotate(21deg);
  top: 44px;
}
.page-celtic-cross-tarot .card-home li:nth-child(18) {
  left: 94.44%;
  -webkit-transform: rotate(24deg);
          transform: rotate(24deg);
  top: 62px;
}
.page-celtic-cross-tarot .card-home li:nth-child(19) {
  left: 100%;
  -webkit-transform: rotate(28deg);
          transform: rotate(28deg);
  top: 86px;
}
.page-celtic-cross-tarot .card-home li:nth-child(1) .hide-mask {
  left: 0%;
  -webkit-transform: rotate(-28deg);
          transform: rotate(-28deg);
  top: 86px;
}
.page-celtic-cross-tarot .card-home li:nth-child(2) .hide-mask {
  left: 5.56%;
  -webkit-transform: rotate(-24deg);
          transform: rotate(-24deg);
  top: 62px;
}
.page-celtic-cross-tarot .card-home li:nth-child(3) .hide-mask {
  left: 11.11%;
  -webkit-transform: rotate(-21deg);
          transform: rotate(-21deg);
  top: 44px;
}
.page-celtic-cross-tarot .card-home li:nth-child(4) .hide-mask {
  left: 16.67%;
  -webkit-transform: rotate(-17deg);
          transform: rotate(-17deg);
  top: 32px;
}
.page-celtic-cross-tarot .card-home li:nth-child(5) .hide-mask {
  left: 22.22%;
  -webkit-transform: rotate(-13deg);
          transform: rotate(-13deg);
  top: 22px;
}
.page-celtic-cross-tarot .card-home li:nth-child(6) .hide-mask {
  left: 27.78%;
  -webkit-transform: rotate(-9deg);
          transform: rotate(-9deg);
  top: 14px;
}
.page-celtic-cross-tarot .card-home li:nth-child(7) .hide-mask {
  left: 33.33%;
  -webkit-transform: rotate(-6deg);
          transform: rotate(-6deg);
  top: 7px;
}
.page-celtic-cross-tarot .card-home li:nth-child(8) .hide-mask {
  left: 38.89%;
  -webkit-transform: rotate(-3deg);
          transform: rotate(-3deg);
  top: 3px;
}
.page-celtic-cross-tarot .card-home li:nth-child(9) .hide-mask {
  left: 44.44%;
  -webkit-transform: rotate(-1deg);
          transform: rotate(-1deg);
  top: 1px;
}
.page-celtic-cross-tarot .card-home li:nth-child(10) .hide-mask {
  left: 50%;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  top: 0px;
}
.page-celtic-cross-tarot .card-home li:nth-child(11) .hide-mask {
  left: 55.56%;
  -webkit-transform: rotate(1deg);
          transform: rotate(1deg);
  top: 1px;
}
.page-celtic-cross-tarot .card-home li:nth-child(12) .hide-mask {
  left: 61.11%;
  -webkit-transform: rotate(3deg);
          transform: rotate(3deg);
  top: 3px;
}
.page-celtic-cross-tarot .card-home li:nth-child(13) .hide-mask {
  left: 66.67%;
  -webkit-transform: rotate(6deg);
          transform: rotate(6deg);
  top: 7px;
}
.page-celtic-cross-tarot .card-home li:nth-child(14) .hide-mask {
  left: 72.22%;
  -webkit-transform: rotate(9deg);
          transform: rotate(9deg);
  top: 14px;
}
.page-celtic-cross-tarot .card-home li:nth-child(15) .hide-mask {
  left: 77.78%;
  -webkit-transform: rotate(13deg);
          transform: rotate(13deg);
  top: 22px;
}
.page-celtic-cross-tarot .card-home li:nth-child(16) .hide-mask {
  left: 83.33%;
  -webkit-transform: rotate(17deg);
          transform: rotate(17deg);
  top: 32px;
}
.page-celtic-cross-tarot .card-home li:nth-child(17) .hide-mask {
  left: 88.89%;
  -webkit-transform: rotate(21deg);
          transform: rotate(21deg);
  top: 44px;
}
.page-celtic-cross-tarot .card-home li:nth-child(18) .hide-mask {
  left: 94.44%;
  -webkit-transform: rotate(24deg);
          transform: rotate(24deg);
  top: 62px;
}
.page-celtic-cross-tarot .card-home li:nth-child(19) .hide-mask {
  left: 100%;
  -webkit-transform: rotate(28deg);
          transform: rotate(28deg);
  top: 86px;
}
.page-celtic-cross-tarot .card-home li.norm {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  top: -210px;
}
.page-celtic-cross-tarot .card-home li.norm .hide-mask {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  top: 0px;
  left: 0;
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important;
}
.page-celtic-cross-tarot .card ul {
  margin: 0 auto;
  min-height: 0;
  position: relative;
  width: auto;
  left: initial;
}
.page-celtic-cross-tarot .card-home ul {
  margin-right: 13%;
  margin-bottom: 26%;
  padding-bottom: 30px;
}
.page-celtic-cross-tarot .placeholder {
  position: initial;
  opacity: 1;
  pointer-events: none;
  aspect-ratio: 1/1.6;
  margin-bottom: 118px;
}
.page-celtic-cross-tarot .dark-section .card-chosen {
  min-height: 0;
}
.page-celtic-cross-tarot .card-chosen .card-block-wrap {
  min-width: 0;
  cursor: default;
}
.page-celtic-cross-tarot .card-chosen .nom-carte {
  position: initial;
  /*white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;*/
  word-break: break-all;
  -ms-hyphens: auto;
      hyphens: auto;
}
.page-celtic-cross-tarot .card-chosen img {
  opacity: 1;
  display: block; /*max-width: 90%; width: 114px; margin: 0 auto;*/
  -webkit-transition: 2s ease 0s;
  transition: 2s ease 0s;
}
.page-celtic-cross-tarot .card-chosen img.hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.page-celtic-cross-tarot .card-chosen .animated {
  pointer-events: none;
}
.page-celtic-cross-tarot .for-animation {
  max-width: 560px;
  margin: auto;
  min-height: 600px !important;
}
.page-celtic-cross-tarot .last-card {
  width: auto !important;
  margin-right: 114px;
  position: relative;
  float: none;
  left: initial !important;
  position: relative;
}
.page-celtic-cross-tarot .last-card img {
  position: absolute;
  width: 114px !important;
}
.page-celtic-cross-tarot .last-card img:nth-child(1) {
  left: 0%;
  top: 0;
}
.page-celtic-cross-tarot .last-card img:nth-child(2) {
  left: 50%;
  top: 0;
}
.page-celtic-cross-tarot .last-card img:nth-child(3) {
  left: 100%;
  top: 0;
}
.page-celtic-cross-tarot .last-card img:nth-child(4) {
  left: 0%;
  top: 250px;
}
.page-celtic-cross-tarot .last-card img:nth-child(5) {
  left: 50%;
  top: 250px;
}
.page-celtic-cross-tarot .last-card img:nth-child(6) {
  left: 100%;
  top: 250px;
}
.page-celtic-cross-tarot .last-step > h2 {
  font-size: 4.5rem;
  margin: 2rem 0 6rem;
}
.page-celtic-cross-tarot .last-step p + h3 {
  margin: 5rem 0 1rem;
}
.page-celtic-cross-tarot svg + svg {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}
.page-celtic-cross-tarot .last-card.rotate {
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  -webkit-animation-name: pouf;
          animation-name: pouf;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}
.page-celtic-cross-tarot .card .chosen-ouinon ul {
  left: 0;
  min-height: 220px;
  text-align: center;
  width: 100%;
}
.page-celtic-cross-tarot .card-chosen.chosen-ouinon li {
  float: none;
  left: inherit;
  top: inherit;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  width: 15%;
}
.page-celtic-cross-tarot .card-chosen.chosen-ouinon .hide-mask {
  left: 0;
  width: 100% !important;
}
.page-celtic-cross-tarot .dark-section .card-chosen.chosen-ouinon {
  background: none no-repeat scroll 0 0 transparent;
  min-height: inherit;
}
.page-celtic-cross-tarot .dark-section {
  background: #000 url("/images/celtic-cross-tarot/bg-persan.jpg") no-repeat scroll 50% 0/cover;
  overflow-x: hidden;
}
.page-celtic-cross-tarot .saturate {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.page-celtic-cross-tarot .last-step .col-sm-3 img {
  margin: 0 0 3rem;
}
.page-celtic-cross-tarot h2 {
  color: #fbf5d2;
}
.page-celtic-cross-tarot .mobile-cards {
  display: none;
}
.page-celtic-cross-tarot .blink {
  -webkit-animation: blink 1s infinite;
          animation: blink 1s infinite;
}
@keyframes blink {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes pouf {
  from {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  to {
    -webkit-transform: rotateY(12000deg);
            transform: rotateY(12000deg);
  }
}

@media screen and (max-width: 1200px) and (min-width: 720px) {
  .page-celtic-cross-tarot .card ul {
    margin-right: 23%;
    margin-left: 10%;
  }
}
@media screen and (max-width: 980px) {
  .page-celtic-cross-tarot .dark-section .card-chosen::after {
    left: 16%;
  }
  .page-celtic-cross-tarot .bottom-cards, .page-celtic-cross-tarot .top-cards {
    display: none;
  }
  .page-celtic-cross-tarot .mobile-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .page-celtic-cross-tarot .middle-cards h3 {
    text-align: center !important;
    font-size: 2.2rem;
    line-height: 2.2rem;
  }
  .page-celtic-cross-tarot .last-step > h2 {
    font-size: 2.5rem;
    margin: 4rem 0 3rem;
  }
  .page-celtic-cross-tarot .right-form {
    text-align: center;
  }
}
@media screen and (max-width: 800px) {
  .page-celtic-cross-tarot .card ul {
    margin-top: 15px;
  }
}
@media screen and (max-width: 720px) {
  .page-celtic-cross-tarot .card li {
    width: 26%;
  }
  .page-celtic-cross-tarot .card ul {
    margin-right: 21%;
    margin-bottom: 43%;
    padding-bottom: 12px;
  }
  .page-celtic-cross-tarot .placeholder {
    aspect-ratio: 1/1.6;
    margin-bottom: 0;
  }
  .page-celtic-cross-tarot #g1 {
    height: 320px;
    width: 300px;
  }
  .page-celtic-cross-tarot .last-step h3 {
    font-size: 3rem;
    line-height: 3rem;
  }
  .page-celtic-cross-tarot .last-step .col-sm-6 p {
    text-align: justify;
  }
  .page-celtic-cross-tarot .last-step p + h3 {
    font-size: 2.5rem;
    line-height: 3rem;
  }
  .page-celtic-cross-tarot .card-home li:nth-child(1) {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    top: 0px;
  }
  .page-celtic-cross-tarot .card-home li:nth-child(2) {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    top: 0px;
  }
  .page-celtic-cross-tarot .card-home li:nth-child(3) {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    top: 0px;
  }
  .page-celtic-cross-tarot .card-home li:nth-child(4) {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    top: 0px;
  }
  .page-celtic-cross-tarot .card-home li:nth-child(5) {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    top: 0px;
  }
  .page-celtic-cross-tarot .card-home li:nth-child(6) {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    top: 0px;
  }
  .page-celtic-cross-tarot .card-home li:nth-child(7) {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    top: 0px;
  }
  .page-celtic-cross-tarot .card-home li:nth-child(8) {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    top: 0px;
  }
  .page-celtic-cross-tarot .card-home li:nth-child(9) {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    top: 0px;
  }
  .page-celtic-cross-tarot .card-home li:nth-child(10) {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .page-celtic-cross-tarot .card-home li:nth-child(11) {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    top: 0px;
  }
  .page-celtic-cross-tarot .card-home li:nth-child(12) {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    top: 0px;
  }
  .page-celtic-cross-tarot .card-home li:nth-child(13) {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    top: 0px;
  }
  .page-celtic-cross-tarot .card-home li:nth-child(14) {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    top: 0px;
  }
  .page-celtic-cross-tarot .card-home li:nth-child(15) {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    top: 0px;
  }
  .page-celtic-cross-tarot .card-home li:nth-child(16) {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    top: 0px;
  }
  .page-celtic-cross-tarot .card-home li:nth-child(17) {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    top: 0px;
  }
  .page-celtic-cross-tarot .card-home li:nth-child(18) {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    top: 0px;
  }
  .page-celtic-cross-tarot .card-home li:nth-child(19) {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    top: 0px;
  }
  .page-celtic-cross-tarot .card-chosen.chosen-ouinon li {
    width: 21%;
  }
  .page-celtic-cross-tarot .card .chosen-ouinon ul {
    min-height: 130px;
  }
}
@media screen and (max-width: 500px) {
  .page-celtic-cross-tarot .card li {
    width: 37%;
  }
  .page-celtic-cross-tarot .card ul {
    margin-right: 27%;
    margin-bottom: 58%;
    padding-bottom: 4px;
  }
  .page-celtic-cross-tarot .last-card {
    width: calc(100% - 80px) !important;
  }
  .page-celtic-cross-tarot .last-card img {
    width: 80px !important;
  }
}
.page-oracle-cards {
  color: #fff;
  /*------------------------------------------------------
  		  CONTENT
  --------------------------------------------------------*/
  /* .card .hidden-card {
    transform: rotateY(90deg);
    transition: .5s ease 0s;
  }
  .card .hidden-card.rotate-in, {
    transform: rotateY(0deg);
    transition: .5s ease 0s;
  } */
  /*------------------------------------------------------
            STEP
  --------------------------------------------------------*/
  /*------------------------------------------------------
  		  TIRAGE BELLINE
  --------------------------------------------------------*/
  /* Style Belline */
  /*card flipper*/
  /*.cards-round-deck .card-block.retourne{
  	transform: rotate(0.1deg) !important;
  }*/
  /*============*/
  /*================*/
  /*===============
  step 5
  ==============*/
  /*======
  association
  =========*/
  /* Ajouts Guillaume */
}
.page-oracle-cards .dark-section {
  background: #000 url("/images/oracle-cards/bg.jpg") no-repeat scroll 50% 0/cover;
}
.page-oracle-cards p {
  color: #fff;
}
.page-oracle-cards .cards-round-deck img {
  width: initial;
}
.page-oracle-cards .cards-round-deck .hidden-card {
  left: initial;
  position: relative;
  top: 0;
  -webkit-transform: none;
          transform: none;
}
.page-oracle-cards .retourne {
  pointer-events: none !important;
}
.page-oracle-cards .cards-round-deck > div:nth-child(1) {
  left: 0%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(2) {
  left: 3%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(3) {
  left: 6%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(4) {
  left: 9%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(5) {
  left: 12%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(6) {
  left: 15%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(7) {
  left: 18%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(8) {
  left: 21%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(9) {
  left: 24%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(10) {
  left: 27%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(11) {
  left: 30%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(12) {
  left: 33%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(13) {
  left: 36%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(14) {
  left: 39%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(15) {
  left: 42%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(16) {
  left: 45%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(17) {
  left: 48%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(18) {
  left: 51%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(19) {
  left: 54%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(20) {
  left: 57%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(21) {
  left: 60%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(22) {
  left: 63%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(23) {
  left: 66%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(24) {
  left: 69%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(25) {
  left: 72%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(26) {
  left: 75%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(27) {
  left: 78%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(28) {
  left: 1%;
  top: 75%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(29) {
  left: 4%;
  top: 75%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(30) {
  left: 7%;
  top: 75%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(31) {
  left: 10%;
  top: 75%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(32) {
  left: 13%;
  top: 75%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(33) {
  left: 16%;
  top: 75%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(34) {
  left: 19%;
  top: 75%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(35) {
  left: 22%;
  top: 75%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(36) {
  left: 25%;
  top: 75%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(37) {
  left: 28%;
  top: 75%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(38) {
  left: 31%;
  top: 75%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(39) {
  left: 34%;
  top: 75%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(40) {
  left: 37%;
  top: 75%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(41) {
  left: 40%;
  top: 75%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(42) {
  left: 43%;
  top: 75%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(43) {
  left: 46%;
  top: 75%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(44) {
  left: 49%;
  top: 75%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(45) {
  left: 52%;
  top: 75%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(46) {
  left: 55%;
  top: 75%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(47) {
  left: 58%;
  top: 75%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(48) {
  left: 61%;
  top: 75%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(49) {
  left: 64%;
  top: 75%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(50) {
  left: 67%;
  top: 75%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(51) {
  left: 70%;
  top: 75%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(52) {
  left: 73%;
  top: 75%;
}
.page-oracle-cards .cards-round-deck > div:nth-child(53) {
  left: 76%;
  top: 75%;
}
.page-oracle-cards .card ul {
  left: 31px;
  margin: 0 auto;
  min-height: 285px;
  position: relative;
  width: 80%;
}
.page-oracle-cards .card-chosen.chosen-ouinon li.last-card {
  position: relative;
  width: 100%;
}
.page-oracle-cards li.last-card img {
  position: absolute;
}
.page-oracle-cards li.last-card img:nth-child(1) {
  left: 20%;
  top: 0;
}
.page-oracle-cards li.last-card img:nth-child(2) {
  left: 45%;
  top: 0;
}
.page-oracle-cards li.last-card img:nth-child(3) {
  left: 70%;
  top: 0;
}
.page-oracle-cards li.last-card img:nth-child(4) {
  left: 20%;
  top: 250px;
}
.page-oracle-cards li.last-card img:nth-child(5) {
  left: 45%;
  top: 250px;
}
.page-oracle-cards li.last-card img:nth-child(6) {
  left: 70%;
  top: 250px;
}
.page-oracle-cards .last-step > h2 {
  font-size: 4.5rem;
  margin: 2rem 0 6rem;
}
.page-oracle-cards .last-step h3 {
  color: #fff;
  font-size: 3.3rem;
  font-weight: 500;
  line-height: 5rem;
  margin: 0 0 1rem;
  text-align: left;
  text-decoration: none;
}
.page-oracle-cards .last-step p + h3 {
  margin: 5rem 0 1rem;
}
.page-oracle-cards .card .other-tarot li {
  top: initial;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.page-oracle-cards .card-chosen .hide-mask {
  left: 0;
  width: 100%;
  height: 100%;
}
.page-oracle-cards svg + svg {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}
.page-oracle-cards .last-card.rotate {
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  -webkit-animation-name: pouf;
          animation-name: pouf;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}
.page-oracle-cards .card .chosen-ouinon ul {
  left: 0;
  min-height: 220px;
  text-align: center;
  width: 100%;
}
.page-oracle-cards .card-chosen.chosen-ouinon li {
  float: none;
  left: inherit;
  top: inherit;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  width: 15%;
}
.page-oracle-cards .card-chosen.chosen-ouinon .hide-mask {
  left: 0;
  width: 100% !important;
}
.page-oracle-cards .dark-section .card-chosen.chosen-ouinon {
  background: none no-repeat scroll 0 0 transparent;
  min-height: inherit;
}
.page-oracle-cards .saturate {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.page-oracle-cards .last-step .col-sm-3 img {
  margin: 0 0 3rem;
}
.page-oracle-cards h2 {
  color: #fbf5d2;
}
.page-oracle-cards .grey img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.page-oracle-cards .before-results .card-front-only {
  opacity: 0;
}
.page-oracle-cards .before-results .card-front-only.card-1 {
  -webkit-transform: rotate(-60deg);
          transform: rotate(-60deg);
  left: 12.8%;
  top: 17%;
}
.page-oracle-cards .before-results .card-front-only.card-2 {
  top: 0;
}
.page-oracle-cards .before-results .card-front-only.card-3 {
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
  left: 71.3%;
  top: 16.5%;
}
.page-oracle-cards .before-results .card-front-only.card-4 {
  -webkit-transform: rotate(120deg);
          transform: rotate(120deg);
  left: 71.2%;
  top: 50.4%;
}
.page-oracle-cards .before-results .card-front-only.card-5 {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  top: 67.5%;
}
.page-oracle-cards .before-results .card-front-only.card-6 {
  -webkit-transform: rotate(-120deg);
          transform: rotate(-120deg);
  left: 12.8%;
  top: 50.6%;
}
.page-oracle-cards .line-content-init .line-1, .page-oracle-cards .line-content-init .ligne-1 {
  width: 245px;
  height: 2px;
  background: #f0ff00;
  position: absolute;
  -webkit-transform: rotate(30.5deg);
          transform: rotate(30.5deg);
  top: 52.6%;
  left: 34.5%;
  opacity: 0;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.page-oracle-cards .line-content-init .line-2, .page-oracle-cards .line-content-init .ligne-2 {
  width: 242px;
  height: 2px;
  background: #f0ff00;
  position: absolute;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 52.1%;
  left: 34.8%;
  opacity: 0;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.page-oracle-cards .line-content-init .line-3, .page-oracle-cards .line-content-init .ligne-3 {
  width: 246px;
  height: 2px;
  background: #f0ff00;
  position: absolute;
  -webkit-transform: rotate(-30.5deg);
          transform: rotate(-30.5deg);
  top: 52.6%;
  left: 34.5%;
  opacity: 0;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.page-oracle-cards .number-content > span {
  display: block;
  background: white;
  width: 23px;
  height: 23px;
  text-align: center;
  border-radius: 50%;
  color: #ff0000;
  font-weight: bold;
  padding-top: 3px;
  position: absolute;
  opacity: 0;
}
.page-oracle-cards .number-content .bulle-1 {
  top: 46%;
  left: 42%;
}
.page-oracle-cards .number-content .bulle-2 {
  left: 50.3%;
  top: 41%;
}
.page-oracle-cards .number-content .bulle-3 {
  left: 59.5%;
  top: 46%;
}
.page-oracle-cards .association-left, .page-oracle-cards .association-right, .page-oracle-cards .association-bottom {
  opacity: 0;
}
.page-oracle-cards .line-content-final .line-1, .page-oracle-cards .line-content-final .ligne-1 {
  width: 519px;
  height: 2px;
  background: #f0ff00;
  position: absolute;
  top: 23.6%;
  left: 24.1%;
  opacity: 0;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.page-oracle-cards .line-content-final .line-2, .page-oracle-cards .line-content-final .ligne-2 {
  width: 445px;
  height: 2px;
  background: #f0ff00;
  position: absolute;
  -webkit-transform: rotate(-54.5deg);
          transform: rotate(-54.5deg);
  top: 49.3%;
  left: 40.8%;
  opacity: 0;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.page-oracle-cards .line-content-final .line-3, .page-oracle-cards .line-content-final .line-3 {
  width: 445px;
  height: 2px;
  background: #f0ff00;
  position: absolute;
  -webkit-transform: rotate(54.5deg);
          transform: rotate(54.5deg);
  top: 49.3%;
  left: 14.8%;
  opacity: 0;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.page-oracle-cards .faceGraphic {
  position: absolute;
  top: 22%;
  left: 50%;
  margin-left: -160px;
  opacity: 0;
}
.page-oracle-cards .faceGraphic.rotate {
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
  -webkit-animation-name: rotate;
          animation-name: rotate;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.page-oracle-cards .interpretation p + h2 {
  margin-top: 9rem;
}
.page-oracle-cards .card li {
  position: absolute;
  display: none;
}
.page-oracle-cards .cards-round-deck {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: auto;
  height: auto;
  aspect-ratio: 1;
}
.page-oracle-cards .cards-round-deck .card-block {
  width: 24%;
  height: auto;
  position: absolute;
  -webkit-transition: all 0.3s ease-in, top 0.15s ease-in, left 0.15s ease-in;
  transition: all 0.3s ease-in, top 0.15s ease-in, left 0.15s ease-in;
  display: block;
  margin-left: -12%;
  margin-top: -18%;
}
.page-oracle-cards .cards-round-deck .card-block.retourne {
  margin-left: 0;
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(1) {
  left: calc(50% + 30% * cos(-94deg));
  top: calc(50% + 30% * sin(-94deg));
  -webkit-transform: rotate(-4deg);
          transform: rotate(-4deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(1):hover {
  left: calc(50% + 30% * 1.05 * cos(-94deg));
  top: calc(50% + 30% * 1.05 * sin(-94deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(2) {
  left: calc(50% + 30% * cos(-87deg));
  top: calc(50% + 30% * sin(-87deg));
  -webkit-transform: rotate(3deg);
          transform: rotate(3deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(2):hover {
  left: calc(50% + 30% * 1.05 * cos(-87deg));
  top: calc(50% + 30% * 1.05 * sin(-87deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(3) {
  left: calc(50% + 30% * cos(-80deg));
  top: calc(50% + 30% * sin(-80deg));
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(3):hover {
  left: calc(50% + 30% * 1.05 * cos(-80deg));
  top: calc(50% + 30% * 1.05 * sin(-80deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(4) {
  left: calc(50% + 30% * cos(-73deg));
  top: calc(50% + 30% * sin(-73deg));
  -webkit-transform: rotate(17deg);
          transform: rotate(17deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(4):hover {
  left: calc(50% + 30% * 1.05 * cos(-73deg));
  top: calc(50% + 30% * 1.05 * sin(-73deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(5) {
  left: calc(50% + 30% * cos(-66deg));
  top: calc(50% + 30% * sin(-66deg));
  -webkit-transform: rotate(24deg);
          transform: rotate(24deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(5):hover {
  left: calc(50% + 30% * 1.05 * cos(-66deg));
  top: calc(50% + 30% * 1.05 * sin(-66deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(6) {
  left: calc(50% + 30% * cos(-59deg));
  top: calc(50% + 30% * sin(-59deg));
  -webkit-transform: rotate(31deg);
          transform: rotate(31deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(6):hover {
  left: calc(50% + 30% * 1.05 * cos(-59deg));
  top: calc(50% + 30% * 1.05 * sin(-59deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(7) {
  left: calc(50% + 30% * cos(-52deg));
  top: calc(50% + 30% * sin(-52deg));
  -webkit-transform: rotate(38deg);
          transform: rotate(38deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(7):hover {
  left: calc(50% + 30% * 1.05 * cos(-52deg));
  top: calc(50% + 30% * 1.05 * sin(-52deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(8) {
  left: calc(50% + 30% * cos(-45deg));
  top: calc(50% + 30% * sin(-45deg));
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(8):hover {
  left: calc(50% + 30% * 1.05 * cos(-45deg));
  top: calc(50% + 30% * 1.05 * sin(-45deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(9) {
  left: calc(50% + 30% * cos(-38deg));
  top: calc(50% + 30% * sin(-38deg));
  -webkit-transform: rotate(52deg);
          transform: rotate(52deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(9):hover {
  left: calc(50% + 30% * 1.05 * cos(-38deg));
  top: calc(50% + 30% * 1.05 * sin(-38deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(10) {
  left: calc(50% + 30% * cos(-31deg));
  top: calc(50% + 30% * sin(-31deg));
  -webkit-transform: rotate(59deg);
          transform: rotate(59deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(10):hover {
  left: calc(50% + 30% * 1.05 * cos(-31deg));
  top: calc(50% + 30% * 1.05 * sin(-31deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(11) {
  left: calc(50% + 30% * cos(-24deg));
  top: calc(50% + 30% * sin(-24deg));
  -webkit-transform: rotate(66deg);
          transform: rotate(66deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(11):hover {
  left: calc(50% + 30% * 1.05 * cos(-24deg));
  top: calc(50% + 30% * 1.05 * sin(-24deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(12) {
  left: calc(50% + 30% * cos(-17deg));
  top: calc(50% + 30% * sin(-17deg));
  -webkit-transform: rotate(73deg);
          transform: rotate(73deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(12):hover {
  left: calc(50% + 30% * 1.05 * cos(-17deg));
  top: calc(50% + 30% * 1.05 * sin(-17deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(13) {
  left: calc(50% + 30% * cos(-10deg));
  top: calc(50% + 30% * sin(-10deg));
  -webkit-transform: rotate(80deg);
          transform: rotate(80deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(13):hover {
  left: calc(50% + 30% * 1.05 * cos(-10deg));
  top: calc(50% + 30% * 1.05 * sin(-10deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(14) {
  left: calc(50% + 30% * cos(-3deg));
  top: calc(50% + 30% * sin(-3deg));
  -webkit-transform: rotate(87deg);
          transform: rotate(87deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(14):hover {
  left: calc(50% + 30% * 1.05 * cos(-3deg));
  top: calc(50% + 30% * 1.05 * sin(-3deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(15) {
  left: calc(50% + 30% * cos(4deg));
  top: calc(50% + 30% * sin(4deg));
  -webkit-transform: rotate(94deg);
          transform: rotate(94deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(15):hover {
  left: calc(50% + 30% * 1.05 * cos(4deg));
  top: calc(50% + 30% * 1.05 * sin(4deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(16) {
  left: calc(50% + 30% * cos(11deg));
  top: calc(50% + 30% * sin(11deg));
  -webkit-transform: rotate(101deg);
          transform: rotate(101deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(16):hover {
  left: calc(50% + 30% * 1.05 * cos(11deg));
  top: calc(50% + 30% * 1.05 * sin(11deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(17) {
  left: calc(50% + 30% * cos(18deg));
  top: calc(50% + 30% * sin(18deg));
  -webkit-transform: rotate(108deg);
          transform: rotate(108deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(17):hover {
  left: calc(50% + 30% * 1.05 * cos(18deg));
  top: calc(50% + 30% * 1.05 * sin(18deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(18) {
  left: calc(50% + 30% * cos(25deg));
  top: calc(50% + 30% * sin(25deg));
  -webkit-transform: rotate(115deg);
          transform: rotate(115deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(18):hover {
  left: calc(50% + 30% * 1.05 * cos(25deg));
  top: calc(50% + 30% * 1.05 * sin(25deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(19) {
  left: calc(50% + 30% * cos(32deg));
  top: calc(50% + 30% * sin(32deg));
  -webkit-transform: rotate(122deg);
          transform: rotate(122deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(19):hover {
  left: calc(50% + 30% * 1.05 * cos(32deg));
  top: calc(50% + 30% * 1.05 * sin(32deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(20) {
  left: calc(50% + 30% * cos(39deg));
  top: calc(50% + 30% * sin(39deg));
  -webkit-transform: rotate(129deg);
          transform: rotate(129deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(20):hover {
  left: calc(50% + 30% * 1.05 * cos(39deg));
  top: calc(50% + 30% * 1.05 * sin(39deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(21) {
  left: calc(50% + 30% * cos(46deg));
  top: calc(50% + 30% * sin(46deg));
  -webkit-transform: rotate(136deg);
          transform: rotate(136deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(21):hover {
  left: calc(50% + 30% * 1.05 * cos(46deg));
  top: calc(50% + 30% * 1.05 * sin(46deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(22) {
  left: calc(50% + 30% * cos(53deg));
  top: calc(50% + 30% * sin(53deg));
  -webkit-transform: rotate(143deg);
          transform: rotate(143deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(22):hover {
  left: calc(50% + 30% * 1.05 * cos(53deg));
  top: calc(50% + 30% * 1.05 * sin(53deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(23) {
  left: calc(50% + 30% * cos(60deg));
  top: calc(50% + 30% * sin(60deg));
  -webkit-transform: rotate(150deg);
          transform: rotate(150deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(23):hover {
  left: calc(50% + 30% * 1.05 * cos(60deg));
  top: calc(50% + 30% * 1.05 * sin(60deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(24) {
  left: calc(50% + 30% * cos(67deg));
  top: calc(50% + 30% * sin(67deg));
  -webkit-transform: rotate(157deg);
          transform: rotate(157deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(24):hover {
  left: calc(50% + 30% * 1.05 * cos(67deg));
  top: calc(50% + 30% * 1.05 * sin(67deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(25) {
  left: calc(50% + 30% * cos(74deg));
  top: calc(50% + 30% * sin(74deg));
  -webkit-transform: rotate(164deg);
          transform: rotate(164deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(25):hover {
  left: calc(50% + 30% * 1.05 * cos(74deg));
  top: calc(50% + 30% * 1.05 * sin(74deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(26) {
  left: calc(50% + 30% * cos(81deg));
  top: calc(50% + 30% * sin(81deg));
  -webkit-transform: rotate(171deg);
          transform: rotate(171deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(26):hover {
  left: calc(50% + 30% * 1.05 * cos(81deg));
  top: calc(50% + 30% * 1.05 * sin(81deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(27) {
  left: calc(50% + 30% * cos(88deg));
  top: calc(50% + 30% * sin(88deg));
  -webkit-transform: rotate(178deg);
          transform: rotate(178deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(27):hover {
  left: calc(50% + 30% * 1.05 * cos(88deg));
  top: calc(50% + 30% * 1.05 * sin(88deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(28) {
  left: calc(50% + 30% * cos(95deg));
  top: calc(50% + 30% * sin(95deg));
  -webkit-transform: rotate(185deg);
          transform: rotate(185deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(28):hover {
  left: calc(50% + 30% * 1.05 * cos(95deg));
  top: calc(50% + 30% * 1.05 * sin(95deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(29) {
  left: calc(50% + 30% * cos(102deg));
  top: calc(50% + 30% * sin(102deg));
  -webkit-transform: rotate(192deg);
          transform: rotate(192deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(29):hover {
  left: calc(50% + 30% * 1.05 * cos(102deg));
  top: calc(50% + 30% * 1.05 * sin(102deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(30) {
  left: calc(50% + 30% * cos(109deg));
  top: calc(50% + 30% * sin(109deg));
  -webkit-transform: rotate(199deg);
          transform: rotate(199deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(30):hover {
  left: calc(50% + 30% * 1.05 * cos(109deg));
  top: calc(50% + 30% * 1.05 * sin(109deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(31) {
  left: calc(50% + 30% * cos(116deg));
  top: calc(50% + 30% * sin(116deg));
  -webkit-transform: rotate(206deg);
          transform: rotate(206deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(31):hover {
  left: calc(50% + 30% * 1.05 * cos(116deg));
  top: calc(50% + 30% * 1.05 * sin(116deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(32) {
  left: calc(50% + 30% * cos(123deg));
  top: calc(50% + 30% * sin(123deg));
  -webkit-transform: rotate(213deg);
          transform: rotate(213deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(32):hover {
  left: calc(50% + 30% * 1.05 * cos(123deg));
  top: calc(50% + 30% * 1.05 * sin(123deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(33) {
  left: calc(50% + 30% * cos(130deg));
  top: calc(50% + 30% * sin(130deg));
  -webkit-transform: rotate(220deg);
          transform: rotate(220deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(33):hover {
  left: calc(50% + 30% * 1.05 * cos(130deg));
  top: calc(50% + 30% * 1.05 * sin(130deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(34) {
  left: calc(50% + 30% * cos(137deg));
  top: calc(50% + 30% * sin(137deg));
  -webkit-transform: rotate(227deg);
          transform: rotate(227deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(34):hover {
  left: calc(50% + 30% * 1.05 * cos(137deg));
  top: calc(50% + 30% * 1.05 * sin(137deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(35) {
  left: calc(50% + 30% * cos(144deg));
  top: calc(50% + 30% * sin(144deg));
  -webkit-transform: rotate(234deg);
          transform: rotate(234deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(35):hover {
  left: calc(50% + 30% * 1.05 * cos(144deg));
  top: calc(50% + 30% * 1.05 * sin(144deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(36) {
  left: calc(50% + 30% * cos(151deg));
  top: calc(50% + 30% * sin(151deg));
  -webkit-transform: rotate(241deg);
          transform: rotate(241deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(36):hover {
  left: calc(50% + 30% * 1.05 * cos(151deg));
  top: calc(50% + 30% * 1.05 * sin(151deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(37) {
  left: calc(50% + 30% * cos(158deg));
  top: calc(50% + 30% * sin(158deg));
  -webkit-transform: rotate(248deg);
          transform: rotate(248deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(37):hover {
  left: calc(50% + 30% * 1.05 * cos(158deg));
  top: calc(50% + 30% * 1.05 * sin(158deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(38) {
  left: calc(50% + 30% * cos(165deg));
  top: calc(50% + 30% * sin(165deg));
  -webkit-transform: rotate(255deg);
          transform: rotate(255deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(38):hover {
  left: calc(50% + 30% * 1.05 * cos(165deg));
  top: calc(50% + 30% * 1.05 * sin(165deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(39) {
  left: calc(50% + 30% * cos(172deg));
  top: calc(50% + 30% * sin(172deg));
  -webkit-transform: rotate(262deg);
          transform: rotate(262deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(39):hover {
  left: calc(50% + 30% * 1.05 * cos(172deg));
  top: calc(50% + 30% * 1.05 * sin(172deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(40) {
  left: calc(50% + 30% * cos(179deg));
  top: calc(50% + 30% * sin(179deg));
  -webkit-transform: rotate(269deg);
          transform: rotate(269deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(40):hover {
  left: calc(50% + 30% * 1.05 * cos(179deg));
  top: calc(50% + 30% * 1.05 * sin(179deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(41) {
  left: calc(50% + 30% * cos(186deg));
  top: calc(50% + 30% * sin(186deg));
  -webkit-transform: rotate(276deg);
          transform: rotate(276deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(41):hover {
  left: calc(50% + 30% * 1.05 * cos(186deg));
  top: calc(50% + 30% * 1.05 * sin(186deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(42) {
  left: calc(50% + 30% * cos(193deg));
  top: calc(50% + 30% * sin(193deg));
  -webkit-transform: rotate(283deg);
          transform: rotate(283deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(42):hover {
  left: calc(50% + 30% * 1.05 * cos(193deg));
  top: calc(50% + 30% * 1.05 * sin(193deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(43) {
  left: calc(50% + 30% * cos(200deg));
  top: calc(50% + 30% * sin(200deg));
  -webkit-transform: rotate(290deg);
          transform: rotate(290deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(43):hover {
  left: calc(50% + 30% * 1.05 * cos(200deg));
  top: calc(50% + 30% * 1.05 * sin(200deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(44) {
  left: calc(50% + 30% * cos(207deg));
  top: calc(50% + 30% * sin(207deg));
  -webkit-transform: rotate(297deg);
          transform: rotate(297deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(44):hover {
  left: calc(50% + 30% * 1.05 * cos(207deg));
  top: calc(50% + 30% * 1.05 * sin(207deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(45) {
  left: calc(50% + 30% * cos(214deg));
  top: calc(50% + 30% * sin(214deg));
  -webkit-transform: rotate(304deg);
          transform: rotate(304deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(45):hover {
  left: calc(50% + 30% * 1.05 * cos(214deg));
  top: calc(50% + 30% * 1.05 * sin(214deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(46) {
  left: calc(50% + 30% * cos(221deg));
  top: calc(50% + 30% * sin(221deg));
  -webkit-transform: rotate(311deg);
          transform: rotate(311deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(46):hover {
  left: calc(50% + 30% * 1.05 * cos(221deg));
  top: calc(50% + 30% * 1.05 * sin(221deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(47) {
  left: calc(50% + 30% * cos(228deg));
  top: calc(50% + 30% * sin(228deg));
  -webkit-transform: rotate(318deg);
          transform: rotate(318deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(47):hover {
  left: calc(50% + 30% * 1.05 * cos(228deg));
  top: calc(50% + 30% * 1.05 * sin(228deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(48) {
  left: calc(50% + 30% * cos(235deg));
  top: calc(50% + 30% * sin(235deg));
  -webkit-transform: rotate(325deg);
          transform: rotate(325deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(48):hover {
  left: calc(50% + 30% * 1.05 * cos(235deg));
  top: calc(50% + 30% * 1.05 * sin(235deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(49) {
  left: calc(50% + 30% * cos(242deg));
  top: calc(50% + 30% * sin(242deg));
  -webkit-transform: rotate(332deg);
          transform: rotate(332deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(49):hover {
  left: calc(50% + 30% * 1.05 * cos(242deg));
  top: calc(50% + 30% * 1.05 * sin(242deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(50) {
  left: calc(50% + 30% * cos(249deg));
  top: calc(50% + 30% * sin(249deg));
  -webkit-transform: rotate(339deg);
          transform: rotate(339deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(50):hover {
  left: calc(50% + 30% * 1.05 * cos(249deg));
  top: calc(50% + 30% * 1.05 * sin(249deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(51) {
  left: calc(50% + 30% * cos(256deg));
  top: calc(50% + 30% * sin(256deg));
  -webkit-transform: rotate(346deg);
          transform: rotate(346deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(51):hover {
  left: calc(50% + 30% * 1.05 * cos(256deg));
  top: calc(50% + 30% * 1.05 * sin(256deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(52) {
  left: calc(50% + 30% * cos(263deg));
  top: calc(50% + 30% * sin(263deg));
  -webkit-transform: rotate(353deg);
          transform: rotate(353deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(52):hover {
  left: calc(50% + 30% * 1.05 * cos(263deg));
  top: calc(50% + 30% * 1.05 * sin(263deg));
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(53) {
  left: calc(50% + 30% * cos(270deg));
  top: calc(50% + 30% * sin(270deg));
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}
.page-oracle-cards .cards-round-deck .card-block:nth-child(53):hover {
  left: calc(50% + 30% * 1.05 * cos(270deg));
  top: calc(50% + 30% * 1.05 * sin(270deg));
}
.page-oracle-cards .card li.norm {
  top: -200px;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.page-oracle-cards .moveOpenCards .card-inner .name {
  position: absolute;
  top: 188px;
  width: 114px;
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
  padding: 0px 0 3px;
}
.page-oracle-cards .cards-round-deck .name {
  display: none;
}
.page-oracle-cards .card-front-only .name, .page-oracle-cards .center.detail .name, .page-oracle-cards .center.to-insert .name, .page-oracle-cards .center.detailgo .name {
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
  padding: 3px 0;
  color: #fff;
}
.page-oracle-cards .card-front-only img {
  width: 100%;
}
.page-oracle-cards .card-block:hover {
  cursor: pointer;
}
.page-oracle-cards .moveOpenCards a {
  cursor: inherit;
}
.page-oracle-cards .card form {
  display: none;
}
.page-oracle-cards {
  background: #000000 url("/images/oracle-cards/bg.jpg") no-repeat fixed center center;
  background-size: cover;
}
.page-oracle-cards .card-area {
  position: relative;
}
.page-oracle-cards .card-block {
  -webkit-perspective: 1000px;
          perspective: 1000px;
}
.page-oracle-cards .card-block.retourne {
  z-index: 100;
}
.page-oracle-cards .card-block.retourne .card-inner {
  -webkit-transform: rotateY(179.9deg);
          transform: rotateY(179.9deg);
}
.page-oracle-cards .card-block, .page-oracle-cards .card-back, .page-oracle-cards .card-front {
  width: 100%;
  aspect-ratio: 1/1.65;
}
.page-oracle-cards .card-inner {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  position: relative;
}
.page-oracle-cards .card-back, .page-oracle-cards .card-front {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.page-oracle-cards .card-back {
  z-index: 2;
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  background: url("/images/oracle-cards/card-back.png") center center no-repeat;
  background-size: cover;
}
.page-oracle-cards .card-front {
  -webkit-transform: rotateY(179.9deg);
          transform: rotateY(179.9deg);
}
.page-oracle-cards .cards-round-deck .cards-round-deck .card-block.retourne {
  -webkit-box-shadow: 4px 3px 19px #000000;
          box-shadow: 4px 3px 19px #000000;
}
.page-oracle-cards .moveOpenCards {
  position: relative;
  height: 280px;
  width: 100%;
  margin: auto;
  margin-top: 60px;
  margin-bottom: 120px;
  pointer-events: none;
}
.page-oracle-cards .moveOpenCards .pseudo-card {
  width: 140px;
  height: 228px;
  display: inline-block;
  position: relative;
}
.page-oracle-cards .moveOpenCards .card-block {
  display: inline-block;
  z-index: 999;
  margin-right: -70px;
  position: relative;
  top: -50px;
}
.page-oracle-cards .forEffect .card-block {
  position: absolute;
  -webkit-transition: All 0.5s ease-in;
  transition: All 0.5s ease-in;
  z-index: 9999;
  -webkit-box-shadow: 4px 3px 19px #000000;
          box-shadow: 4px 3px 19px #000000;
}
.page-oracle-cards .t-pageHeader {
  text-align: center;
  padding: 40px 0 0 0;
}
.page-oracle-cards .t-pageHeader h1 {
  color: #ffffff;
}
.page-oracle-cards .t-pageHeader h2 {
  color: #fff09c;
}
.page-oracle-cards .c-intro {
  color: #fff;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 110px;
}
.page-oracle-cards .c-intro h1 {
  position: relative;
  display: inline-block;
  border-bottom: 2px solid #fff;
}
.page-oracle-cards .c-intro p {
  max-width: 630px;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
}
.page-oracle-cards .before-results {
  position: relative;
  width: 710px;
  height: 710px;
  margin: 10px auto;
}
.page-oracle-cards .before-results .card-front-only {
  position: absolute;
  left: 300px;
  top: 150px;
  -webkit-transition: All 0.6s ease-in;
  transition: All 0.6s ease-in;
  z-index: 50;
}
.page-oracle-cards .before-results .card-front-only:after {
  content: "";
  background: #f0ff00;
  height: 0;
  z-index: -1;
  width: 2px;
  position: absolute;
  top: 100%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-transition: All 0.8s ease-in;
  transition: All 0.8s ease-in;
}
.page-oracle-cards .before-results .card-front-only.yellow-line:after {
  height: 150%;
  width: 2px;
  opacity: 1;
}
.page-oracle-cards .before-results .card-front-only:before {
  content: attr(data-number);
  background: #fff;
  color: #ff0000;
  text-align: center;
  line-height: 24px;
  font-weight: bold;
  border-radius: 50%;
  opacity: 0;
  z-index: 0;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 100%;
  margin-top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-transition: All 0.3s ease-in;
  transition: All 0.3s ease-in;
}
.page-oracle-cards .before-results .card-front-only.showNumbers:before {
  opacity: 1;
  margin-top: 20px;
}
.page-oracle-cards .before-results .card-front-only.yellow-line.card-4:after,
.page-oracle-cards .before-results .card-front-only.yellow-line.card-5:after,
.page-oracle-cards .before-results .card-front-only.yellow-line.card-6:after,
.page-oracle-cards .before-results .card-front-only.yellow-line.card-4:before,
.page-oracle-cards .before-results .card-front-only.yellow-line.card-5:before,
.page-oracle-cards .before-results .card-front-only.yellow-line.card-6:before {
  display: none;
}
.page-oracle-cards .before-results.hexaShape .card-front-only.card-1 {
  left: 84px;
  top: 125px;
  -webkit-transform: rotate(-60deg);
          transform: rotate(-60deg);
}
.page-oracle-cards .before-results.hexaShape .card-front-only.card-2 {
  left: 284px;
  top: 10px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.page-oracle-cards .before-results.hexaShape .card-front-only.card-3 {
  left: 485px;
  top: 125px;
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
}
.page-oracle-cards .before-results.hexaShape .card-front-only.card-4 {
  left: 482px;
  top: 350px;
  -webkit-transform: rotate(120deg);
          transform: rotate(120deg);
}
.page-oracle-cards .before-results.hexaShape .card-front-only.card-5 {
  left: 284px;
  top: 465px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.page-oracle-cards .before-results.hexaShape .card-front-only.card-6 {
  left: 86px;
  top: 350px;
  -webkit-transform: rotate(240deg);
          transform: rotate(240deg);
}
.page-oracle-cards .association-left, .page-oracle-cards .association-right {
  float: left;
  width: 50%;
}
.page-oracle-cards .associations {
  text-align: center;
  margin-bottom: 100px;
  position: relative;
}
.page-oracle-cards .associations .tehConnectingTriangle {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 80%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 99;
  opacity: 0;
  -webkit-transition: All 0.8s ease-in;
  transition: All 0.8s ease-in;
}
.page-oracle-cards .associations .tehConnectingTriangle.active {
  opacity: 1;
}
.page-oracle-cards .associations span {
  font-family: "Playball", cursive;
  font-size: 18px;
  display: block;
  color: #fff;
}
.page-oracle-cards .associations strong {
  text-decoration: underline;
  color: #fff;
  font-weight: normal;
  font-size: 24px;
}
.page-oracle-cards .associations .card-front-only {
  display: inline-block;
  margin: 15px 6px;
}
.page-oracle-cards .association-top {
  margin-bottom: 50px;
}
.page-oracle-cards .cards-round-deck .card-block.zero-opacity {
  z-index: -100;
}
.page-oracle-cards .cards-round-deck .card-block.zero-opacity .card-inner {
  opacity: 0 !important;
}
.page-oracle-cards .nom-carte {
  display: block;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 10px;
  text-align: center;
}
.page-oracle-cards .card-front {
  text-align: center;
}
.page-oracle-cards .t-pageHeader h1 {
  margin-bottom: 5px;
}
.page-oracle-cards .eva-sexe {
  display: none;
}
.page-oracle-cards .eva-sexe, .page-oracle-cards .eva-sexe-suite {
  display: none;
  color: #fff;
  text-align: center;
  margin-top: 20px;
  min-height: 200px;
}
@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(2160deg);
            transform: rotate(2160deg);
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.page-oracle-cards .blink {
  -webkit-animation: blink 2s ease 1;
          animation: blink 2s ease 1;
}
@keyframes pouf {
  from {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  to {
    -webkit-transform: rotateY(12000deg);
            transform: rotateY(12000deg);
  }
}

@media screen and (max-width: 980px) {
  .page-oracle-cards .card ul {
    left: 22px;
  }
}
@media screen and (max-width: 800px) {
  .page-oracle-cards .card ul {
    left: -50px;
    margin-top: 35px;
  }
  .page-oracle-cards .line-content-final .line-1, .page-oracle-cards .line-content-final .ligne-1 {
    left: 15.1%;
  }
  .page-oracle-cards .line-content-final .line-2, .page-oracle-cards .line-content-final .ligne-2 {
    left: 37.8%;
  }
  .page-oracle-cards .line-content-final .line-3, .page-oracle-cards .line-content-final .ligne-3 {
    left: 2.8%;
  }
  .page-oracle-cards .moveOpenCards {
    width: auto;
  }
  .page-oracle-cards .moveOpenCards .pseudo-card {
    width: 120px;
  }
  .page-oracle-cards .ten-cards .card-block-wrap {
    min-height: inherit;
  }
  .page-oracle-cards .faceGraphic {
    top: 8%;
  }
  .page-oracle-cards .association-bottom .card-front-only img {
    max-width: 60px;
  }
  .page-oracle-cards .association-top {
    margin-bottom: 0px !important;
  }
}
@media screen and (max-width: 767px) {
  .page-oracle-cards {
    /* .ten-cards .card-block-wrap , .seven-cards .card-block-wrap, .four-cards .card-block-wrap {width: 50%; } */
  }
  .page-oracle-cards .card ul {
    left: -136px;
    min-height: 120px;
  }
  .page-oracle-cards #g1 {
    height: 320px;
    width: 300px;
  }
  .page-oracle-cards .last-step h3 {
    font-size: 3rem;
    line-height: 3rem;
  }
  .page-oracle-cards .last-step .col-sm-6 p {
    text-align: justify;
  }
  .page-oracle-cards .last-step p + h3 {
    font-size: 2.5rem;
    line-height: 3rem;
  }
  .page-oracle-cards .card .chosen-ouinon ul {
    min-height: 130px;
  }
  .page-oracle-cards .card li .name {
    top: 119px;
    width: 74px;
  }
  .page-oracle-cards .moveOpenCards .card-front, .page-oracle-cards .moveOpenCards .card-block {
    width: 100px;
  }
  .page-oracle-cards .before-results {
    -webkit-transform: scale(0.45);
            transform: scale(0.45);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    margin-left: calc((100vw - 30px - 320px) / 2);
  }
  .page-oracle-cards .association-top .card-front-only {
    max-width: 35%;
    vertical-align: top;
  }
  .page-oracle-cards .line-content-final {
    display: none;
  }
  .page-oracle-cards .associations .name {
    display: none;
  }
  .page-oracle-cards .card-front-only .name, .page-oracle-cards .center.detail .name, .page-oracle-cards .center.detailgo .name, .page-oracle-cards .center.to-insert .name {
    font-size: 0.8rem;
  }
  .page-oracle-cards .card-block-wrap {
    vertical-align: top;
  }
}
@media screen and (max-width: 600px) {
  .page-oracle-cards .cards-round-deck {
    width: 80%;
  }
  .page-oracle-cards .cards-round-deck .card-block {
    width: 30%;
    margin-left: -15%;
  }
  .page-oracle-cards .moveOpenCards {
    margin-top: 90px;
    margin-bottom: 20px;
  }
  .page-oracle-cards .moveOpenCards .pseudo-card {
    width: 100px;
  }
}
@media screen and (min-width: 641px) {
  .page-oracle-cards .cards-round-deck .card-block.hover-one {
    margin-left: -15px;
    margin-top: -15px;
    cursor: pointer;
  }
  .page-oracle-cards .cards-round-deck .card-block.hover-two {
    margin-right: -15px;
    margin-top: -15px;
    cursor: pointer;
  }
  .page-oracle-cards .cards-round-deck .card-block.hover-three {
    margin-left: -15px !important;
    margin-bottom: -15px !important;
    cursor: pointer !important;
  }
}
.page-angel-tarot {
  /*------------------------------------------------------
  		  CONTENT
  --------------------------------------------------------*/
  /* Style Belline */
  /*============*/
  /* .card .hidden-card {
    transform: rotateY(90deg);
    transition: .5s ease 0s;
  }
  .card .hidden-card.rotate-in, {
    transform: rotateY(0deg);
    transition: .5s ease 0s;
  } */
  /*------------------------------------------------------
            STEP
  --------------------------------------------------------*/
  /*------------------------------------------------------
  		  TIRAGE BELLINE
  --------------------------------------------------------*/
  /*card flipper*/
  /*================*/
  /*===============
  step 5
  ==============*/
  /*======
  association
  =========*/
  /* Ajouts Guillaume */
}
.page-angel-tarot {
  background: url("/images/angel-tarot/fond-ange-ok.jpg") no-repeat fixed center center #000000;
  background-size: cover;
}
.page-angel-tarot .dark-section {
  background: #000 url("/images/angel-tarot/fond-ange-ok.jpg") no-repeat fixed 50% 0;
  background-size: cover;
}
.page-angel-tarot .card-area {
  color: #fff;
}
.page-angel-tarot p {
  color: #fff;
}
.page-angel-tarot h1 {
  color: #fff;
}
.page-angel-tarot .cards-round-deck > div:nth-child(1) {
  left: 0%;
}
.page-angel-tarot .cards-round-deck > div:nth-child(2) {
  left: 3%;
}
.page-angel-tarot .cards-round-deck > div:nth-child(3) {
  left: 6%;
}
.page-angel-tarot .cards-round-deck > div:nth-child(4) {
  left: 9%;
}
.page-angel-tarot .cards-round-deck > div:nth-child(5) {
  left: 12%;
}
.page-angel-tarot .cards-round-deck > div:nth-child(6) {
  left: 15%;
}
.page-angel-tarot .cards-round-deck > div:nth-child(7) {
  left: 18%;
}
.page-angel-tarot .cards-round-deck > div:nth-child(8) {
  left: 21%;
}
.page-angel-tarot .cards-round-deck > div:nth-child(9) {
  left: 24%;
}
.page-angel-tarot .cards-round-deck > div:nth-child(10) {
  left: 27%;
}
.page-angel-tarot .cards-round-deck > div:nth-child(11) {
  left: 30%;
}
.page-angel-tarot .cards-round-deck > div:nth-child(12) {
  left: 33%;
}
.page-angel-tarot .cards-round-deck > div:nth-child(13) {
  left: 36%;
}
.page-angel-tarot .cards-round-deck > div:nth-child(14) {
  left: 39%;
}
.page-angel-tarot .cards-round-deck > div:nth-child(15) {
  left: 42%;
}
.page-angel-tarot .cards-round-deck > div:nth-child(16) {
  left: 45%;
}
.page-angel-tarot .cards-round-deck > div:nth-child(17) {
  left: 48%;
}
.page-angel-tarot .cards-round-deck > div:nth-child(18) {
  left: 51%;
}
.page-angel-tarot .cards-round-deck > div:nth-child(19) {
  left: 54%;
}
.page-angel-tarot .cards-round-deck > div:nth-child(20) {
  left: 57%;
}
.page-angel-tarot .cards-round-deck > div:nth-child(21) {
  left: 60%;
}
.page-angel-tarot .cards-round-deck > div:nth-child(22) {
  left: 63%;
}
.page-angel-tarot .card ul {
  left: 31px;
  margin: 0 auto;
  min-height: 285px;
  position: relative;
  width: 80%;
}
.page-angel-tarot .card-chosen.chosen-ouinon li.last-card {
  position: relative;
  width: 100%;
}
.page-angel-tarot li.last-card img {
  position: absolute;
}
.page-angel-tarot li.last-card img:nth-child(1) {
  left: 20%;
  top: 0;
}
.page-angel-tarot li.last-card img:nth-child(2) {
  left: 45%;
  top: 0;
}
.page-angel-tarot li.last-card img:nth-child(3) {
  left: 70%;
  top: 0;
}
.page-angel-tarot li.last-card img:nth-child(4) {
  left: 20%;
  top: 250px;
}
.page-angel-tarot li.last-card img:nth-child(5) {
  left: 45%;
  top: 250px;
}
.page-angel-tarot li.last-card img:nth-child(6) {
  left: 70%;
  top: 250px;
}
.page-angel-tarot .last-step > h2 {
  font-size: 4.5rem;
  margin: 2rem 0 6rem;
}
.page-angel-tarot .last-step h3 {
  color: #fff;
  font-size: 3.3rem;
  font-weight: 500;
  line-height: 5rem;
  margin: 0 0 1rem;
  text-align: left;
  text-decoration: none;
}
.page-angel-tarot .last-step p + h3 {
  margin: 5rem 0 1rem;
}
.page-angel-tarot .card .other-tarot li {
  top: initial;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.page-angel-tarot .card-chosen .hide-mask {
  left: 0;
  width: 100%;
  height: 100%;
}
.page-angel-tarot svg + svg {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}
.page-angel-tarot .last-card.rotate {
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  -webkit-animation-name: pouf;
          animation-name: pouf;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}
.page-angel-tarot .card .chosen-ouinon ul {
  left: 0;
  min-height: 220px;
  text-align: center;
  width: 100%;
}
.page-angel-tarot .card-chosen.chosen-ouinon li {
  float: none;
  left: inherit;
  top: inherit;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  width: 15%;
}
.page-angel-tarot .card-chosen.chosen-ouinon .hide-mask {
  left: 0;
  width: 100% !important;
}
.page-angel-tarot .dark-section .card-chosen.chosen-ouinon {
  background: none no-repeat scroll 0 0 transparent;
  min-height: inherit;
}
.page-angel-tarot .saturate {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.page-angel-tarot .last-step .col-sm-3 img {
  margin: 0 0 3rem;
}
.page-angel-tarot h2 {
  color: #fbf5d2;
}
.page-angel-tarot .grey img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.page-angel-tarot .before-results .card-front-only {
  opacity: 0;
}
.page-angel-tarot .before-results .card-front-only.card-1 {
  -webkit-transform: rotate(-60deg);
          transform: rotate(-60deg);
  left: 23.6%;
  top: 10.5%;
}
.page-angel-tarot .before-results .card-front-only.card-2 {
  top: 0;
}
.page-angel-tarot .before-results .card-front-only.card-3 {
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
  left: 60.9%;
  top: 10.5%;
}
.page-angel-tarot .before-results .card-front-only.card-4 {
  -webkit-transform: rotate(120deg);
          transform: rotate(120deg);
  left: 61%;
  top: 32%;
}
.page-angel-tarot .before-results .card-front-only.card-5 {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  top: 42.5%;
}
.page-angel-tarot .before-results .card-front-only.card-6 {
  -webkit-transform: rotate(-120deg);
          transform: rotate(-120deg);
  left: 23.8%;
  top: 32%;
}
.page-angel-tarot .line-content-init .line-1, .page-angel-tarot .line-content-init .ligne-1 {
  width: 145px;
  height: 2px;
  background: #3fff56;
  top: 32.6%;
  left: 38.5%;
  position: absolute;
  -webkit-transform: rotate(30.5deg);
          transform: rotate(30.5deg);
  opacity: 0;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.page-angel-tarot .line-content-init .line-2, .page-angel-tarot .line-content-init .ligne-2 {
  width: 142px;
  height: 2px;
  background: #3fff56;
  position: absolute;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 32.1%;
  left: 38.8%;
  opacity: 0;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.page-angel-tarot .line-content-init .line-3, .page-angel-tarot .line-content-init .ligne-3 {
  width: 146px;
  height: 2px;
  background: #3fff56;
  position: absolute;
  -webkit-transform: rotate(-30.5deg);
          transform: rotate(-30.5deg);
  top: 32.6%;
  left: 38.5%;
  opacity: 0;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.page-angel-tarot .number-content > span {
  display: block;
  background: white;
  width: 23px;
  height: 23px;
  text-align: center;
  border-radius: 50%;
  color: #ff0000;
  font-weight: bold;
  padding-top: 3px;
  position: absolute;
  opacity: 0;
}
.page-angel-tarot .number-content .bulle-1 {
  top: 28%;
  left: 42%;
}
.page-angel-tarot .number-content .bulle-2 {
  top: 25%;
  left: 47%;
}
.page-angel-tarot .number-content .bulle-3 {
  top: 28%;
  left: 52.5%;
}
.page-angel-tarot .association-left, .page-angel-tarot .association-right, .page-angel-tarot .association-bottom {
  opacity: 0;
}
.page-angel-tarot .line-content-final .line-1, .page-angel-tarot .line-content-final .ligne-1 {
  width: 519px;
  height: 2px;
  background: #3fff56;
  position: absolute;
  top: 15.6%;
  left: 24.1%;
  opacity: 0;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.page-angel-tarot .line-content-final .line-2, .page-angel-tarot .line-content-final .ligne-2 {
  width: 445px;
  height: 2px;
  background: #3fff56;
  position: absolute;
  -webkit-transform: rotate(-54.5deg);
          transform: rotate(-54.5deg);
  top: 49.3%;
  left: 40.8%;
  opacity: 0;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.page-angel-tarot .line-content-final .line-3, .page-angel-tarot .line-content-final .line-3 {
  width: 445px;
  height: 2px;
  background: #3fff56;
  position: absolute;
  -webkit-transform: rotate(54.5deg);
          transform: rotate(54.5deg);
  top: 49.3%;
  left: 14.8%;
  opacity: 0;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.page-angel-tarot .line-content-final .line-1 {
  top: 12.5% !important;
}
.page-angel-tarot .faceGraphic {
  position: absolute;
  top: 13%;
  left: 50%;
  margin-left: -160px;
  opacity: 0;
}
.page-angel-tarot .faceGraphic.rotate {
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
  -webkit-animation-name: rotate;
          animation-name: rotate;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.page-angel-tarot .before-results.rotate {
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
  -webkit-animation-name: bizarre;
          animation-name: bizarre;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
@keyframes bizarre {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(3);
            transform: scale(3);
  }
}
.page-angel-tarot .interpretation p + h2 {
  margin-top: 9rem;
}
.page-angel-tarot .card li {
  position: absolute;
  display: none;
}
.page-angel-tarot .moveOpenCards {
  position: relative;
  height: auto;
  width: auto;
  margin: 10px auto 30px;
  pointer-events: none;
}
.page-angel-tarot .moveOpenCards .pseudo-card {
  width: 140px;
  height: auto;
  aspect-ratio: 1/1.7;
  display: inline-block;
  position: relative;
}
.page-angel-tarot .cards-round-deck-container {
  width: auto;
  margin: 0 auto 20px;
}
.page-angel-tarot .cards-round-deck {
  position: relative;
  aspect-ratio: 2.3;
  max-width: 760px;
  margin: auto;
  /* Positionnement des cartes en arc de cercle */
}
.page-angel-tarot .cards-round-deck .hidden-card {
  left: initial;
  position: relative;
  top: 0;
  -webkit-transform: none;
          transform: none;
}
.page-angel-tarot .cards-round-deck img {
  width: initial;
}
.page-angel-tarot .cards-round-deck .card-block {
  width: 18%;
  margin-left: -9%;
  position: absolute;
  -webkit-transition: all 0.3s ease-in, top 0.2s, left 0.2s;
  transition: all 0.3s ease-in, top 0.2s, left 0.2s;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(1) {
  -webkit-transform: rotate(-21deg);
          transform: rotate(-21deg);
  left: 0%;
  top: 53.1356588022px;
  display: block;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(1):hover {
  left: -0.5375519243%;
  top: 41.9326936843px;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(2) {
  -webkit-transform: rotate(-19deg);
          transform: rotate(-19deg);
  left: 4.76%;
  top: 43.5851395205px;
  display: block;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(2):hover {
  left: 4.2716477683%;
  top: 32.2389166134px;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(3) {
  -webkit-transform: rotate(-17deg);
          transform: rotate(-17deg);
  left: 9.52%;
  top: 34.9561952296px;
  display: block;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(3):hover {
  left: 9.0814424429%;
  top: 23.480538158px;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(4) {
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  left: 14.28%;
  top: 27.2593389687px;
  display: block;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(4):hover {
  left: 13.8917714323%;
  top: 15.6682290533px;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(5) {
  -webkit-transform: rotate(-13deg);
          transform: rotate(-13deg);
  left: 19.04%;
  top: 20.5039481718px;
  display: block;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(5):hover {
  left: 18.7025734185%;
  top: 8.8115073944px;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(6) {
  -webkit-transform: rotate(-11deg);
          transform: rotate(-11deg);
  left: 23.8%;
  top: 14.6982532419px;
  display: block;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(6):hover {
  left: 23.5137865069%;
  top: 2.9187270405px;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(7) {
  -webkit-transform: rotate(-9deg);
          transform: rotate(-9deg);
  left: 28.56%;
  top: 9.8493275239px;
  display: block;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(7):hover {
  left: 28.3253483024%;
  top: -2.0029325633px;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(8) {
  -webkit-transform: rotate(-7deg);
          transform: rotate(-7deg);
  left: 33.32%;
  top: 5.9630786869px;
  display: block;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(8):hover {
  left: 33.1371959849%;
  top: -5.9474751328px;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(9) {
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  left: 38.08%;
  top: 3.0442415266px;
  display: block;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(9):hover {
  left: 37.9492663859%;
  top: -8.9100948505px;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(10) {
  -webkit-transform: rotate(-3deg);
          transform: rotate(-3deg);
  left: 42.84%;
  top: 1.0963721963px;
  display: block;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(10):hover {
  left: 42.7614960656%;
  top: -10.8871822207px;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(11) {
  -webkit-transform: rotate(-1deg);
          transform: rotate(-1deg);
  left: 47.6%;
  top: 0.1218438749px;
  display: block;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(11):hover {
  left: 47.5738213903%;
  top: -11.876328467px;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(12) {
  -webkit-transform: rotate(1deg);
          transform: rotate(1deg);
  left: 52.36%;
  top: 0.1218438749px;
  display: block;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(12):hover {
  left: 52.3861786097%;
  top: -11.876328467px;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(13) {
  -webkit-transform: rotate(3deg);
          transform: rotate(3deg);
  left: 57.12%;
  top: 1.0963721963px;
  display: block;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(13):hover {
  left: 57.1985039344%;
  top: -10.8871822207px;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(14) {
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
  left: 61.88%;
  top: 3.0442415266px;
  display: block;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(14):hover {
  left: 62.0107336141%;
  top: -8.9100948505px;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(15) {
  -webkit-transform: rotate(7deg);
          transform: rotate(7deg);
  left: 66.64%;
  top: 5.9630786869px;
  display: block;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(15):hover {
  left: 66.8228040151%;
  top: -5.9474751328px;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(16) {
  -webkit-transform: rotate(9deg);
          transform: rotate(9deg);
  left: 71.4%;
  top: 9.8493275239px;
  display: block;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(16):hover {
  left: 71.6346516976%;
  top: -2.0029325633px;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(17) {
  -webkit-transform: rotate(11deg);
          transform: rotate(11deg);
  left: 76.16%;
  top: 14.6982532419px;
  display: block;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(17):hover {
  left: 76.4462134931%;
  top: 2.9187270405px;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(18) {
  -webkit-transform: rotate(13deg);
          transform: rotate(13deg);
  left: 80.92%;
  top: 20.5039481718px;
  display: block;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(18):hover {
  left: 81.2574265815%;
  top: 8.8115073944px;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(19) {
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
  left: 85.68%;
  top: 27.2593389687px;
  display: block;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(19):hover {
  left: 86.0682285677%;
  top: 15.6682290533px;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(20) {
  -webkit-transform: rotate(17deg);
          transform: rotate(17deg);
  left: 90.44%;
  top: 34.9561952296px;
  display: block;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(20):hover {
  left: 90.8785575571%;
  top: 23.480538158px;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(21) {
  -webkit-transform: rotate(19deg);
          transform: rotate(19deg);
  left: 95.2%;
  top: 43.5851395205px;
  display: block;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(21):hover {
  left: 95.6883522317%;
  top: 32.2389166134px;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(22) {
  -webkit-transform: rotate(21deg);
          transform: rotate(21deg);
  left: 99.96%;
  top: 53.1356588022px;
  display: block;
}
.page-angel-tarot .cards-round-deck .card-block:nth-child(22):hover {
  left: 100.4975519243%;
  top: 41.9326936843px;
}
.page-angel-tarot .card li.norm {
  top: -200px;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.page-angel-tarot .card-front-only .name, .page-angel-tarot .center.detail .name, .page-angel-tarot .center.to-insert .name, .page-angel-tarot .center.detailgo .name {
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
  padding: 3px 0;
  color: #fff;
}
.page-angel-tarot .card-front-only img {
  width: 100%;
}
.page-angel-tarot .card-block {
  cursor: pointer;
}
.page-angel-tarot .card form {
  display: none;
}
.page-angel-tarot .card-block {
  -webkit-perspective: 1000px;
          perspective: 1000px;
}
.page-angel-tarot .card-block.retourne {
  z-index: 100;
}
.page-angel-tarot .card-block.retourne .card-inner {
  -webkit-transform: rotateY(179.9deg);
          transform: rotateY(179.9deg);
}
.page-angel-tarot .card-block, .page-angel-tarot .card-back, .page-angel-tarot .card-front {
  height: auto;
  aspect-ratio: 1/1.85;
}
.page-angel-tarot .card-inner {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  position: relative;
}
.page-angel-tarot .card-back, .page-angel-tarot .card-front {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.page-angel-tarot .card-back {
  z-index: 2;
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  background: url("/images/angel-tarot/card-back.png") center center no-repeat;
  background-size: cover;
}
.page-angel-tarot .card-front {
  -webkit-transform: rotateY(179.9deg);
          transform: rotateY(179.9deg);
}
.page-angel-tarot .ten-cards .card-block-wrap, .page-angel-tarot .seven-cards .card-block-wrap, .page-angel-tarot .four-cards .card-block-wrap {
  margin-top: 20px;
}
.page-angel-tarot .c-intro {
  color: #fff;
  text-align: center;
  padding: 30px 0;
  margin-bottom: 40px;
}
.page-angel-tarot .c-intro h1 {
  position: relative;
  display: inline-block;
  border-bottom: 2px solid #fff;
}
.page-angel-tarot .c-intro p {
  max-width: 630px;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
}
.page-angel-tarot .before-results {
  position: relative;
  width: 710px;
  height: 710px;
  margin: 0px auto;
}
.page-angel-tarot .before-results .card-front-only {
  position: absolute;
  left: 300px;
  top: 150px;
  -webkit-transition: All 0.6s ease-in;
  transition: All 0.6s ease-in;
  z-index: 50;
  width: 90px;
}
.page-angel-tarot .before-results .card-front-only:after {
  content: "";
  background: #f0ff00;
  height: 0;
  z-index: -1;
  width: 2px;
  position: absolute;
  top: 100%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-transition: All 0.8s ease-in;
  transition: All 0.8s ease-in;
}
.page-angel-tarot .before-results .card-front-only.yellow-line:after {
  height: 150%;
  width: 2px;
  opacity: 1;
}
.page-angel-tarot .before-results .card-front-only:before {
  content: attr(data-number);
  background: #fff;
  color: #ff0000;
  text-align: center;
  line-height: 24px;
  font-weight: bold;
  border-radius: 50%;
  opacity: 0;
  z-index: 0;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 100%;
  margin-top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-transition: All 0.3s ease-in;
  transition: All 0.3s ease-in;
}
.page-angel-tarot .before-results .card-front-only.showNumbers:before {
  opacity: 1;
  margin-top: 20px;
}
.page-angel-tarot .before-results .card-front-only.yellow-line.card-4:after,
.page-angel-tarot .before-results .card-front-only.yellow-line.card-5:after,
.page-angel-tarot .before-results .card-front-only.yellow-line.card-6:after,
.page-angel-tarot .before-results .card-front-only.yellow-line.card-4:before,
.page-angel-tarot .before-results .card-front-only.yellow-line.card-5:before,
.page-angel-tarot .before-results .card-front-only.yellow-line.card-6:before {
  display: none;
}
.page-angel-tarot .before-results.hexaShape .card-front-only.card-1 {
  left: 154px;
  top: 125px;
  -webkit-transform: rotate(-60deg);
          transform: rotate(-60deg);
}
.page-angel-tarot .before-results.hexaShape .card-front-only.card-2 {
  left: 284px;
  top: 10px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.page-angel-tarot .before-results.hexaShape .card-front-only.card-3 {
  left: 485px;
  top: 125px;
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
}
.page-angel-tarot .before-results.hexaShape .card-front-only.card-4 {
  left: 482px;
  top: 350px;
  -webkit-transform: rotate(120deg);
          transform: rotate(120deg);
}
.page-angel-tarot .before-results.hexaShape .card-front-only.card-5 {
  left: 284px;
  top: 465px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.page-angel-tarot .before-results.hexaShape .card-front-only.card-6 {
  left: 86px;
  top: 350px;
  -webkit-transform: rotate(240deg);
          transform: rotate(240deg);
}
.page-angel-tarot .association-left, .page-angel-tarot .association-right {
  float: left;
  width: 50%;
}
.page-angel-tarot .associations {
  text-align: center;
  position: relative;
}
.page-angel-tarot .associations .tehConnectingTriangle {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 80%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 99;
  opacity: 0;
  -webkit-transition: All 0.8s ease-in;
  transition: All 0.8s ease-in;
}
.page-angel-tarot .associations .tehConnectingTriangle.active {
  opacity: 1;
}
.page-angel-tarot .associations span {
  font-family: "Playball", cursive;
  font-size: 18px;
  display: block;
  color: #fff;
}
.page-angel-tarot .associations strong {
  text-decoration: underline;
  color: #fff;
  font-weight: normal;
  font-size: 24px;
}
.page-angel-tarot .associations .card-front-only {
  display: inline-block;
  margin: 15px 6px;
  width: 90px;
}
.page-angel-tarot .association-top {
  margin-bottom: 50px;
}
.page-angel-tarot .cards-round-deck .card-block.zero-opacity {
  z-index: -100;
}
.page-angel-tarot .cards-round-deck .card-block.zero-opacity .card-inner {
  opacity: 0 !important;
}
.page-angel-tarot .nom-carte {
  display: block;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 10px;
  text-align: center;
}
.page-angel-tarot .card-front {
  text-align: center;
}
.page-angel-tarot .eva-sexe {
  display: none;
}
.page-angel-tarot .eva-sexe, .page-angel-tarot .eva-sexe-suite {
  display: none;
  color: #fff;
  text-align: center;
  margin-top: 20px;
  min-height: 200px;
}
@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(2160deg);
            transform: rotate(2160deg);
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.page-angel-tarot .blink {
  -webkit-animation: blink 2s ease 1;
          animation: blink 2s ease 1;
}
@keyframes pouf {
  from {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  to {
    -webkit-transform: rotateY(12000deg);
            transform: rotateY(12000deg);
  }
}

@media screen and (max-width: 1080px) {
  .page-angel-tarot .cards-round-deck {
    margin: 0 14% 0;
  }
}
@media screen and (max-width: 1200px) {
  .page-angel-tarot .card ul {
    left: 22px;
  }
  .page-angel-tarot .four-cards .card-block-wrap {
    width: 25% !important;
  }
}
@media screen and (max-width: 800px) {
  .page-angel-tarot .card ul {
    left: -50px;
    margin-top: 35px;
  }
  .page-angel-tarot .line-content-final .line-1, .page-angel-tarot .line-content-final .ligne-1 {
    left: 15.1%;
  }
  .page-angel-tarot .line-content-final .line-2, .page-angel-tarot .line-content-final .ligne-2 {
    left: 37.8%;
  }
  .page-angel-tarot .line-content-final .line-3, .page-angel-tarot .line-content-final .ligne-3 {
    left: 2.8%;
  }
  .page-angel-tarot .faceGraphic {
    top: 8%;
  }
  .page-angel-tarot .association-bottom .card-front-only img {
    max-width: 60px;
  }
  .page-angel-tarot .association-top {
    margin-bottom: 0px !important;
  }
  .page-angel-tarot .t-pageHeader h2 {
    font-size: 20px;
  }
  .page-angel-tarot .before-results {
    margin-left: calc((100vw - 30px - 710px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .page-angel-tarot .cards-round-deck {
    aspect-ratio: 1.9;
    margin: 0 13%;
    /* Positionnement des cartes en arc de cercle */
  }
  .page-angel-tarot .cards-round-deck .card-block {
    width: 24%;
    margin-left: -12%;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(1) {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
    left: 0%;
    top: 27.2593389687px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(1):hover {
    left: -0.2588190451%;
    top: 18.5660065321px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(2) {
    -webkit-transform: rotate(-13.57deg);
            transform: rotate(-13.57deg);
    left: 4.76%;
    top: 22.3328100311px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(2):hover {
    left: 4.5253668367%;
    top: 13.584054144px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(3) {
    -webkit-transform: rotate(-12.14deg);
            transform: rotate(-12.14deg);
    left: 9.52%;
    top: 17.8906742985px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(3):hover {
    left: 9.3096988668%;
    top: 9.0919443844px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(4) {
    -webkit-transform: rotate(-10.71deg);
            transform: rotate(-10.71deg);
    left: 14.28%;
    top: 13.9356986878px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(4):hover {
    left: 14.0941618892%;
    top: 5.092475298px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(5) {
    -webkit-transform: rotate(-9.28deg);
            transform: rotate(-9.28deg);
    left: 19.04%;
    top: 10.4703466734px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(5):hover {
    left: 18.8787406664%;
    top: 1.5881380735px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(6) {
    -webkit-transform: rotate(-7.85deg);
            transform: rotate(-7.85deg);
    left: 23.8%;
    top: 7.4967767533px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(6):hover {
    left: 23.6634198888%;
    top: -1.4188845083px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(7) {
    -webkit-transform: rotate(-6.42deg);
            transform: rotate(-6.42deg);
    left: 28.56%;
    top: 5.016841104px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(7):hover {
    left: 28.4481841841%;
    top: -3.9267194336px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(8) {
    -webkit-transform: rotate(-4.99deg);
            transform: rotate(-4.99deg);
    left: 33.32%;
    top: 3.0320844276px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(8):hover {
    left: 33.2330181274%;
    top: -5.9338046226px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(9) {
    -webkit-transform: rotate(-3.56deg);
            transform: rotate(-3.56deg);
    left: 38.08%;
    top: 1.5437429889px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(9):hover {
    left: 38.0179062498%;
    top: -7.4388899025px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(10) {
    -webkit-transform: rotate(-2.13deg);
            transform: rotate(-2.13deg);
    left: 42.84%;
    top: 0.5527438458px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(10):hover {
    left: 42.8028330492%;
    top: -8.4410377859px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(11) {
    -webkit-transform: rotate(-0.7deg);
            transform: rotate(-0.7deg);
    left: 47.6%;
    top: 0.0597042716px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(11):hover {
    left: 47.5877829992%;
    top: -8.9396240553px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(12) {
    -webkit-transform: rotate(0.73deg);
            transform: rotate(0.73deg);
    left: 52.36%;
    top: 0.0649313708px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(12):hover {
    left: 52.3727405588%;
    top: -8.9343381512px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(13) {
    -webkit-transform: rotate(2.16deg);
            transform: rotate(2.16deg);
    left: 57.12%;
    top: 0.5684218875px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(13):hover {
    left: 57.1576901827%;
    top: -8.4251833662px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(14) {
    -webkit-transform: rotate(3.59deg);
            transform: rotate(3.59deg);
    left: 61.88%;
    top: 1.5698622076px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(14):hover {
    left: 61.94261633%;
    top: -7.4124768425px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(15) {
    -webkit-transform: rotate(5.02deg);
            transform: rotate(5.02deg);
    left: 66.64%;
    top: 3.0686285542px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(15):hover {
    left: 66.727503475%;
    top: -5.8968493746px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(16) {
    -webkit-transform: rotate(6.45deg);
            transform: rotate(6.45deg);
    left: 71.4%;
    top: 5.0637873759px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(16):hover {
    left: 71.5123361158%;
    top: -3.8792450161px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(17) {
    -webkit-transform: rotate(7.88deg);
            transform: rotate(7.88deg);
    left: 76.16%;
    top: 7.5540959285px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(17):hover {
    left: 76.2970987846%;
    top: -1.3609204923px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(18) {
    -webkit-transform: rotate(9.31deg);
            transform: rotate(9.31deg);
    left: 80.92%;
    top: 10.5380030491px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(18):hover {
    left: 81.0817760575%;
    top: 1.6565555834px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(19) {
    -webkit-transform: rotate(10.74deg);
            transform: rotate(10.74deg);
    left: 85.68%;
    top: 14.0136501221px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(19):hover {
    left: 85.8663525632%;
    top: 5.171303686px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(20) {
    -webkit-transform: rotate(12.17deg);
            transform: rotate(12.17deg);
    left: 90.44%;
    top: 17.9788722371px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(20):hover {
    left: 90.6508129937%;
    top: 9.1811345497px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(21) {
    -webkit-transform: rotate(13.6deg);
            transform: rotate(13.6deg);
    left: 95.2%;
    top: 22.4311995372px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(21):hover {
    left: 95.4351421131%;
    top: 13.683550532px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(22) {
    -webkit-transform: rotate(15.03deg);
            transform: rotate(15.03deg);
    left: 99.96%;
    top: 27.3678587575px;
  }
  .page-angel-tarot .cards-round-deck .card-block:nth-child(22):hover {
    left: 100.2193247672%;
    top: 18.6757471685px;
  }
  .page-angel-tarot .card ul {
    left: -136px;
    min-height: 120px;
  }
  .page-angel-tarot #g1 {
    height: 320px;
    width: 300px;
  }
  .page-angel-tarot .card li .name {
    top: 119px;
    width: 74px;
  }
  .page-angel-tarot .moveOpenCards .card-front, .page-angel-tarot .moveOpenCards .card-block {
    width: 100px;
  }
  .page-angel-tarot .association-top .card-front-only {
    max-width: 35%;
    vertical-align: top;
  }
  .page-angel-tarot .line-content-final {
    display: none;
  }
  .page-angel-tarot .associations .name {
    display: none;
  }
  .page-angel-tarot .card-front-only .name, .page-angel-tarot .center.detail .name, .page-angel-tarot .center.detailgo .name, .page-angel-tarot .center.to-insert .name {
    font-size: 0.8rem;
  }
  .page-angel-tarot .c-intro {
    padding-top: 10px !important;
  }
}
@media screen and (max-width: 620px) {
  .page-angel-tarot .cards-round-deck {
    aspect-ratio: 1.35;
    margin: 0 15%;
  }
  .page-angel-tarot .cards-round-deck .card-block {
    width: 32%;
    margin-left: -16%;
  }
  .page-angel-tarot .moveOpenCards .pseudo-card {
    width: 100px;
  }
}
@media screen and (max-width: 560px) {
  .page-angel-tarot .before-results {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    margin-left: calc((100vw - 20px - 568px) / 2);
  }
}
@media screen and (max-width: 360px) {
  .page-angel-tarot .before-results {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    margin-left: calc((100vw - 20px - 426px) / 2);
  }
}
@media screen and (max-width: 1200px) {
  .title {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */


/* Mdifs css Guillaume pas présentes dans scss */

.dark-section.page {
  background-color:#000;
  padding-top:70px;
}

.eva-mail-ok input {
  margin:0px auto 15px;
}

.final-step form {
margin-top:-20px;
}

.eva-mail-ok .btn-group {
  margin-top:0px;
}

.eva-mail-ok .check_row.center {
  margin-bottom:0px;
  padding-bottom:0px;
}

.form_inside input {
  margin:0px auto 15px;
}

.form_inside .btn-group {
  margin-top:0px;
}

.form_inside .check_row.center {
  margin-bottom:0px;
  padding-bottom:0px;
}

.eva-delattre-with-ia {
  padding-bottom:0px;
  padding-top:0px;
}

.eva-delattre-with-ia .btn-group {
  margin-bottom:0px;
}

.eva-mail-ok .btn-group {
margin:20px 0px 0px 0px;
}


#ajax_callback input {
  margin:0px auto 15px;
}

#ajax_callback .btn-group {
margin:20px 0px 0px 0px;
}

#ajax_callback.check_row.center {
  margin-bottom:0px;
  padding-bottom:0px;
}

.question-prompt.with-btn {
  display:block;
}

.body-amour .question-prompt.with-btn {
  display:block;
}

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

/* Pas de zoom sur les form en mobile */

input[type="text"] {
  font-size: 16px;
}

.page-celtic-cross-tarot .card form {
  display:block;
}

.home-optin-form-container.optin-panel {
  display:none !important;
}


.page-daily-tarot {
    background: url("/images/daily-tarot/bg.jpg") no-repeat fixed center center #000000;
    background-size: cover;
}
.page-daily-tarot .dark-section {
    background: #000 url("/images/daily-tarot/bg.jpg") no-repeat fixed 50% 0;
    background-size: cover;
}

.page-daily-tarot .card-area {
    color: #fff;
}
.page-daily-tarot p {
    color: #fff;
}
.page-daily-tarot h1 {
    color: #fff;
}
.page-daily-tarot .cards-round-deck > div:nth-child(1) {
    left: 0%;
}
.page-daily-tarot .cards-round-deck > div:nth-child(2) {
    left: 3%;
}
.page-daily-tarot .cards-round-deck > div:nth-child(3) {
    left: 6%;
}
.page-daily-tarot .cards-round-deck > div:nth-child(4) {
    left: 9%;
}
.page-daily-tarot .cards-round-deck > div:nth-child(5) {
    left: 12%;
}
.page-daily-tarot .cards-round-deck > div:nth-child(6) {
    left: 15%;
}
.page-daily-tarot .cards-round-deck > div:nth-child(7) {
    left: 18%;
}
.page-daily-tarot .cards-round-deck > div:nth-child(8) {
    left: 21%;
}
.page-daily-tarot .cards-round-deck > div:nth-child(9) {
    left: 24%;
}
.page-daily-tarot .cards-round-deck > div:nth-child(10) {
    left: 27%;
}
.page-daily-tarot .cards-round-deck > div:nth-child(11) {
    left: 30%;
}
.page-daily-tarot .cards-round-deck > div:nth-child(12) {
    left: 33%;
}
.page-daily-tarot .cards-round-deck > div:nth-child(13) {
    left: 36%;
}
.page-daily-tarot .cards-round-deck > div:nth-child(14) {
    left: 39%;
}
.page-daily-tarot .cards-round-deck > div:nth-child(15) {
    left: 42%;
}
.page-daily-tarot .cards-round-deck > div:nth-child(16) {
    left: 45%;
}
.page-daily-tarot .cards-round-deck > div:nth-child(17) {
    left: 48%;
}
.page-daily-tarot .cards-round-deck > div:nth-child(18) {
    left: 51%;
}
.page-daily-tarot .cards-round-deck > div:nth-child(19) {
    left: 54%;
}
.page-daily-tarot .cards-round-deck > div:nth-child(20) {
    left: 57%;
}
.page-daily-tarot .cards-round-deck > div:nth-child(21) {
    left: 60%;
}
.page-daily-tarot .cards-round-deck > div:nth-child(22) {
    left: 63%;
}
.page-daily-tarot .card ul {
    left: 31px;
    margin: 0 auto;
    min-height: 285px;
    position: relative;
    width: 80%;
}
.page-daily-tarot .card-chosen.chosen-ouinon li.last-card {
    position: relative;
    width: 100%;
}
.page-daily-tarot li.last-card img {
    position: absolute;
}
.page-daily-tarot li.last-card img:nth-child(1) {
    left: 20%;
    top: 0;
}
.page-daily-tarot li.last-card img:nth-child(2) {
    left: 45%;
    top: 0;
}
.page-daily-tarot li.last-card img:nth-child(3) {
    left: 70%;
    top: 0;
}
.page-daily-tarot li.last-card img:nth-child(4) {
    left: 20%;
    top: 250px;
}
.page-daily-tarot li.last-card img:nth-child(5) {
    left: 45%;
    top: 250px;
}
.page-daily-tarot li.last-card img:nth-child(6) {
    left: 70%;
    top: 250px;
}
.page-daily-tarot .last-step > h2 {
    font-size: 4.5rem;
    margin: 2rem 0 6rem;
}
.page-daily-tarot .last-step h3 {
    color: #fff;
    font-size: 3.3rem;
    font-weight: 500;
    line-height: 5rem;
    margin: 0 0 1rem;
    text-align: left;
    text-decoration: none;
}
.page-daily-tarot .last-step p + h3 {
    margin: 5rem 0 1rem;
}
.page-daily-tarot .card .other-tarot li {
    top: initial;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}
.page-daily-tarot .card-chosen .hide-mask {
    left: 0;
    width: 100%;
    height: 100%;
}
.page-daily-tarot svg + svg {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}
.page-daily-tarot .last-card.rotate {
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-name: pouf;
    animation-name: pouf;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}
.page-daily-tarot .card .chosen-ouinon ul {
    left: 0;
    min-height: 220px;
    text-align: center;
    width: 100%;
}
.page-daily-tarot .card-chosen.chosen-ouinon li {
    float: none;
    left: inherit;
    top: inherit;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    width: 15%;
}
.page-daily-tarot .card-chosen.chosen-ouinon .hide-mask {
    left: 0;
    width: 100% !important;
}
.page-daily-tarot .dark-section .card-chosen.chosen-ouinon {
    background: none no-repeat scroll 0 0 transparent;
    min-height: inherit;
}
.page-daily-tarot .saturate {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
.page-daily-tarot .last-step .col-sm-3 img {
    margin: 0 0 3rem;
}
.page-daily-tarot h2 {
    color: #fbf5d2;
}
.page-daily-tarot .grey img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.page-daily-tarot .before-results .card-front-only {
    opacity: 0;
}
.page-daily-tarot .before-results .card-front-only.card-1 {
    -webkit-transform: rotate(-60deg);
    transform: rotate(-60deg);
    left: 23.6%;
    top: 10.5%;
}
.page-daily-tarot .before-results .card-front-only.card-2 {
    top: 0;
}
.page-daily-tarot .before-results .card-front-only.card-3 {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    left: 60.9%;
    top: 10.5%;
}
.page-daily-tarot .before-results .card-front-only.card-4 {
    -webkit-transform: rotate(120deg);
    transform: rotate(120deg);
    left: 61%;
    top: 32%;
}
.page-daily-tarot .before-results .card-front-only.card-5 {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    top: 42.5%;
}
.page-daily-tarot .before-results .card-front-only.card-6 {
    -webkit-transform: rotate(-120deg);
    transform: rotate(-120deg);
    left: 23.8%;
    top: 32%;
}
.page-daily-tarot .line-content-init .line-1, .page-daily-tarot .line-content-init .ligne-1 {
    width: 145px;
    height: 2px;
    background: #3fff56;
    top: 32.6%;
    left: 38.5%;
    position: absolute;
    -webkit-transform: rotate(30.5deg);
    transform: rotate(30.5deg);
    opacity: 0;
    -webkit-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.page-daily-tarot .line-content-init .line-2, .page-daily-tarot .line-content-init .ligne-2 {
    width: 142px;
    height: 2px;
    background: #3fff56;
    position: absolute;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    top: 32.1%;
    left: 38.8%;
    opacity: 0;
    -webkit-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.page-daily-tarot .line-content-init .line-3, .page-daily-tarot .line-content-init .ligne-3 {
    width: 146px;
    height: 2px;
    background: #3fff56;
    position: absolute;
    -webkit-transform: rotate(-30.5deg);
    transform: rotate(-30.5deg);
    top: 32.6%;
    left: 38.5%;
    opacity: 0;
    -webkit-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.page-daily-tarot .number-content > span {
    display: block;
    background: white;
    width: 23px;
    height: 23px;
    text-align: center;
    border-radius: 50%;
    color: #ff0000;
    font-weight: bold;
    padding-top: 3px;
    position: absolute;
    opacity: 0;
}
.page-daily-tarot .number-content .bulle-1 {
    top: 28%;
    left: 42%;
}
.page-daily-tarot .number-content .bulle-2 {
    top: 25%;
    left: 47%;
}
.page-daily-tarot .number-content .bulle-3 {
    top: 28%;
    left: 52.5%;
}
.page-daily-tarot .association-left, .page-daily-tarot .association-right, .page-daily-tarot .association-bottom {
    opacity: 0;
}
.page-daily-tarot .line-content-final .line-1, .page-daily-tarot .line-content-final .ligne-1 {
    width: 519px;
    height: 2px;
    background: #3fff56;
    position: absolute;
    top: 15.6%;
    left: 24.1%;
    opacity: 0;
    -webkit-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.page-daily-tarot .line-content-final .line-2, .page-daily-tarot .line-content-final .ligne-2 {
    width: 445px;
    height: 2px;
    background: #3fff56;
    position: absolute;
    -webkit-transform: rotate(-54.5deg);
    transform: rotate(-54.5deg);
    top: 49.3%;
    left: 40.8%;
    opacity: 0;
    -webkit-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.page-daily-tarot .line-content-final .line-3, .page-daily-tarot .line-content-final .line-3 {
    width: 445px;
    height: 2px;
    background: #3fff56;
    position: absolute;
    -webkit-transform: rotate(54.5deg);
    transform: rotate(54.5deg);
    top: 49.3%;
    left: 14.8%;
    opacity: 0;
    -webkit-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.page-daily-tarot .line-content-final .line-1 {
    top: 12.5% !important;
}
.page-daily-tarot .faceGraphic {
    position: absolute;
    top: 13%;
    left: 50%;
    margin-left: -160px;
    opacity: 0;
}
.page-daily-tarot .faceGraphic.rotate {
    -webkit-animation-duration: 6s;
    animation-duration: 6s;
    -webkit-animation-name: rotate;
    animation-name: rotate;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}
.page-daily-tarot .before-results.rotate {
    -webkit-animation-duration: 6s;
    animation-duration: 6s;
    -webkit-animation-name: bizarre;
    animation-name: bizarre;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}
@keyframes bizarre {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    to {
        -webkit-transform: scale(3);
        transform: scale(3);
    }
}
.page-daily-tarot .interpretation p + h2 {
    margin-top: 9rem;
}
.page-daily-tarot .card li {
    position: absolute;
    display: none;
}
.page-daily-tarot .moveOpenCards {
    position: relative;
    height: auto;
    width: auto;
    margin: 10px auto 30px;
    pointer-events: none;
}
.page-daily-tarot .moveOpenCards .pseudo-card {
    width: 140px;
    height: auto;
    aspect-ratio: 1/1.7;
    display: inline-block;
    position: relative;
}
.page-daily-tarot .cards-round-deck-container {
    width: auto;
    margin: 0 auto 20px;
}
.page-daily-tarot .cards-round-deck {
    position: relative;
    aspect-ratio: 2.3;
    max-width: 760px;
    margin: auto;
    /* Positionnement des cartes en arc de cercle */
}
.page-daily-tarot .cards-round-deck .hidden-card {
    left: initial;
    position: relative;
    top: 0;
    -webkit-transform: none;
    transform: none;
}
.page-daily-tarot .cards-round-deck img {
    width: initial;
}
.page-daily-tarot .cards-round-deck .card-block {
    width: 18%;
    margin-left: -9%;
    position: absolute;
    -webkit-transition: all 0.3s ease-in, top 0.2s, left 0.2s;
    transition: all 0.3s ease-in, top 0.2s, left 0.2s;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(1) {
    -webkit-transform: rotate(-21deg);
    transform: rotate(-21deg);
    left: 0%;
    top: 53.1356588022px;
    display: block;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(1):hover {
    left: -0.5375519243%;
    top: 41.9326936843px;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(2) {
    -webkit-transform: rotate(-19deg);
    transform: rotate(-19deg);
    left: 4.76%;
    top: 43.5851395205px;
    display: block;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(2):hover {
    left: 4.2716477683%;
    top: 32.2389166134px;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(3) {
    -webkit-transform: rotate(-17deg);
    transform: rotate(-17deg);
    left: 9.52%;
    top: 34.9561952296px;
    display: block;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(3):hover {
    left: 9.0814424429%;
    top: 23.480538158px;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(4) {
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
    left: 14.28%;
    top: 27.2593389687px;
    display: block;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(4):hover {
    left: 13.8917714323%;
    top: 15.6682290533px;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(5) {
    -webkit-transform: rotate(-13deg);
    transform: rotate(-13deg);
    left: 19.04%;
    top: 20.5039481718px;
    display: block;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(5):hover {
    left: 18.7025734185%;
    top: 8.8115073944px;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(6) {
    -webkit-transform: rotate(-11deg);
    transform: rotate(-11deg);
    left: 23.8%;
    top: 14.6982532419px;
    display: block;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(6):hover {
    left: 23.5137865069%;
    top: 2.9187270405px;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(7) {
    -webkit-transform: rotate(-9deg);
    transform: rotate(-9deg);
    left: 28.56%;
    top: 9.8493275239px;
    display: block;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(7):hover {
    left: 28.3253483024%;
    top: -2.0029325633px;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(8) {
    -webkit-transform: rotate(-7deg);
    transform: rotate(-7deg);
    left: 33.32%;
    top: 5.9630786869px;
    display: block;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(8):hover {
    left: 33.1371959849%;
    top: -5.9474751328px;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(9) {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
    left: 38.08%;
    top: 3.0442415266px;
    display: block;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(9):hover {
    left: 37.9492663859%;
    top: -8.9100948505px;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(10) {
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
    left: 42.84%;
    top: 1.0963721963px;
    display: block;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(10):hover {
    left: 42.7614960656%;
    top: -10.8871822207px;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(11) {
    -webkit-transform: rotate(-1deg);
    transform: rotate(-1deg);
    left: 47.6%;
    top: 0.1218438749px;
    display: block;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(11):hover {
    left: 47.5738213903%;
    top: -11.876328467px;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(12) {
    -webkit-transform: rotate(1deg);
    transform: rotate(1deg);
    left: 52.36%;
    top: 0.1218438749px;
    display: block;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(12):hover {
    left: 52.3861786097%;
    top: -11.876328467px;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(13) {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
    left: 57.12%;
    top: 1.0963721963px;
    display: block;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(13):hover {
    left: 57.1985039344%;
    top: -10.8871822207px;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(14) {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
    left: 61.88%;
    top: 3.0442415266px;
    display: block;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(14):hover {
    left: 62.0107336141%;
    top: -8.9100948505px;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(15) {
    -webkit-transform: rotate(7deg);
    transform: rotate(7deg);
    left: 66.64%;
    top: 5.9630786869px;
    display: block;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(15):hover {
    left: 66.8228040151%;
    top: -5.9474751328px;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(16) {
    -webkit-transform: rotate(9deg);
    transform: rotate(9deg);
    left: 71.4%;
    top: 9.8493275239px;
    display: block;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(16):hover {
    left: 71.6346516976%;
    top: -2.0029325633px;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(17) {
    -webkit-transform: rotate(11deg);
    transform: rotate(11deg);
    left: 76.16%;
    top: 14.6982532419px;
    display: block;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(17):hover {
    left: 76.4462134931%;
    top: 2.9187270405px;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(18) {
    -webkit-transform: rotate(13deg);
    transform: rotate(13deg);
    left: 80.92%;
    top: 20.5039481718px;
    display: block;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(18):hover {
    left: 81.2574265815%;
    top: 8.8115073944px;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(19) {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
    left: 85.68%;
    top: 27.2593389687px;
    display: block;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(19):hover {
    left: 86.0682285677%;
    top: 15.6682290533px;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(20) {
    -webkit-transform: rotate(17deg);
    transform: rotate(17deg);
    left: 90.44%;
    top: 34.9561952296px;
    display: block;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(20):hover {
    left: 90.8785575571%;
    top: 23.480538158px;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(21) {
    -webkit-transform: rotate(19deg);
    transform: rotate(19deg);
    left: 95.2%;
    top: 43.5851395205px;
    display: block;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(21):hover {
    left: 95.6883522317%;
    top: 32.2389166134px;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(22) {
    -webkit-transform: rotate(21deg);
    transform: rotate(21deg);
    left: 99.96%;
    top: 53.1356588022px;
    display: block;
}
.page-daily-tarot .cards-round-deck .card-block:nth-child(22):hover {
    left: 100.4975519243%;
    top: 41.9326936843px;
}
.page-daily-tarot .card li.norm {
    top: -200px;
    -webkit-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.page-daily-tarot .card-front-only .name, .page-daily-tarot .center.detail .name, .page-daily-tarot .center.to-insert .name, .page-daily-tarot .center.detailgo .name {
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    padding: 3px 0;
    color: #fff;
}
.page-daily-tarot .card-front-only img {
    width: 100%;
}
.page-daily-tarot .card-block {
    cursor: pointer;
}
.page-daily-tarot .card form {
    display: none;
}
.page-daily-tarot .card-block {
    -webkit-perspective: 1000px;
    perspective: 1000px;
}
.page-daily-tarot .card-block.retourne {
    z-index: 100;
}
.page-daily-tarot .card-block.retourne .card-inner {
    -webkit-transform: rotateY(179.9deg);
    transform: rotateY(179.9deg);
}
.page-daily-tarot .card-block, .page-daily-tarot .card-back, .page-daily-tarot .card-front {
    height: auto;
    aspect-ratio: 1/1.85;
}
.page-daily-tarot .card-inner {
    -webkit-transition: 0.6s;
    transition: 0.6s;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    position: relative;
}
.page-daily-tarot .card-back, .page-daily-tarot .card-front {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.page-daily-tarot .card-back {
    z-index: 2;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    background: url("/images/daily-tarot/card-back.png") center center no-repeat;
    background-size: cover;
}
.page-daily-tarot .card-front {
    -webkit-transform: rotateY(179.9deg);
    transform: rotateY(179.9deg);
}
.page-daily-tarot .ten-cards .card-block-wrap, .page-daily-tarot .seven-cards .card-block-wrap, .page-daily-tarot .four-cards .card-block-wrap {
    margin-top: 20px;
}
.page-daily-tarot .c-intro {
    color: #fff;
    text-align: center;
    padding: 30px 0;
    margin-bottom: 40px;
}
.page-daily-tarot .c-intro h1 {
    position: relative;
    display: inline-block;
    border-bottom: 2px solid #fff;
}
.page-daily-tarot .c-intro p {
    max-width: 630px;
    color: #fff;
    margin-left: auto;
    margin-right: auto;
}
.page-daily-tarot .before-results {
    position: relative;
    width: 710px;
    height: 710px;
    margin: 0px auto;
}
.page-daily-tarot .before-results .card-front-only {
    position: absolute;
    left: 300px;
    top: 150px;
    -webkit-transition: All 0.6s ease-in;
    transition: All 0.6s ease-in;
    z-index: 50;
    width: 90px;
}
.page-daily-tarot .before-results .card-front-only:after {
    content: "";
    background: #f0ff00;
    height: 0;
    z-index: -1;
    width: 2px;
    position: absolute;
    top: 100%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    -webkit-transition: All 0.8s ease-in;
    transition: All 0.8s ease-in;
}
.page-daily-tarot .before-results .card-front-only.yellow-line:after {
    height: 150%;
    width: 2px;
    opacity: 1;
}
.page-daily-tarot .before-results .card-front-only:before {
    content: attr(data-number);
    background: #fff;
    color: #ff0000;
    text-align: center;
    line-height: 24px;
    font-weight: bold;
    border-radius: 50%;
    opacity: 0;
    z-index: 0;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 100%;
    margin-top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    -webkit-transition: All 0.3s ease-in;
    transition: All 0.3s ease-in;
}
.page-daily-tarot .before-results .card-front-only.showNumbers:before {
    opacity: 1;
    margin-top: 20px;
}
.page-daily-tarot .before-results .card-front-only.yellow-line.card-4:after,
.page-daily-tarot .before-results .card-front-only.yellow-line.card-5:after,
.page-daily-tarot .before-results .card-front-only.yellow-line.card-6:after,
.page-daily-tarot .before-results .card-front-only.yellow-line.card-4:before,
.page-daily-tarot .before-results .card-front-only.yellow-line.card-5:before,
.page-daily-tarot .before-results .card-front-only.yellow-line.card-6:before {
    display: none;
}
.page-daily-tarot .before-results.hexaShape .card-front-only.card-1 {
    left: 154px;
    top: 125px;
    -webkit-transform: rotate(-60deg);
    transform: rotate(-60deg);
}
.page-daily-tarot .before-results.hexaShape .card-front-only.card-2 {
    left: 284px;
    top: 10px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}
.page-daily-tarot .before-results.hexaShape .card-front-only.card-3 {
    left: 485px;
    top: 125px;
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
}
.page-daily-tarot .before-results.hexaShape .card-front-only.card-4 {
    left: 482px;
    top: 350px;
    -webkit-transform: rotate(120deg);
    transform: rotate(120deg);
}
.page-daily-tarot .before-results.hexaShape .card-front-only.card-5 {
    left: 284px;
    top: 465px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.page-daily-tarot .before-results.hexaShape .card-front-only.card-6 {
    left: 86px;
    top: 350px;
    -webkit-transform: rotate(240deg);
    transform: rotate(240deg);
}
.page-daily-tarot .association-left, .page-daily-tarot .association-right {
    float: left;
    width: 50%;
}
.page-daily-tarot .associations {
    text-align: center;
    position: relative;
}
.page-daily-tarot .associations .tehConnectingTriangle {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: 80%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 99;
    opacity: 0;
    -webkit-transition: All 0.8s ease-in;
    transition: All 0.8s ease-in;
}
.page-daily-tarot .associations .tehConnectingTriangle.active {
    opacity: 1;
}
.page-daily-tarot .associations span {
    font-family: "Playball", cursive;
    font-size: 18px;
    display: block;
    color: #fff;
}
.page-daily-tarot .associations strong {
    text-decoration: underline;
    color: #fff;
    font-weight: normal;
    font-size: 24px;
}
.page-daily-tarot .associations .card-front-only {
    display: inline-block;
    margin: 15px 6px;
    width: 90px;
}
.page-daily-tarot .association-top {
    margin-bottom: 50px;
}
.page-daily-tarot .cards-round-deck .card-block.zero-opacity {
    z-index: -100;
}
.page-daily-tarot .cards-round-deck .card-block.zero-opacity .card-inner {
    opacity: 0 !important;
}
.page-daily-tarot .nom-carte {
    display: block;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 10px;
    text-align: center;
}
.page-daily-tarot .card-front {
    text-align: center;
}
.page-daily-tarot .eva-sexe {
    display: none;
}
.page-daily-tarot .eva-sexe, .page-daily-tarot .eva-sexe-suite {
    display: none;
    color: #fff;
    text-align: center;
    margin-top: 20px;
    min-height: 200px;
}
@keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(2160deg);
        transform: rotate(2160deg);
    }
}
@keyframes blink {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    40% {
        opacity: 0;
    }
    60% {
        opacity: 1;
    }
    80% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.page-daily-tarot .blink {
    -webkit-animation: blink 2s ease 1;
    animation: blink 2s ease 1;
}
@keyframes pouf {
    from {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
    to {
        -webkit-transform: rotateY(12000deg);
        transform: rotateY(12000deg);
    }
}

@media screen and (max-width: 1080px) {
    .page-daily-tarot .cards-round-deck {
        margin: 0 14% 0;
    }
}
@media screen and (max-width: 1200px) {
    .page-daily-tarot .card ul {
        left: 22px;
    }
    .page-daily-tarot .four-cards .card-block-wrap {
        width: 25% !important;
    }
}
@media screen and (max-width: 800px) {
    .page-daily-tarot .card ul {
        left: -50px;
        margin-top: 35px;
    }
    .page-daily-tarot .line-content-final .line-1, .page-daily-tarot .line-content-final .ligne-1 {
        left: 15.1%;
    }
    .page-daily-tarot .line-content-final .line-2, .page-daily-tarot .line-content-final .ligne-2 {
        left: 37.8%;
    }
    .page-daily-tarot .line-content-final .line-3, .page-daily-tarot .line-content-final .ligne-3 {
        left: 2.8%;
    }
    .page-daily-tarot .faceGraphic {
        top: 8%;
    }
    .page-daily-tarot .association-bottom .card-front-only img {
        max-width: 60px;
    }
    .page-daily-tarot .association-top {
        margin-bottom: 0px !important;
    }
    .page-daily-tarot .t-pageHeader h2 {
        font-size: 20px;
    }
    .page-daily-tarot .before-results {
        margin-left: calc((100vw - 30px - 710px) / 2);
    }
}
@media screen and (max-width: 767px) {
    .page-daily-tarot .cards-round-deck {
        aspect-ratio: 1.9;
        margin: 0 13%;
        /* Positionnement des cartes en arc de cercle */
    }
    .page-daily-tarot .cards-round-deck .card-block {
        width: 24%;
        margin-left: -12%;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(1) {
        -webkit-transform: rotate(-15deg);
        transform: rotate(-15deg);
        left: 0%;
        top: 27.2593389687px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(1):hover {
        left: -0.2588190451%;
        top: 18.5660065321px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(2) {
        -webkit-transform: rotate(-13.57deg);
        transform: rotate(-13.57deg);
        left: 4.76%;
        top: 22.3328100311px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(2):hover {
        left: 4.5253668367%;
        top: 13.584054144px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(3) {
        -webkit-transform: rotate(-12.14deg);
        transform: rotate(-12.14deg);
        left: 9.52%;
        top: 17.8906742985px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(3):hover {
        left: 9.3096988668%;
        top: 9.0919443844px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(4) {
        -webkit-transform: rotate(-10.71deg);
        transform: rotate(-10.71deg);
        left: 14.28%;
        top: 13.9356986878px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(4):hover {
        left: 14.0941618892%;
        top: 5.092475298px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(5) {
        -webkit-transform: rotate(-9.28deg);
        transform: rotate(-9.28deg);
        left: 19.04%;
        top: 10.4703466734px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(5):hover {
        left: 18.8787406664%;
        top: 1.5881380735px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(6) {
        -webkit-transform: rotate(-7.85deg);
        transform: rotate(-7.85deg);
        left: 23.8%;
        top: 7.4967767533px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(6):hover {
        left: 23.6634198888%;
        top: -1.4188845083px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(7) {
        -webkit-transform: rotate(-6.42deg);
        transform: rotate(-6.42deg);
        left: 28.56%;
        top: 5.016841104px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(7):hover {
        left: 28.4481841841%;
        top: -3.9267194336px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(8) {
        -webkit-transform: rotate(-4.99deg);
        transform: rotate(-4.99deg);
        left: 33.32%;
        top: 3.0320844276px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(8):hover {
        left: 33.2330181274%;
        top: -5.9338046226px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(9) {
        -webkit-transform: rotate(-3.56deg);
        transform: rotate(-3.56deg);
        left: 38.08%;
        top: 1.5437429889px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(9):hover {
        left: 38.0179062498%;
        top: -7.4388899025px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(10) {
        -webkit-transform: rotate(-2.13deg);
        transform: rotate(-2.13deg);
        left: 42.84%;
        top: 0.5527438458px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(10):hover {
        left: 42.8028330492%;
        top: -8.4410377859px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(11) {
        -webkit-transform: rotate(-0.7deg);
        transform: rotate(-0.7deg);
        left: 47.6%;
        top: 0.0597042716px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(11):hover {
        left: 47.5877829992%;
        top: -8.9396240553px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(12) {
        -webkit-transform: rotate(0.73deg);
        transform: rotate(0.73deg);
        left: 52.36%;
        top: 0.0649313708px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(12):hover {
        left: 52.3727405588%;
        top: -8.9343381512px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(13) {
        -webkit-transform: rotate(2.16deg);
        transform: rotate(2.16deg);
        left: 57.12%;
        top: 0.5684218875px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(13):hover {
        left: 57.1576901827%;
        top: -8.4251833662px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(14) {
        -webkit-transform: rotate(3.59deg);
        transform: rotate(3.59deg);
        left: 61.88%;
        top: 1.5698622076px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(14):hover {
        left: 61.94261633%;
        top: -7.4124768425px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(15) {
        -webkit-transform: rotate(5.02deg);
        transform: rotate(5.02deg);
        left: 66.64%;
        top: 3.0686285542px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(15):hover {
        left: 66.727503475%;
        top: -5.8968493746px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(16) {
        -webkit-transform: rotate(6.45deg);
        transform: rotate(6.45deg);
        left: 71.4%;
        top: 5.0637873759px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(16):hover {
        left: 71.5123361158%;
        top: -3.8792450161px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(17) {
        -webkit-transform: rotate(7.88deg);
        transform: rotate(7.88deg);
        left: 76.16%;
        top: 7.5540959285px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(17):hover {
        left: 76.2970987846%;
        top: -1.3609204923px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(18) {
        -webkit-transform: rotate(9.31deg);
        transform: rotate(9.31deg);
        left: 80.92%;
        top: 10.5380030491px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(18):hover {
        left: 81.0817760575%;
        top: 1.6565555834px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(19) {
        -webkit-transform: rotate(10.74deg);
        transform: rotate(10.74deg);
        left: 85.68%;
        top: 14.0136501221px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(19):hover {
        left: 85.8663525632%;
        top: 5.171303686px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(20) {
        -webkit-transform: rotate(12.17deg);
        transform: rotate(12.17deg);
        left: 90.44%;
        top: 17.9788722371px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(20):hover {
        left: 90.6508129937%;
        top: 9.1811345497px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(21) {
        -webkit-transform: rotate(13.6deg);
        transform: rotate(13.6deg);
        left: 95.2%;
        top: 22.4311995372px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(21):hover {
        left: 95.4351421131%;
        top: 13.683550532px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(22) {
        -webkit-transform: rotate(15.03deg);
        transform: rotate(15.03deg);
        left: 99.96%;
        top: 27.3678587575px;
    }
    .page-daily-tarot .cards-round-deck .card-block:nth-child(22):hover {
        left: 100.2193247672%;
        top: 18.6757471685px;
    }
    .page-daily-tarot .card ul {
        left: -136px;
        min-height: 120px;
    }
    .page-daily-tarot #g1 {
        height: 320px;
        width: 300px;
    }
    .page-daily-tarot .card li .name {
        top: 119px;
        width: 74px;
    }
    .page-daily-tarot .moveOpenCards .card-front, .page-daily-tarot .moveOpenCards .card-block {
        width: 100px;
    }
    .page-daily-tarot .association-top .card-front-only {
        max-width: 35%;
        vertical-align: top;
    }
    .page-daily-tarot .line-content-final {
        display: none;
    }
    .page-daily-tarot .associations .name {
        display: none;
    }
    .page-daily-tarot .card-front-only .name, .page-daily-tarot .center.detail .name, .page-daily-tarot .center.detailgo .name, .page-daily-tarot .center.to-insert .name {
        font-size: 0.8rem;
    }
    .page-daily-tarot .c-intro {
        padding-top: 10px !important;
    }
}
@media screen and (max-width: 620px) {
    .page-daily-tarot .cards-round-deck {
        aspect-ratio: 1.35;
        margin: 0 15%;
    }
    .page-daily-tarot .cards-round-deck .card-block {
        width: 32%;
        margin-left: -16%;
    }
    .page-daily-tarot .moveOpenCards .pseudo-card {
        width: 100px;
    }
}
@media screen and (max-width: 560px) {
    .page-daily-tarot .before-results {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        margin-left: calc((100vw - 20px - 568px) / 2);
    }
}
@media screen and (max-width: 360px) {
    .page-daily-tarot .before-results {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        margin-left: calc((100vw - 20px - 426px) / 2);
    }
}
@media screen and (max-width: 1200px) {
    .title {
        display: none;
    }
}

.page- {
    background:#000;
}

input[type=text], input[type=email], input[type=tel], input[type=password], input[type=search], input[type=url], input[type=number], input[type=date], input[type=time], input[type=datetime-local], input[type=file], select, textarea {
    margin-top:0px !important;
}