@charset "UTF-8";
/*  estilos habitat  */
/*@import  
  '_habitat-cl/main.css',
  '_habitat-cl/colorbox.css';*/
/*  Libs  */
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
      transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
      transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}

@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
      transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* 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;
}

/*!
 * FullCalendar v3.0.1 Stylesheet
 * Docs & License: http://fullcalendar.io/
 * (c) 2016 Adam Shaw
 */
.fc {
  direction: ltr;
  text-align: left;
}

.fc-rtl {
  text-align: right;
}

body .fc {
  /* extra precedence to overcome jqui */
  font-size: 1em;
}

/* Colors
--------------------------------------------------------------------------------------------------*/
.fc-unthemed th,
.fc-unthemed td,
.fc-unthemed thead,
.fc-unthemed tbody,
.fc-unthemed .fc-divider,
.fc-unthemed .fc-row,
.fc-unthemed .fc-content,
.fc-unthemed .fc-popover,
.fc-unthemed .fc-list-view,
.fc-unthemed .fc-list-heading td {
  border-color: #ddd;
}

.fc-unthemed .fc-popover {
  background-color: #fff;
}

.fc-unthemed .fc-divider,
.fc-unthemed .fc-popover .fc-header,
.fc-unthemed .fc-list-heading td {
  background: #eee;
}

.fc-unthemed .fc-popover .fc-header .fc-close {
  color: #666;
}

.fc-unthemed .fc-today {
  background: #fcf8e3;
}

.fc-highlight {
  /* when user is selecting cells */
  background: #bce8f1;
  opacity: .3;
}

.fc-bgevent {
  /* default look for background events */
  background: #8fdf82;
  opacity: .3;
}

.fc-nonbusiness {
  /* default look for non-business-hours areas */
  /* will inherit .fc-bgevent's styles */
  background: #d7d7d7;
}

/* Icons (inline elements with styled text that mock arrow icons)
--------------------------------------------------------------------------------------------------*/
.fc-icon {
  display: inline-block;
  height: 1em;
  line-height: 1em;
  font-size: 1em;
  text-align: center;
  overflow: hidden;
  font-family: "Courier New", Courier, monospace;
  /* don't allow browser text-selection */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/*
Acceptable font-family overrides for individual icons:
  "Arial", sans-serif
  "Times New Roman", serif

NOTE: use percentage font sizes or else old IE chokes
*/
.fc-icon:after {
  position: relative;
}

.fc-icon-left-single-arrow:after {
  content: "\02039";
  font-weight: bold;
  font-size: 200%;
  top: -7%;
}

.fc-icon-right-single-arrow:after {
  content: "\0203A";
  font-weight: bold;
  font-size: 200%;
  top: -7%;
}

.fc-icon-left-double-arrow:after {
  content: "\000AB";
  font-size: 160%;
  top: -7%;
}

.fc-icon-right-double-arrow:after {
  content: "\000BB";
  font-size: 160%;
  top: -7%;
}

.fc-icon-left-triangle:after {
  content: "\25C4";
  font-size: 125%;
  top: 3%;
}

.fc-icon-right-triangle:after {
  content: "\25BA";
  font-size: 125%;
  top: 3%;
}

.fc-icon-down-triangle:after {
  content: "\25BC";
  font-size: 125%;
  top: 2%;
}

.fc-icon-x:after {
  content: "\000D7";
  font-size: 200%;
  top: 6%;
}

/* Buttons (styled <button> tags, normalized to work cross-browser)
--------------------------------------------------------------------------------------------------*/
.fc button {
  /* force height to include the border and padding */
  box-sizing: border-box;
  /* dimensions */
  margin: 0;
  height: 2.1em;
  padding: 0 .6em;
  /* text & cursor */
  font-size: 1em;
  /* normalize */
  white-space: nowrap;
  cursor: pointer;
}

/* Firefox has an annoying inner border */
.fc button::-moz-focus-inner {
  margin: 0;
  padding: 0;
}

.fc-state-default {
  /* non-theme */
  border: 1px solid;
}

.fc-state-default.fc-corner-left {
  /* non-theme */
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.fc-state-default.fc-corner-right {
  /* non-theme */
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

/* icons in buttons */
.fc button .fc-icon {
  /* non-theme */
  position: relative;
  top: -0.05em;
  /* seems to be a good adjustment across browsers */
  margin: 0 .2em;
  vertical-align: middle;
}

/*
  button states
  borrowed from twitter bootstrap (http://twitter.github.com/bootstrap/)
*/
.fc-state-default {
  background-color: #f5f5f5;
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  color: #333;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.fc-state-hover,
.fc-state-down,
.fc-state-active,
.fc-state-disabled {
  color: #333333;
  background-color: #e6e6e6;
}

.fc-state-hover {
  color: #333333;
  text-decoration: none;
  background-position: 0 -15px;
  transition: background-position 0.1s linear;
}

.fc-state-down,
.fc-state-active {
  background-color: #cccccc;
  background-image: none;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.fc-state-disabled {
  cursor: default;
  background-image: none;
  opacity: 0.65;
  box-shadow: none;
}

/* Buttons Groups
--------------------------------------------------------------------------------------------------*/
.fc-button-group {
  display: inline-block;
}

/*
every button that is not first in a button group should scootch over one pixel and cover the
previous button's border...
*/
.fc .fc-button-group > * {
  /* extra precedence b/c buttons have margin set to zero */
  float: left;
  margin: 0 0 0 -1px;
}

.fc .fc-button-group > :first-child {
  /* same */
  margin-left: 0;
}

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-popover {
  position: absolute;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.fc-popover .fc-header {
  /* TODO: be more consistent with fc-head/fc-body */
  padding: 2px 4px;
}

.fc-popover .fc-header .fc-title {
  margin: 0 2px;
}

.fc-popover .fc-header .fc-close {
  cursor: pointer;
}

.fc-ltr .fc-popover .fc-header .fc-title,
.fc-rtl .fc-popover .fc-header .fc-close {
  float: left;
}

.fc-rtl .fc-popover .fc-header .fc-title,
.fc-ltr .fc-popover .fc-header .fc-close {
  float: right;
}

/* unthemed */
.fc-unthemed .fc-popover {
  border-width: 1px;
  border-style: solid;
}

.fc-unthemed .fc-popover .fc-header .fc-close {
  font-size: .9em;
  margin-top: 2px;
}

/* jqui themed */
.fc-popover > .ui-widget-header + .ui-widget-content {
  border-top: 0;
  /* where they meet, let the header have the border */
}

/* Misc Reusable Components
--------------------------------------------------------------------------------------------------*/
.fc-divider {
  border-style: solid;
  border-width: 1px;
}

hr.fc-divider {
  height: 0;
  margin: 0;
  padding: 0 0 2px;
  /* height is unreliable across browsers, so use padding */
  border-width: 1px 0;
}

.fc-clear {
  clear: both;
}

.fc-bg,
.fc-bgevent-skeleton,
.fc-highlight-skeleton,
.fc-helper-skeleton {
  /* these element should always cling to top-left/right corners */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.fc-bg {
  bottom: 0;
  /* strech bg to bottom edge */
}

.fc-bg table {
  height: 100%;
  /* strech bg to bottom edge */
}

/* Tables
--------------------------------------------------------------------------------------------------*/
.fc table {
  width: 100%;
  box-sizing: border-box;
  /* fix scrollbar issue in firefox */
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1em;
  /* normalize cross-browser */
}

.fc th {
  text-align: center;
}

.fc th,
.fc td {
  border-style: solid;
  border-width: 1px;
  padding: 0;
  vertical-align: top;
}

.fc td.fc-today {
  border-style: double;
  /* overcome neighboring borders */
}

/* Internal Nav Links
--------------------------------------------------------------------------------------------------*/
a[data-goto] {
  cursor: pointer;
}

a[data-goto]:hover {
  text-decoration: underline;
}

/* Fake Table Rows
--------------------------------------------------------------------------------------------------*/
.fc .fc-row {
  /* extra precedence to overcome themes w/ .ui-widget-content forcing a 1px border */
  /* no visible border by default. but make available if need be (scrollbar width compensation) */
  border-style: solid;
  border-width: 0;
}

.fc-row table {
  /* don't put left/right border on anything within a fake row.
     the outer tbody will worry about this */
  border-left: 0 hidden transparent;
  border-right: 0 hidden transparent;
  /* no bottom borders on rows */
  border-bottom: 0 hidden transparent;
}

.fc-row:first-child table {
  border-top: 0 hidden transparent;
  /* no top border on first row */
}

/* Day Row (used within the header and the DayGrid)
--------------------------------------------------------------------------------------------------*/
.fc-row {
  position: relative;
}

.fc-row .fc-bg {
  z-index: 1;
}

/* highlighting cells & background event skeleton */
.fc-row .fc-bgevent-skeleton,
.fc-row .fc-highlight-skeleton {
  bottom: 0;
  /* stretch skeleton to bottom of row */
}

.fc-row .fc-bgevent-skeleton table,
.fc-row .fc-highlight-skeleton table {
  height: 100%;
  /* stretch skeleton to bottom of row */
}

.fc-row .fc-highlight-skeleton td,
.fc-row .fc-bgevent-skeleton td {
  border-color: transparent;
}

.fc-row .fc-bgevent-skeleton {
  z-index: 2;
}

.fc-row .fc-highlight-skeleton {
  z-index: 3;
}

/*
row content (which contains day/week numbers and events) as well as "helper" (which contains
temporary rendered events).
*/
.fc-row .fc-content-skeleton {
  position: relative;
  z-index: 4;
  padding-bottom: 2px;
  /* matches the space above the events */
}

.fc-row .fc-helper-skeleton {
  z-index: 5;
}

.fc-row .fc-content-skeleton td,
.fc-row .fc-helper-skeleton td {
  /* see-through to the background below */
  background: none;
  /* in case <td>s are globally styled */
  border-color: transparent;
  /* don't put a border between events and/or the day number */
  border-bottom: 0;
}

.fc-row .fc-content-skeleton tbody td,
.fc-row .fc-helper-skeleton tbody td {
  /* don't put a border between event cells */
  border-top: 0;
}

/* Scrolling Container
--------------------------------------------------------------------------------------------------*/
.fc-scroller {
  -webkit-overflow-scrolling: touch;
}

/* TODO: move to agenda/basic */
.fc-scroller > .fc-day-grid,
.fc-scroller > .fc-time-grid {
  position: relative;
  /* re-scope all positions */
  width: 100%;
  /* hack to force re-sizing this inner element when scrollbars appear/disappear */
}

/* Global Event Styles
--------------------------------------------------------------------------------------------------*/
.fc-event {
  position: relative;
  /* for resize handle and other inner positioning */
  display: block;
  /* make the <a> tag block */
  font-size: .85em;
  line-height: 1.3;
  border-radius: 3px;
  border: 1px solid #3a87ad;
  /* default BORDER color */
  font-weight: normal;
  /* undo jqui's ui-widget-header bold */
}

.fc-event,
.fc-event-dot {
  background-color: #3a87ad;
  /* default BACKGROUND color */
}

/* overpower some of bootstrap's and jqui's styles on <a> tags */
.fc-event,
.fc-event:hover,
.ui-widget .fc-event {
  color: #fff;
  /* default TEXT color */
  text-decoration: none;
  /* if <a> has an href */
}

.fc-event[href],
.fc-event.fc-draggable {
  cursor: pointer;
  /* give events with links and draggable events a hand mouse pointer */
}

.fc-not-allowed,
.fc-not-allowed .fc-event {
  /* to override an event's custom cursor */
  cursor: not-allowed;
}

.fc-event .fc-bg {
  /* the generic .fc-bg already does position */
  z-index: 1;
  background: #fff;
  opacity: .25;
}

.fc-event .fc-content {
  position: relative;
  z-index: 2;
}

/* resizer (cursor AND touch devices) */
.fc-event .fc-resizer {
  position: absolute;
  z-index: 4;
}

/* resizer (touch devices) */
.fc-event .fc-resizer {
  display: none;
}

.fc-event.fc-allow-mouse-resize .fc-resizer,
.fc-event.fc-selected .fc-resizer {
  /* only show when hovering or selected (with touch) */
  display: block;
}

/* hit area */
.fc-event.fc-selected .fc-resizer:before {
  /* 40x40 touch area */
  content: "";
  position: absolute;
  z-index: 9999;
  /* user of this util can scope within a lower z-index */
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px;
}

/* Event Selection (only for touch devices)
--------------------------------------------------------------------------------------------------*/
.fc-event.fc-selected {
  z-index: 9999 !important;
  /* overcomes inline z-index */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.fc-event.fc-selected.fc-dragging {
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
}

/* Horizontal Events
--------------------------------------------------------------------------------------------------*/
/* bigger touch area when selected */
.fc-h-event.fc-selected:before {
  content: "";
  position: absolute;
  z-index: 3;
  /* below resizers */
  top: -10px;
  bottom: -10px;
  left: 0;
  right: 0;
}

/* events that are continuing to/from another week. kill rounded corners and butt up against edge */
.fc-ltr .fc-h-event.fc-not-start,
.fc-rtl .fc-h-event.fc-not-end {
  margin-left: 0;
  border-left-width: 0;
  padding-left: 1px;
  /* replace the border with padding */
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.fc-ltr .fc-h-event.fc-not-end,
.fc-rtl .fc-h-event.fc-not-start {
  margin-right: 0;
  border-right-width: 0;
  padding-right: 1px;
  /* replace the border with padding */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* resizer (cursor AND touch devices) */
/* left resizer  */
.fc-ltr .fc-h-event .fc-start-resizer,
.fc-rtl .fc-h-event .fc-end-resizer {
  cursor: w-resize;
  left: -1px;
  /* overcome border */
}

/* right resizer */
.fc-ltr .fc-h-event .fc-end-resizer,
.fc-rtl .fc-h-event .fc-start-resizer {
  cursor: e-resize;
  right: -1px;
  /* overcome border */
}

/* resizer (mouse devices) */
.fc-h-event.fc-allow-mouse-resize .fc-resizer {
  width: 7px;
  top: -1px;
  /* overcome top border */
  bottom: -1px;
  /* overcome bottom border */
}

/* resizer (touch devices) */
.fc-h-event.fc-selected .fc-resizer {
  /* 8x8 little dot */
  border-radius: 4px;
  border-width: 1px;
  width: 6px;
  height: 6px;
  border-style: solid;
  border-color: inherit;
  background: #fff;
  /* vertically center */
  top: 50%;
  margin-top: -4px;
}

/* left resizer  */
.fc-ltr .fc-h-event.fc-selected .fc-start-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-end-resizer {
  margin-left: -4px;
  /* centers the 8x8 dot on the left edge */
}

/* right resizer */
.fc-ltr .fc-h-event.fc-selected .fc-end-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-start-resizer {
  margin-right: -4px;
  /* centers the 8x8 dot on the right edge */
}

/* DayGrid events
----------------------------------------------------------------------------------------------------
We use the full "fc-day-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/
.fc-day-grid-event {
  margin: 1px 2px 0;
  /* spacing between events and edges */
  padding: 0 1px;
}

tr:first-child > td > .fc-day-grid-event {
  margin-top: 2px;
  /* a little bit more space before the first event */
}

.fc-day-grid-event.fc-selected:after {
  content: "";
  position: absolute;
  z-index: 1;
  /* same z-index as fc-bg, behind text */
  /* overcome the borders */
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  /* darkening effect */
  background: #000;
  opacity: .25;
}

.fc-day-grid-event .fc-content {
  /* force events to be one-line tall */
  white-space: nowrap;
  overflow: hidden;
}

.fc-day-grid-event .fc-time {
  font-weight: bold;
}

/* resizer (cursor devices) */
/* left resizer  */
.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer {
  margin-left: -2px;
  /* to the day cell's edge */
}

/* right resizer */
.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer {
  margin-right: -2px;
  /* to the day cell's edge */
}

/* Event Limiting
--------------------------------------------------------------------------------------------------*/
/* "more" link that represents hidden events */
a.fc-more {
  margin: 1px 3px;
  font-size: .85em;
  cursor: pointer;
  text-decoration: none;
}

a.fc-more:hover {
  text-decoration: underline;
}

.fc-limited {
  /* rows and cells that are hidden because of a "more" link */
  display: none;
}

/* popover that appears when "more" link is clicked */
.fc-day-grid .fc-row {
  z-index: 1;
  /* make the "more" popover one higher than this */
}

.fc-more-popover {
  z-index: 2;
  width: 220px;
}

.fc-more-popover .fc-event-container {
  padding: 10px;
}

/* Now Indicator
--------------------------------------------------------------------------------------------------*/
.fc-now-indicator {
  position: absolute;
  border: 0 solid red;
}

/* Utilities
--------------------------------------------------------------------------------------------------*/
.fc-unselectable {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

/* Toolbar
--------------------------------------------------------------------------------------------------*/
.fc-toolbar {
  text-align: center;
  margin-bottom: 1em;
}

.fc-toolbar .fc-left {
  float: left;
}

.fc-toolbar .fc-right {
  float: right;
}

.fc-toolbar .fc-center {
  display: inline-block;
}

/* the things within each left/right/center section */
.fc .fc-toolbar > * > * {
  /* extra precedence to override button border margins */
  float: left;
  margin-left: .75em;
}

/* the first thing within each left/center/right section */
.fc .fc-toolbar > * > :first-child {
  /* extra precedence to override button border margins */
  margin-left: 0;
}

/* title text */
.fc-toolbar h2 {
  margin: 0;
}

/* button layering (for border precedence) */
.fc-toolbar button {
  position: relative;
}

.fc-toolbar .fc-state-hover,
.fc-toolbar .ui-state-hover {
  z-index: 2;
}

.fc-toolbar .fc-state-down {
  z-index: 3;
}

.fc-toolbar .fc-state-active,
.fc-toolbar .ui-state-active {
  z-index: 4;
}

.fc-toolbar button:focus {
  z-index: 5;
}

/* View Structure
--------------------------------------------------------------------------------------------------*/
/* undo twitter bootstrap's box-sizing rules. normalizes positioning techniques */
/* don't do this for the toolbar because we'll want bootstrap to style those buttons as some pt */
.fc-view-container *,
.fc-view-container *:before,
.fc-view-container *:after {
  box-sizing: content-box;
}

.fc-view,
.fc-view > table {
  /* so dragged elements can be above the view's main element */
  position: relative;
  z-index: 1;
}

/* BasicView
--------------------------------------------------------------------------------------------------*/
/* day row structure */
.fc-basicWeek-view .fc-content-skeleton,
.fc-basicDay-view .fc-content-skeleton {
  /* there may be week numbers in these views, so no padding-top */
  padding-bottom: 1em;
  /* ensure a space at bottom of cell for user selecting/clicking */
}

.fc-basic-view .fc-body .fc-row {
  min-height: 4em;
  /* ensure that all rows are at least this tall */
}

/* a "rigid" row will take up a constant amount of height because content-skeleton is absolute */
.fc-row.fc-rigid {
  overflow: hidden;
}

.fc-row.fc-rigid .fc-content-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

/* week and day number styling */
.fc-day-top.fc-other-month {
  opacity: 0.3;
}

.fc-basic-view .fc-week-number,
.fc-basic-view .fc-day-number {
  padding: 2px;
}

.fc-basic-view th.fc-week-number,
.fc-basic-view th.fc-day-number {
  padding: 0 2px;
  /* column headers can't have as much v space */
}

.fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
  float: right;
}

.fc-rtl .fc-basic-view .fc-day-top .fc-day-number {
  float: left;
}

.fc-ltr .fc-basic-view .fc-day-top .fc-week-number {
  float: left;
  border-radius: 0 0 3px 0;
}

.fc-rtl .fc-basic-view .fc-day-top .fc-week-number {
  float: right;
  border-radius: 0 0 0 3px;
}

.fc-basic-view .fc-day-top .fc-week-number {
  min-width: 1.5em;
  text-align: center;
  background-color: #f2f2f2;
  color: #808080;
}

/* when week/day number have own column */
.fc-basic-view td.fc-week-number {
  text-align: center;
}

.fc-basic-view td.fc-week-number > * {
  /* work around the way we do column resizing and ensure a minimum width */
  display: inline-block;
  min-width: 1.25em;
}

/* AgendaView all-day area
--------------------------------------------------------------------------------------------------*/
.fc-agenda-view .fc-day-grid {
  position: relative;
  z-index: 2;
  /* so the "more.." popover will be over the time grid */
}

.fc-agenda-view .fc-day-grid .fc-row {
  min-height: 3em;
  /* all-day section will never get shorter than this */
}

.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton {
  padding-bottom: 1em;
  /* give space underneath events for clicking/selecting days */
}

/* TimeGrid axis running down the side (for both the all-day area and the slot area)
--------------------------------------------------------------------------------------------------*/
.fc .fc-axis {
  /* .fc to overcome default cell styles */
  vertical-align: middle;
  padding: 0 4px;
  white-space: nowrap;
}

.fc-ltr .fc-axis {
  text-align: right;
}

.fc-rtl .fc-axis {
  text-align: left;
}

.ui-widget td.fc-axis {
  font-weight: normal;
  /* overcome jqui theme making it bold */
}

/* TimeGrid Structure
--------------------------------------------------------------------------------------------------*/
.fc-time-grid-container,
.fc-time-grid {
  /* so slats/bg/content/etc positions get scoped within here */
  position: relative;
  z-index: 1;
}

.fc-time-grid {
  min-height: 100%;
  /* so if height setting is 'auto', .fc-bg stretches to fill height */
}

.fc-time-grid table {
  /* don't put outer borders on slats/bg/content/etc */
  border: 0 hidden transparent;
}

.fc-time-grid > .fc-bg {
  z-index: 1;
}

.fc-time-grid .fc-slats,
.fc-time-grid > hr {
  /* the <hr> AgendaView injects when grid is shorter than scroller */
  position: relative;
  z-index: 2;
}

.fc-time-grid .fc-content-col {
  position: relative;
  /* because now-indicator lives directly inside */
}

.fc-time-grid .fc-content-skeleton {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
}

/* divs within a cell within the fc-content-skeleton */
.fc-time-grid .fc-business-container {
  position: relative;
  z-index: 1;
}

.fc-time-grid .fc-bgevent-container {
  position: relative;
  z-index: 2;
}

.fc-time-grid .fc-highlight-container {
  position: relative;
  z-index: 3;
}

.fc-time-grid .fc-event-container {
  position: relative;
  z-index: 4;
}

.fc-time-grid .fc-now-indicator-line {
  z-index: 5;
}

.fc-time-grid .fc-helper-container {
  /* also is fc-event-container */
  position: relative;
  z-index: 6;
}

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-slats td {
  height: 1.5em;
  border-bottom: 0;
  /* each cell is responsible for its top border */
}

.fc-time-grid .fc-slats .fc-minor td {
  border-top-style: dotted;
}

.fc-time-grid .fc-slats .ui-widget-content {
  /* for jqui theme */
  background: none;
  /* see through to fc-bg */
}

/* TimeGrid Highlighting Slots
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-highlight-container {
  /* a div within a cell within the fc-highlight-skeleton */
  position: relative;
  /* scopes the left/right of the fc-highlight to be in the column */
}

.fc-time-grid .fc-highlight {
  position: absolute;
  left: 0;
  right: 0;
  /* top and bottom will be in by JS */
}

/* TimeGrid Event Containment
--------------------------------------------------------------------------------------------------*/
.fc-ltr .fc-time-grid .fc-event-container {
  /* space on the sides of events for LTR (default) */
  margin: 0 2.5% 0 2px;
}

.fc-rtl .fc-time-grid .fc-event-container {
  /* space on the sides of events for RTL */
  margin: 0 2px 0 2.5%;
}

.fc-time-grid .fc-event,
.fc-time-grid .fc-bgevent {
  position: absolute;
  z-index: 1;
  /* scope inner z-index's */
}

.fc-time-grid .fc-bgevent {
  /* background events always span full width */
  left: 0;
  right: 0;
}

/* Generic Vertical Event
--------------------------------------------------------------------------------------------------*/
.fc-v-event.fc-not-start {
  /* events that are continuing from another day */
  /* replace space made by the top border with padding */
  border-top-width: 0;
  padding-top: 1px;
  /* remove top rounded corners */
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.fc-v-event.fc-not-end {
  /* replace space made by the top border with padding */
  border-bottom-width: 0;
  padding-bottom: 1px;
  /* remove bottom rounded corners */
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* TimeGrid Event Styling
----------------------------------------------------------------------------------------------------
We use the full "fc-time-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/
.fc-time-grid-event {
  overflow: hidden;
  /* don't let the bg flow over rounded corners */
}

.fc-time-grid-event.fc-selected {
  /* need to allow touch resizers to extend outside event's bounding box */
  /* common fc-selected styles hide the fc-bg, so don't need this anyway */
  overflow: visible;
}

.fc-time-grid-event.fc-selected .fc-bg {
  display: none;
  /* hide semi-white background, to appear darker */
}

.fc-time-grid-event .fc-content {
  overflow: hidden;
  /* for when .fc-selected */
}

.fc-time-grid-event .fc-time,
.fc-time-grid-event .fc-title {
  padding: 0 1px;
}

.fc-time-grid-event .fc-time {
  font-size: .85em;
  white-space: nowrap;
}

/* short mode, where time and title are on the same line */
.fc-time-grid-event.fc-short .fc-content {
  /* don't wrap to second line (now that contents will be inline) */
  white-space: nowrap;
}

.fc-time-grid-event.fc-short .fc-time,
.fc-time-grid-event.fc-short .fc-title {
  /* put the time and title on the same line */
  display: inline-block;
  vertical-align: top;
}

.fc-time-grid-event.fc-short .fc-time span {
  display: none;
  /* don't display the full time text... */
}

.fc-time-grid-event.fc-short .fc-time:before {
  content: attr(data-start);
  /* ...instead, display only the start time */
}

.fc-time-grid-event.fc-short .fc-time:after {
  content: "\000A0-\000A0";
  /* seperate with a dash, wrapped in nbsp's */
}

.fc-time-grid-event.fc-short .fc-title {
  font-size: .85em;
  /* make the title text the same size as the time */
  padding: 0;
  /* undo padding from above */
}

/* resizer (cursor device) */
.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer {
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  overflow: hidden;
  line-height: 8px;
  font-size: 11px;
  font-family: monospace;
  text-align: center;
  cursor: s-resize;
}

.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer:after {
  content: "=";
}

/* resizer (touch device) */
.fc-time-grid-event.fc-selected .fc-resizer {
  /* 10x10 dot */
  border-radius: 5px;
  border-width: 1px;
  width: 8px;
  height: 8px;
  border-style: solid;
  border-color: inherit;
  background: #fff;
  /* horizontally center */
  left: 50%;
  margin-left: -5px;
  /* center on the bottom edge */
  bottom: -5px;
}

/* Now Indicator
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-now-indicator-line {
  border-top-width: 1px;
  left: 0;
  right: 0;
}

/* arrow on axis */
.fc-time-grid .fc-now-indicator-arrow {
  margin-top: -5px;
  /* vertically center on top coordinate */
}

.fc-ltr .fc-time-grid .fc-now-indicator-arrow {
  left: 0;
  /* triangle pointing right... */
  border-width: 5px 0 5px 6px;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.fc-rtl .fc-time-grid .fc-now-indicator-arrow {
  right: 0;
  /* triangle pointing left... */
  border-width: 5px 6px 5px 0;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

/* List View
--------------------------------------------------------------------------------------------------*/
/* possibly reusable */
.fc-event-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 5px;
}

/* view wrapper */
.fc-rtl .fc-list-view {
  direction: rtl;
  /* unlike core views, leverage browser RTL */
}

.fc-list-view {
  border-width: 1px;
  border-style: solid;
}

/* table resets */
.fc .fc-list-table {
  table-layout: auto;
  /* for shrinkwrapping cell content */
}

.fc-list-table td {
  border-width: 1px 0 0;
  padding: 8px 14px;
}

.fc-list-table tr:first-child td {
  border-top-width: 0;
}

/* day headings with the list */
.fc-list-heading {
  border-bottom-width: 1px;
}

.fc-list-heading td {
  font-weight: bold;
}

.fc-ltr .fc-list-heading-main {
  float: left;
}

.fc-ltr .fc-list-heading-alt {
  float: right;
}

.fc-rtl .fc-list-heading-main {
  float: right;
}

.fc-rtl .fc-list-heading-alt {
  float: left;
}

/* event list items */
.fc-list-item.fc-has-url {
  cursor: pointer;
  /* whole row will be clickable */
}

.fc-list-item:hover td {
  background-color: #f5f5f5;
}

.fc-list-item-marker,
.fc-list-item-time {
  white-space: nowrap;
  width: 1px;
}

/* make the dot closer to the event title */
.fc-ltr .fc-list-item-marker {
  padding-right: 0;
}

.fc-rtl .fc-list-item-marker {
  padding-left: 0;
}

.fc-list-item-title a {
  /* every event title cell has an <a> tag */
  text-decoration: none;
  color: inherit;
}

.fc-list-item-title a[href]:hover {
  /* hover effect only on titles with hrefs */
  text-decoration: underline;
}

/* message when no events */
.fc-list-empty-wrap2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.fc-list-empty-wrap1 {
  width: 100%;
  height: 100%;
  display: table;
}

.fc-list-empty {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.fc-unthemed .fc-list-empty {
  /* theme will provide own background */
  background-color: #eee;
}

/*'_libs/fullcalendar-print';*/
/*  base  */
.habitat-wrap * {
  padding: 0;
  margin: 0;
  outline: none !important;
  box-sizing: border-box;
}

.habitat-wrap li {
  list-style: none;
}

.habitat-wrap fieldset {
  border: 0;
}

.habitat-wrap img {
  border: 0;
  max-width: 100%;
  height: auto;
}

.habitat-wrap p {
  margin-bottom: 0;
}

.habitat-wrap a,
.habitat-wrap a:hover {
  text-decoration: none;
}

.habitat-wrap .container:after, .habitat-wrap .container:before {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/*
  ===================== colores =====================
*/
/*
  ===================== fin colores =====================
*/
/*
  ===================== Base =====================
*/
/*
  ===================== Base =====================
*/
/*
  ===================== font-weight =====================
*/
/*
  ===================== font-weight =====================
*/
/*
  =====================     Mixin =====================
*/
/*
  ===================== fin Mixin =====================
*/
/*
  ===================== mediaqueries =====================
*/
/*
  ===================== mediaqueries =====================
*/
/*
  =====================     font-size =====================
*/
/*
  ===================== fin font-size =====================
*/
/*
  =====================  font-family =====================
*/
/*
  =====================  /font-family =====================
*/
/*
  ===================== separaciones =====================
*/
/*
  ===================== fin separaciones =====================
*/
/*Roboto*/
@font-face {
  font-family: 'robotoblackHabitat';
  src: url("../../fonts/roboto-black-webfont.woff2") format("woff2"), url("../../fonts/roboto-black-webfont.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'robotoblack_italicHabitat';
  src: url("../../fonts/roboto-blackitalic-webfont.woff2") format("woff2"), url("../../fonts/roboto-blackitalic-webfont.woff") format("woff");
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: 'robotoboldHabitat';
  src: url("../../fonts/roboto-bold-webfont.woff2") format("woff2"), url("../../fonts/roboto-bold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'robotobold_italicHabitat';
  src: url("../../fonts/roboto-bolditalic-webfont.woff2") format("woff2"), url("../../fonts/roboto-bolditalic-webfont.woff") format("woff");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'robotoitalicHabitat';
  src: url("../../fonts/roboto-italic-webfont.woff2") format("woff2"), url("../../fonts/roboto-italic-webfont.woff") format("woff");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'robotolightHabitat';
  src: url("../../fonts/roboto-light-webfont.woff2") format("woff2"), url("../../fonts/roboto-light-webfont.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'robotolight_italicHabitat';
  src: url("../../fonts/roboto-lightitalic-webfont.woff2") format("woff2"), url("../../fonts/roboto-lightitalic-webfont.woff") format("woff");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'robotomediumHabitat';
  src: url("../../fonts/roboto-medium-webfont.woff2") format("woff2"), url("../../fonts/roboto-medium-webfont.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'robotomedium_italicHabitat';
  src: url("../../fonts/roboto-mediumitalic-webfont.woff2") format("woff2"), url("../../fonts/roboto-mediumitalic-webfont.woff") format("woff");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'robotoregularHabitat';
  src: url("../../fonts/roboto-regular-webfont.woff2") format("woff2"), url("../../fonts/roboto-regular-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'robotothinHabitat';
  src: url("../../fonts/roboto-thin-webfont.woff2") format("woff2"), url("../../fonts/roboto-thin-webfont.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'robotothin_italiHabitatc';
  src: url("../../fonts/roboto-thinitalic-webfont.woff2") format("woff2"), url("../../fonts/roboto-thinitalic-webfont.woff") format("woff");
  font-weight: 100;
  font-style: italic;
}

/*Roboto slab*/
@font-face {
  font-family: 'roboto_slabbold';
  src: url("../../fonts/robotoslab-bold-webfont.woff2") format("woff2"), url("../../fonts/robotoslab-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'roboto_slablight';
  src: url("../../fonts/robotoslab-light-webfont.woff2") format("woff2"), url("../../fonts/robotoslab-light-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'roboto_slabregular';
  src: url("../../fonts/robotoslab-regular-webfont.woff2") format("woff2"), url("../../fonts/robotoslab-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'roboto_slabthin';
  src: url("../../fonts/robotoslab-thin-webfont.woff2") format("woff2"), url("../../fonts/robotoslab-thin-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

.app-habitat {
  margin: 0;
  padding: 0;
  outline: none !important;
}

.app-habitat * {
  margin: 0;
  padding: 0;
  outline: none !important;
}

.habitat-wrap,
.app-habitat {
  /*
    =====================     Base =====================
  */
  margin: 0;
  padding: 0;
  background-color: #F9F8F6;
  color: #4C4C4A;
  font-family: "robotolightHabitat";
  font-size: 16px;
  font-weight: 400;
  /*
      =====================     titles =====================
    */
  /*
      ===================== fin titles =====================
    */
}

.habitat-wrap img,
.app-habitat img {
  max-width: 100%;
  height: auto;
}

.habitat-wrap strong,
.app-habitat strong {
  font-weight: 700;
  font-family: 'robotobold', sans-serif;
}

.habitat-wrap a,
.app-habitat a {
  color: #0085B2;
  text-decoration: none;
}

.habitat-wrap p,
.app-habitat p {
  line-height: 160%;
}

.habitat-wrap p + p,
.app-habitat p + p {
  margin-top: 10px;
}

.habitat-wrap sub,
.habitat-wrap sup,
.app-habitat sub,
.app-habitat sup {
  font-size: 14px;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  font-family: "robotoregularHabitat";
}

.habitat-wrap sup,
.app-habitat sup {
  top: 0;
}

.habitat-wrap sub,
.app-habitat sub {
  bottom: 0;
}

.habitat-wrap .sub__content span,
.app-habitat .sub__content span {
  color: #B4123B;
}

.habitat-wrap h1, .habitat-wrap .h1,
.habitat-wrap h2, .habitat-wrap .h2,
.habitat-wrap h3, .habitat-wrap .h3,
.habitat-wrap h4, .habitat-wrap .h4,
.habitat-wrap h5, .habitat-wrap .h5,
.habitat-wrap h6, .habitat-wrap .h6,
.app-habitat h1,
.app-habitat .h1,
.app-habitat h2,
.app-habitat .h2,
.app-habitat h3,
.app-habitat .h3,
.app-habitat h4,
.app-habitat .h4,
.app-habitat h5,
.app-habitat .h5,
.app-habitat h6,
.app-habitat .h6 {
  line-height: 120%;
  margin-bottom: 20px;
  /*@extend .text-normal;*/
  font-weight: 100;
}

.habitat-wrap h1.reset-margen, .habitat-wrap .h1.reset-margen,
.habitat-wrap h2.reset-margen, .habitat-wrap .h2.reset-margen,
.habitat-wrap h3.reset-margen, .habitat-wrap .h3.reset-margen,
.habitat-wrap h4.reset-margen, .habitat-wrap .h4.reset-margen,
.habitat-wrap h5.reset-margen, .habitat-wrap .h5.reset-margen,
.habitat-wrap h6.reset-margen, .habitat-wrap .h6.reset-margen,
.app-habitat h1.reset-margen,
.app-habitat .h1.reset-margen,
.app-habitat h2.reset-margen,
.app-habitat .h2.reset-margen,
.app-habitat h3.reset-margen,
.app-habitat .h3.reset-margen,
.app-habitat h4.reset-margen,
.app-habitat .h4.reset-margen,
.app-habitat h5.reset-margen,
.app-habitat .h5.reset-margen,
.app-habitat h6.reset-margen,
.app-habitat .h6.reset-margen {
  margin-bottom: 0;
}

.habitat-wrap h2, .habitat-wrap .h2,
.habitat-wrap h3, .habitat-wrap .h3,
.habitat-wrap h4, .habitat-wrap .h4,
.habitat-wrap h5, .habitat-wrap .h5,
.habitat-wrap h6, .habitat-wrap .h6,
.app-habitat h2,
.app-habitat .h2,
.app-habitat h3,
.app-habitat .h3,
.app-habitat h4,
.app-habitat .h4,
.app-habitat h5,
.app-habitat .h5,
.app-habitat h6,
.app-habitat .h6 {
  font-family: "robotolightHabitat";
}

.habitat-wrap h1,
.habitat-wrap .h1,
.app-habitat h1,
.app-habitat .h1 {
  font-size: 55px;
  font-family: "robotolightHabitat";
}

.habitat-wrap h2,
.habitat-wrap .h2,
.app-habitat h2,
.app-habitat .h2 {
  font-size: 32px;
}

.habitat-wrap h3,
.habitat-wrap .h3,
.app-habitat h3,
.app-habitat .h3 {
  font-size: 20px;
}

.habitat-wrap h4,
.habitat-wrap .h4,
.app-habitat h4,
.app-habitat .h4 {
  font-size: 18px;
}

.habitat-wrap h5,
.habitat-wrap .h5,
.app-habitat h5,
.app-habitat .h5 {
  font-size: 16px;
}

.habitat-wrap h6,
.habitat-wrap .h6,
.app-habitat h6,
.app-habitat .h6 {
  font-size: 14px;
}

/*  components  */
.habitat-wrap .btn,
.app-habitat .btn {
  display: inline-block;
  font-size: 16px;
  padding: 10px 30px;
  border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  color: white;
  font-family: "robotomediumHabitat";
  background-color: silver;
  text-align: center;
  border: 0;
  cursor: pointer;
  width: auto;
  transition: all 0.2s ease;
  text-decoration: none !important;
}

.habitat-wrap .btn:hover,
.app-habitat .btn:hover {
  color: white;
}

.habitat-wrap .btn-primary,
.app-habitat .btn-primary {
  border-bottom: 3px solid #95072D;
  background-color: #B4123B;
  color: white;
}

.habitat-wrap .btn-primary:hover,
.app-habitat .btn-primary:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.habitat-wrap .btn-second,
.app-habitat .btn-second {
  box-shadow: 0 3px 0 #558293;
  background-color: #6BA3B7;
  color: white;
}

.habitat-wrap .btn-second:hover,
.app-habitat .btn-second:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.habitat-wrap .btn-border, .habitat-wrap .btn-border-links,
.app-habitat .btn-border,
.app-habitat .btn-border-links {
  border: 1px solid currentColor;
  color: currentColor;
  background-color: transparent;
  box-shadow: none;
}

.habitat-wrap .btn-border:hover, .habitat-wrap .btn-border-links:hover,
.app-habitat .btn-border:hover,
.app-habitat .btn-border-links:hover {
  background-color: #fff;
  color: #6BA3B7;
  border: 1px solid #fff;
}

.habitat-wrap .btn-center,
.app-habitat .btn-center {
  display: table;
  margin: auto;
}

.habitat-wrap .btn-border-links,
.app-habitat .btn-border-links {
  color: #0085B2;
}

.habitat-wrap .btn-block,
.app-habitat .btn-block {
  display: block;
  width: 100%;
  clear: both;
}

.habitat-wrap .btn-login,
.app-habitat .btn-login {
  background-color: #FFA632;
}

.habitat-wrap .btn-login:hover,
.app-habitat .btn-login:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.habitat-wrap .btn-min,
.app-habitat .btn-min {
  min-width: 200px;
}

.habitat-wrap .btn-border-links,
.app-habitat .btn-border-links {
  color: #0085B2;
  border-color: #0085B2;
}

@media (max-width: 600px) {
  .habitat-wrap .btn,
  .app-habitat .btn {
    display: block;
    width: 100%;
  }
}

.habitat-wrap .tooltip,
.app-habitat .tooltip {
  position: absolute !important;
  z-index: 1070;
  display: block;
  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;
}

.habitat-wrap .tooltip.in,
.app-habitat .tooltip.in {
  filter: alpha(opacity=100);
  opacity: 1;
}

.habitat-wrap .tooltip.top,
.app-habitat .tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}

.habitat-wrap .tooltip.top .tooltip-arrow,
.app-habitat .tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #002F56;
}

.habitat-wrap .tooltip.right,
.app-habitat .tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}

.habitat-wrap .tooltip.right .tooltip-arrow,
.app-habitat .tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #002F56;
}

.habitat-wrap .tooltip.bottom,
.app-habitat .tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}

.habitat-wrap .tooltip.bottom .tooltip-arrow,
.app-habitat .tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #002F56;
}

.habitat-wrap .tooltip.left,
.app-habitat .tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}

.habitat-wrap .tooltip.left .tooltip-arrow,
.app-habitat .tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #002F56;
}

.habitat-wrap .tooltip-inner,
.app-habitat .tooltip-inner {
  max-width: 200px;
  width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #002F56;
  border-radius: 4px;
  border: 0;
}

.habitat-wrap .tooltip-arrow,
.app-habitat .tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.habitat-wrap .tooltip.top-left .tooltip-arrow,
.app-habitat .tooltip.top-left .tooltip-arrow {
  right: 5px;
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #002F56;
}

.habitat-wrap .tooltip.top-right .tooltip-arrow,
.app-habitat .tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #002F56;
}

.habitat-wrap .tooltip.bottom-left .tooltip-arrow,
.app-habitat .tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #002F56;
}

.habitat-wrap .tooltip.bottom-right .tooltip-arrow,
.app-habitat .tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #002F56;
}

.habitat-wrap,
.app-habitat {
  /* ===================  base accordion ===================*/
  /* ===================  /base accordion ===================*/
  /* ===================  panel-group ===================*/
  /* =================== /panel-group ===================*/
  /*reset-panel*/
  /*helper*/
  /*table*/
}

.habitat-wrap .collapse,
.app-habitat .collapse {
  display: none;
}

.habitat-wrap .collapse.in,
.app-habitat .collapse.in {
  display: block;
}

.habitat-wrap .collapsing,
.app-habitat .collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition-property: height, visibility;
  transition-duration: 0.35s;
  transition-timing-function: ease;
}

.habitat-wrap .panel-group,
.app-habitat .panel-group {
  /* contenedor de cada accordion */
  /* head */
  /* body */
}

.habitat-wrap .panel-group .panel-heading,
.app-habitat .panel-group .panel-heading {
  padding: 0;
  /* activado */
}

.habitat-wrap .panel-group .panel-heading a,
.app-habitat .panel-group .panel-heading a {
  display: block;
  overflow: hidden;
  padding: 12px 20px;
  font-size: 18px;
  font-family: "robotoregularHabitat";
  color: #4C4C4A;
  background-color: white;
  position: relative;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
  padding-right: 42px;
}

.habitat-wrap .panel-group .panel-heading a [class*="col-"],
.app-habitat .panel-group .panel-heading a [class*="col-"] {
  position: static;
}

.habitat-wrap .panel-group .panel-heading a .icon-arrow-bottom,
.app-habitat .panel-group .panel-heading a .icon-arrow-bottom {
  font-size: 12px;
  color: #0085B2;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
}
.habitat-wrap .panel-group.noacordeon .panel-heading a .icon-arrow-bottom{
  top: 38%;
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.habitat-wrap .panel-group .panel-heading a p,
.app-habitat .panel-group .panel-heading a p {
  font-size: 18px;
  color: #4C4C4A;
}

.habitat-wrap .panel-group .panel-heading a[aria-expanded*="true"] .icon-arrow-bottom:before,
.app-habitat .panel-group .panel-heading a[aria-expanded*="true"] .icon-arrow-bottom:before {
  content: "" !important;
}

.habitat-wrap .panel-group .panel-title,
.app-habitat .panel-group .panel-title {
  margin-bottom: 0;
}

.habitat-wrap .panel-group .panel-body,
.app-habitat .panel-group .panel-body {
  padding: 30px;
  background-color: #F0F0F0;
}

.habitat-wrap .panel-group-bg .panel-heading a,
.app-habitat .panel-group-bg .panel-heading a {
  color: #4C4C4A;
  font-size: 16px;
  background-color: #E0EAED;
}

.habitat-wrap .panel-group-bg-dark .panel-heading a,
.app-habitat .panel-group-bg-dark .panel-heading a {
  color: white;
  font-size: 16px;
  background-color: #4C4C4A;
}

.habitat-wrap .panel-group-bg-dark .panel-heading a p,
.habitat-wrap .panel-group-bg-dark .panel-heading a i,
.app-habitat .panel-group-bg-dark .panel-heading a p,
.app-habitat .panel-group-bg-dark .panel-heading a i {
  color: white !important;
}

.habitat-wrap .panel-default,
.app-habitat .panel-default {
  border: 0;
}

.habitat-wrap .panel-group,
.app-habitat .panel-group {
  margin-bottom: 0;
}

.habitat-wrap .panel-group .panel + .panel,
.app-habitat .panel-group .panel + .panel {
  margin-top: 20px;
}

.habitat-wrap .panel-default .panel-title a:before,
.habitat-wrap .panel-default .panel-title a:after,
.app-habitat .panel-default .panel-title a:before,
.app-habitat .panel-default .panel-title a:after {
  display: none;
}

.habitat-wrap .panel-default .panel-heading,
.app-habitat .panel-default .panel-heading {
  border: 0;
  background-color: white;
}

.habitat-wrap .panel-default .panel-body p,
.habitat-wrap .panel-default .panel-body ul,
.habitat-wrap .panel-default .panel-body div,
.app-habitat .panel-default .panel-body p,
.app-habitat .panel-default .panel-body ul,
.app-habitat .panel-default .panel-body div {
  margin-bottom: 0 !important;
}

.habitat-wrap .panel-default .panel-body,
.app-habitat .panel-default .panel-body {
  border-top: 0 !important;
}

.habitat-wrap .color-primary,
.app-habitat .color-primary {
  background-color: transparent;
}

.habitat-wrap .phone-inputs .small,
.app-habitat .phone-inputs .small {
  vertical-align: top !important;
}

.habitat-wrap .simple-table .icon-circle-check,
.app-habitat .simple-table .icon-circle-check {
  color: #5CAE3B;
  font-size: 16px;
}

.habitat-wrap .simple-table .icon-circle-error,
.app-habitat .simple-table .icon-circle-error {
  color: #B4123B;
  font-size: 16px;
}

.habitat-wrap .simple-table i,
.app-habitat .simple-table i {
  margin-right: 0;
}

.habitat-wrap .simple-table i,
.habitat-wrap .simple-table .text-icon,
.app-habitat .simple-table i,
.app-habitat .simple-table .text-icon {
  display: inline-block;
  vertical-align: middle;
}

.habitat-wrap .simple-table a,
.app-habitat .simple-table a {
  display: block;
}

.habitat-wrap .simple-table a .text-icon,
.app-habitat .simple-table a .text-icon {
  position: relative;
  top: 3px;
}

.habitat-wrap .panel-group.deep-grey-bg .panel-heading a,
.app-habitat .panel-group.deep-grey-bg .panel-heading a {
  background: #51575D;
}

.habitat-wrap .panel-group.deep-grey-bg .panel-heading a p,
.app-habitat .panel-group.deep-grey-bg .panel-heading a p {
  color: #fff;
  /*font-size: $font-size-h4;*/
  /*font-weight: 600;*/
}

.habitat-wrap .panel-group.deep-grey-bg .panel-heading a .icon-arrow-bottom,
.app-habitat .panel-group.deep-grey-bg .panel-heading a .icon-arrow-bottom {
  color: #fff;
}

.habitat-wrap .panel-group.deep-grey-bg .panel-body,
.app-habitat .panel-group.deep-grey-bg .panel-body {
  background: #fff;
}

.habitat-wrap,
.app-habitat {
  /* ===================   base panel ===================*/
  /* ===================  /base panel ===================*/
}

.habitat-wrap .alert,
.app-habitat .alert {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 5px;
  color: #B4123B;
  position: relative;
  border: 1px solid #C53F61;
  background-color: #FFD8E2;
}

.habitat-wrap .alert .text-alert,
.habitat-wrap .alert i,
.app-habitat .alert .text-alert,
.app-habitat .alert i {
  display: table-cell;
  vertical-align: middle;
}

.habitat-wrap .alert i,
.app-habitat .alert i {
  width: 40px;
}

.habitat-wrap .alert .text-alert,
.app-habitat .alert .text-alert {
  color: #B4123B;
  margin-bottom: 0 !important;
}

.habitat-wrap,
.app-habitat {
  /*------------------------------------------------------------------------------Tables */
  /*------------------------------------------------------------------------------Transfer table habitat */
  /*------------------------------------------------------------------------------Mobile transfer table */
  /*------------------------------------------------------------------------------New responsive respond tables */
}

@media (max-width: 990px) {
  .habitat-wrap .box-transfer,
  .app-habitat .box-transfer {
    padding: 0 !important;
    /*overflow: hidden;*/
  }
  .habitat-wrap .box-transfer .inner-transfer,
  .app-habitat .box-transfer .inner-transfer {
    padding: 30px 20px;
  }
  .habitat-wrap .box-transfer .head-transfer,
  .app-habitat .box-transfer .head-transfer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .habitat-wrap .box-transfer .table-transfer,
  .app-habitat .box-transfer .table-transfer {
    width: calc(100% - 40px);
    margin-left: 20px;
  }
}

.habitat-wrap .box-transfer .custom__select:after,
.app-habitat .box-transfer .custom__select:after {
  width: 13px;
  text-align: right;
}

.habitat-wrap .wrap-transfer .table-transfer thead th,
.app-habitat .wrap-transfer .table-transfer thead th {
  color: white;
  font-family: "robotolightHabitat";
  font-weight: 100;
  text-align: left;
  padding: 5px 15px;
  font-size: 16px;
  background-color: #4C4C4A;
}

.habitat-wrap .wrap-transfer .table-transfer thead th + th,
.app-habitat .wrap-transfer .table-transfer thead th + th {
  border-left: 10px solid #F6F6F6;
}

.habitat-wrap .wrap-transfer .table-transfer .alert,
.app-habitat .wrap-transfer .table-transfer .alert {
  display: block;
  width: 100%;
}

.habitat-wrap .wrap-transfer .table-transfer .icon-circle-error,
.app-habitat .wrap-transfer .table-transfer .icon-circle-error {
  color: #B4123B;
  top: 1px;
}

.habitat-wrap .wrap-transfer .col-large,
.app-habitat .wrap-transfer .col-large {
  width: 75%;
}

.habitat-wrap .wrap-transfer .col-small,
.app-habitat .wrap-transfer .col-small {
  width: calc(25% - 5px);
}

.habitat-wrap .wrap-transfer .col-large,
.habitat-wrap .wrap-transfer .col-small,
.app-habitat .wrap-transfer .col-large,
.app-habitat .wrap-transfer .col-small {
  float: left;
}

.habitat-wrap .wrap-transfer .col-large + .col-small,
.habitat-wrap .wrap-transfer .col-small + .col-large,
.app-habitat .wrap-transfer .col-large + .col-small,
.app-habitat .wrap-transfer .col-small + .col-large {
  margin-left: 5px;
}

@media (min-width: 991px) {
  .habitat-wrap .wrap-transfer,
  .app-habitat .wrap-transfer {
    background-color: #F6F6F6;
    padding: 20px 10px;
  }
  .habitat-wrap .wrap-transfer thead th,
  .app-habitat .wrap-transfer thead th {
    border-bottom: 10px solid #F6F6F6;
  }
  .habitat-wrap .wrap-transfer tbody,
  .app-habitat .wrap-transfer tbody {
    /*.box-arrow,
            .dropdown,
            .alert {
              margin-left: 6px;
            }*/
  }
  .habitat-wrap .wrap-transfer tbody .separar,
  .app-habitat .wrap-transfer tbody .separar {
    border-bottom: 10px solid #F6F6F6;
  }
  .habitat-wrap .wrap-transfer tbody td,
  .app-habitat .wrap-transfer tbody td {
    background-color: #e8edef;
    padding: 5px 15px;
  }
  .habitat-wrap .wrap-transfer .show-mobile,
  .app-habitat .wrap-transfer .show-mobile {
    display: none;
  }
  .habitat-wrap .wrap-transfer .tres-column .small-td,
  .app-habitat .wrap-transfer .tres-column .small-td {
    width: 30%;
  }
  .habitat-wrap .wrap-transfer .tres-column .big-td,
  .app-habitat .wrap-transfer .tres-column .big-td {
    width: 40%;
  }
  .habitat-wrap .wrap-transfer .cinco-column .small-td,
  .app-habitat .wrap-transfer .cinco-column .small-td {
    width: 16.66666666666667%;
  }
  .habitat-wrap .wrap-transfer .cinco-column .medium-td,
  .app-habitat .wrap-transfer .cinco-column .medium-td {
    width: 20%;
  }
  .habitat-wrap .wrap-transfer .cinco-column .big-td,
  .app-habitat .wrap-transfer .cinco-column .big-td {
    width: 30%;
  }
}

@media (max-width: 990px) {
  .habitat-wrap .wrap-transfer,
  .app-habitat .wrap-transfer {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .habitat-wrap .wrap-transfer thead,
  .app-habitat .wrap-transfer thead {
    display: none;
  }
  .habitat-wrap .wrap-transfer tbody tr,
  .app-habitat .wrap-transfer tbody tr {
    display: block;
    width: 100%;
    background-color: #FFF;
    padding: 20px 0;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
  }
  .habitat-wrap .wrap-transfer tbody tr + tr,
  .app-habitat .wrap-transfer tbody tr + tr {
    margin-top: 20px;
  }
  .habitat-wrap .wrap-transfer tbody tr td,
  .app-habitat .wrap-transfer tbody tr td {
    display: block;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 0;
  }
  .habitat-wrap .wrap-transfer tbody tr td:not(.hidden-mobile) + td,
  .app-habitat .wrap-transfer tbody tr td:not(.hidden-mobile) + td {
    margin-top: 20px;
  }
  .habitat-wrap .wrap-transfer tbody tr td:after,
  .app-habitat .wrap-transfer tbody tr td:after {
    content: " ";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
  }
  .habitat-wrap .wrap-transfer tbody tr td h5,
  .app-habitat .wrap-transfer tbody tr td h5 {
    margin-bottom: 5px;
  }
  .habitat-wrap .wrap-transfer .reset-padding tr,
  .habitat-wrap .wrap-transfer .reset-padding td,
  .app-habitat .wrap-transfer .reset-padding tr,
  .app-habitat .wrap-transfer .reset-padding td {
    padding: 0;
  }
  .habitat-wrap .wrap-transfer .regimen,
  .app-habitat .wrap-transfer .regimen {
    padding: 10px;
    margin: 20px;
    background-color: #D3DEE2;
  }
  .habitat-wrap .wrap-transfer .regimen label,
  .app-habitat .wrap-transfer .regimen label {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: -2px;
  }
  .habitat-wrap .wrap-transfer .hidden-mobile,
  .app-habitat .wrap-transfer .hidden-mobile {
    display: none;
  }
  .habitat-wrap .wrap-transfer .title-section + h5,
  .app-habitat .wrap-transfer .title-section + h5 {
    margin-top: 20px;
  }
  .habitat-wrap .wrap-transfer .parent-rowspan,
  .app-habitat .wrap-transfer .parent-rowspan {
    margin: 0;
    padding: 0;
    box-shadow: none;
    position: relative;
  }
  .habitat-wrap .wrap-transfer .parent-rowspan td,
  .app-habitat .wrap-transfer .parent-rowspan td {
    margin: 0;
    padding: 0;
  }
  .habitat-wrap .wrap-transfer .parent-rowspan .subtitle-transfer,
  .app-habitat .wrap-transfer .parent-rowspan .subtitle-transfer {
    position: relative;
    padding: 10px 20px 10px 0;
  }
  .habitat-wrap .wrap-transfer .parent-rowspan .subtitle-transfer span,
  .app-habitat .wrap-transfer .parent-rowspan .subtitle-transfer span {
    position: relative;
    z-index: 10;
  }
  .habitat-wrap .wrap-transfer .parent-rowspan .subtitle-transfer:before, .habitat-wrap .wrap-transfer .parent-rowspan .subtitle-transfer:after,
  .app-habitat .wrap-transfer .parent-rowspan .subtitle-transfer:before,
  .app-habitat .wrap-transfer .parent-rowspan .subtitle-transfer:after {
    content: '';
    width: 30px;
    position: absolute;
    top: 0;
    height: 100%;
    background-color: #4C4C4A;
  }
  .habitat-wrap .wrap-transfer .parent-rowspan .subtitle-transfer:before,
  .app-habitat .wrap-transfer .parent-rowspan .subtitle-transfer:before {
    left: -20px;
  }
  .habitat-wrap .wrap-transfer .parent-rowspan .subtitle-transfer:after,
  .app-habitat .wrap-transfer .parent-rowspan .subtitle-transfer:after {
    right: -20px;
  }
  .habitat-wrap .wrap-transfer .parent-rowspan .regimen,
  .app-habitat .wrap-transfer .parent-rowspan .regimen {
    margin-left: 0;
    margin-right: 0;
  }
  .habitat-wrap .wrap-transfer .numero,
  .app-habitat .wrap-transfer .numero {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    color: white;
    float: left;
    text-align: center;
    line-height: 20px;
    border: 2px solid white;
    margin-right: 7px;
  }
}

.habitat-wrap .box-arrow,
.app-habitat .box-arrow {
  padding: 5px 15px;
  position: relative;
  background-color: #D3DEE2;
}

.habitat-wrap .box-arrow:before,
.app-habitat .box-arrow:before {
  content: '';
  width: 4px;
  height: 18px;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
}

.habitat-wrap .box-arrow:after,
.app-habitat .box-arrow:after {
  content: "";
  border-bottom: 15px solid transparent;
  border-left: 12px solid #D3DEE2;
  border-top: 15px solid transparent;
  bottom: 0;
  height: 0;
  margin: auto;
  position: absolute;
  right: -12px;
  top: 0;
  width: 0;
}

.habitat-wrap .box-arrow[data-fondo*="a"]:before,
.app-habitat .box-arrow[data-fondo*="a"]:before {
  background-color: #B52A29;
}

.habitat-wrap .box-arrow[data-fondo*="b"]:before,
.app-habitat .box-arrow[data-fondo*="b"]:before {
  background-color: #EB6915;
}

.habitat-wrap .box-arrow[data-fondo*="c"]:before,
.app-habitat .box-arrow[data-fondo*="c"]:before {
  background-color: #5CAE3B;
}

.habitat-wrap .box-arrow[data-fondo*="d"]:before,
.app-habitat .box-arrow[data-fondo*="d"]:before {
  background-color: #2E8ECD;
}

.habitat-wrap .box-arrow[data-fondo*="e"]:before,
.app-habitat .box-arrow[data-fondo*="e"]:before {
  background-color: #2660AA;
}

@media (max-width: 990px) {
  .habitat-wrap .box-arrow:after,
  .app-habitat .box-arrow:after {
    display: none;
  }
}

.habitat-wrap .wrap-radios label + label,
.app-habitat .wrap-radios label + label {
  margin-left: 30px;
}

@media (min-width: 991px) {
  .habitat-wrap .wrap-radios,
  .app-habitat .wrap-radios {
    padding-bottom: 20px;
  }
  .habitat-wrap .wrap-radios h3,
  .app-habitat .wrap-radios h3 {
    font-size: 14px;
  }
}

@media (max-width: 990px) {
  .habitat-wrap .wrap-radios,
  .app-habitat .wrap-radios {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 600px) {
  .habitat-wrap .wrap-radios,
  .app-habitat .wrap-radios {
    font-size: 13px;
    overflow: hidden;
  }
  .habitat-wrap .wrap-radios label,
  .app-habitat .wrap-radios label {
    float: left;
    width: 50%;
    margin: 0 !important;
  }
}

.habitat-wrap .head-transfer .h4,
.app-habitat .head-transfer .h4 {
  margin-bottom: 10px;
}

.habitat-wrap .head-transfer.border-top,
.app-habitat .head-transfer.border-top {
  border-top: 1px solid #DDD;
  padding-top: 20px;
}

.habitat-wrap .breadcrumbs-transfer,
.app-habitat .breadcrumbs-transfer {
  color: white;
  font-size: 18px;
  overflow: hidden;
}

.habitat-wrap .breadcrumbs-transfer li,
.app-habitat .breadcrumbs-transfer li {
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  font-family: "robotolightHabitat";
  position: relative;
}

.habitat-wrap .breadcrumbs-transfer .first,
.app-habitat .breadcrumbs-transfer .first {
  margin-right: 15px;
}

.habitat-wrap .breadcrumbs-transfer .first:after,
.app-habitat .breadcrumbs-transfer .first:after {
  content: "";
  border-bottom: 20px solid transparent;
  border-left: 12px solid;
  border-top: 20px solid transparent;
  bottom: 0;
  height: 0;
  margin: auto;
  position: absolute;
  right: -12px;
  top: 0;
  width: 0;
}

.habitat-wrap .breadcrumbs-transfer.primary,
.app-habitat .breadcrumbs-transfer.primary {
  background-color: #C53F61;
}

.habitat-wrap .breadcrumbs-transfer.primary .first,
.app-habitat .breadcrumbs-transfer.primary .first {
  background-color: #B4123B;
}

.habitat-wrap .breadcrumbs-transfer.primary .first:after,
.app-habitat .breadcrumbs-transfer.primary .first:after {
  border-left-color: #B4123B;
}

.habitat-wrap .breadcrumbs-transfer.second,
.app-habitat .breadcrumbs-transfer.second {
  background-color: #83B3C4;
}

.habitat-wrap .breadcrumbs-transfer.second .first,
.app-habitat .breadcrumbs-transfer.second .first {
  background-color: #0085B2;
}

.habitat-wrap .breadcrumbs-transfer.second .first:after,
.app-habitat .breadcrumbs-transfer.second .first:after {
  border-left-color: #0085B2;
}

@media (min-width: 501px) {
  .habitat-wrap .breadcrumbs-transfer .first,
  .app-habitat .breadcrumbs-transfer .first {
    padding-left: 25px;
  }
}

@media (max-width: 500px) {
  .habitat-wrap .breadcrumbs-transfer,
  .app-habitat .breadcrumbs-transfer {
    margin-bottom: 20px;
  }
  .habitat-wrap .breadcrumbs-transfer li,
  .app-habitat .breadcrumbs-transfer li {
    font-size: 12px;
  }
}

.habitat-wrap .subtitle-transfer,
.app-habitat .subtitle-transfer {
  color: white;
  padding: 10px 20px;
  margin: 20px 0;
  background-color: #4C4C4A;
}

.habitat-wrap .wrap-important,
.app-habitat .wrap-important {
  padding: 20px;
  background-color: #E4E8E9;
}

.habitat-wrap .static-date,
.app-habitat .static-date {
  border-radius: 5px;
  padding: 8px;
  background-color: #C7D1D4;
}

@media (max-width: 768px) {
  .habitat-wrap .opcion-plan .inline-check,
  .app-habitat .opcion-plan .inline-check {
    margin-top: 20px;
    display: block !important;
  }
}

.habitat-wrap .transfer-table,
.app-habitat .transfer-table {
  width: 100%;
}

.habitat-wrap .transfer-table *,
.app-habitat .transfer-table * {
  text-align: left;
}

.habitat-wrap .transfer-table th,
.app-habitat .transfer-table th {
  border: none;
}

.habitat-wrap .transfer-table .tip-box,
.app-habitat .transfer-table .tip-box {
  position: relative;
  vertical-align: middle;
  width: 95%;
  background: #ccc;
  padding: 6px 0;
}

.habitat-wrap .transfer-table .tip-box span,
.app-habitat .transfer-table .tip-box span {
  padding: 0 14px;
  display: block;
}

.habitat-wrap .transfer-table .tip-box i,
.app-habitat .transfer-table .tip-box i {
  color: #B4123B;
  display: block;
  float: right;
  height: 20px;
  line-height: 20px;
  text-align: center;
  width: 20px;
}

.habitat-wrap .transfer-table thead,
.app-habitat .transfer-table thead {
  background: #4C4C4A;
}

.habitat-wrap .transfer-table thead .small-td,
.app-habitat .transfer-table thead .small-td {
  width: 20%;
}

.habitat-wrap .transfer-table thead th,
.app-habitat .transfer-table thead th {
  padding: 5px 15px 5px 8px;
  color: white;
  font-weight: lighter;
  line-height: 100%;
}

.habitat-wrap .transfer-table tr,
.app-habitat .transfer-table tr {
  border-bottom: 12px solid transparent;
}

.habitat-wrap .transfer-table th:last-child, .habitat-wrap .transfer-table td:last-child,
.app-habitat .transfer-table th:last-child,
.app-habitat .transfer-table td:last-child {
  border: none;
}

.habitat-wrap .transfer-table .fund-td,
.app-habitat .transfer-table .fund-td {
  width: 20%;
}

.habitat-wrap .transfer-table .fund-td .tip-box,
.app-habitat .transfer-table .fund-td .tip-box {
  width: 90%;
}

.habitat-wrap .transfer-table .big-td,
.app-habitat .transfer-table .big-td {
  width: 40%;
}

@media only screen and (max-width: 989px) {
  .habitat-wrap .transfer-table .fund-td,
  .app-habitat .transfer-table .fund-td {
    width: 100%;
  }
  .habitat-wrap .transfer-table .fund-td .tip-box,
  .app-habitat .transfer-table .fund-td .tip-box {
    width: 100%;
  }
  .habitat-wrap .transfer-table .big-td,
  .app-habitat .transfer-table .big-td {
    width: 100%;
  }
}

.habitat-wrap .transfer-table .smallest-td,
.app-habitat .transfer-table .smallest-td {
  width: 10%;
}

.habitat-wrap .transfer-table .tip-box,
.app-habitat .transfer-table .tip-box {
  background: #e4e8e9;
}

.habitat-wrap .transfer-table .tip-box:after,
.app-habitat .transfer-table .tip-box:after {
  content: "";
  border-bottom: 9px solid transparent;
  border-left: 12px solid #e4e8e9;
  border-top: 9px solid transparent;
  bottom: 0;
  height: 0;
  margin: auto;
  position: absolute;
  right: -8px;
  top: 0;
  width: 0;
}

.habitat-wrap .transfer-table .tip-box.a-fund,
.app-habitat .transfer-table .tip-box.a-fund {
  color: white;
  background-color: #B52A29;
}

.habitat-wrap .transfer-table .tip-box.a-fund:after,
.app-habitat .transfer-table .tip-box.a-fund:after {
  border-left-color: #B52A29;
}

.habitat-wrap .transfer-table .tip-box.b-fund,
.app-habitat .transfer-table .tip-box.b-fund {
  color: white;
  background-color: #EB6915;
}

.habitat-wrap .transfer-table .tip-box.b-fund:after,
.app-habitat .transfer-table .tip-box.b-fund:after {
  border-left-color: #EB6915;
}

.habitat-wrap .transfer-table .tip-box.c-fund,
.app-habitat .transfer-table .tip-box.c-fund {
  color: white;
  background-color: #5CAE3B;
}

.habitat-wrap .transfer-table .tip-box.c-fund:after,
.app-habitat .transfer-table .tip-box.c-fund:after {
  border-left-color: #5CAE3B;
}

.habitat-wrap .transfer-table .tip-box.d-fund,
.app-habitat .transfer-table .tip-box.d-fund {
  color: white;
  background-color: #2E8ECD;
}

.habitat-wrap .transfer-table .tip-box.d-fund:after,
.app-habitat .transfer-table .tip-box.d-fund:after {
  border-left-color: #2E8ECD;
}

.habitat-wrap .transfer-table .tip-box.e-fund,
.app-habitat .transfer-table .tip-box.e-fund {
  color: white;
  background-color: #2660AA;
}

.habitat-wrap .transfer-table .tip-box.e-fund:after,
.app-habitat .transfer-table .tip-box.e-fund:after {
  border-left-color: #2660AA;
}

.habitat-wrap .transfer-table .tip-box i,
.app-habitat .transfer-table .tip-box i {
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 22px;
  height: 22px;
  line-height: 22px;
  font-size: 20px;
}

.habitat-wrap .transfer-table .alert,
.app-habitat .transfer-table .alert {
  background: #ffd8e2;
  border: solid 1px #c53f61;
  border-radius: 3px;
  color: #c53f61;
  display: block;
  padding: 7px 6px;
}

.habitat-wrap .transfer-table.bordered-bottom,
.app-habitat .transfer-table.bordered-bottom {
  border-bottom: solid 1px #ccc;
}

.habitat-wrap .transfer-table .mixed-inputs,
.app-habitat .transfer-table .mixed-inputs {
  width: 100%;
  min-width: 240px;
}

.habitat-wrap .transfer-table .mixed-inputs .small,
.app-habitat .transfer-table .mixed-inputs .small {
  padding-right: 12px;
  padding-left: 12px;
  width: 34%;
  display: table-cell;
  vertical-align: middle;
}

@media only screen and (max-width: 990px) {
  .habitat-wrap .transfer-table .mixed-inputs .small,
  .app-habitat .transfer-table .mixed-inputs .small {
    padding-left: 0;
  }
}

.habitat-wrap .transfer-table .mixed-inputs .big,
.app-habitat .transfer-table .mixed-inputs .big {
  display: table-cell;
  width: 70%;
  vertical-align: middle;
}

.habitat-wrap .mobile-table-head,
.app-habitat .mobile-table-head {
  background: #E4E8E9;
  padding: 10px 62px;
  position: relative;
}

.habitat-wrap .mobile-table-head.mobile-title,
.app-habitat .mobile-table-head.mobile-title {
  margin-bottom: 30px;
}

.habitat-wrap .mobile-table-head .number,
.app-habitat .mobile-table-head .number {
  border: 1px solid #333;
  border-radius: 100%;
  bottom: 0;
  display: block;
  font-size: 16px;
  height: 24px;
  left: 20px;
  line-height: 24px;
  margin: auto;
  position: absolute;
  text-align: center;
  top: 0;
  width: 24px;
}

.habitat-wrap .mobile-table-head h4,
.app-habitat .mobile-table-head h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.habitat-wrap .mobile-tip-box,
.app-habitat .mobile-tip-box {
  padding: 8px 0;
  text-align: center;
  margin-bottom: 10px;
}

.habitat-wrap .mobile-tip-box.a-fund,
.app-habitat .mobile-tip-box.a-fund {
  color: white;
  background-color: #B52A29;
}

.habitat-wrap .mobile-tip-box.b-fund,
.app-habitat .mobile-tip-box.b-fund {
  color: white;
  background-color: #EB6915;
}

.habitat-wrap .mobile-tip-box.c-fund,
.app-habitat .mobile-tip-box.c-fund {
  color: white;
  background-color: #5CAE3B;
}

.habitat-wrap .mobile-tip-box.d-fund,
.app-habitat .mobile-tip-box.d-fund {
  color: white;
  background-color: #2E8ECD;
}

.habitat-wrap .mobile-tip-box.e-fund,
.app-habitat .mobile-tip-box.e-fund {
  color: white;
  background-color: #2660AA;
}

.habitat-wrap .mobile-title,
.app-habitat .mobile-title {
  display: none;
}

@media only screen and (max-width: 990px) {
  .habitat-wrap .mobile-title,
  .app-habitat .mobile-title {
    display: block;
  }
  .habitat-wrap .mobile-title.sec-title,
  .app-habitat .mobile-title.sec-title {
    padding: 0 30px;
  }
}

@media only screen and (max-width: 990px) {
  .habitat-wrap .transfer-table,
  .app-habitat .transfer-table {
    display: block;
    width: 100%;
  }
  .habitat-wrap .transfer-table .not-960,
  .app-habitat .transfer-table .not-960 {
    display: none;
  }
  .habitat-wrap .transfer-table thead,
  .app-habitat .transfer-table thead {
    display: none;
  }
  .habitat-wrap .transfer-table tbody,
  .app-habitat .transfer-table tbody {
    display: block;
    padding: 0 20px;
    width: 100%;
  }
  .habitat-wrap .transfer-table tr,
  .app-habitat .transfer-table tr {
    border-bottom: 0;
    display: block;
    background: white none repeat scroll 0 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
    margin-top: 20px;
    /*overflow: hidden;*/
    padding: 15px;
    width: 100%;
  }
  .habitat-wrap .transfer-table td,
  .app-habitat .transfer-table td {
    border: medium none;
    display: block;
    margin: 10px auto;
    width: 100%;
  }
  .habitat-wrap .transfer-table td .tip-box,
  .app-habitat .transfer-table td .tip-box {
    margin: 0 auto;
    overflow: hidden;
    padding: 0;
    width: 100%;
  }
  .habitat-wrap .transfer-table td .tip-box span,
  .app-habitat .transfer-table td .tip-box span {
    padding: 10px 0;
    text-align: center;
  }
  .habitat-wrap .transfer-table h5,
  .app-habitat .transfer-table h5 {
    margin-bottom: 10px;
    margin-top: 0;
  }
  .habitat-wrap .transfer-table .small-td,
  .app-habitat .transfer-table .small-td {
    width: 100%;
  }
  .habitat-wrap .transfer-table .smallest-td,
  .app-habitat .transfer-table .smallest-td {
    width: 100%;
  }
}

.habitat-wrap .th-content,
.app-habitat .th-content {
  display: none;
}

.habitat-wrap .simple-table th,
.habitat-wrap .simple-table td,
.app-habitat .simple-table th,
.app-habitat .simple-table td {
  padding: 10px 20px;
  font-family: "robotolightHabitat";
  font-size: 16px;
}

.habitat-wrap .simple-table thead th,
.app-habitat .simple-table thead th {
  color: white;
  border: 0;
  background-color: #51575D;
}

.habitat-wrap .simple-table tbody tr,
.app-habitat .simple-table tbody tr {
  border-top: 1px solid #DDD;
}

.habitat-wrap .simple-table tbody tr:nth-child(2n),
.app-habitat .simple-table tbody tr:nth-child(2n) {
  background-color: #F7F7F7;
}

.habitat-wrap .simple-table tbody td,
.app-habitat .simple-table tbody td {
  color: #4C4C4A;
  font-size: 14px;
  border-left: 1px solid #DDD;
  border-right: 1px solid #DDD;
  border-bottom: 1px solid #DDD;
}

.habitat-wrap .simple-table.collapsed thead,
.app-habitat .simple-table.collapsed thead {
  display: none;
}

.habitat-wrap .simple-table.collapsed tr,
.app-habitat .simple-table.collapsed tr {
  border-bottom: none;
  display: block;
  float: left;
  margin-bottom: 20px;
  width: 100%;
}

.habitat-wrap .simple-table.collapsed td,
.app-habitat .simple-table.collapsed td {
  display: table;
  /*font-size: 12px;*/
  line-height: normal;
  margin-bottom: 1px;
  padding: 10px 2% 10px 3%;
  text-align: left;
  width: 100%;
  border-bottom: 1px solid #eaeaea;
}

.habitat-wrap .simple-table.collapsed .td-content,
.app-habitat .simple-table.collapsed .td-content {
  display: table-cell;
  padding: 10px;
  text-align: left;
  width: 50%;
}

.habitat-wrap .simple-table.collapsed .th-content,
.app-habitat .simple-table.collapsed .th-content {
  background: #51575D;
  display: table-cell;
  padding: 10px;
  vertical-align: middle;
  width: 50%;
  color: white;
}

.habitat-wrap .simple-table-small th,
.habitat-wrap .simple-table-small td,
.app-habitat .simple-table-small th,
.app-habitat .simple-table-small td {
  font-size: 12px;
  padding: 7px;
}

.habitat-wrap .table-encuesta thead th,
.app-habitat .table-encuesta thead th {
  background-color: transparent;
}

@media (max-width: 800px) {
  .habitat-wrap .table-encuesta tr,
  .app-habitat .table-encuesta tr {
    display: block;
    width: 100%;
  }
  .habitat-wrap .table-encuesta tr th:first-child,
  .app-habitat .table-encuesta tr th:first-child {
    display: none;
  }
  .habitat-wrap .table-encuesta tr th,
  .app-habitat .table-encuesta tr th {
    width: 20%;
    float: left;
  }
  .habitat-wrap .table-encuesta tr td,
  .app-habitat .table-encuesta tr td {
    width: 20%;
    float: left;
  }
  .habitat-wrap .table-encuesta tr td:first-child,
  .app-habitat .table-encuesta tr td:first-child {
    width: 100%;
    display: block;
  }
  .habitat-wrap .table-encuesta .inline-radio,
  .app-habitat .table-encuesta .inline-radio {
    display: table;
    margin: auto;
  }
}

.habitat-wrap .table-smile,
.app-habitat .table-smile {
  width: 100%;
  margin-top: 20px;
  text-align: center;
}

.habitat-wrap .table-smile th,
.app-habitat .table-smile th {
  padding-bottom: 10px;
}

@font-face {
  font-family: 'icon-habitat-new';
  src: url("../../fonts/icon-habitat-new.eot?uvzrxw");
  src: url("../../fonts/icon-habitat-new.eot?uvzrxw#iefix") format("embedded-opentype"), url("../../fonts/icon-habitat-new.ttf?uvzrxw") format("truetype"), url("../../fonts/icon-habitat-new.woff?uvzrxw") format("woff"), url("../../fonts/icon-habitat-new.svg?uvzrxw#icon-habitat") format("svg");
  font-weight: normal;
  font-style: normal;
}

.habitat-wrap,
.app-habitat {
  /*colores de iconos por defecto*/
  /* smile */
}

.habitat-wrap [class^="icon-"], .habitat-wrap .wrapper-faq .nav-nivel .toggle-menu:after,
.app-habitat .wrapper-faq .nav-nivel .habitat-wrap .toggle-menu:after, .habitat-wrap .wizard .wizard-step.complete .wizard-dot:before,
.app-habitat .wizard .wizard-step.complete .habitat-wrap .wizard-dot:before, .habitat-wrap [class*=" icon-"], .habitat-wrap .custom__select:after, .habitat-wrap .dropup .caret,
.habitat-wrap .dropdown .caret,
.app-habitat .dropup .habitat-wrap .caret,
.app-habitat .dropdown .habitat-wrap .caret, .habitat-wrap .cs-checkbox-wrap:after, .habitat-wrap .step-wrap li.checked .step-number:before,
.app-habitat .step-wrap li.checked .habitat-wrap .step-number:before,
.app-habitat [class^="icon-"], .habitat-wrap .wrapper-faq .nav-nivel
.app-habitat .toggle-menu:after,
.app-habitat .wrapper-faq .nav-nivel .toggle-menu:after, .habitat-wrap .wizard .wizard-step.complete
.app-habitat .wizard-dot:before,
.app-habitat .wizard .wizard-step.complete .wizard-dot:before,
.app-habitat [class*=" icon-"],
.app-habitat .custom__select:after, .habitat-wrap .dropup
.app-habitat .caret,
.habitat-wrap .dropdown
.app-habitat .caret,
.app-habitat .dropup .caret,
.app-habitat .dropdown .caret,
.app-habitat .cs-checkbox-wrap:after, .habitat-wrap .step-wrap li.checked
.app-habitat .step-number:before,
.app-habitat .step-wrap li.checked .step-number:before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icon-habitat-new' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  position: relative;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.habitat-wrap .icon-xs:before,
.app-habitat .icon-xs:before {
  font-size: 12px !important;
}

.habitat-wrap .icon-s:before,
.app-habitat .icon-s:before {
  font-size: 16px !important;
}

.habitat-wrap .icon-m:before,
.app-habitat .icon-m:before {
  font-size: 24px !important;
}

.habitat-wrap .icon-l:before,
.app-habitat .icon-l:before {
  font-size: 37px !important;
}

.habitat-wrap .icon-xl:before,
.app-habitat .icon-xl:before {
  font-size: 45px !important;
}

.habitat-wrap .icon-add,
.app-habitat .icon-add {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  font-weight: bold;
  background-color: #0085B2;
  font-family: "robotoboldHabitat" !important;
}

.habitat-wrap .icon-add:before,
.app-habitat .icon-add:before {
  content: "+";
  color: white;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
  width: 19px;
  height: 19px;
  text-align: center;
  line-height: 19px;
}

.habitat-wrap .icon-doc:before,
.app-habitat .icon-doc:before {
  content: "\e913";
}

.habitat-wrap .icon-contact:before,
.app-habitat .icon-contact:before {
  content: "\e912";
}

.habitat-wrap .icon-smile-angry:before,
.app-habitat .icon-smile-angry:before {
  content: "\e911";
}

.habitat-wrap .icon-smile-sad:before,
.app-habitat .icon-smile-sad:before {
  content: "\e910";
}

.habitat-wrap .icon-smile:before,
.app-habitat .icon-smile:before {
  content: "\e90f";
}

.habitat-wrap .icon-smile-happy:before,
.app-habitat .icon-smile-happy:before {
  content: "\e90e";
}

.habitat-wrap .icon-smile-happy2:before,
.app-habitat .icon-smile-happy2:before {
  content: "\e915";
}

.habitat-wrap .icon-check-circle:before,
.app-habitat .icon-check-circle:before {
  content: "\e90b";
}

.habitat-wrap .icon-check:before,
.app-habitat .icon-check:before {
  content: "\e90a";
}

.habitat-wrap .icon-tooltips:before,
.app-habitat .icon-tooltips:before {
  content: "\e909";
}

.habitat-wrap .icon-proyeccion:before,
.app-habitat .icon-proyeccion:before {
  content: "\e902";
}

.habitat-wrap .icon-twitter:before,
.app-habitat .icon-twitter:before {
  content: "\e903";
}

.habitat-wrap .icon-facebook:before,
.app-habitat .icon-facebook:before {
  content: "\e904";
}

.habitat-wrap .icon-comparar:before,
.app-habitat .icon-comparar:before {
  content: "\e905";
}

.habitat-wrap .icon-calculadora:before,
.app-habitat .icon-calculadora:before {
  content: "\e906";
}

.habitat-wrap .icon-email:before,
.app-habitat .icon-email:before {
  content: "\e907";
}

.habitat-wrap .icon-print:before,
.app-habitat .icon-print:before {
  content: "\e908";
}

.habitat-wrap .icon-warning:before,
.app-habitat .icon-warning:before {
  content: "\e900";
}

.habitat-wrap .icon-double-arrow-left:before,
.app-habitat .icon-double-arrow-left:before {
  content: "\e90d";
}

.habitat-wrap .icon-double-arrow-right:before,
.app-habitat .icon-double-arrow-right:before {
  content: "\e901";
}

.habitat-wrap .icon-arrow-bottom:before,
.app-habitat .icon-arrow-bottom:before {
  content: "\e939";
}

.habitat-wrap .icon-arrow-top:before,
.app-habitat .icon-arrow-top:before {
  content: "\e93a";
}

.habitat-wrap .icon-circle-check:before,
.app-habitat .icon-circle-check:before {
  content: "\e93b";
}

.habitat-wrap .icon-close:before,
.app-habitat .icon-close:before {
  content: "\e93c";
}

.habitat-wrap .icon-circle-error:before,
.app-habitat .icon-circle-error:before {
  content: "\e93d";
}

.habitat-wrap .icon-lock:before,
.app-habitat .icon-lock:before {
  content: "\e93e";
}

.habitat-wrap .icon-lock2:before,
.app-habitat .icon-lock2:before {
  content: "\e93f";
}

.habitat-wrap .icon-pdf:before,
.app-habitat .icon-pdf:before {
  content: "\e940";
}

.habitat-wrap .icon-search:before,
.app-habitat .icon-search:before {
  content: "\e941";
}

.habitat-wrap .icon-document-check:before,
.app-habitat .icon-document-check:before {
  content: "\e90c";
}

.habitat-wrap .icon-pdf,
.app-habitat .icon-pdf {
  color: #B4123B !important;
}

.habitat-wrap .icon-tooltips,
.app-habitat .icon-tooltips {
  color: #6BA3B7;
  font-size: 16px;
}

.habitat-wrap .icon-smile-happy,
.app-habitat .icon-smile-happy {
  color: #388A2E;
}

.habitat-wrap .icon-smile-happy2,
.app-habitat .icon-smile-happy2 {
  color: #829B2D;
}

.habitat-wrap .icon-smile,
.app-habitat .icon-smile {
  color: #DD9C2F;
}

.habitat-wrap .icon-smile-sad,
.app-habitat .icon-smile-sad {
  color: #DD4915;
}

.habitat-wrap .icon-smile-angry,
.app-habitat .icon-smile-angry {
  color: #D51E0D;
}

.habitat-wrap .icon-contact,
.app-habitat .icon-contact {
  color: #B4123B;
}

.habitat-wrap .icon-doc,
.app-habitat .icon-doc {
  color: #83B3C4;
}

.habitat-wrap .wrap-banner,
.app-habitat .wrap-banner {
  display: table;
  width: 100%;
  height: 200px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right 0;
  position: relative;
  margin-bottom: 20px;
}

.habitat-wrap .wrap-banner .title-banner,
.app-habitat .wrap-banner .title-banner {
  font-size: 45px;
  line-height: 110%;
  color: white;
  display: table-cell;
  vertical-align: middle;
  padding: 0 30px;
  position: relative;
  z-index: 10;
  font-family: "roboto_slabregular", serif;
}

@media (max-width: 768px) {
  .habitat-wrap .wrap-banner:after,
  .app-habitat .wrap-banner:after {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 7;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .habitat-wrap .wrap-banner .title-banner,
  .app-habitat .wrap-banner .title-banner {
    font-size: 30px;
  }
}

.habitat-wrap,
.app-habitat {
  /*base tabs */
  /*theme tabs*/
}

.habitat-wrap .tab-content > .tab-pane,
.app-habitat .tab-content > .tab-pane {
  display: none;
}

.habitat-wrap .tab-content > .active,
.app-habitat .tab-content > .active {
  display: block;
}

.habitat-wrap .fade.in,
.app-habitat .fade.in {
  opacity: 1;
}

.habitat-wrap .fade,
.app-habitat .fade {
  opacity: 0;
  transition: opacity .15s linear;
}

.habitat-wrap .horizontal-tabs,
.app-habitat .horizontal-tabs {
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
}

.habitat-wrap .horizontal-tabs .nav-tabs,
.app-habitat .horizontal-tabs .nav-tabs {
  display: table;
  width: 100%;
  position: relative;
  z-index: 10;
  background-color: white;
}

.habitat-wrap .horizontal-tabs .nav-tabs li,
.app-habitat .horizontal-tabs .nav-tabs li {
  text-align: center;
  display: table-cell;
  position: relative;
  width: 50%;
}

.habitat-wrap .horizontal-tabs .nav-tabs li:before,
.app-habitat .horizontal-tabs .nav-tabs li:before {
  content: '';
  width: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  display: block;
  transition: .5s width;
  background-color: #B4123B;
}

.habitat-wrap .horizontal-tabs .nav-tabs li a,
.app-habitat .horizontal-tabs .nav-tabs li a {
  display: block;
  font-family: "robotomediumHabitat";
  color: #4C4C4A;
  padding: 10px;
  background-color: #ddd;
  font-size: 18px;
}

.habitat-wrap .horizontal-tabs .nav-tabs li.active a,
.app-habitat .horizontal-tabs .nav-tabs li.active a {
  background-color: white;
}

.habitat-wrap .horizontal-tabs .nav-tabs li.active:before,
.app-habitat .horizontal-tabs .nav-tabs li.active:before {
  width: 100%;
}

.habitat-wrap .horizontal-tabs .tab-content,
.app-habitat .horizontal-tabs .tab-content {
  padding: 20px;
  background-color: white;
  display: table;
  width: 100%;
  border: 0;
}

@media (max-width: 600px) {
  .habitat-wrap .horizontal-tabs .nav-tabs li a,
  .app-habitat .horizontal-tabs .nav-tabs li a {
    font-size: 16px;
  }
}

.app-habitat .modal,
.habitat-wrap .modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

.app-habitat .modal.fade .modal-dialog,
.habitat-wrap .modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  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;
}

.app-habitat .modal.in .modal-dialog,
.habitat-wrap .modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.app-habitat .modal-open .modal,
.habitat-wrap .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.app-habitat .modal-dialog,
.habitat-wrap .modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

.app-habitat .modal-content,
.habitat-wrap .modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
}

.app-habitat .modal-backdrop,
.habitat-wrap .modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

.app-habitat .modal-backdrop.fade,
.habitat-wrap .modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}

.app-habitat .modal-backdrop.in,
.habitat-wrap .modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.app-habitat .modal-header,
.habitat-wrap .modal-header {
  padding: 15px;
  position: relative;
  border-bottom: 1px solid #e5e5e5;
}

.app-habitat .modal-header .close,
.habitat-wrap .modal-header .close {
  margin-top: -2px;
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  cursor: pointer;
  outline: none;
  background-color: transparent;
  font-size: 30px;
  color: #4C4C4A;
}

.app-habitat .modal-header .close:hover,
.habitat-wrap .modal-header .close:hover {
  color: #B4123B;
}

.app-habitat .modal-title,
.habitat-wrap .modal-title {
  margin: 0;
  padding-right: 30px;
  font-size: 20px;
}

.app-habitat .modal-body,
.habitat-wrap .modal-body {
  position: relative;
  padding: 15px;
}

.app-habitat .modal-footer,
.habitat-wrap .modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

.app-habitat .modal-footer .btn + .btn,
.habitat-wrap .modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}

.app-habitat .modal-footer .btn-group .btn + .btn,
.habitat-wrap .modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

.app-habitat .modal-footer .btn-block + .btn-block,
.habitat-wrap .modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

.app-habitat .modal-scrollbar-measure,
.habitat-wrap .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 768px) {
  .app-habitat .modal-dialog,
  .habitat-wrap .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .app-habitat .modal-content,
  .habitat-wrap .modal-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .app-habitat .modal-sm,
  .habitat-wrap .modal-sm {
    width: 300px;
  }
}

@media (min-width: 992px) {
  .app-habitat .modal-lg,
  .habitat-wrap .modal-lg {
    width: 900px;
  }
}

@media (min-width: 993px) {
  .app-habitat .modal-xl,
  .habitat-wrap .modal-xl {
    width: 1000px;
    max-width: 95%;
  }
}

.app-habitat .wrap-folio,
.habitat-wrap .wrap-folio {
  text-align: center;
  padding-bottom: 20px;
  border: 1px solid #DDD;
}

.app-habitat.modal-open {
  overflow: hidden;
}

.app-habitat.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

/*  layout  */
.habitat-wrap,
.app-habitat {
  /* Gutter */
  /* columnas */
  /*
  modificacion row gutter
  */
}

.habitat-wrap .container,
.app-habitat .container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
}

@media (max-width: 767px) {
  .habitat-wrap .col-xs-12 + .col-xs-12,
  .app-habitat .col-xs-12 + .col-xs-12 {
    margin-top: 20px;
  }
}

@media (max-width: 991px) {
  .habitat-wrap .col-sm-12 + .col-sm-12,
  .app-habitat .col-sm-12 + .col-sm-12 {
    margin-top: 20px;
  }
}

@media (min-width: 768px) {
  .habitat-wrap .container,
  .app-habitat .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .habitat-wrap .container,
  .app-habitat .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .habitat-wrap .container,
  .app-habitat .container {
    width: 1170px;
  }
}

.habitat-wrap .container-fluid,
.app-habitat .container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
}

.habitat-wrap .row,
.app-habitat .row {
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 0 !important;
}

.habitat-wrap .row:after,
.app-habitat .row:after {
  content: " ";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}

.habitat-wrap .col-xs-1, .habitat-wrap .col-sm-1, .habitat-wrap .col-md-1, .habitat-wrap .col-lg-1, .habitat-wrap .col-xs-2, .habitat-wrap .col-sm-2, .habitat-wrap .col-md-2, .habitat-wrap .col-lg-2, .habitat-wrap .col-xs-3, .habitat-wrap .col-sm-3, .habitat-wrap .col-md-3, .habitat-wrap .col-lg-3, .habitat-wrap .col-xs-4, .habitat-wrap .col-sm-4, .habitat-wrap .col-md-4, .habitat-wrap .col-lg-4, .habitat-wrap .col-xs-5, .habitat-wrap .col-sm-5, .habitat-wrap .col-md-5, .habitat-wrap .col-lg-5, .habitat-wrap .col-xs-6, .habitat-wrap .col-sm-6, .habitat-wrap .col-md-6, .habitat-wrap .col-lg-6, .habitat-wrap .col-xs-7, .habitat-wrap .col-sm-7, .habitat-wrap .col-md-7, .habitat-wrap .col-lg-7, .habitat-wrap .col-xs-8, .habitat-wrap .col-sm-8, .habitat-wrap .col-md-8, .habitat-wrap .col-lg-8, .habitat-wrap .col-xs-9, .habitat-wrap .col-sm-9, .habitat-wrap .col-md-9, .habitat-wrap .col-lg-9, .habitat-wrap .col-xs-10, .habitat-wrap .col-sm-10, .habitat-wrap .col-md-10, .habitat-wrap .col-lg-10, .habitat-wrap .col-xs-11, .habitat-wrap .col-sm-11, .habitat-wrap .col-md-11, .habitat-wrap .col-lg-11, .habitat-wrap .col-xs-12, .habitat-wrap .col-sm-12, .habitat-wrap .col-md-12, .habitat-wrap .col-lg-12,
.app-habitat .col-xs-1,
.app-habitat .col-sm-1,
.app-habitat .col-md-1,
.app-habitat .col-lg-1,
.app-habitat .col-xs-2,
.app-habitat .col-sm-2,
.app-habitat .col-md-2,
.app-habitat .col-lg-2,
.app-habitat .col-xs-3,
.app-habitat .col-sm-3,
.app-habitat .col-md-3,
.app-habitat .col-lg-3,
.app-habitat .col-xs-4,
.app-habitat .col-sm-4,
.app-habitat .col-md-4,
.app-habitat .col-lg-4,
.app-habitat .col-xs-5,
.app-habitat .col-sm-5,
.app-habitat .col-md-5,
.app-habitat .col-lg-5,
.app-habitat .col-xs-6,
.app-habitat .col-sm-6,
.app-habitat .col-md-6,
.app-habitat .col-lg-6,
.app-habitat .col-xs-7,
.app-habitat .col-sm-7,
.app-habitat .col-md-7,
.app-habitat .col-lg-7,
.app-habitat .col-xs-8,
.app-habitat .col-sm-8,
.app-habitat .col-md-8,
.app-habitat .col-lg-8,
.app-habitat .col-xs-9,
.app-habitat .col-sm-9,
.app-habitat .col-md-9,
.app-habitat .col-lg-9,
.app-habitat .col-xs-10,
.app-habitat .col-sm-10,
.app-habitat .col-md-10,
.app-habitat .col-lg-10,
.app-habitat .col-xs-11,
.app-habitat .col-sm-11,
.app-habitat .col-md-11,
.app-habitat .col-lg-11,
.app-habitat .col-xs-12,
.app-habitat .col-sm-12,
.app-habitat .col-md-12,
.app-habitat .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}

.habitat-wrap .col-xs-1, .habitat-wrap .col-xs-2, .habitat-wrap .col-xs-3, .habitat-wrap .col-xs-4, .habitat-wrap .col-xs-5, .habitat-wrap .col-xs-6, .habitat-wrap .col-xs-7, .habitat-wrap .col-xs-8, .habitat-wrap .col-xs-9, .habitat-wrap .col-xs-10, .habitat-wrap .col-xs-11, .habitat-wrap .col-xs-12,
.app-habitat .col-xs-1,
.app-habitat .col-xs-2,
.app-habitat .col-xs-3,
.app-habitat .col-xs-4,
.app-habitat .col-xs-5,
.app-habitat .col-xs-6,
.app-habitat .col-xs-7,
.app-habitat .col-xs-8,
.app-habitat .col-xs-9,
.app-habitat .col-xs-10,
.app-habitat .col-xs-11,
.app-habitat .col-xs-12 {
  float: left;
}

.habitat-wrap .col-xs-12,
.app-habitat .col-xs-12 {
  width: 100%;
}

.habitat-wrap .col-xs-11,
.app-habitat .col-xs-11 {
  width: 91.66667%;
}

.habitat-wrap .col-xs-10,
.app-habitat .col-xs-10 {
  width: 83.33333%;
}

.habitat-wrap .col-xs-9,
.app-habitat .col-xs-9 {
  width: 75%;
}

.habitat-wrap .col-xs-8,
.app-habitat .col-xs-8 {
  width: 66.66667%;
}

.habitat-wrap .col-xs-7,
.app-habitat .col-xs-7 {
  width: 58.33333%;
}

.habitat-wrap .col-xs-6,
.app-habitat .col-xs-6 {
  width: 50%;
}

.habitat-wrap .col-xs-5,
.app-habitat .col-xs-5 {
  width: 41.66667%;
}

.habitat-wrap .col-xs-4,
.app-habitat .col-xs-4 {
  width: 33.33333%;
}

.habitat-wrap .col-xs-3,
.app-habitat .col-xs-3 {
  width: 25%;
}

.habitat-wrap .col-xs-2,
.app-habitat .col-xs-2 {
  width: 16.66667%;
}

.habitat-wrap .col-xs-1,
.app-habitat .col-xs-1 {
  width: 8.33333%;
}

.habitat-wrap .col-xs-pull-12,
.app-habitat .col-xs-pull-12 {
  right: 100%;
}

.habitat-wrap .col-xs-pull-11,
.app-habitat .col-xs-pull-11 {
  right: 91.66667%;
}

.habitat-wrap .col-xs-pull-10,
.app-habitat .col-xs-pull-10 {
  right: 83.33333%;
}

.habitat-wrap .col-xs-pull-9,
.app-habitat .col-xs-pull-9 {
  right: 75%;
}

.habitat-wrap .col-xs-pull-8,
.app-habitat .col-xs-pull-8 {
  right: 66.66667%;
}

.habitat-wrap .col-xs-pull-7,
.app-habitat .col-xs-pull-7 {
  right: 58.33333%;
}

.habitat-wrap .col-xs-pull-6,
.app-habitat .col-xs-pull-6 {
  right: 50%;
}

.habitat-wrap .col-xs-pull-5,
.app-habitat .col-xs-pull-5 {
  right: 41.66667%;
}

.habitat-wrap .col-xs-pull-4,
.app-habitat .col-xs-pull-4 {
  right: 33.33333%;
}

.habitat-wrap .col-xs-pull-3,
.app-habitat .col-xs-pull-3 {
  right: 25%;
}

.habitat-wrap .col-xs-pull-2,
.app-habitat .col-xs-pull-2 {
  right: 16.66667%;
}

.habitat-wrap .col-xs-pull-1,
.app-habitat .col-xs-pull-1 {
  right: 8.33333%;
}

.habitat-wrap .col-xs-pull-0,
.app-habitat .col-xs-pull-0 {
  right: auto;
}

.habitat-wrap .col-xs-push-12,
.app-habitat .col-xs-push-12 {
  left: 100%;
}

.habitat-wrap .col-xs-push-11,
.app-habitat .col-xs-push-11 {
  left: 91.66667%;
}

.habitat-wrap .col-xs-push-10,
.app-habitat .col-xs-push-10 {
  left: 83.33333%;
}

.habitat-wrap .col-xs-push-9,
.app-habitat .col-xs-push-9 {
  left: 75%;
}

.habitat-wrap .col-xs-push-8,
.app-habitat .col-xs-push-8 {
  left: 66.66667%;
}

.habitat-wrap .col-xs-push-7,
.app-habitat .col-xs-push-7 {
  left: 58.33333%;
}

.habitat-wrap .col-xs-push-6,
.app-habitat .col-xs-push-6 {
  left: 50%;
}

.habitat-wrap .col-xs-push-5,
.app-habitat .col-xs-push-5 {
  left: 41.66667%;
}

.habitat-wrap .col-xs-push-4,
.app-habitat .col-xs-push-4 {
  left: 33.33333%;
}

.habitat-wrap .col-xs-push-3,
.app-habitat .col-xs-push-3 {
  left: 25%;
}

.habitat-wrap .col-xs-push-2,
.app-habitat .col-xs-push-2 {
  left: 16.66667%;
}

.habitat-wrap .col-xs-push-1,
.app-habitat .col-xs-push-1 {
  left: 8.33333%;
}

.habitat-wrap .col-xs-push-0,
.app-habitat .col-xs-push-0 {
  left: auto;
}

.habitat-wrap .col-xs-offset-12,
.app-habitat .col-xs-offset-12 {
  margin-left: 100%;
}

.habitat-wrap .col-xs-offset-11,
.app-habitat .col-xs-offset-11 {
  margin-left: 91.66667%;
}

.habitat-wrap .col-xs-offset-10,
.app-habitat .col-xs-offset-10 {
  margin-left: 83.33333%;
}

.habitat-wrap .col-xs-offset-9,
.app-habitat .col-xs-offset-9 {
  margin-left: 75%;
}

.habitat-wrap .col-xs-offset-8,
.app-habitat .col-xs-offset-8 {
  margin-left: 66.66667%;
}

.habitat-wrap .col-xs-offset-7,
.app-habitat .col-xs-offset-7 {
  margin-left: 58.33333%;
}

.habitat-wrap .col-xs-offset-6,
.app-habitat .col-xs-offset-6 {
  margin-left: 50%;
}

.habitat-wrap .col-xs-offset-5,
.app-habitat .col-xs-offset-5 {
  margin-left: 41.66667%;
}

.habitat-wrap .col-xs-offset-4,
.app-habitat .col-xs-offset-4 {
  margin-left: 33.33333%;
}

.habitat-wrap .col-xs-offset-3,
.app-habitat .col-xs-offset-3 {
  margin-left: 25%;
}

.habitat-wrap .col-xs-offset-2,
.app-habitat .col-xs-offset-2 {
  margin-left: 16.66667%;
}

.habitat-wrap .col-xs-offset-1,
.app-habitat .col-xs-offset-1 {
  margin-left: 8.33333%;
}

.habitat-wrap .col-xs-offset-0,
.app-habitat .col-xs-offset-0 {
  margin-left: 0%;
}

@media (min-width: 768px) {
  .habitat-wrap .col-sm-1, .habitat-wrap .col-sm-2, .habitat-wrap .col-sm-3, .habitat-wrap .col-sm-4, .habitat-wrap .col-sm-5, .habitat-wrap .col-sm-6, .habitat-wrap .col-sm-7, .habitat-wrap .col-sm-8, .habitat-wrap .col-sm-9, .habitat-wrap .col-sm-10, .habitat-wrap .col-sm-11, .habitat-wrap .col-sm-12,
  .app-habitat .col-sm-1,
  .app-habitat .col-sm-2,
  .app-habitat .col-sm-3,
  .app-habitat .col-sm-4,
  .app-habitat .col-sm-5,
  .app-habitat .col-sm-6,
  .app-habitat .col-sm-7,
  .app-habitat .col-sm-8,
  .app-habitat .col-sm-9,
  .app-habitat .col-sm-10,
  .app-habitat .col-sm-11,
  .app-habitat .col-sm-12 {
    float: left;
  }
  .habitat-wrap .col-sm-12,
  .app-habitat .col-sm-12 {
    width: 100%;
  }
  .habitat-wrap .col-sm-11,
  .app-habitat .col-sm-11 {
    width: 91.66667%;
  }
  .habitat-wrap .col-sm-10,
  .app-habitat .col-sm-10 {
    width: 83.33333%;
  }
  .habitat-wrap .col-sm-9,
  .app-habitat .col-sm-9 {
    width: 75%;
  }
  .habitat-wrap .col-sm-8,
  .app-habitat .col-sm-8 {
    width: 66.66667%;
  }
  .habitat-wrap .col-sm-7,
  .app-habitat .col-sm-7 {
    width: 58.33333%;
  }
  .habitat-wrap .col-sm-6,
  .app-habitat .col-sm-6 {
    width: 50%;
  }
  .habitat-wrap .col-sm-5,
  .app-habitat .col-sm-5 {
    width: 41.66667%;
  }
  .habitat-wrap .col-sm-4,
  .app-habitat .col-sm-4 {
    width: 33.33333%;
  }
  .habitat-wrap .col-sm-3,
  .app-habitat .col-sm-3 {
    width: 25%;
  }
  .habitat-wrap .col-sm-2,
  .app-habitat .col-sm-2 {
    width: 16.66667%;
  }
  .habitat-wrap .col-sm-1,
  .app-habitat .col-sm-1 {
    width: 8.33333%;
  }
  .habitat-wrap .col-sm-pull-12,
  .app-habitat .col-sm-pull-12 {
    right: 100%;
  }
  .habitat-wrap .col-sm-pull-11,
  .app-habitat .col-sm-pull-11 {
    right: 91.66667%;
  }
  .habitat-wrap .col-sm-pull-10,
  .app-habitat .col-sm-pull-10 {
    right: 83.33333%;
  }
  .habitat-wrap .col-sm-pull-9,
  .app-habitat .col-sm-pull-9 {
    right: 75%;
  }
  .habitat-wrap .col-sm-pull-8,
  .app-habitat .col-sm-pull-8 {
    right: 66.66667%;
  }
  .habitat-wrap .col-sm-pull-7,
  .app-habitat .col-sm-pull-7 {
    right: 58.33333%;
  }
  .habitat-wrap .col-sm-pull-6,
  .app-habitat .col-sm-pull-6 {
    right: 50%;
  }
  .habitat-wrap .col-sm-pull-5,
  .app-habitat .col-sm-pull-5 {
    right: 41.66667%;
  }
  .habitat-wrap .col-sm-pull-4,
  .app-habitat .col-sm-pull-4 {
    right: 33.33333%;
  }
  .habitat-wrap .col-sm-pull-3,
  .app-habitat .col-sm-pull-3 {
    right: 25%;
  }
  .habitat-wrap .col-sm-pull-2,
  .app-habitat .col-sm-pull-2 {
    right: 16.66667%;
  }
  .habitat-wrap .col-sm-pull-1,
  .app-habitat .col-sm-pull-1 {
    right: 8.33333%;
  }
  .habitat-wrap .col-sm-pull-0,
  .app-habitat .col-sm-pull-0 {
    right: auto;
  }
  .habitat-wrap .col-sm-push-12,
  .app-habitat .col-sm-push-12 {
    left: 100%;
  }
  .habitat-wrap .col-sm-push-11,
  .app-habitat .col-sm-push-11 {
    left: 91.66667%;
  }
  .habitat-wrap .col-sm-push-10,
  .app-habitat .col-sm-push-10 {
    left: 83.33333%;
  }
  .habitat-wrap .col-sm-push-9,
  .app-habitat .col-sm-push-9 {
    left: 75%;
  }
  .habitat-wrap .col-sm-push-8,
  .app-habitat .col-sm-push-8 {
    left: 66.66667%;
  }
  .habitat-wrap .col-sm-push-7,
  .app-habitat .col-sm-push-7 {
    left: 58.33333%;
  }
  .habitat-wrap .col-sm-push-6,
  .app-habitat .col-sm-push-6 {
    left: 50%;
  }
  .habitat-wrap .col-sm-push-5,
  .app-habitat .col-sm-push-5 {
    left: 41.66667%;
  }
  .habitat-wrap .col-sm-push-4,
  .app-habitat .col-sm-push-4 {
    left: 33.33333%;
  }
  .habitat-wrap .col-sm-push-3,
  .app-habitat .col-sm-push-3 {
    left: 25%;
  }
  .habitat-wrap .col-sm-push-2,
  .app-habitat .col-sm-push-2 {
    left: 16.66667%;
  }
  .habitat-wrap .col-sm-push-1,
  .app-habitat .col-sm-push-1 {
    left: 8.33333%;
  }
  .habitat-wrap .col-sm-push-0,
  .app-habitat .col-sm-push-0 {
    left: auto;
  }
  .habitat-wrap .col-sm-offset-12,
  .app-habitat .col-sm-offset-12 {
    margin-left: 100%;
  }
  .habitat-wrap .col-sm-offset-11,
  .app-habitat .col-sm-offset-11 {
    margin-left: 91.66667%;
  }
  .habitat-wrap .col-sm-offset-10,
  .app-habitat .col-sm-offset-10 {
    margin-left: 83.33333%;
  }
  .habitat-wrap .col-sm-offset-9,
  .app-habitat .col-sm-offset-9 {
    margin-left: 75%;
  }
  .habitat-wrap .col-sm-offset-8,
  .app-habitat .col-sm-offset-8 {
    margin-left: 66.66667%;
  }
  .habitat-wrap .col-sm-offset-7,
  .app-habitat .col-sm-offset-7 {
    margin-left: 58.33333%;
  }
  .habitat-wrap .col-sm-offset-6,
  .app-habitat .col-sm-offset-6 {
    margin-left: 50%;
  }
  .habitat-wrap .col-sm-offset-5,
  .app-habitat .col-sm-offset-5 {
    margin-left: 41.66667%;
  }
  .habitat-wrap .col-sm-offset-4,
  .app-habitat .col-sm-offset-4 {
    margin-left: 33.33333%;
  }
  .habitat-wrap .col-sm-offset-3,
  .app-habitat .col-sm-offset-3 {
    margin-left: 25%;
  }
  .habitat-wrap .col-sm-offset-2,
  .app-habitat .col-sm-offset-2 {
    margin-left: 16.66667%;
  }
  .habitat-wrap .col-sm-offset-1,
  .app-habitat .col-sm-offset-1 {
    margin-left: 8.33333%;
  }
  .habitat-wrap .col-sm-offset-0,
  .app-habitat .col-sm-offset-0 {
    margin-left: 0%;
  }
}

@media (min-width: 992px) {
  .habitat-wrap .col-md-1, .habitat-wrap .col-md-2, .habitat-wrap .col-md-3, .habitat-wrap .col-md-4, .habitat-wrap .col-md-5, .habitat-wrap .col-md-6, .habitat-wrap .col-md-7, .habitat-wrap .col-md-8, .habitat-wrap .col-md-9, .habitat-wrap .col-md-10, .habitat-wrap .col-md-11, .habitat-wrap .col-md-12,
  .app-habitat .col-md-1,
  .app-habitat .col-md-2,
  .app-habitat .col-md-3,
  .app-habitat .col-md-4,
  .app-habitat .col-md-5,
  .app-habitat .col-md-6,
  .app-habitat .col-md-7,
  .app-habitat .col-md-8,
  .app-habitat .col-md-9,
  .app-habitat .col-md-10,
  .app-habitat .col-md-11,
  .app-habitat .col-md-12 {
    float: left;
  }
  .habitat-wrap .col-md-12,
  .app-habitat .col-md-12 {
    width: 100%;
  }
  .habitat-wrap .col-md-11,
  .app-habitat .col-md-11 {
    width: 91.66667%;
  }
  .habitat-wrap .col-md-10,
  .app-habitat .col-md-10 {
    width: 83.33333%;
  }
  .habitat-wrap .col-md-9,
  .app-habitat .col-md-9 {
    width: 75%;
  }
  .habitat-wrap .col-md-8,
  .app-habitat .col-md-8 {
    width: 66.66667%;
  }
  .habitat-wrap .col-md-7,
  .app-habitat .col-md-7 {
    width: 58.33333%;
  }
  .habitat-wrap .col-md-6,
  .app-habitat .col-md-6 {
    width: 50%;
  }
  .habitat-wrap .col-md-5,
  .app-habitat .col-md-5 {
    width: 41.66667%;
  }
  .habitat-wrap .col-md-4,
  .app-habitat .col-md-4 {
    width: 33.33333%;
  }
  .habitat-wrap .col-md-3,
  .app-habitat .col-md-3 {
    width: 25%;
  }
  .habitat-wrap .col-md-2,
  .app-habitat .col-md-2 {
    width: 16.66667%;
  }
  .habitat-wrap .col-md-1,
  .app-habitat .col-md-1 {
    width: 8.33333%;
  }
  .habitat-wrap .col-md-pull-12,
  .app-habitat .col-md-pull-12 {
    right: 100%;
  }
  .habitat-wrap .col-md-pull-11,
  .app-habitat .col-md-pull-11 {
    right: 91.66667%;
  }
  .habitat-wrap .col-md-pull-10,
  .app-habitat .col-md-pull-10 {
    right: 83.33333%;
  }
  .habitat-wrap .col-md-pull-9,
  .app-habitat .col-md-pull-9 {
    right: 75%;
  }
  .habitat-wrap .col-md-pull-8,
  .app-habitat .col-md-pull-8 {
    right: 66.66667%;
  }
  .habitat-wrap .col-md-pull-7,
  .app-habitat .col-md-pull-7 {
    right: 58.33333%;
  }
  .habitat-wrap .col-md-pull-6,
  .app-habitat .col-md-pull-6 {
    right: 50%;
  }
  .habitat-wrap .col-md-pull-5,
  .app-habitat .col-md-pull-5 {
    right: 41.66667%;
  }
  .habitat-wrap .col-md-pull-4,
  .app-habitat .col-md-pull-4 {
    right: 33.33333%;
  }
  .habitat-wrap .col-md-pull-3,
  .app-habitat .col-md-pull-3 {
    right: 25%;
  }
  .habitat-wrap .col-md-pull-2,
  .app-habitat .col-md-pull-2 {
    right: 16.66667%;
  }
  .habitat-wrap .col-md-pull-1,
  .app-habitat .col-md-pull-1 {
    right: 8.33333%;
  }
  .habitat-wrap .col-md-pull-0,
  .app-habitat .col-md-pull-0 {
    right: auto;
  }
  .habitat-wrap .col-md-push-12,
  .app-habitat .col-md-push-12 {
    left: 100%;
  }
  .habitat-wrap .col-md-push-11,
  .app-habitat .col-md-push-11 {
    left: 91.66667%;
  }
  .habitat-wrap .col-md-push-10,
  .app-habitat .col-md-push-10 {
    left: 83.33333%;
  }
  .habitat-wrap .col-md-push-9,
  .app-habitat .col-md-push-9 {
    left: 75%;
  }
  .habitat-wrap .col-md-push-8,
  .app-habitat .col-md-push-8 {
    left: 66.66667%;
  }
  .habitat-wrap .col-md-push-7,
  .app-habitat .col-md-push-7 {
    left: 58.33333%;
  }
  .habitat-wrap .col-md-push-6,
  .app-habitat .col-md-push-6 {
    left: 50%;
  }
  .habitat-wrap .col-md-push-5,
  .app-habitat .col-md-push-5 {
    left: 41.66667%;
  }
  .habitat-wrap .col-md-push-4,
  .app-habitat .col-md-push-4 {
    left: 33.33333%;
  }
  .habitat-wrap .col-md-push-3,
  .app-habitat .col-md-push-3 {
    left: 25%;
  }
  .habitat-wrap .col-md-push-2,
  .app-habitat .col-md-push-2 {
    left: 16.66667%;
  }
  .habitat-wrap .col-md-push-1,
  .app-habitat .col-md-push-1 {
    left: 8.33333%;
  }
  .habitat-wrap .col-md-push-0,
  .app-habitat .col-md-push-0 {
    left: auto;
  }
  .habitat-wrap .col-md-offset-12,
  .app-habitat .col-md-offset-12 {
    margin-left: 100%;
  }
  .habitat-wrap .col-md-offset-11,
  .app-habitat .col-md-offset-11 {
    margin-left: 91.66667%;
  }
  .habitat-wrap .col-md-offset-10,
  .app-habitat .col-md-offset-10 {
    margin-left: 83.33333%;
  }
  .habitat-wrap .col-md-offset-9,
  .app-habitat .col-md-offset-9 {
    margin-left: 75%;
  }
  .habitat-wrap .col-md-offset-8,
  .app-habitat .col-md-offset-8 {
    margin-left: 66.66667%;
  }
  .habitat-wrap .col-md-offset-7,
  .app-habitat .col-md-offset-7 {
    margin-left: 58.33333%;
  }
  .habitat-wrap .col-md-offset-6,
  .app-habitat .col-md-offset-6 {
    margin-left: 50%;
  }
  .habitat-wrap .col-md-offset-5,
  .app-habitat .col-md-offset-5 {
    margin-left: 41.66667%;
  }
  .habitat-wrap .col-md-offset-4,
  .app-habitat .col-md-offset-4 {
    margin-left: 33.33333%;
  }
  .habitat-wrap .col-md-offset-3,
  .app-habitat .col-md-offset-3 {
    margin-left: 25%;
  }
  .habitat-wrap .col-md-offset-2,
  .app-habitat .col-md-offset-2 {
    margin-left: 16.66667%;
  }
  .habitat-wrap .col-md-offset-1,
  .app-habitat .col-md-offset-1 {
    margin-left: 8.33333%;
  }
  .habitat-wrap .col-md-offset-0,
  .app-habitat .col-md-offset-0 {
    margin-left: 0%;
  }
}

@media (min-width: 1200px) {
  .habitat-wrap .col-lg-1, .habitat-wrap .col-lg-2, .habitat-wrap .col-lg-3, .habitat-wrap .col-lg-4, .habitat-wrap .col-lg-5, .habitat-wrap .col-lg-6, .habitat-wrap .col-lg-7, .habitat-wrap .col-lg-8, .habitat-wrap .col-lg-9, .habitat-wrap .col-lg-10, .habitat-wrap .col-lg-11, .habitat-wrap .col-lg-12,
  .app-habitat .col-lg-1,
  .app-habitat .col-lg-2,
  .app-habitat .col-lg-3,
  .app-habitat .col-lg-4,
  .app-habitat .col-lg-5,
  .app-habitat .col-lg-6,
  .app-habitat .col-lg-7,
  .app-habitat .col-lg-8,
  .app-habitat .col-lg-9,
  .app-habitat .col-lg-10,
  .app-habitat .col-lg-11,
  .app-habitat .col-lg-12 {
    float: left;
  }
  .habitat-wrap .col-lg-12,
  .app-habitat .col-lg-12 {
    width: 100%;
  }
  .habitat-wrap .col-lg-11,
  .app-habitat .col-lg-11 {
    width: 91.66667%;
  }
  .habitat-wrap .col-lg-10,
  .app-habitat .col-lg-10 {
    width: 83.33333%;
  }
  .habitat-wrap .col-lg-9,
  .app-habitat .col-lg-9 {
    width: 75%;
  }
  .habitat-wrap .col-lg-8,
  .app-habitat .col-lg-8 {
    width: 66.66667%;
  }
  .habitat-wrap .col-lg-7,
  .app-habitat .col-lg-7 {
    width: 58.33333%;
  }
  .habitat-wrap .col-lg-6,
  .app-habitat .col-lg-6 {
    width: 50%;
  }
  .habitat-wrap .col-lg-5,
  .app-habitat .col-lg-5 {
    width: 41.66667%;
  }
  .habitat-wrap .col-lg-4,
  .app-habitat .col-lg-4 {
    width: 33.33333%;
  }
  .habitat-wrap .col-lg-3,
  .app-habitat .col-lg-3 {
    width: 25%;
  }
  .habitat-wrap .col-lg-2,
  .app-habitat .col-lg-2 {
    width: 16.66667%;
  }
  .habitat-wrap .col-lg-1,
  .app-habitat .col-lg-1 {
    width: 8.33333%;
  }
  .habitat-wrap .col-lg-pull-12,
  .app-habitat .col-lg-pull-12 {
    right: 100%;
  }
  .habitat-wrap .col-lg-pull-11,
  .app-habitat .col-lg-pull-11 {
    right: 91.66667%;
  }
  .habitat-wrap .col-lg-pull-10,
  .app-habitat .col-lg-pull-10 {
    right: 83.33333%;
  }
  .habitat-wrap .col-lg-pull-9,
  .app-habitat .col-lg-pull-9 {
    right: 75%;
  }
  .habitat-wrap .col-lg-pull-8,
  .app-habitat .col-lg-pull-8 {
    right: 66.66667%;
  }
  .habitat-wrap .col-lg-pull-7,
  .app-habitat .col-lg-pull-7 {
    right: 58.33333%;
  }
  .habitat-wrap .col-lg-pull-6,
  .app-habitat .col-lg-pull-6 {
    right: 50%;
  }
  .habitat-wrap .col-lg-pull-5,
  .app-habitat .col-lg-pull-5 {
    right: 41.66667%;
  }
  .habitat-wrap .col-lg-pull-4,
  .app-habitat .col-lg-pull-4 {
    right: 33.33333%;
  }
  .habitat-wrap .col-lg-pull-3,
  .app-habitat .col-lg-pull-3 {
    right: 25%;
  }
  .habitat-wrap .col-lg-pull-2,
  .app-habitat .col-lg-pull-2 {
    right: 16.66667%;
  }
  .habitat-wrap .col-lg-pull-1,
  .app-habitat .col-lg-pull-1 {
    right: 8.33333%;
  }
  .habitat-wrap .col-lg-pull-0,
  .app-habitat .col-lg-pull-0 {
    right: auto;
  }
  .habitat-wrap .col-lg-push-12,
  .app-habitat .col-lg-push-12 {
    left: 100%;
  }
  .habitat-wrap .col-lg-push-11,
  .app-habitat .col-lg-push-11 {
    left: 91.66667%;
  }
  .habitat-wrap .col-lg-push-10,
  .app-habitat .col-lg-push-10 {
    left: 83.33333%;
  }
  .habitat-wrap .col-lg-push-9,
  .app-habitat .col-lg-push-9 {
    left: 75%;
  }
  .habitat-wrap .col-lg-push-8,
  .app-habitat .col-lg-push-8 {
    left: 66.66667%;
  }
  .habitat-wrap .col-lg-push-7,
  .app-habitat .col-lg-push-7 {
    left: 58.33333%;
  }
  .habitat-wrap .col-lg-push-6,
  .app-habitat .col-lg-push-6 {
    left: 50%;
  }
  .habitat-wrap .col-lg-push-5,
  .app-habitat .col-lg-push-5 {
    left: 41.66667%;
  }
  .habitat-wrap .col-lg-push-4,
  .app-habitat .col-lg-push-4 {
    left: 33.33333%;
  }
  .habitat-wrap .col-lg-push-3,
  .app-habitat .col-lg-push-3 {
    left: 25%;
  }
  .habitat-wrap .col-lg-push-2,
  .app-habitat .col-lg-push-2 {
    left: 16.66667%;
  }
  .habitat-wrap .col-lg-push-1,
  .app-habitat .col-lg-push-1 {
    left: 8.33333%;
  }
  .habitat-wrap .col-lg-push-0,
  .app-habitat .col-lg-push-0 {
    left: auto;
  }
  .habitat-wrap .col-lg-offset-12,
  .app-habitat .col-lg-offset-12 {
    margin-left: 100%;
  }
  .habitat-wrap .col-lg-offset-11,
  .app-habitat .col-lg-offset-11 {
    margin-left: 91.66667%;
  }
  .habitat-wrap .col-lg-offset-10,
  .app-habitat .col-lg-offset-10 {
    margin-left: 83.33333%;
  }
  .habitat-wrap .col-lg-offset-9,
  .app-habitat .col-lg-offset-9 {
    margin-left: 75%;
  }
  .habitat-wrap .col-lg-offset-8,
  .app-habitat .col-lg-offset-8 {
    margin-left: 66.66667%;
  }
  .habitat-wrap .col-lg-offset-7,
  .app-habitat .col-lg-offset-7 {
    margin-left: 58.33333%;
  }
  .habitat-wrap .col-lg-offset-6,
  .app-habitat .col-lg-offset-6 {
    margin-left: 50%;
  }
  .habitat-wrap .col-lg-offset-5,
  .app-habitat .col-lg-offset-5 {
    margin-left: 41.66667%;
  }
  .habitat-wrap .col-lg-offset-4,
  .app-habitat .col-lg-offset-4 {
    margin-left: 33.33333%;
  }
  .habitat-wrap .col-lg-offset-3,
  .app-habitat .col-lg-offset-3 {
    margin-left: 25%;
  }
  .habitat-wrap .col-lg-offset-2,
  .app-habitat .col-lg-offset-2 {
    margin-left: 16.66667%;
  }
  .habitat-wrap .col-lg-offset-1,
  .app-habitat .col-lg-offset-1 {
    margin-left: 8.33333%;
  }
  .habitat-wrap .col-lg-offset-0,
  .app-habitat .col-lg-offset-0 {
    margin-left: 0%;
  }
}

@media (min-width: 992px) {
  .habitat-wrap .row-5 [class*="col-"],
  .app-habitat .row-5 [class*="col-"] {
    width: 20%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .habitat-wrap .row-5 .box-fondo,
  .app-habitat .row-5 .box-fondo {
    margin-bottom: 20px;
  }
}

.habitat-wrap .row.gutter-min,
.app-habitat .row.gutter-min {
  margin-left: -5px;
  margin-right: -5px;
}

.habitat-wrap .row.gutter-min [class*="col-"],
.app-habitat .row.gutter-min [class*="col-"] {
  padding-left: 5px;
  padding-right: 5px;
}

.habitat-wrap,
.app-habitat {
  /* custom select */
  /* custom input animate */
  /* contenedor de elementos de formularios */
  /* tooltip error */
  /*------------------------------------------------------------------------------Checkbox css*/
  /*------------------------------------------------------------------------------Radiobuttons css*/
  /*Datos fijos*/
  /*.busqueda-avanzada*/
  /* editar campos */
  /* SIMULADOR DE PENSION */
  /* simulador */
  /*fin*/
}

.habitat-wrap input[type="text"],
.habitat-wrap input[type="email"],
.habitat-wrap input[type="number"],
.habitat-wrap input[type="password"],
.habitat-wrap select,
.habitat-wrap textarea,
.app-habitat input[type="text"],
.app-habitat input[type="email"],
.app-habitat input[type="number"],
.app-habitat input[type="password"],
.app-habitat select,
.app-habitat textarea {
  height: 38px;
  border: 1px solid #CCC;
  border-radius: 5px;
  display: block;
  width: 100%;
  padding: 10px;
  outline: none;
  background-color: white !important;
  font-size: 16px;
  color: #4C4C4A;
  background-color: white;
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
}

.habitat-wrap input[type="text"]:focus,
.habitat-wrap input[type="email"]:focus,
.habitat-wrap input[type="number"]:focus,
.habitat-wrap input[type="password"]:focus,
.habitat-wrap select:focus,
.habitat-wrap textarea:focus,
.app-habitat input[type="text"]:focus,
.app-habitat input[type="email"]:focus,
.app-habitat input[type="number"]:focus,
.app-habitat input[type="password"]:focus,
.app-habitat select:focus,
.app-habitat textarea:focus {
  box-shadow: 0 0 5px #51cbee;
}

.habitat-wrap input[type="text"].error,
.habitat-wrap input[type="email"].error,
.habitat-wrap input[type="number"].error,
.habitat-wrap input[type="password"].error,
.habitat-wrap select.error,
.habitat-wrap textarea.error,
.app-habitat input[type="text"].error,
.app-habitat input[type="email"].error,
.app-habitat input[type="number"].error,
.app-habitat input[type="password"].error,
.app-habitat select.error,
.app-habitat textarea.error {
  border-color: red;
}

.habitat-wrap input[type="text"][disabled],
.habitat-wrap input[type="email"][disabled],
.habitat-wrap input[type="number"][disabled],
.habitat-wrap input[type="password"][disabled],
.habitat-wrap select[disabled],
.habitat-wrap textarea[disabled],
.app-habitat input[type="text"][disabled],
.app-habitat input[type="email"][disabled],
.app-habitat input[type="number"][disabled],
.app-habitat input[type="password"][disabled],
.app-habitat select[disabled],
.app-habitat textarea[disabled] {
  background-color: #C7D1D4 !important;
}

.habitat-wrap input[type="text"],
.habitat-wrap input[type="email"],
.habitat-wrap input[type="number"],
.habitat-wrap input[type="password"],
.habitat-wrap select,
.habitat-wrap textarea,
.app-habitat input[type="text"],
.app-habitat input[type="email"],
.app-habitat input[type="number"],
.app-habitat input[type="password"],
.app-habitat select,
.app-habitat textarea {
  height: 45px;
}

.habitat-wrap label.h4,
.habitat-wrap label.h3,
.app-habitat label.h4,
.app-habitat label.h3 {
  margin-bottom: 10px;
  display: block;
}

.habitat-wrap select,
.app-habitat select {
  padding: 8px 10px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  outline: none;
  color: #4C4C4A;
  font-size: 16px !important;
  font-family: "robotoregularHabitat";
}

.habitat-wrap textarea,
.app-habitat textarea {
  resize: none;
  height: 100px;
}

.habitat-wrap .tooltip-error-reset, .habitat-wrap .custom__select .tooltip-error,
.app-habitat .custom__select .habitat-wrap .tooltip-error, .habitat-wrap .group-radio .tooltip-error,
.app-habitat .group-radio .habitat-wrap .tooltip-error,
.app-habitat .tooltip-error-reset, .habitat-wrap .custom__select
.app-habitat .tooltip-error,
.app-habitat .custom__select .tooltip-error, .habitat-wrap .group-radio
.app-habitat .tooltip-error,
.app-habitat .group-radio .tooltip-error {
  position: relative;
  top: 0;
  width: 100%;
  display: table;
}

.habitat-wrap .custom__select,
.app-habitat .custom__select {
  position: relative;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  /*select{
      position: relative;
      z-index: 1;
      top: 0;
      bottom: 0;
      margin: auto;
      transition: top 300ms ease;
    }*/
}

.habitat-wrap .custom__select:after,
.app-habitat .custom__select:after {
  content: "\e939";
  position: absolute;
  top: 50%;
  right: 1px;
  width: 19px;
  height: 33px;
  padding: 0 5px;
  line-height: 33px;
  pointer-events: none;
  background-color: #fff;
  margin: 2px;
  font-size: 7px;
  border-radius: 5px;
  color: #6BA3B7;
  z-index: 1;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
}

.habitat-wrap .custom__select .inner-label,
.app-habitat .custom__select .inner-label {
  background-color: white;
  border-radius: 2px 2px 0 0;
  left: 5px;
  line-height: 100%;
  padding: 2px 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 22px;
  width: 96%;
  pointer-events: none;
  /*z-index: -1;*/
  z-index: 2;
}

.habitat-wrap .custom__select .inner-label.animated,
.app-habitat .custom__select .inner-label.animated {
  /*z-index: 2;*/
  position: absolute;
  left: 5px;
  top: -38px;
  transition: top 300ms ease;
  color: #969696 !important;
}

.habitat-wrap .custom__select .inner-label.animated.transition-end,
.app-habitat .custom__select .inner-label.animated.transition-end {
  top: 0;
  transition: top 300ms ease;
}

.habitat-wrap .custom__select--disabled select,
.app-habitat .custom__select--disabled select {
  border: 0;
  padding: 0 !important;
  pointer-events: none;
  font-size: 16px !important;
  line-height: initial;
}

.habitat-wrap .custom__select--disabled:after,
.app-habitat .custom__select--disabled:after {
  display: none;
}

@media (min-width: 600px) {
  .habitat-wrap .min--select,
  .app-habitat .min--select {
    width: 80px;
  }
}

.habitat-wrap .label-content-after,
.app-habitat .label-content-after {
  content: '';
  width: auto;
  display: inline-block;
  position: relative;
  bottom: 0;
  left: 0;
  background-color: white;
}

.habitat-wrap .input__custom,
.app-habitat .input__custom {
  position: relative;
  display: block;
  /* add class */
  /* disabled */
  /*@media (max-width: $break-xs) {
      & {
        .input__label {
          font-size: $varFontSize - 2;
        }
      }
    }*/
}

.habitat-wrap .input__custom .input__field,
.app-habitat .input__custom .input__field {
  padding: 5px 10px 0 10px;
  font-family: "robotolightHabitat";
}

.habitat-wrap .input__custom .input__field:focus + .input__label .input__label-content,
.app-habitat .input__custom .input__field:focus + .input__label .input__label-content {
  -webkit-transform: translate3d(0, -20px, 0);
          transform: translate3d(0, -20px, 0);
}

.habitat-wrap .input__custom .input__label,
.app-habitat .input__custom .input__label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: left;
  line-height: 38px;
  pointer-events: none;
  font-weight: 300;
  font-family: "robotoregularHabitat";
  /*font-size: $varFontSize;*/
}

.habitat-wrap .input__custom .input__label .input__label-content,
.app-habitat .input__custom .input__label .input__label-content {
  padding: 2px 7px;
  position: absolute;
  top: 8px;
  left: 2px;
  transition: .3s font-size;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  line-height: 100%;
  background-color: white;
  /*font-family: $font-light;*/
  border-radius: 2px 2px 0 0;
}

.habitat-wrap .input__custom-filled .input__label-content, .habitat-wrap .input__custom.input--disabled .input__label-content,
.app-habitat .input__custom-filled .input__label-content,
.app-habitat .input__custom.input--disabled .input__label-content {
  /*font-size: $varFontSize;*/
  -webkit-transform: translate3d(0, -20px, 0);
          transform: translate3d(0, -20px, 0);
}

.habitat-wrap .input__custom.input--disabled,
.app-habitat .input__custom.input--disabled {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.habitat-wrap .input__custom.input--disabled .input__field,
.app-habitat .input__custom.input--disabled .input__field {
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
  border: 0;
  padding: 0;
  height: initial;
  line-height: initial;
  pointer-events: none;
}

.habitat-wrap .input__custom.input--disabled .input__field:focus,
.app-habitat .input__custom.input--disabled .input__field:focus {
  box-shadow: none;
}

.habitat-wrap .input__custom.input--disabled .input__label,
.app-habitat .input__custom.input--disabled .input__label {
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
  line-height: initial;
  position: static;
}

.habitat-wrap .input__custom.input--disabled .input__label-content,
.app-habitat .input__custom.input--disabled .input__label-content {
  color: #4C4C4A;
  padding: 0;
  line-height: initial;
  font-size: 16px !important;
  position: static;
  font-family: "robotomediumHabitat";
}

.habitat-wrap .example__form,
.app-habitat .example__form {
  text-align: left;
  font-size: 12px !important;
  /*color: $color-base;*/
  /*padding-left: 12px;*/
  padding-top: 5px;
}

.habitat-wrap .example__form + .example__form,
.app-habitat .example__form + .example__form {
  margin-top: 0;
}

.habitat-wrap .form__group,
.app-habitat .form__group {
  position: relative;
}

.habitat-wrap .form__group + .form__group,
.app-habitat .form__group + .form__group {
  margin-top: 30px;
}

.habitat-wrap .form__group .icon-search,
.app-habitat .form__group .icon-search {
  color: #0085B2;
  background-color: transparent;
  border: 0;
  font-size: 24px;
  position: absolute;
  top: 50%;
  right: 10px;
  cursor: pointer;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
}

.habitat-wrap .dropup,
.habitat-wrap .dropdown,
.app-habitat .dropup,
.app-habitat .dropdown {
  position: relative;
}

.habitat-wrap .dropup.open .caret:before,
.habitat-wrap .dropdown.open .caret:before,
.app-habitat .dropup.open .caret:before,
.app-habitat .dropdown.open .caret:before {
  content: '\e93a';
}

.habitat-wrap .dropup .caret,
.habitat-wrap .dropdown .caret,
.app-habitat .dropup .caret,
.app-habitat .dropdown .caret {
  width: 30px;
  padding-left: 7px;
  height: 36px;
  border: 0;
  position: absolute !important;
  top: 0;
  right: 0;
  background-color: white;
}

.habitat-wrap .dropup .caret:before,
.habitat-wrap .dropdown .caret:before,
.app-habitat .dropup .caret:before,
.app-habitat .dropdown .caret:before {
  content: "\e939";
  font-size: 8px;
  top: 8px;
  position: relative;
  color: #6BA3B7;
}

.habitat-wrap .dropdown-toggle,
.app-habitat .dropdown-toggle {
  position: relative;
  display: block;
  color: #4C4C4A !important;
  font-size: 15px;
  font-family: "robotoregularHabitat";
  border: 1px solid #CCC;
  background-color: white;
  padding: 0 0 0 10px !important;
  width: 100%;
  text-align: left;
  line-height: 36px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.habitat-wrap .dropdown-toggle:focus,
.app-habitat .dropdown-toggle:focus {
  outline: 0;
}

.habitat-wrap .dropdown-menu,
.app-habitat .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  width: 100%;
  padding: 10px 0;
  margin: 2px 0 0;
  font-family: "robotolightHabitat";
  font-size: 15px;
  list-style: none;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
  height: auto;
  max-height: 170px;
  overflow-x: hidden;
}

.habitat-wrap .dropdown-menu.pull-right,
.app-habitat .dropdown-menu.pull-right {
  right: 0;
  left: auto;
}

.habitat-wrap .dropdown-menu .divider,
.app-habitat .dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

.habitat-wrap .dropdown-menu > li > a,
.app-habitat .dropdown-menu > li > a {
  display: block;
  padding: 3px 10px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333333;
  white-space: initial;
}

.habitat-wrap .dropdown-menu > li > a:hover,
.habitat-wrap .dropdown-menu > li > a:focus,
.app-habitat .dropdown-menu > li > a:hover,
.app-habitat .dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5;
}

.habitat-wrap .dropdown-menu > .active > a,
.habitat-wrap .dropdown-menu > .active > a:hover,
.habitat-wrap .dropdown-menu > .active > a:focus,
.app-habitat .dropdown-menu > .active > a,
.app-habitat .dropdown-menu > .active > a:hover,
.app-habitat .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #337ab7;
}

.habitat-wrap .dropdown-menu > .disabled > a,
.habitat-wrap .dropdown-menu > .disabled > a:hover,
.habitat-wrap .dropdown-menu > .disabled > a:focus,
.app-habitat .dropdown-menu > .disabled > a,
.app-habitat .dropdown-menu > .disabled > a:hover,
.app-habitat .dropdown-menu > .disabled > a:focus {
  color: #777777;
}

.habitat-wrap .dropdown-menu > .disabled > a:hover,
.habitat-wrap .dropdown-menu > .disabled > a:focus,
.app-habitat .dropdown-menu > .disabled > a:hover,
.app-habitat .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed;
}

.habitat-wrap .open > .dropdown-menu,
.app-habitat .open > .dropdown-menu {
  display: block;
}

.habitat-wrap .open > a,
.app-habitat .open > a {
  outline: 0;
}

.habitat-wrap .dropdown-menu-right,
.app-habitat .dropdown-menu-right {
  left: auto;
  right: 0;
}

.habitat-wrap .dropdown-menu-left,
.app-habitat .dropdown-menu-left {
  left: 0;
  right: auto;
}

.habitat-wrap .dropdown-header,
.app-habitat .dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777777;
  white-space: nowrap;
}

.habitat-wrap .dropdown-backdrop,
.app-habitat .dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}

.habitat-wrap .dropdown--disabled .dropdown-toggle,
.app-habitat .dropdown--disabled .dropdown-toggle {
  border: 0;
  padding: 0 !important;
  pointer-events: none;
  font-size: 16px !important;
  line-height: initial;
  font-family: "robotolightHabitat";
}

.habitat-wrap .dropdown--disabled .caret,
.app-habitat .dropdown--disabled .caret {
  display: none;
}

.habitat-wrap .tooltip-error,
.app-habitat .tooltip-error {
  position: relative;
  top: 0;
  display: table;
  z-index: 1000;
  min-width: 160px;
  margin: 2px 0 0;
  font-size: 12px;
  text-align: left;
  color: #B52A29;
  background-color: #ffe7e7;
  border: 1px solid #B52A29;
  border-radius: 5px;
  top: calc(100% - 19px);
  left: 0;
  width: 100%;
  padding: 8px 10px;
  line-height: 140%;
}

.habitat-wrap .tooltip-error:after,
.app-habitat .tooltip-error:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  top: -6px;
  left: 14px;
  border-left: 1px solid #B52A29;
  border-top: 1px solid #B52A29;
  background-color: #ffe7e7;
}

.habitat-wrap .tooltip-error.static,
.app-habitat .tooltip-error.static {
  top: 0;
  width: 100%;
  display: inline-block;
  position: relative;
}

@font-face {
  .habitat-wrap,
  .app-habitat {
    font-family: "check";
    src: url(fonts/check.eot);
    src: url(fonts/check.eot?#iefix) format("embedded-opentype"), url(fonts/check.woff) format("woff"), url(fonts/check.ttf) format("truetype"), url(fonts/check.svg#check) format("svg");
    font-weight: 400;
    font-style: normal;
  }
}

.habitat-wrap .cs-checkbox-wrap,
.app-habitat .cs-checkbox-wrap {
  background: #fff;
  height: 18px;
  position: relative;
  width: 18px;
  overflow: hidden;
  /*border-radius: 3px;*/
  border: solid 1px #ccc;
}

.habitat-wrap .cs-checkbox-wrap .small,
.app-habitat .cs-checkbox-wrap .small {
  position: relative;
  top: 1px;
}

.habitat-wrap .cs-checkbox-wrap:after,
.app-habitat .cs-checkbox-wrap:after {
  top: 3px;
  left: 0;
  display: block;
  content: "\e90a";
  height: 10px;
  margin: auto;
  position: absolute;
  width: 12px;
  font-family: 'check';
  font-size: 12px;
  color: #0085B2;
  opacity: 0;
  visibility: hidden;
}

.habitat-wrap .cs-checkbox-wrap input,
.app-habitat .cs-checkbox-wrap input {
  display: none;
}

.habitat-wrap .cs-checkbox-wrap.active,
.app-habitat .cs-checkbox-wrap.active {
  border-color: #0085B2;
}

.habitat-wrap .cs-checkbox-wrap.active:after,
.app-habitat .cs-checkbox-wrap.active:after {
  visibility: visible;
  opacity: 1;
}

.habitat-wrap .cs-checkbox-wrap.cs-animated:after,
.app-habitat .cs-checkbox-wrap.cs-animated:after {
  transition: all 300ms ease;
}

.habitat-wrap .cs-checkbox-wrap.cs-animated:after.active,
.app-habitat .cs-checkbox-wrap.cs-animated:after.active {
  transition: all 300ms ease;
}

.habitat-wrap .cs-checkbox-wrap.cs-animated.cs-to-left:after,
.app-habitat .cs-checkbox-wrap.cs-animated.cs-to-left:after {
  right: -20px;
  transition: all 300ms ease;
}

.habitat-wrap .cs-checkbox-wrap.cs-animated.cs-to-left.active:after,
.app-habitat .cs-checkbox-wrap.cs-animated.cs-to-left.active:after {
  right: 0;
  transition: all 300ms ease;
}

.habitat-wrap .cs-checkbox-wrap.cs-animated.cs-to-right:after,
.app-habitat .cs-checkbox-wrap.cs-animated.cs-to-right:after {
  left: -20px;
  transition: all 300ms ease;
}

.habitat-wrap .cs-checkbox-wrap.cs-animated.cs-to-right.active:after,
.app-habitat .cs-checkbox-wrap.cs-animated.cs-to-right.active:after {
  left: 0px;
  transition: all 300ms ease;
}

.habitat-wrap .cs-checkbox-wrap.cs-animated.cs-to-bottom:after,
.app-habitat .cs-checkbox-wrap.cs-animated.cs-to-bottom:after {
  top: -20px;
  transition: all 300ms ease;
}

.habitat-wrap .cs-checkbox-wrap.cs-animated.cs-to-bottom.active:after,
.app-habitat .cs-checkbox-wrap.cs-animated.cs-to-bottom.active:after {
  top: 0;
  transition: all 300ms ease;
}

.habitat-wrap .cs-checkbox-wrap.cs-animated.cs-to-top:after,
.app-habitat .cs-checkbox-wrap.cs-animated.cs-to-top:after {
  bottom: -20px;
  transition: all 300ms ease;
}

.habitat-wrap .cs-checkbox-wrap.cs-animated.cs-to-top.active:after,
.app-habitat .cs-checkbox-wrap.cs-animated.cs-to-top.active:after {
  bottom: 0;
  transition: all 300ms ease;
}

.habitat-wrap .cs-radio-wrap,
.app-habitat .cs-radio-wrap {
  background: #fff;
  height: 18px;
  position: relative;
  width: 18px;
  overflow: hidden;
  border-radius: 100%;
  border: solid 1px #ccc;
}

.habitat-wrap .cs-radio-wrap:after,
.app-habitat .cs-radio-wrap:after {
  background: #6BA3B7;
  bottom: 0;
  content: '';
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 100%;
  height: 0;
  width: 0;
}

.habitat-wrap .cs-radio-wrap.active,
.app-habitat .cs-radio-wrap.active {
  border-color: #6BA3B7;
}

.habitat-wrap .cs-radio-wrap.active:after,
.app-habitat .cs-radio-wrap.active:after {
  height: 14px;
  width: 14px;
}

.habitat-wrap .cs-radio-wrap.active.cs-animated:after,
.app-habitat .cs-radio-wrap.active.cs-animated:after {
  height: 10px;
  width: 10px;
  transition: all 300ms ease;
}

.habitat-wrap .cs-radio-wrap input,
.app-habitat .cs-radio-wrap input {
  display: none;
}

.habitat-wrap .inline-radio .icon-tooltips,
.app-habitat .inline-radio .icon-tooltips {
  top: 3px;
}

.habitat-wrap .inline-check .text,
.app-habitat .inline-check .text {
  position: relative;
  top: 3px;
}

.habitat-wrap .group-radio .tooltip-error,
.app-habitat .group-radio .tooltip-error {
  margin-top: 10px;
}

.habitat-wrap .datos-fijos,
.app-habitat .datos-fijos {
  display: table;
  width: 100%;
}

.habitat-wrap .datos-fijos .h5,
.app-habitat .datos-fijos .h5 {
  font-family: "robotoregularHabitat";
  font-weight: normal;
  margin-bottom: 0;
}

.habitat-wrap .datos-fijos + .datos-fijos,
.app-habitat .datos-fijos + .datos-fijos {
  margin-top: 20px;
}

.habitat-wrap .datos-fijos .label,
.app-habitat .datos-fijos .label {
  color: #4C4C4A;
  margin-top: 0;
  font-size: 16px;
  font-family: "robotomediumHabitat";
}

.habitat-wrap .busqueda-avanzada,
.app-habitat .busqueda-avanzada {
  padding: 20px;
  margin-top: 20px;
  position: relative;
  border: 1px solid #DDD;
}

.habitat-wrap .busqueda-avanzada .icon-close,
.app-habitat .busqueda-avanzada .icon-close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #4C4C4A;
}

.habitat-wrap .wrap-edit-form .subtitle,
.app-habitat .wrap-edit-form .subtitle {
  padding-bottom: 20px;
}

.habitat-wrap .wrap-edit-form .dropdown .dropdown-toggle,
.app-habitat .wrap-edit-form .dropdown .dropdown-toggle {
  font-family: "robotolightHabitat";
}

.habitat-wrap .wrap-parent .form__group,
.app-habitat .wrap-parent .form__group {
  margin-top: 25px;
  padding-left: 25px;
}

.habitat-wrap .wrap-parent .inner-left,
.app-habitat .wrap-parent .inner-left {
  padding-left: 25px;
}

.habitat-wrap .wrap-total,
.app-habitat .wrap-total {
  clear: both;
  border-radius: 5px;
  padding: 20px 10px;
  text-align: center;
  background-color: #BAC5C8;
}

.habitat-wrap .wrap-total p,
.app-habitat .wrap-total p {
  color: white;
  font-size: 20px;
}

.habitat-wrap .wrap-resultado-simulador .rango-edad,
.app-habitat .wrap-resultado-simulador .rango-edad {
  text-align: center;
}

.habitat-wrap .wrap-resultado-simulador .rango-edad .texto,
.habitat-wrap .wrap-resultado-simulador .rango-edad .custom__select,
.app-habitat .wrap-resultado-simulador .rango-edad .texto,
.app-habitat .wrap-resultado-simulador .rango-edad .custom__select {
  display: inline-block;
  vertical-align: middle;
}

.habitat-wrap .wrap-resultado-simulador .rango-edad .custom__select,
.app-habitat .wrap-resultado-simulador .rango-edad .custom__select {
  width: 70px;
  margin: 0 10px;
}

@media (max-width: 399px) {
  .habitat-wrap .wrap-resultado-simulador .rango-edad .texto:first-child,
  .app-habitat .wrap-resultado-simulador .rango-edad .texto:first-child {
    display: block;
    width: 100%;
    padding-bottom: 10px;
  }
}

.habitat-wrap .wrap-resultado-simulador .monto-mensual,
.app-habitat .wrap-resultado-simulador .monto-mensual {
  color: #B4123B;
  font-family: "robotomediumHabitat";
  text-align: center;
  margin-bottom: 0;
}

.habitat-wrap .wrap-resultado-simulador .box-result,
.app-habitat .wrap-resultado-simulador .box-result {
  background-color: #E8EDEE;
}

.habitat-wrap .wrap-resultado-simulador .box-result .head-result,
.app-habitat .wrap-resultado-simulador .box-result .head-result {
  text-align: center;
  padding: 5px 10px;
}

.habitat-wrap .wrap-resultado-simulador .box-result .head-result h2,
.app-habitat .wrap-resultado-simulador .box-result .head-result h2 {
  margin-bottom: 0;
  font-family: "robotomediumHabitat";
}

.habitat-wrap .wrap-resultado-simulador .box-result .body-result,
.app-habitat .wrap-resultado-simulador .box-result .body-result {
  padding: 20px;
}

.habitat-wrap .wrap-resultado-simulador .box-result .body-result .inner-center,
.app-habitat .wrap-resultado-simulador .box-result .body-result .inner-center {
  text-align: center;
}

.habitat-wrap .wrap-resultado-simulador .box-result .body-result .monto,
.app-habitat .wrap-resultado-simulador .box-result .body-result .monto {
  font-size: 20px;
  font-family: "robotomediumHabitat";
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #4C4C4A;
}

.habitat-wrap .wrap-resultado-simulador .box-result .body-result table,
.app-habitat .wrap-resultado-simulador .box-result .body-result table {
  text-align: left;
}

.habitat-wrap .wrap-resultado-simulador .box-result .body-result table th,
.habitat-wrap .wrap-resultado-simulador .box-result .body-result table td,
.app-habitat .wrap-resultado-simulador .box-result .body-result table th,
.app-habitat .wrap-resultado-simulador .box-result .body-result table td {
  font-size: 14px;
  border: 0;
  text-align: left;
  color: #4C4C4A;
  background-color: transparent;
}

.habitat-wrap .wrap-resultado-simulador .box-result .body-result table th,
.app-habitat .wrap-resultado-simulador .box-result .body-result table th {
  padding-right: 10px;
}

.habitat-wrap .wrap-resultado-simulador .box-result .footer-result,
.app-habitat .wrap-resultado-simulador .box-result .footer-result {
  text-align: center;
  padding: 0 20px 20px 20px;
}

.habitat-wrap .wrap-resultado-simulador .box-result.result--deseada .head-result,
.app-habitat .wrap-resultado-simulador .box-result.result--deseada .head-result {
  background-color: #6BA3B7;
}

.habitat-wrap .wrap-resultado-simulador .box-result.result--legal .head-result,
.app-habitat .wrap-resultado-simulador .box-result.result--legal .head-result {
  background-color: #9DA9AC;
}

.habitat-wrap .wrap-resultado-simulador .box-result.result--proyectada .head-result,
.app-habitat .wrap-resultado-simulador .box-result.result--proyectada .head-result {
  background-color: #BAC5C8;
}

.habitat-wrap .wrap-resultado-simulador .list-table,
.app-habitat .wrap-resultado-simulador .list-table {
  font-size: 14px;
}

.habitat-wrap .add-pordentaje,
.app-habitat .add-pordentaje {
  position: relative;
  display: inline-block;
}

.habitat-wrap .add-pordentaje:before,
.app-habitat .add-pordentaje:before {
  content: '%';
  position: absolute;
  top: 50%;
  left: calc(100% - 25px);
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
}

.habitat-wrap .add-pordentaje input,
.app-habitat .add-pordentaje input {
  width: 100px;
  text-align: center;
  padding-right: 25px;
}

.habitat-wrap .dropdown .btn[data-toggle*="collapse"],
.app-habitat .dropdown .btn[data-toggle*="collapse"] {
  color: #4C4C4A;
}

/*  pages  */
.habitat-wrap,
.app-habitat {
  /*
    ===================== solicitud de trspaso =====================
  */
  /*
    ===================== solicitud de trspaso =====================
  */
}

.habitat-wrap .wrap-pass,
.app-habitat .wrap-pass {
  text-align: center;
  padding: 25px 0;
}

.habitat-wrap .wrap-pass a,
.app-habitat .wrap-pass a {
  font-size: 14px;
}

.habitat-wrap .box-razones h3,
.app-habitat .box-razones h3 {
  text-align: center;
}

.habitat-wrap .box-razones .row,
.app-habitat .box-razones .row {
  overflow: hidden;
}

.habitat-wrap .box-razones .center-element,
.app-habitat .box-razones .center-element {
  margin-top: 30px;
}

@media (max-width: 992px) {
  .habitat-wrap .box-razones .col-sm-6,
  .app-habitat .box-razones .col-sm-6 {
    margin-bottom: 20px;
  }
}

.habitat-wrap .inner-razones,
.app-habitat .inner-razones {
  text-align: center;
}

.habitat-wrap .inner-razones .numero-razones,
.app-habitat .inner-razones .numero-razones {
  width: 60px;
  height: 60px;
  display: inline-block;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  line-height: 60px;
  margin-bottom: 10px;
  background-color: #B4123B;
}

.habitat-wrap .inner-razones .texto-razones,
.app-habitat .inner-razones .texto-razones {
  font-size: 14px;
}

.habitat-wrap table,
.app-habitat table {
  width: 100%;
  max-width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}

.habitat-wrap .table-responsive th,
.habitat-wrap .table-responsive td,
.app-habitat .table-responsive th,
.app-habitat .table-responsive td {
  text-align: left;
  padding: 14px 10px;
}

.habitat-wrap .table-responsive thead th,
.app-habitat .table-responsive thead th {
  color: white;
  background-color: #4C4C4A;
}

.habitat-wrap .table-responsive tbody tr:nth-child(2n),
.app-habitat .table-responsive tbody tr:nth-child(2n) {
  background-color: #F0F0F0;
}

@media (min-width: 768px) {
  .habitat-wrap .table-responsive .th-content,
  .app-habitat .table-responsive .th-content {
    display: none;
  }
}

@media (max-width: 768px) {
  .habitat-wrap .table-responsive thead,
  .app-habitat .table-responsive thead {
    display: none;
  }
  .habitat-wrap .table-responsive tbody td,
  .app-habitat .table-responsive tbody td {
    padding-left: 0 !important;
    padding-right: 0 !important;
    display: block;
  }
  .habitat-wrap .table-responsive tbody td .th-content,
  .habitat-wrap .table-responsive tbody td .td-content,
  .app-habitat .table-responsive tbody td .th-content,
  .app-habitat .table-responsive tbody td .td-content {
    float: left;
    width: 50%;
    padding: 10px;
  }
}

.habitat-wrap,
.app-habitat {
  /*------------------------------------------------------------------------------Traspaso */
  /*resets*/
  /*resets*/
  /*.row{
    max-width: 1040px;
  }*/
  /*------------------------------------------------------------------------------Breadcrumbs */
  /*------------------------------------------------------------------------------Listas */
  /*------------------------------------------------------------------------------Checks */
  /*------------------------------------------------------------------------------Radios */
  /*------------------------------------------------------------------------------Utilities */
  /*------------------------------------------------------------------------------Alertas borrar */
  /*------------------------------------------------------------------------------Step holder original */
  /*------------------------------------------------------------------------------Step holder Habitat */
  /*------------------------------------------------------------------------------Cuentas */
  /*------------------------------------------------------------------------------Empleadores */
  /*------------------------------------------------------------------------------Tablas responsivas */
  /*.simple-table{
    
    .th-content{
      display: none;
    }
    
    &.collapsed{
      
      thead{
        display: none;
      }
      
      tr {
        border-bottom: none;
        display: block;
        float: left;
        margin-bottom: 20px;
        width: 100%;
      }
      td {
        display: table;
        font-size: 12px;
        line-height: normal;
        margin-bottom: 1px;
        padding: 10px 2% 10px 3%;
        text-align: left;
        width: 100%;
        border-bottom: 1px solid #eaeaea;
      }
      .td-content {
        display: table-cell;
        padding: 10px;
        text-align: left;
        width: 50%;
      }
      
      .th-content {
        background: #e2e2e2;
        display: table-cell;
        padding: 10px;
        vertical-align: middle;
        width: 50%;
      }
    }
    
  }*/
  /*------------------------------------------------------------------------------Tablas responsivas habitat */
  /*.simple-table{
    border-left: solid 1px $table-grey-borders;
    border-right: solid 1px $table-grey-borders;
    border-bottom: solid 1px $table-grey-borders;
    border-collapse: collapse;
    margin-bottom: 20px;
    width: 100%;
    
    &.white-bg{
      td{
        background: rgba(255,255,255,0.5);
      }
    }
    
    th{
      border-right: solid 1px $color-deep-grey; 
      background: $color-deep-grey;
      color: $white;
      font-size: 16px;
      font-weight: 100;
      text-align: center;
      padding: 6px 20px;
      
      &:first-child{
        text-align: left;
      }
    }
    td{
      border-bottom: solid 1px $table-grey-borders;
      border-right: solid 1px $table-grey-borders;
      font-size: 14px;
      text-align: center;
      &:first-child{
        text-align: left;
      }
      &:last-child{
        border-right: none;
      }
      &.t-left{
        text-align: left;
      }
      &.t-center{
        text-align: center;
      }
    }
    tbody{
      tr{
        &:nth-child(odd) {
          background: $color-gray-light;
        }
      }
    }
    
    
    &.collapsed{
      border: none;
      td {
        border-bottom: 1px solid $color-gray-light;
        border-right: none;
        margin-bottom: 0;
      }
      .td-content {
        display: table-cell;
        padding: 10px;
        text-align: left;
        width: 50%;
        border-bottom: solid 1px #eaeaea;
      }
      
      .th-content {
        border-right: solid 1px $color-deep-grey;
        background: $color-deep-grey;
        color: $white;
      }
      &.single{
        tr{
          margin-bottom: 0;
        }
      }
    }
    
    
  }
  */
  /*------------------------------------------------------------------------------Success table */
  /*------------------------------------------------------------------------------Custom select */
}

.habitat-wrap .max-container,
.app-habitat .max-container {
  /*a{
      font-size: initial;
      font-weight: initial; 
    }*/
}

.habitat-wrap .auto-cent-buttons,
.app-habitat .auto-cent-buttons {
  display: table;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  clear: both;
}

.habitat-wrap .auto-cent-buttons a,
.habitat-wrap .auto-cent-buttons button,
.habitat-wrap .auto-cent-buttons input,
.app-habitat .auto-cent-buttons a,
.app-habitat .auto-cent-buttons button,
.app-habitat .auto-cent-buttons input {
  margin: 0 20px;
  display: inline-block;
  vertical-align: middle;
}

@media only screen and (max-width: 480px) {
  .habitat-wrap .auto-cent-buttons,
  .app-habitat .auto-cent-buttons {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: 100%;
  }
  .habitat-wrap .auto-cent-buttons a,
  .habitat-wrap .auto-cent-buttons button,
  .habitat-wrap .auto-cent-buttons input,
  .app-habitat .auto-cent-buttons a,
  .app-habitat .auto-cent-buttons button,
  .app-habitat .auto-cent-buttons input {
    float: none;
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
  }
  .habitat-wrap .auto-cent-buttons a + *,
  .habitat-wrap .auto-cent-buttons button + *,
  .habitat-wrap .auto-cent-buttons input + *,
  .app-habitat .auto-cent-buttons a + *,
  .app-habitat .auto-cent-buttons button + *,
  .app-habitat .auto-cent-buttons input + * {
    margin-bottom: 20px;
  }
}

.habitat-wrap .inner-transfer,
.app-habitat .inner-transfer {
  margin-bottom: 20px;
}

.habitat-wrap .white-box,
.app-habitat .white-box {
  width: 100%;
  padding: 30px 40px;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  display: table;
  /*overflow: hidden;*/
  /*resets*/
  /*resets*/
}

@media (max-width: 768px) {
  .habitat-wrap .white-box,
  .app-habitat .white-box {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.habitat-wrap .white-box + .white-box,
.app-habitat .white-box + .white-box {
  margin-top: 20px;
}

@media only screen and (max-width: 960px) {
  .habitat-wrap .white-box.not-pad-bottom-960,
  .app-habitat .white-box.not-pad-bottom-960 {
    padding-bottom: 0;
  }
}

.habitat-wrap .white-box.mobile,
.app-habitat .white-box.mobile {
  padding: 15px;
}

.habitat-wrap .white-box.mobile h5,
.app-habitat .white-box.mobile h5 {
  margin-top: 0;
  margin-bottom: 10px;
}

.habitat-wrap .white-box p,
.app-habitat .white-box p {
  font-size: 14px;
}

.habitat-wrap .white-box .small-text,
.app-habitat .white-box .small-text {
  font-size: 11px;
}

@media only screen and (max-width: 480px) {
  .habitat-wrap .white-box,
  .app-habitat .white-box {
    /*padding: 30px 10px;*/
  }
}

.habitat-wrap .white-box label,
.app-habitat .white-box label {
  display: initial;
  font-weight: initial;
  margin-bottom: initial;
  max-width: initial;
}

.habitat-wrap .white-box p,
.app-habitat .white-box p {
  color: #4C4C4A;
}

.habitat-wrap .white-box li,
.app-habitat .white-box li {
  line-height: initial;
}

.habitat-wrap .white-box .alert,
.app-habitat .white-box .alert {
  margin-bottom: initial;
}

.habitat-wrap .mobile-inner-box,
.app-habitat .mobile-inner-box {
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

.habitat-wrap .breadcrumbs,
.app-habitat .breadcrumbs {
  padding: 20px 0;
}

.habitat-wrap .list,
.app-habitat .list {
  font-size: 14px;
  margin-bottom: 20px;
}

.habitat-wrap .check-list,
.app-habitat .check-list {
  font-size: 14px;
}

.habitat-wrap .check-list li,
.app-habitat .check-list li {
  padding: 0 0 0 30px;
  position: relative;
}

.habitat-wrap .check-list li + li,
.app-habitat .check-list li + li {
  margin-top: 20px;
}

.habitat-wrap .check-list label,
.app-habitat .check-list label {
  display: inline-block;
  left: 0;
  margin-right: 5px;
  position: absolute;
  top: 0;
  vertical-align: middle;
}

.habitat-wrap .check-list .v-cent,
.app-habitat .check-list .v-cent {
  top: 0;
  bottom: 0;
  margin: auto;
  height: 20px;
}

.habitat-wrap .inline-check .cs-checkbox-wrap,
.app-habitat .inline-check .cs-checkbox-wrap {
  display: inline-block;
  margin-right: 3px;
  vertical-align: middle;
}

.habitat-wrap .inline-check .small,
.app-habitat .inline-check .small {
  font-size: 14px;
}

.habitat-wrap .cent-checks,
.app-habitat .cent-checks {
  display: table;
  margin: 0 auto;
  position: relative;
}

.habitat-wrap .cent-checks label,
.app-habitat .cent-checks label {
  display: table-cell;
  padding: 0 20px;
  vertical-align: middle;
}

.habitat-wrap .cent-radios,
.app-habitat .cent-radios {
  display: table;
  margin: 30px auto 0;
  position: relative;
}

.habitat-wrap .cent-radios label,
.app-habitat .cent-radios label {
  display: table-cell;
  padding: 0 20px;
  vertical-align: middle;
}

@media only screen and (max-width: 768px) {
  .habitat-wrap .cent-radios,
  .app-habitat .cent-radios {
    margin: 30px auto;
  }
}

@media only screen and (max-width: 480px) {
  .habitat-wrap .cent-radios,
  .app-habitat .cent-radios {
    font-size: 12px;
  }
}

.habitat-wrap .inline-radio .cs-radio-wrap,
.app-habitat .inline-radio .cs-radio-wrap {
  display: inline-block;
  margin-right: 3px;
  vertical-align: middle;
}

.habitat-wrap .inline-radio .small,
.app-habitat .inline-radio .small {
  font-size: 14px;
}

.habitat-wrap .inline-radio-left,
.app-habitat .inline-radio-left {
  clear: both;
  float: left;
  width: 100%;
  padding-bottom: 10px;
}

.habitat-wrap .inline-radio-left .cs-radio-wrap,
.app-habitat .inline-radio-left .cs-radio-wrap {
  float: left;
}

.habitat-wrap .inline-radio-left .small,
.app-habitat .inline-radio-left .small {
  font-size: 14px;
  float: left;
  max-width: 85%;
  margin-left: 10px;
  position: relative;
  top: -3px;
}

.habitat-wrap h1 .small, .habitat-wrap h2 .small, .habitat-wrap h3 .small, .habitat-wrap h4 .small, .habitat-wrap h5 .small, .habitat-wrap h6 .small,
.app-habitat h1 .small,
.app-habitat h2 .small,
.app-habitat h3 .small,
.app-habitat h4 .small,
.app-habitat h5 .small,
.app-habitat h6 .small {
  font-size: 14px;
  font-weight: 100;
  margin-left: 10px;
}

.habitat-wrap h1.as-label, .habitat-wrap h2.as-label, .habitat-wrap h3.as-label, .habitat-wrap h4.as-label, .habitat-wrap h5.as-label, .habitat-wrap h6.as-label,
.app-habitat h1.as-label,
.app-habitat h2.as-label,
.app-habitat h3.as-label,
.app-habitat h4.as-label,
.app-habitat h5.as-label,
.app-habitat h6.as-label {
  font-size: 18px;
  font-weight: 100;
}

.habitat-wrap .input-inline-group .input__custom,
.app-habitat .input-inline-group .input__custom {
  display: table-cell;
  padding-right: 5%;
  width: 2%;
}

.habitat-wrap .input-inline-group .input__custom:last-child,
.app-habitat .input-inline-group .input__custom:last-child {
  padding-right: 0;
}

.habitat-wrap .phone-inputs .small, .habitat-wrap .mixed-input .small,
.app-habitat .phone-inputs .small,
.app-habitat .mixed-input .small {
  display: table-cell;
  vertical-align: middle;
  padding-right: 5%;
  width: 25%;
}

.habitat-wrap .phone-inputs .big, .habitat-wrap .mixed-input .big,
.app-habitat .phone-inputs .big,
.app-habitat .mixed-input .big {
  display: table-cell;
  vertical-align: middle;
  width: 50%;
}

.habitat-wrap .voucher,
.app-habitat .voucher {
  clear: both;
  float: left;
  margin-bottom: 20px;
}

.habitat-wrap .voucher *,
.app-habitat .voucher * {
  clear: both;
  float: left;
}

.habitat-wrap .voucher .name,
.app-habitat .voucher .name {
  font-weight: bold;
}

.habitat-wrap .inline-voucher .voucher,
.app-habitat .inline-voucher .voucher {
  float: none;
  clear: none;
  display: table-cell;
  vertical-align: middle;
  padding-right: 5%;
  width: 2%;
}

.habitat-wrap .hidden-element,
.app-habitat .hidden-element {
  display: none;
}

.habitat-wrap .mar-bottom-0,
.app-habitat .mar-bottom-0 {
  margin-bottom: 0;
}

.habitat-wrap .legend,
.app-habitat .legend {
  display: inline-block;
  font-size: 14px;
  margin-top: 4px;
  padding: 0 0 0 10px;
}

.habitat-wrap .small-text,
.app-habitat .small-text {
  font-size: 11px;
}

.habitat-wrap .box,
.app-habitat .box {
  padding: 20px;
  margin-bottom: 20px;
  /*float: left;
    margin-top: 20px;*/
}

.habitat-wrap .mobile-cont-960,
.app-habitat .mobile-cont-960 {
  margin: 0;
  padding: 0;
}

@media only screen and (max-width: 960px) {
  .habitat-wrap .mobile-cont-960,
  .app-habitat .mobile-cont-960 {
    padding: 0 20px;
  }
}

.habitat-wrap .inner-box,
.app-habitat .inner-box {
  padding: 20px;
  /*@media only screen and (max-width: 480px) {
      padding: 30px 10px;
    }*/
}

.habitat-wrap .grey-bg,
.app-habitat .grey-bg {
  background: #F9F8F6;
  margin-bottom: 0;
}

.habitat-wrap .grey-bg-dark,
.app-habitat .grey-bg-dark {
  background: #D8D8D8;
  margin-bottom: 0;
}

.habitat-wrap .light-grey-bg,
.app-habitat .light-grey-bg {
  background: #f0f0f0;
}

.habitat-wrap .light-blue-bg,
.app-habitat .light-blue-bg {
  background: #C6E4EF;
}

.habitat-wrap .white-bg,
.app-habitat .white-bg {
  background: white;
}

.habitat-wrap .mid-grey-bg,
.app-habitat .mid-grey-bg {
  background: #E4E8E9;
}

.habitat-wrap .bordered-top,
.app-habitat .bordered-top {
  border-top: solid 1px #d8d8d8;
}

.habitat-wrap .bordered-bottom,
.app-habitat .bordered-bottom {
  border-bottom: solid 1px #d8d8d8;
  padding-bottom: 20px;
}

.habitat-wrap .h-pad-10,
.app-habitat .h-pad-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.habitat-wrap .red-color,
.app-habitat .red-color {
  color: #B4123B;
}

.habitat-wrap .auto-cent-button,
.app-habitat .auto-cent-button {
  display: table;
  margin-left: auto;
  margin-right: auto;
}

.habitat-wrap .submit,
.app-habitat .submit {
  min-width: 250px;
}

.habitat-wrap .disclaimer,
.app-habitat .disclaimer {
  margin-top: 20px;
  margin-bottom: 20px;
  border: solid 1px #ccc;
  border-radius: 3px;
  padding: 15px;
}

.habitat-wrap .disclaimer p,
.app-habitat .disclaimer p {
  font-size: 12px;
}

.habitat-wrap .disclaimer *,
.app-habitat .disclaimer * {
  display: inline-block;
}

.habitat-wrap .steps-holder,
.app-habitat .steps-holder {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.habitat-wrap .steps-holder a,
.app-habitat .steps-holder a {
  font-size: 13px;
}

.habitat-wrap .steps-holder .step-wrapp,
.app-habitat .steps-holder .step-wrapp {
  display: table;
  width: auto;
}

.habitat-wrap .step-wrapp,
.app-habitat .step-wrapp {
  list-style: none;
}

.habitat-wrap .step-wrapp li,
.app-habitat .step-wrapp li {
  display: table-cell;
  width: 2%;
  position: relative;
  text-align: center;
  padding-bottom: 20px;
}

.habitat-wrap .step-wrapp li:after,
.app-habitat .step-wrapp li:after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  top: 23px;
  height: 2px;
  background-color: #DDDDDD;
}

.habitat-wrap .step-wrapp li:first-child:after,
.app-habitat .step-wrapp li:first-child:after {
  width: 50%;
  left: auto;
  right: 0;
}

.habitat-wrap .step-wrapp li:last-child:after,
.app-habitat .step-wrapp li:last-child:after {
  width: 50%;
}

.habitat-wrap .step-wrapp li.current:before,
.app-habitat .step-wrapp li.current:before {
  content: "";
  width: 21px;
  height: 13px;
  position: absolute;
  top: 100%;
  left: 47%;
  z-index: 9;
}

.habitat-wrap .step-wrapp li.checked:after,
.app-habitat .step-wrapp li.checked:after {
  background-color: #6ba3b7;
}

@media only screen and (max-width: 768px) {
  .habitat-wrap .step-wrapp.not-768,
  .app-habitat .step-wrapp.not-768 {
    display: none;
  }
}

.habitat-wrap .step,
.app-habitat .step {
  background-color: #fff;
  border: 4px solid #444;
  border-radius: 100%;
  color: #444;
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  height: 48px;
  line-height: 20px;
  margin-bottom: 10px;
  padding-top: 10px;
  position: relative;
  text-align: center;
  width: 48px;
  z-index: 1;
}

.habitat-wrap .step .icon-step-check, .habitat-wrap .step .step-wrap li.checked .step-number:before, .habitat-wrap .step-wrap li.checked .step .step-number:before,
.app-habitat .step-wrap li.checked .habitat-wrap .step .step-number:before,
.app-habitat .step .icon-step-check, .habitat-wrap .step-wrap li.checked
.app-habitat .step .step-number:before,
.app-habitat .step .step-wrap li.checked .step-number:before,
.app-habitat .step-wrap li.checked .step .step-number:before {
  position: relative;
  top: 3px;
}

.current .habitat-wrap .step, .current
.app-habitat .step {
  background-color: #444;
  color: white;
}

.success .habitat-wrap .step, .success
.app-habitat .step {
  background-color: #ccc;
  color: transparent;
  /*text-indent: -999999px;*/
  border: 4px solid #ccc;
}

.habitat-wrap .step-text,
.app-habitat .step-text {
  color: #444;
  font-size: 13px;
}

.current .habitat-wrap .step-text, .current
.app-habitat .step-text {
  color: #444;
}

.success .habitat-wrap .step-text, .success
.app-habitat .step-text {
  color: #444;
}

.habitat-wrap .steps-holder,
.app-habitat .steps-holder {
  border-bottom: 1px solid #d8d8d8;
  margin-bottom: 30px;
  padding-bottom: 10px;
  width: 100%;
}

.habitat-wrap .step-wrapp li:after,
.app-habitat .step-wrapp li:after {
  height: 3px;
}

.habitat-wrap .step-wrapp .step,
.app-habitat .step-wrapp .step {
  line-height: 23px;
  color: #d8d8d8;
  font-size: 18px;
  border: solid 2px #d8d8d8;
  font-weight: 100;
}

.habitat-wrap .step-wrapp .current .step,
.app-habitat .step-wrapp .current .step {
  color: white;
  background: #6ba3b7;
  border-color: #6ba3b7;
}

.habitat-wrap .step-wrapp .success .step,
.app-habitat .step-wrapp .success .step {
  background: white;
  color: #6ba3b7;
  border-color: #6ba3b7;
}

@media only screen and (max-width: 768px) {
  .habitat-wrap .step-holder-mobile,
  .app-habitat .step-holder-mobile {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #DDD;
  }
  .habitat-wrap .step-holder-mobile h4,
  .app-habitat .step-holder-mobile h4 {
    margin: 10px 0 0 0;
  }
}

.habitat-wrap .step-holder-mobile span,
.app-habitat .step-holder-mobile span {
  background: white;
  border: 2px solid #d8d8d8;
  border-radius: 100%;
  display: inline-block;
  height: 30px;
  line-height: 27px;
  margin: 0 4px;
  text-align: center;
  vertical-align: middle;
  width: 30px;
  color: #d8d8d8;
}

.habitat-wrap .step-holder-mobile .current,
.app-habitat .step-holder-mobile .current {
  background: #6ba3b7;
  border: 2px solid #6ba3b7;
  color: #fff;
}

.habitat-wrap .account,
.app-habitat .account {
  margin-top: 20px;
  margin-bottom: 20px;
}

.habitat-wrap .account.last,
.app-habitat .account.last {
  margin-bottom: 0;
}

.habitat-wrap .transfer-cont .inner-row,
.app-habitat .transfer-cont .inner-row {
  padding-left: 15px;
  padding-right: 15px;
}

@media only screen and (max-width: 960px) {
  .habitat-wrap .transfer-cont .cent-radios,
  .app-habitat .transfer-cont .cent-radios {
    display: table;
    margin: 30px auto;
    position: relative;
  }
}

.habitat-wrap .account-info,
.app-habitat .account-info {
  border-bottom: 1px solid #ccc;
  padding: 16px 20px;
}

@media only screen and (max-width: 960px) {
  .habitat-wrap .account-info,
  .app-habitat .account-info {
    background: #C7D1D4;
  }
}

@media only screen and (max-width: 480px) {
  .habitat-wrap .account-info p,
  .app-habitat .account-info p {
    font-size: 12px;
  }
}

.habitat-wrap .account-info-two,
.app-habitat .account-info-two {
  padding: 14px 20px;
  margin: 15px 0;
  background: #D5E0E3;
}

.habitat-wrap .employer-box,
.app-habitat .employer-box {
  border-bottom: 1px solid #ccc;
  float: left;
  margin-bottom: 30px;
  padding-bottom: 20px;
  width: 100%;
}

.habitat-wrap .edit-buttons,
.app-habitat .edit-buttons {
  margin-bottom: 20px;
}

.habitat-wrap .success-table,
.app-habitat .success-table {
  border-collapse: separate;
  border-spacing: 0 1px;
  width: 100%;
}

.habitat-wrap .success-table th,
.habitat-wrap .success-table td,
.app-habitat .success-table th,
.app-habitat .success-table td {
  padding: 10px;
}

.habitat-wrap .success-table th,
.app-habitat .success-table th {
  background: #ccc;
  text-align: center;
}

.habitat-wrap .success-table th:first-child,
.app-habitat .success-table th:first-child {
  text-align: left;
}

.habitat-wrap .success-table th:nth-child(odd),
.app-habitat .success-table th:nth-child(odd) {
  background: #F9F8F6;
}

.habitat-wrap .success-table td,
.app-habitat .success-table td {
  background: #ccc;
  text-align: center;
}

.habitat-wrap .success-table td:first-child,
.app-habitat .success-table td:first-child {
  text-align: left;
  background: #C7D1D4;
}

.habitat-wrap .success-table td:nth-child(2),
.app-habitat .success-table td:nth-child(2) {
  background: #D5E0E3;
}

.habitat-wrap .success-table td:nth-child(3),
.app-habitat .success-table td:nth-child(3) {
  background: #E4E8E9;
}

@media only screen and (max-width: 640px) {
  .habitat-wrap .success-table,
  .app-habitat .success-table {
    font-size: 14px;
  }
  .habitat-wrap .success-table tr,
  .app-habitat .success-table tr {
    display: block;
    float: left;
    margin-bottom: 20px;
    width: 100%;
  }
  .habitat-wrap .success-table td,
  .app-habitat .success-table td {
    display: block;
    float: left;
    width: 100%;
  }
  .habitat-wrap .success-table td:first-child,
  .app-habitat .success-table td:first-child {
    text-align: center;
  }
}

/*  utils  */
.habitat-wrap .mar-right-10,
.app-habitat .mar-right-10 {
  margin-right: 10px;
}

.habitat-wrap .mar-right-20,
.app-habitat .mar-right-20 {
  margin-right: 20px;
}

.habitat-wrap .mar-right-30,
.app-habitat .mar-right-30 {
  margin-right: 30px;
}

.habitat-wrap .mar-right-40,
.app-habitat .mar-right-40 {
  margin-right: 40px;
}

.habitat-wrap .mar-right-50,
.app-habitat .mar-right-50 {
  margin-right: 50px;
}

.habitat-wrap .mar-left-10,
.app-habitat .mar-left-10 {
  margin-left: 10px;
}

.habitat-wrap .mar-left-20,
.app-habitat .mar-left-20 {
  margin-left: 20px;
}

.habitat-wrap .mar-left-30,
.app-habitat .mar-left-30 {
  margin-left: 30px;
}

.habitat-wrap .mar-left-40,
.app-habitat .mar-left-40 {
  margin-left: 40px;
}

.habitat-wrap .mar-left-50,
.app-habitat .mar-left-50 {
  margin-left: 50px;
}

.habitat-wrap .mar-top-10,
.app-habitat .mar-top-10 {
  margin-top: 10px;
}

.habitat-wrap .mar-top-20,
.app-habitat .mar-top-20 {
  margin-top: 20px;
}

.habitat-wrap .mar-top-30,
.app-habitat .mar-top-30 {
  margin-top: 30px;
}

.habitat-wrap .mar-top-40,
.app-habitat .mar-top-40 {
  margin-top: 40px;
}

.habitat-wrap .mar-top-50,
.app-habitat .mar-top-50 {
  margin-top: 50px;
}

.habitat-wrap .mar-bottom-10,
.app-habitat .mar-bottom-10 {
  margin-bottom: 10px;
}

.habitat-wrap .mar-bottom-20,
.app-habitat .mar-bottom-20 {
  margin-bottom: 20px;
}

.habitat-wrap .mar-bottom-30,
.app-habitat .mar-bottom-30 {
  margin-bottom: 30px;
}

.habitat-wrap .mar-bottom-40,
.app-habitat .mar-bottom-40 {
  margin-bottom: 40px;
}

.habitat-wrap .mar-bottom-50,
.app-habitat .mar-bottom-50 {
  margin-bottom: 50px;
}

.habitat-wrap .pad-right-10,
.app-habitat .pad-right-10 {
  padding-right: 10px;
}

.habitat-wrap .pad-right-20,
.app-habitat .pad-right-20 {
  padding-right: 20px;
}

.habitat-wrap .pad-right-30,
.app-habitat .pad-right-30 {
  padding-right: 30px;
}

.habitat-wrap .pad-right-40,
.app-habitat .pad-right-40 {
  padding-right: 40px;
}

.habitat-wrap .pad-right-50,
.app-habitat .pad-right-50 {
  padding-right: 50px;
}

.habitat-wrap .pad-left-10,
.app-habitat .pad-left-10 {
  padding-left: 10px;
}

.habitat-wrap .pad-left-20,
.app-habitat .pad-left-20 {
  padding-left: 20px;
}

.habitat-wrap .pad-left-30,
.app-habitat .pad-left-30 {
  padding-left: 30px;
}

.habitat-wrap .pad-left-40,
.app-habitat .pad-left-40 {
  padding-left: 40px;
}

.habitat-wrap .pad-left-50,
.app-habitat .pad-left-50 {
  padding-left: 50px;
}

.habitat-wrap .pad-top-10,
.app-habitat .pad-top-10 {
  padding-top: 10px;
}

.habitat-wrap .pad-top-20,
.app-habitat .pad-top-20 {
  padding-top: 20px;
}

.habitat-wrap .pad-top-30,
.app-habitat .pad-top-30 {
  padding-top: 30px;
}

.habitat-wrap .pad-top-40,
.app-habitat .pad-top-40 {
  padding-top: 40px;
}

.habitat-wrap .pad-top-50,
.app-habitat .pad-top-50 {
  padding-top: 50px;
}

.habitat-wrap .pad-bottom-10,
.app-habitat .pad-bottom-10 {
  padding-bottom: 10px;
}

.habitat-wrap .pad-bottom-20,
.app-habitat .pad-bottom-20 {
  padding-bottom: 20px;
}

.habitat-wrap .pad-bottom-30,
.app-habitat .pad-bottom-30 {
  padding-bottom: 30px;
}

.habitat-wrap .pad-bottom-40,
.app-habitat .pad-bottom-40 {
  padding-bottom: 40px;
}

.habitat-wrap .pad-bottom-50,
.app-habitat .pad-bottom-50 {
  padding-bottom: 50px;
}

.habitat-wrap,
.app-habitat {
  /*
    ===================== separate-content =====================
  */
  /* Uso: agregar contenedor para separar contenidos, cada grupo de elementos debe estar contenido con un separate__content */
  /*
    ===================== separate-content =====================
  */
  /*
    ===================== bg-second-light =====================
  */
  /*
    ===================== /bg-second-light =====================
  */
  /*
    ===================== textos =====================
  */
  /*
    ===================== /textos =====================
  */
  /*
    ===================== margenes top, left, bottom, right =====================
  */
  /*Uso: ej se agrega la clase offset-left-1 al offset-left-3, aplica para todos los lados*/
  /*
    ===================== margenes top, left, bottom, right =====================
  */
  /*
    ===================== cabeceras de página =====================
  */
  /*
    ===================== /cabeceras de página =====================
  */
  /*
    ===================== box =====================
  */
  /*
    ===================== /box =====================
  */
  /*
    ===================== listas =====================
  */
  /*.list-table {
      display: table;
      width: 100%;

      li {
        display: table-cell;
        vertical-align: middle;
      }
    }*/
  /*.list-table-border {
      text-align: center;

      li + li {
        border-left: 1px solid $color-border;
      }
    }*/
  /*
    ===================== listas =====================
  */
  /*
    ===================== centar columna =====================
  */
  /*Uso: agregar clase al lado de la columna ej: col-md-3 center-col*/
  /*
    ===================== /centar columna =====================
  */
  /*
    ===================== Max width contenedor =====================
  */
  /*head-form*/
  /*error traspaso*/
  /*valor cuota*/
  /* Fondos simulador */
  /* simulador paso 4 */
  /*fin*/
}

.habitat-wrap [class*="col-"]:after,
.app-habitat [class*="col-"]:after {
  content: " ";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}

.habitat-wrap .delete,
.app-habitat .delete {
  display: none;
}

.habitat-wrap .separate__content,
.habitat-wrap .separate__content--doble,
.habitat-wrap .separate__content--min,
.app-habitat .separate__content,
.app-habitat .separate__content--doble,
.app-habitat .separate__content--min {
  clear: both;
  display: table;
  width: 100%;
}
/* Editado */
.habitat-wrap .separate__content + .separate__content,
.app-habitat .separate__content + .separate__content {
  margin-top: 11px;
}

.habitat-wrap .separate__content + .separate__content--doble,
.app-habitat .separate__content + .separate__content--doble {
  margin-top: 30px;
}

.habitat-wrap .separate__content + .separate__content--min,
.app-habitat .separate__content + .separate__content--min {
  margin-top: 10px;
}

.habitat-wrap .separate__content--doble + .separate__content--doble,
.app-habitat .separate__content--doble + .separate__content--doble {
  margin-top: 30px;
}

.habitat-wrap .separate__content--doble + .separate__content,
.app-habitat .separate__content--doble + .separate__content {
  margin-top: 20px;
}

.habitat-wrap .separate__content--doble + .separate__content--min,
.app-habitat .separate__content--doble + .separate__content--min {
  margin-top: 10px;
}

.habitat-wrap .separate__content--min + .separate__content--doble,
.app-habitat .separate__content--min + .separate__content--doble {
  margin-top: 30px;
}

.habitat-wrap .separate__content--min + .separate__content,
.app-habitat .separate__content--min + .separate__content {
  margin-top: 20px;
}

.habitat-wrap .separate__content--min + .separate__content--min,
.app-habitat .separate__content--min + .separate__content--min {
  margin-top: 10px;
}

.habitat-wrap .separate-border-top,
.app-habitat .separate-border-top {
  border-top: 1px solid #DDD;
  padding-top: 20px;
}

.habitat-wrap .bg-second-light,
.app-habitat .bg-second-light {
  margin-top: 30px;
  padding: 40px 0;
  overflow: hidden;
  background-color: #EDF3F5;
}

.habitat-wrap .bg-second-light .max-container,
.app-habitat .bg-second-light .max-container {
  padding-bottom: 0;
}

@media (max-width: 768px) {
  .habitat-wrap .bg-second-light,
  .app-habitat .bg-second-light {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 768px) {
  .habitat-wrap .reset-bg-mobile,
  .app-habitat .reset-bg-mobile {
    padding-top: 0;
    padding-bottom: 0;
    background-color: transparent;
  }
}

.habitat-wrap .text-left,
.app-habitat .text-left {
  text-align: left;
}

.habitat-wrap .text-right,
.app-habitat .text-right {
  text-align: right;
}

.habitat-wrap .text-center,
.app-habitat .text-center {
  text-align: center;
}

.habitat-wrap .text-small,
.app-habitat .text-small {
  font-size: 14px !important;
}

.habitat-wrap .text-italic,
.app-habitat .text-italic {
  font-style: italic;
}

.habitat-wrap .font-bold ,
.app-habitat .font-bold  {
  font-family: "robotoboldHabitat" !important;
}

.habitat-wrap .font-bold-italic,
.app-habitat .font-bold-italic {
  font-family: "robotobold_italicHabitat" !important;
}

.habitat-wrap .font-italic,
.app-habitat .font-italic {
  font-family: "robotoitalicHabitat" !important;
}

.habitat-wrap .font-light,
.app-habitat .font-light {
  font-family: "robotolightHabitat" !important;
}

.habitat-wrap .font-medium,
.app-habitat .font-medium {
  font-family: "robotomediumHabitat" !important;
}

.habitat-wrap .font-medium-italic,
.app-habitat .font-medium-italic {
  font-family: "robotomedium_italicHabitat" !important;
}

.habitat-wrap .font-regular,
.app-habitat .font-regular {
  font-family: "robotoregularHabitat" !important;
}

.habitat-wrap .font-thin,
.app-habitat .font-thin {
  font-family: "robotothinHabitat" !important;
}

.habitat-wrap .font-slab,
.app-habitat .font-slab {
  font-family: "roboto_slabregular", serif !important;
}

.habitat-wrap .white-box .small-title,
.app-habitat .white-box .small-title {
  font-size: 14px;
  display: block;
  margin-bottom: 10px !important;
  font-family: "robotomediumHabitat";
}

.habitat-wrap .text-links-underline,
.app-habitat .text-links-underline {
  text-decoration: underline !important;
  font-size: 14px;
}

.habitat-wrap .hidden,
.app-habitat .hidden {
  display: none !important;
}

.habitat-wrap a:hover,
.app-habitat a:hover {
  color: #0599cc;
}

.habitat-wrap .subtitle-small,
.app-habitat .subtitle-small {
  font-size: 12px;
  margin-bottom: 5px;
}

.habitat-wrap .underline,
.app-habitat .underline {
  text-decoration: underline !important;
}

.habitat-wrap .section-bg-white,
.app-habitat .section-bg-white {
  background-color: white;
  padding: 20px 0;
  overflow: hidden;
}

.habitat-wrap .hide,
.app-habitat .hide {
  display: none !important;
}

.habitat-wrap .show,
.app-habitat .show {
  display: block !important;
}

.habitat-wrap .invisible,
.app-habitat .invisible {
  visibility: hidden;
}

.habitat-wrap .text-hide,
.app-habitat .text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.habitat-wrap .hidden,
.app-habitat .hidden {
  display: none !important;
}

@-ms-viewport {
  .habitat-wrap,
  .app-habitat {
    width: device-width;
  }
}

.habitat-wrap .visible-xs,
.habitat-wrap .visible-sm,
.habitat-wrap .visible-md,
.habitat-wrap .visible-lg,
.app-habitat .visible-xs,
.app-habitat .visible-sm,
.app-habitat .visible-md,
.app-habitat .visible-lg {
  display: none !important;
}

.habitat-wrap .visible-xs-block,
.habitat-wrap .visible-xs-inline,
.habitat-wrap .visible-xs-inline-block,
.habitat-wrap .visible-sm-block,
.habitat-wrap .visible-sm-inline,
.habitat-wrap .visible-sm-inline-block,
.habitat-wrap .visible-md-block,
.habitat-wrap .visible-md-inline,
.habitat-wrap .visible-md-inline-block,
.habitat-wrap .visible-lg-block,
.habitat-wrap .visible-lg-inline,
.habitat-wrap .visible-lg-inline-block,
.app-habitat .visible-xs-block,
.app-habitat .visible-xs-inline,
.app-habitat .visible-xs-inline-block,
.app-habitat .visible-sm-block,
.app-habitat .visible-sm-inline,
.app-habitat .visible-sm-inline-block,
.app-habitat .visible-md-block,
.app-habitat .visible-md-inline,
.app-habitat .visible-md-inline-block,
.app-habitat .visible-lg-block,
.app-habitat .visible-lg-inline,
.app-habitat .visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .habitat-wrap .visible-xs,
  .app-habitat .visible-xs {
    display: block !important;
  }
  .habitat-wrap table.visible-xs,
  .app-habitat table.visible-xs {
    display: table !important;
  }
  .habitat-wrap tr.visible-xs,
  .app-habitat tr.visible-xs {
    display: table-row !important;
  }
  .habitat-wrap th.visible-xs,
  .habitat-wrap td.visible-xs,
  .app-habitat th.visible-xs,
  .app-habitat td.visible-xs {
    display: table-cell !important;
  }
}

@media (max-width: 767px) {
  .habitat-wrap .visible-xs-block,
  .app-habitat .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .habitat-wrap .visible-xs-inline,
  .app-habitat .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  .habitat-wrap .visible-xs-inline-block,
  .app-habitat .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .habitat-wrap .visible-sm,
  .app-habitat .visible-sm {
    display: block !important;
  }
  .habitat-wrap table.visible-sm,
  .app-habitat table.visible-sm {
    display: table !important;
  }
  .habitat-wrap tr.visible-sm,
  .app-habitat tr.visible-sm {
    display: table-row !important;
  }
  .habitat-wrap th.visible-sm,
  .habitat-wrap td.visible-sm,
  .app-habitat th.visible-sm,
  .app-habitat td.visible-sm {
    display: table-cell !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .habitat-wrap .visible-sm-block,
  .app-habitat .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .habitat-wrap .visible-sm-inline,
  .app-habitat .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .habitat-wrap .visible-sm-inline-block,
  .app-habitat .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .habitat-wrap .visible-md,
  .app-habitat .visible-md {
    display: block !important;
  }
  .habitat-wrap table.visible-md,
  .app-habitat table.visible-md {
    display: table !important;
  }
  .habitat-wrap tr.visible-md,
  .app-habitat tr.visible-md {
    display: table-row !important;
  }
  .habitat-wrap th.visible-md,
  .habitat-wrap td.visible-md,
  .app-habitat th.visible-md,
  .app-habitat td.visible-md {
    display: table-cell !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .habitat-wrap .visible-md-block,
  .app-habitat .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .habitat-wrap .visible-md-inline,
  .app-habitat .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .habitat-wrap .visible-md-inline-block,
  .app-habitat .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) {
  .habitat-wrap .visible-lg,
  .app-habitat .visible-lg {
    display: block !important;
  }
  .habitat-wrap table.visible-lg,
  .app-habitat table.visible-lg {
    display: table !important;
  }
  .habitat-wrap tr.visible-lg,
  .app-habitat tr.visible-lg {
    display: table-row !important;
  }
  .habitat-wrap th.visible-lg,
  .habitat-wrap td.visible-lg,
  .app-habitat th.visible-lg,
  .app-habitat td.visible-lg {
    display: table-cell !important;
  }
}

@media (min-width: 1200px) {
  .habitat-wrap .visible-lg-block,
  .app-habitat .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  .habitat-wrap .visible-lg-inline,
  .app-habitat .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1200px) {
  .habitat-wrap .visible-lg-inline-block,
  .app-habitat .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  .habitat-wrap .hidden-xs,
  .app-habitat .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .habitat-wrap .hidden-sm,
  .app-habitat .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .habitat-wrap .hidden-md,
  .app-habitat .hidden-md {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .habitat-wrap .hidden-lg,
  .app-habitat .hidden-lg {
    display: none !important;
  }
}

.habitat-wrap .color-primary,
.app-habitat .color-primary {
  color: #B4123B;
}

.habitat-wrap .center-element,
.app-habitat .center-element {
  display: table;
  margin: auto;
}

.habitat-wrap .full,
.app-habitat .full {
  width: 100%;
}

.habitat-wrap .to-left,
.app-habitat .to-left {
  float: left;
}

.habitat-wrap .to-right,
.app-habitat .to-right {
  float: right;
}

.habitat-wrap .ohidden,
.app-habitat .ohidden {
  overflow: hidden;
}

.habitat-wrap .cent-text,
.app-habitat .cent-text {
  text-align: center;
}

.habitat-wrap .offset-top-1,
.app-habitat .offset-top-1 {
  margin-top: 10px !important;
}

.habitat-wrap .offset-left-1,
.app-habitat .offset-left-1 {
  margin-left: 10px !important;
}

.habitat-wrap .offset-bottom-1,
.app-habitat .offset-bottom-1 {
  margin-bottom: 10px !important;
}

.habitat-wrap .offset-right-1,
.app-habitat .offset-right-1 {
  margin-right: 10px !important;
}

.habitat-wrap .offset-top-2,
.app-habitat .offset-top-2 {
  margin-top: 20px !important;
}

.habitat-wrap .offset-left-2,
.app-habitat .offset-left-2 {
  margin-left: 20px !important;
}

.habitat-wrap .offset-bottom-2,
.app-habitat .offset-bottom-2 {
  margin-bottom: 20px !important;
}

.habitat-wrap .offset-right-2,
.app-habitat .offset-right-2 {
  margin-right: 20px !important;
}

.habitat-wrap .offset-top-3,
.app-habitat .offset-top-3 {
  margin-top: 30px !important;
}

.habitat-wrap .offset-left-3,
.app-habitat .offset-left-3 {
  margin-left: 30px !important;
}

.habitat-wrap .offset-bottom-3,
.app-habitat .offset-bottom-3 {
  margin-bottom: 30px !important;
}

.habitat-wrap .offset-right-3,
.app-habitat .offset-right-3 {
  margin-right: 30px !important;
}

.habitat-wrap .offset-top-4,
.app-habitat .offset-top-4 {
  margin-top: 40px !important;
}

.habitat-wrap .offset-left-4,
.app-habitat .offset-left-4 {
  margin-left: 40px !important;
}

.habitat-wrap .offset-bottom-4,
.app-habitat .offset-bottom-4 {
  margin-bottom: 40px !important;
}

.habitat-wrap .offset-right-4,
.app-habitat .offset-right-4 {
  margin-right: 40px !important;
}

.habitat-wrap .offset-top-5,
.app-habitat .offset-top-5 {
  margin-top: 50px !important;
}

.habitat-wrap .offset-left-5,
.app-habitat .offset-left-5 {
  margin-left: 50px !important;
}

.habitat-wrap .offset-bottom-5,
.app-habitat .offset-bottom-5 {
  margin-bottom: 50px !important;
}

.habitat-wrap .offset-right-5,
.app-habitat .offset-right-5 {
  margin-right: 50px !important;
}

.habitat-wrap .offset-top-6,
.app-habitat .offset-top-6 {
  margin-top: 60px !important;
}

.habitat-wrap .offset-left-6,
.app-habitat .offset-left-6 {
  margin-left: 60px !important;
}

.habitat-wrap .offset-bottom-6,
.app-habitat .offset-bottom-6 {
  margin-bottom: 60px !important;
}

.habitat-wrap .offset-right-6,
.app-habitat .offset-right-6 {
  margin-right: 60px !important;
}

.habitat-wrap .head-descent,
.app-habitat .head-descent {
  display: table;
  width: 100%;
  padding-bottom: 20px;
}

.habitat-wrap .head-descent h1,
.app-habitat .head-descent h1 {
  margin-bottom: 5px;
  font-family: "roboto_slabregular", serif;
}

.habitat-wrap .head-descent h2,
.app-habitat .head-descent h2 {
  font-family: "robotolightHabitat";
}

.habitat-wrap .head-descent .h5,
.app-habitat .head-descent .h5 {
  font-size: 14px;
  margin-bottom: 0;
}

.habitat-wrap .box-info,
.app-habitat .box-info {
  display: table;
  width: 100%;
  padding: 20px;
  background-color: #C6E4EF;
}

.habitat-wrap .box-info .h5,
.app-habitat .box-info .h5 {
  margin: 0;
  padding-bottom: 10px;
  font-family: "robotoregularHabitat";
}

.habitat-wrap .box-info p,
.habitat-wrap .box-info li,
.app-habitat .box-info p,
.app-habitat .box-info li {
  font-size: 14px;
}

.habitat-wrap .box-info-compress .list-check li + li,
.app-habitat .box-info-compress .list-check li + li {
  margin-top: 0;
}

.habitat-wrap .box-sucess,
.app-habitat .box-sucess {
  display: table;
  width: 100%;
}

.habitat-wrap .box-sucess i,
.habitat-wrap .box-sucess .inner-success,
.app-habitat .box-sucess i,
.app-habitat .box-sucess .inner-success {
  vertical-align: top;
  display: table-cell;
}

.habitat-wrap .box-sucess .middle,
.app-habitat .box-sucess .middle {
  vertical-align: middle;
}

.habitat-wrap .box-sucess .middle .h3,
.app-habitat .box-sucess .middle .h3 {
  margin-bottom: 0;
}

.habitat-wrap .box-sucess .icon-xl,
.app-habitat .box-sucess .icon-xl {
  width: 70px;
  top: 3px;
}

.habitat-wrap .box-sucess .icon-check-circle,
.app-habitat .box-sucess .icon-check-circle {
  color: #5CAE3B;
}

.habitat-wrap .box-sucess .h3,
.app-habitat .box-sucess .h3 {
  font-family: "robotomediumHabitat";
  margin-bottom: 10px;
}

.habitat-wrap .box-error,
.app-habitat .box-error {
  display: table;
  width: 100%;
}

.habitat-wrap .box-error i,
.habitat-wrap .box-error .inner-error,
.app-habitat .box-error i,
.app-habitat .box-error .inner-error {
  vertical-align: top;
  display: table-cell;
}

.habitat-wrap .box-error .icon-xl,
.app-habitat .box-error .icon-xl {
  width: 70px;
  top: 3px;
}

.habitat-wrap .box-error .icon-warning,
.app-habitat .box-error .icon-warning {
  color: #B4123B;
}

.habitat-wrap .box-error .h3,
.app-habitat .box-error .h3 {
  font-family: "robotomediumHabitat";
  margin-bottom: 10px;
}

.habitat-wrap .wrap-horarios p,
.app-habitat .wrap-horarios p {
  margin-top: 0;
}

.habitat-wrap .box-text .row,
.app-habitat .box-text .row {
  display: table;
  width: 100%;
}

.habitat-wrap .box-text h3,
.app-habitat .box-text h3 {
  font-family: "robotomediumHabitat";
}

.habitat-wrap .box-text .h5,
.app-habitat .box-text .h5 {
  margin-bottom: 10px;
  font-family: "robotoregularHabitat";
}

.habitat-wrap .box-text .center-element,
.app-habitat .box-text .center-element {
  margin-top: 30px;
}

@media (max-width: 767px) {
  .habitat-wrap .box-text .row,
  .app-habitat .box-text .row {
    margin: 0;
  }
  .habitat-wrap .box-text [class*="col-"],
  .app-habitat .box-text [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
  }
}

.habitat-wrap .box-bg,
.app-habitat .box-bg {
  margin-bottom: 0;
  background: #F9F8F6;
}

.habitat-wrap .inner-box-bg,
.app-habitat .inner-box-bg {
  padding: 10px 20px;
  display: table;
  width: 100%;
  background-color: #EAEAEA;
}

.habitat-wrap .box-white,
.app-habitat .box-white {
  padding: 20px 40px;
  display: table;
  width: 100%;
  background-color: white;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
}

.habitat-wrap .box-white .head-box,
.app-habitat .box-white .head-box {
  padding-bottom: 20px;
}

.habitat-wrap .head-box .rut-consultado,
.app-habitat .head-box .rut-consultado {
  font-family: "robotoregularHabitat";
  font-size: 16px;
}

.habitat-wrap .head-box .rut-consultado strong,
.app-habitat .head-box .rut-consultado strong {
  font-size: 18px;
}

.habitat-wrap .white-box .head-box,
.app-habitat .white-box .head-box {
  padding-bottom: 20px;
  /*p {
        font-family: $font-regular;
        font-size: $font-size-base;
      }*/
}

.habitat-wrap .white-box .head-box h1, .habitat-wrap .white-box .head-box h2, .habitat-wrap .white-box .head-box h3, .habitat-wrap .white-box .head-box h4, .habitat-wrap .white-box .head-box h5, .habitat-wrap .white-box .head-box h6,
.app-habitat .white-box .head-box h1,
.app-habitat .white-box .head-box h2,
.app-habitat .white-box .head-box h3,
.app-habitat .white-box .head-box h4,
.app-habitat .white-box .head-box h5,
.app-habitat .white-box .head-box h6 {
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
  .habitat-wrap .status i,
  .app-habitat .status i {
    width: 30px;
    margin: auto;
    text-align: left;
  }
  .habitat-wrap .status s,
  .habitat-wrap .status span,
  .app-habitat .status s,
  .app-habitat .status span {
    display: table-cell;
    vertical-align: middle;
  }
  .habitat-wrap .status span,
  .app-habitat .status span {
    min-width: 70px;
  }
}

.habitat-wrap .text-icons i,
.app-habitat .text-icons i {
  padding-right: 5px;
}

.habitat-wrap .text-icons span,
.app-habitat .text-icons span {
  position: relative;
}

.habitat-wrap .text-icons i,
.habitat-wrap .text-icons span,
.app-habitat .text-icons i,
.app-habitat .text-icons span {
  display: table-cell;
  vertical-align: middle;
}

.habitat-wrap .text-icons .icon-pdf + span,
.app-habitat .text-icons .icon-pdf + span {
  top: 2px;
}

.habitat-wrap a.text-icons:hover span,
.app-habitat a.text-icons:hover span {
  text-decoration: underline;
}

.habitat-wrap .notes,
.app-habitat .notes {
  clear: both;
  padding-top: 10px;
  font-family: "robotolightHabitat";
}

.habitat-wrap .notes p,
.app-habitat .notes p {
  font-size: 12px;
}

.habitat-wrap .notes.error p,
.app-habitat .notes.error p {
  color: #B4123B;
}

.habitat-wrap .notes .text-small,
.app-habitat .notes .text-small {
  font-size: 12px !important;
}

.habitat-wrap .wrap-row-list .list-check li + li,
.app-habitat .wrap-row-list .list-check li + li {
  margin-top: 0;
}

.habitat-wrap .list-check i,
.habitat-wrap .list-check .text-list,
.app-habitat .list-check i,
.app-habitat .list-check .text-list {
  display: table-cell;
  vertical-align: top;
  line-height: inherit;
}

.habitat-wrap .list-check i,
.app-habitat .list-check i {
  width: 25px;
  font-size: 16px;
  top: 3px;
  color: #6BA3B7;
}

.habitat-wrap .list-check .text-list,
.app-habitat .list-check .text-list {
  /*max-width: 85%;*/
  line-height: inherit;
  color: #4C4C4A;
}

.habitat-wrap .list-check li + li,
.app-habitat .list-check li + li {
  margin-top: 10px;
}

.habitat-wrap .list-check a:hover .text-list,
.app-habitat .list-check a:hover .text-list {
  color: #0085B2;
  text-decoration: underline;
}

.habitat-wrap .list-links a .text-list,
.app-habitat .list-links a .text-list {
  color: #0085B2;
}

.habitat-wrap .list-links a:hover .text-list,
.app-habitat .list-links a:hover .text-list {
  text-decoration: underline;
}

.habitat-wrap .list-inline li,
.app-habitat .list-inline li {
  display: inline-block;
}

.habitat-wrap .list-inline li + li,
.app-habitat .list-inline li + li {
  padding-left: 20px;
}

.habitat-wrap .list-inline .block,
.app-habitat .list-inline .block {
  display: block;
}

@media (min-width: 768px) {
  .habitat-wrap .list-fondos,
  .app-habitat .list-fondos {
    display: table;
    width: 100%;
  }
  .habitat-wrap .list-fondos li,
  .app-habitat .list-fondos li {
    text-align: center;
    display: table-cell;
  }
  .habitat-wrap .list-fondos .text,
  .app-habitat .list-fondos .text {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .habitat-wrap .list-fondos .text,
  .app-habitat .list-fondos .text {
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  .habitat-wrap [class*="col-sm"].center-col,
  .app-habitat [class*="col-sm"].center-col {
    display: table;
    margin: auto;
    float: none;
  }
}

@media (min-width: 992px) {
  .habitat-wrap [class*="col-md"].center-col,
  .app-habitat [class*="col-md"].center-col {
    display: table;
    margin: auto;
    float: none;
  }
}

.habitat-wrap .max-container.reset-bottom,
.habitat-wrap .min-container.reset-bottom,
.habitat-wrap .xs-container.reset-bottom,
.app-habitat .max-container.reset-bottom,
.app-habitat .min-container.reset-bottom,
.app-habitat .xs-container.reset-bottom {
  padding-bottom: 0;
}

.habitat-wrap .max-container .breadcrumbs,
.habitat-wrap .min-container .breadcrumbs,
.habitat-wrap .xs-container .breadcrumbs,
.app-habitat .max-container .breadcrumbs,
.app-habitat .min-container .breadcrumbs,
.app-habitat .xs-container .breadcrumbs {
  width: 100%;
}

.habitat-wrap .max-container,
.app-habitat .max-container {
  width: 1040px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  /*padding-top: $separar * 2;*/
  padding-bottom: 30px;
}

@media only screen and (max-width: 1040px) {
  .habitat-wrap .max-container .head-descent,
  .app-habitat .max-container .head-descent {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.habitat-wrap .min-container,
.app-habitat .min-container {
  width: 880px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  /*padding-top: $separar * 2;*/
  padding-bottom: 30px;
}

@media only screen and (max-width: 930px) {
  .habitat-wrap .min-container .head-descent,
  .app-habitat .min-container .head-descent {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.habitat-wrap .xs-container,
.app-habitat .xs-container {
  width: 740px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  /*padding-top: $separar * 2;*/
  padding-bottom: 30px;
}

@media only screen and (max-width: 660px) {
  .habitat-wrap .xs-container .head-descent,
  .app-habitat .xs-container .head-descent {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.habitat-wrap .box-servicios img,
.app-habitat .box-servicios img {
  display: none;
}

.habitat-wrap .box-servicios a,
.app-habitat .box-servicios a {
  display: table;
  width: 100%;
  height: 120px;
  background-position: 0 0;
  background-size: cover;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.habitat-wrap .box-servicios a .h5,
.app-habitat .box-servicios a .h5 {
  display: table-cell;
  color: white;
  vertical-align: middle;
  position: relative;
  z-index: 10;
}

.habitat-wrap .box-servicios a:after,
.app-habitat .box-servicios a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  transition: .2s height;
  background-color: rgba(0, 0, 0, 0.4);
}

.habitat-wrap .box-servicios a:hover:after,
.app-habitat .box-servicios a:hover:after {
  height: 100%;
}

.habitat-wrap .step-wrap,
.app-habitat .step-wrap {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #DDD;
}

.habitat-wrap .step-wrap ul,
.app-habitat .step-wrap ul {
  display: table;
  width: auto;
  text-align: center;
}

.habitat-wrap .step-wrap li,
.app-habitat .step-wrap li {
  display: table-cell;
  width: 2%;
  position: relative;
}

.habitat-wrap .step-wrap li .linea,
.app-habitat .step-wrap li .linea {
  content: '';
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  top: 20px;
  left: 0;
  background-color: #ddd;
}

.habitat-wrap .step-wrap li.current .step-number,
.app-habitat .step-wrap li.current .step-number {
  color: white;
  border-color: #6BA3B7;
  background-color: #6BA3B7;
}

.habitat-wrap .step-wrap li.checked .step-number,
.app-habitat .step-wrap li.checked .step-number {
  color: transparent;
  background-color: white;
  border-color: #6BA3B7;
}

.habitat-wrap .step-wrap li.checked .step-number:before,
.app-habitat .step-wrap li.checked .step-number:before {
  color: #6BA3B7;
  font-size: 18px;
  top: 2px;
  left: 11px;
}

.habitat-wrap .step-wrap li.checked .linea,
.app-habitat .step-wrap li.checked .linea {
  background-color: #6BA3B7;
}

.habitat-wrap .step-wrap li:first-child .linea,
.app-habitat .step-wrap li:first-child .linea {
  width: 50%;
  left: auto;
  right: 0;
}

.habitat-wrap .step-wrap li:last-child .linea,
.app-habitat .step-wrap li:last-child .linea {
  width: 50%;
}

.habitat-wrap .step-wrap li .step-number,
.app-habitat .step-wrap li .step-number {
  width: 43px;
  height: 43px;
  line-height: 43px;
  display: inline-block;
  border-radius: 50%;
  color: #D8D8D8;
  border: 2px solid #ddd;
  position: relative;
  z-index: 10;
  text-align: center;
  background-color: white;
}

.habitat-wrap .step-wrap li .step-text,
.app-habitat .step-wrap li .step-text {
  display: block;
  color: #4C4C4A;
  font-size: 14px;
  padding-top: 10px;
  font-family: "robotolightHabitat";
}

.habitat-wrap .border-bottom,
.app-habitat .border-bottom {
  padding-bottom: 20px;
  border-bottom: 1px solid #DDD;
}

.habitat-wrap .head-form .title,
.habitat-wrap .head-form .subtitle,
.app-habitat .head-form .title,
.app-habitat .head-form .subtitle {
  margin-bottom: 0;
}

.habitat-wrap .head-form .title span,
.habitat-wrap .head-form .subtitle span,
.app-habitat .head-form .title span,
.app-habitat .head-form .subtitle span {
  color: #B4123B;
  font-size: 14px !important;
  padding-left: 20px;
  font-family: "robotoregularHabitat";
}

.habitat-wrap .head-form .title .sub__content,
.habitat-wrap .head-form .subtitle .sub__content,
.app-habitat .head-form .title .sub__content,
.app-habitat .head-form .subtitle .sub__content {
  padding-left: 0;
}

.habitat-wrap .head-form .title .sub__content span,
.habitat-wrap .head-form .subtitle .sub__content span,
.app-habitat .head-form .title .sub__content span,
.app-habitat .head-form .subtitle .sub__content span {
  padding-left: 0;
}

.habitat-wrap .head-form .title,
.app-habitat .head-form .title {
  font-family: "robotomediumHabitat";
}

.habitat-wrap .head-form .subtitle,
.app-habitat .head-form .subtitle {
  font-size: 18px;
}

.habitat-wrap .head-form.head-border,
.app-habitat .head-form.head-border {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #d8d8d8;
}

@media (max-width: 600px) {
  .habitat-wrap .head-form .title:not(.full) span,
  .habitat-wrap .head-form .subtitle:not(.full) span,
  .app-habitat .head-form .title:not(.full) span,
  .app-habitat .head-form .subtitle:not(.full) span {
    display: block;
    width: 100%;
    padding-left: 0;
  }
}

.habitat-wrap .include-descent .title,
.app-habitat .include-descent .title {
  margin-bottom: 0;
}

.habitat-wrap .tooltips-col,
.app-habitat .tooltips-col {
  top: 10px;
}

.habitat-wrap .error-wrap,
.app-habitat .error-wrap {
  background-color: white;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
}

.habitat-wrap .error-wrap .error-header,
.app-habitat .error-wrap .error-header {
  text-align: center;
  padding: 20px;
  background-color: #C53F61;
}

.habitat-wrap .error-wrap .error-header h3,
.app-habitat .error-wrap .error-header h3 {
  margin: 0;
  color: white;
}

.habitat-wrap .error-wrap .error-body,
.app-habitat .error-wrap .error-body {
  padding: 30px;
  font-size: 14px;
  /*.btn {
        margin-right: $separar;
      }*/
}

.habitat-wrap .error-wrap .hight-error,
.app-habitat .error-wrap .hight-error {
  border-top: 1px solid #DDD;
  padding-top: 20px;
  color: #0085B2;
}

@media only screen and (max-width: 600px) {
  .habitat-wrap .error-wrap .btn,
  .app-habitat .error-wrap .btn {
    margin-top: 20px;
  }
}

.habitat-wrap .wrap-valor-service,
.app-habitat .wrap-valor-service {
  border: 1px solid #DDD;
  background-color: #d8d8d8;
}

.habitat-wrap .wrap-valor-service .container,
.app-habitat .wrap-valor-service .container {
  width: 100%;
}

.habitat-wrap .wrap-valor-service .box,
.app-habitat .wrap-valor-service .box {
  padding: 0;
  margin: 0;
}

.habitat-wrap .wrap-valor-service .box li,
.app-habitat .wrap-valor-service .box li {
  width: 18%;
}

.habitat-wrap .wrap-valor-service .carousel-cuota i,
.app-habitat .wrap-valor-service .carousel-cuota i {
  font-family: 'icon' !important;
}

.habitat-wrap .fondos-box .container,
.app-habitat .fondos-box .container {
  width: 100%;
}

.habitat-wrap .check-list li,
.app-habitat .check-list li {
  font-family: "robotolightHabitat";
}

.habitat-wrap .codigo-int .text,
.app-habitat .codigo-int .text {
  font-size: 12px;
  max-width: 80%;
  top: -3px;
  left: 5px;
}

.habitat-wrap .codigo-int .cs-checkbox-wrap,
.habitat-wrap .codigo-int .text,
.app-habitat .codigo-int .cs-checkbox-wrap,
.app-habitat .codigo-int .text {
  float: left;
}

.habitat-wrap a,
.habitat-wrap .text-links, .habitat-wrap .text-links-small,
.app-habitat a,
.app-habitat .text-links,
.app-habitat .text-links-small {
  font-size: initial;
}

.habitat-wrap a.underline:after,
.habitat-wrap .text-links.underline:after, .habitat-wrap .underline.text-links-small:after,
.app-habitat a.underline:after,
.app-habitat .text-links.underline:after,
.app-habitat .underline.text-links-small:after {
  width: 100%;
}

.habitat-wrap .text-links, .habitat-wrap .text-links-small,
.app-habitat .text-links,
.app-habitat .text-links-small {
  overflow: hidden;
  position: relative;
  color: #0085B2;
}

.habitat-wrap .text-links:after, .habitat-wrap .text-links-small:after,
.app-habitat .text-links:after,
.app-habitat .text-links-small:after {
  content: '';
  width: 0;
  height: 1px;
  display: block;
  transition: .5s;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: currentColor;
}

.habitat-wrap .text-links:hover:after, .habitat-wrap .text-links-small:hover:after,
.app-habitat .text-links:hover:after,
.app-habitat .text-links-small:hover:after {
  width: 100%;
}

.habitat-wrap .text-links-small,
.app-habitat .text-links-small {
  font-size: 14px !important;
}

.habitat-wrap .text-links-small.underline:after,
.app-habitat .text-links-small.underline:after {
  width: 100%;
}

.habitat-wrap .text-links-arrow i,
.app-habitat .text-links-arrow i {
  font-size: 10px;
}

.habitat-wrap .links-icons,
.app-habitat .links-icons {
  line-height: 100%;
}

.habitat-wrap .links-icons i,
.app-habitat .links-icons i {
  font-size: 10px;
  top: 2px;
  line-height: 100%;
}

.habitat-wrap .links-icons i,
.habitat-wrap .links-icons span,
.app-habitat .links-icons i,
.app-habitat .links-icons span {
  display: table-cell;
  vertical-align: middle !important;
}

.habitat-wrap .links-icons i + span,
.app-habitat .links-icons i + span {
  padding-left: 5px !important;
}

.habitat-wrap .links-icons span + i,
.app-habitat .links-icons span + i {
  padding-left: 5px !important;
}

.habitat-wrap .links-icons:hover:not(.text-links) span,
.app-habitat .links-icons:hover:not(.text-links) span {
  text-decoration: underline;
}

.habitat-wrap .btn-drop,
.app-habitat .btn-drop {
  position: relative;
  display: block;
  color: #4C4C4A;
  font-size: 15px;
  font-family: "robotolightHabitat";
  border: 1px solid #CCC;
  background-color: white;
  padding: 0 0 0 10px !important;
  width: 100%;
  text-align: left;
  line-height: 36px;
}

.habitat-wrap .btn-drop i,
.app-habitat .btn-drop i {
  width: 20px;
  border: 0;
  position: absolute !important;
  top: 12px;
  right: 0;
  font-size: 8px;
  color: #0085B2;
}

.habitat-wrap .btn-drop[aria-expanded*="true"] i:before,
.app-habitat .btn-drop[aria-expanded*="true"] i:before {
  content: "\e93a";
}

.habitat-wrap .group-btns,
.app-habitat .group-btns {
  display: table;
  text-align: center;
  width: 100%;
  border: 1px solid #6BA3B7;
  border-collapse: collapse;
}

.habitat-wrap .group-btns li,
.app-habitat .group-btns li {
  display: table-cell;
  vertical-align: middle;
  width: 2%;
  line-height: 180%;
}

.habitat-wrap .group-btns li a,
.app-habitat .group-btns li a {
  display: block;
  padding: 4px 10px;
  font-size: 14px;
  color: #6BA3B7;
  transition: .3s background;
}

.habitat-wrap .group-btns li.active,
.app-habitat .group-btns li.active {
  background-color: #6BA3B7;
}

.habitat-wrap .group-btns li.active a,
.app-habitat .group-btns li.active a {
  color: white;
}

.habitat-wrap .group-btns li + li,
.app-habitat .group-btns li + li {
  border-left: 1px solid #6BA3B7;
}

.habitat-wrap .grafico-cuota,
.app-habitat .grafico-cuota {
  text-align: center;
  border: 1px solid #979797;
}

.habitat-wrap [class*="bg-fondo"],
.app-habitat [class*="bg-fondo"] {
  width: 20px;
  height: 20px;
  line-height: 20px;
  color: white;
  text-align: center;
  display: inline-block;
  position: relative;
  top: 1px;
  margin-right: 10px;
}

.habitat-wrap [class*="bg-fondo"].fondo-m,
.app-habitat [class*="bg-fondo"].fondo-m {
  width: 35px;
  height: 35px;
  line-height: 35px;
}

.habitat-wrap .bg-fondo-a,
.app-habitat .bg-fondo-a {
  background-color: #B52A29;
}

.habitat-wrap .bg-fondo-b,
.app-habitat .bg-fondo-b {
  background-color: #EB6915;
}

.habitat-wrap .bg-fondo-c,
.app-habitat .bg-fondo-c {
  background-color: #5CAE3B;
}

.habitat-wrap .bg-fondo-d,
.app-habitat .bg-fondo-d {
  background-color: #2E8ECD;
}

.habitat-wrap .bg-fondo-e,
.app-habitat .bg-fondo-e {
  background-color: #2660AA;
}

@media (min-width: 992px) {
  .habitat-wrap .fondos-box [class*="col-md"]:first-child,
  .app-habitat .fondos-box [class*="col-md"]:first-child {
    margin-left: 8.33333333%;
  }
}

.habitat-wrap .wrap-faq-search,
.app-habitat .wrap-faq-search {
  padding: 20px;
  margin-top: 40px;
}

.habitat-wrap .wrap-faq-search .list-check a,
.app-habitat .wrap-faq-search .list-check a {
  font-size: 14px;
}

.habitat-wrap .faq-search,
.app-habitat .faq-search {
  overflow: hidden;
}

.habitat-wrap .faq-search .input__field,
.app-habitat .faq-search .input__field {
  padding-right: 40px;
}

.habitat-wrap .wrap-faq,
.app-habitat .wrap-faq {
  padding: 20px;
}

.habitat-wrap .wrap-faq .list-check a,
.app-habitat .wrap-faq .list-check a {
  font-size: 14px;
}

.habitat-wrap .wrap-faq .head-faq,
.app-habitat .wrap-faq .head-faq {
  padding-bottom: 20px;
}

.habitat-wrap .wrap-faq .head-faq i,
.app-habitat .wrap-faq .head-faq i {
  color: #B4123B;
  width: 25px;
}

.habitat-wrap .wrap-faq .head-faq i,
.habitat-wrap .wrap-faq .head-faq h4,
.app-habitat .wrap-faq .head-faq i,
.app-habitat .wrap-faq .head-faq h4 {
  display: table-cell;
}

.habitat-wrap .wrapper-faq,
.app-habitat .wrapper-faq {
  overflow: hidden;
}

@media (min-width: 768px) {
  .habitat-wrap .wrapper-faq,
  .app-habitat .wrapper-faq {
    padding-top: 80px;
  }
}

@media (max-width: 767px) {
  .habitat-wrap .wrapper-faq,
  .app-habitat .wrapper-faq {
    padding-top: 40px;
  }
}

.habitat-wrap .wrapper-faq .nav-nivel,
.app-habitat .wrapper-faq .nav-nivel {
  background-color: #D5E0E3;
}

.habitat-wrap .wrapper-faq .nav-nivel > ul > li:not(:first-child),
.app-habitat .wrapper-faq .nav-nivel > ul > li:not(:first-child) {
  border-top: 1px solid #BFC9CC;
}

.habitat-wrap .wrapper-faq .nav-nivel .current,
.app-habitat .wrapper-faq .nav-nivel .current {
  background-color: #CAD5D7 !important;
}

.habitat-wrap .wrapper-faq .nav-nivel .toggle-menu,
.app-habitat .wrapper-faq .nav-nivel .toggle-menu {
  color: #0085B2;
  position: relative;
  overflow: hidden;
 /* font-family: "robotomediumHabitat";*/
}

.habitat-wrap .wrapper-faq .nav-nivel .toggle-menu:before,
.app-habitat .wrapper-faq .nav-nivel .toggle-menu:before {
  content: '';
  width: 9px;
  height: 18px;
  display: block;
  position: absolute;
  top: 15px;
  left: 0;
  -webkit-transform: translate3d(-100px, 0, 0);
          transform: translate3d(-100px, 0, 0);
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  background-color: #B4123B;
}

.habitat-wrap .wrapper-faq .nav-nivel .toggle-menu:after,
.app-habitat .wrapper-faq .nav-nivel .toggle-menu:after {
  content: "\e939";
  font-size: 9px;
  color: #4C4C4A;
  position: absolute;
  top: 12px;
  right: 10px;
  float: right;
}

.habitat-wrap .wrapper-faq .nav-nivel .toggle-menu.is-active:before,
.app-habitat .wrapper-faq .nav-nivel .toggle-menu.is-active:before {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.habitat-wrap .wrapper-faq .nav-nivel .toggle-menu.is-active:after,
.app-habitat .wrapper-faq .nav-nivel .toggle-menu.is-active:after {
  content: "\e93a";
}

.habitat-wrap .wrapper-faq .nav-nivel ul a,
.app-habitat .wrapper-faq .nav-nivel ul a {
  padding: 10px 20px;
  display: block;
  color: #666;
}

.habitat-wrap .wrapper-faq .nav-nivel .submenu li:hover,
.app-habitat .wrapper-faq .nav-nivel .submenu li:hover {
  background-color: #C1CBCD;
}

.habitat-wrap .wrapper-faq li ul,
.app-habitat .wrapper-faq li ul {
  display: none;
}

.habitat-wrap .details-faq .panel-title a[aria-expanded*="true"] .icon-arrow-bottom:before,
.app-habitat .details-faq .panel-title a[aria-expanded*="true"] .icon-arrow-bottom:before {
  content: "" !important;
}

.habitat-wrap .details-faq h3,
.app-habitat .details-faq h3 {
  font-family: "robotoboldHabitat";
}

.habitat-wrap .icon-arrow-bottom:before,
.app-habitat .icon-arrow-bottom:before {
  content: "" !important;
}

.habitat-wrap .aside-nav-faq .opcion-filter.active .icon-arrow-bottom:before,
.app-habitat .aside-nav-faq .opcion-filter.active .icon-arrow-bottom:before {
  content: "" !important;
}

@media (max-width: 767px) {
  .habitat-wrap .details-faq h3,
  .app-habitat .details-faq h3 {
    padding: 0 20px;
  }
  .habitat-wrap .faq-search,
  .app-habitat .faq-search {
    padding: 0 20px;
  }
  .habitat-wrap .opcion-filter,
  .app-habitat .opcion-filter {
    display: block !important;
  }
  .habitat-wrap .nav-nivel,
  .app-habitat .nav-nivel {
    display: none;
  }
  .habitat-wrap .aside-nav-faq,
  .app-habitat .aside-nav-faq {
    padding: 0 20px;
  }
}

@media (min-width: 768px) {
  .habitat-wrap .nav-nivel,
  .app-habitat .nav-nivel {
    display: block !important;
  }
}

.habitat-wrap .color-error,
.app-habitat .color-error {
  color: #B4123B !important;
}

.habitat-wrap .delete-form,
.app-habitat .delete-form {
  color: #B4123B !important;
}

.habitat-wrap .consideraciones .panel-title a,
.app-habitat .consideraciones .panel-title a {
  padding-left: 40px;
}

.habitat-wrap .consideraciones .icon-arrow-bottom,
.app-habitat .consideraciones .icon-arrow-bottom {
  right: 40px !important;
}

.habitat-wrap .consideraciones .check-list,
.app-habitat .consideraciones .check-list {
  padding-left: 40px;
}

.habitat-wrap .wizard,
.app-habitat .wizard {
  display: table;
  width: 100%;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #DDD;
}

.habitat-wrap .wizard.step-two .wizard-step.active .progress-bar,
.app-habitat .wizard.step-two .wizard-step.active .progress-bar {
  width: 100%;
}

.habitat-wrap .wizard .wizard-step,
.app-habitat .wizard .wizard-step {
  display: table-cell;
  position: relative;
  width: 2%;
}

.habitat-wrap .wizard .wizard-step:first-child .wizard-progress,
.app-habitat .wizard .wizard-step:first-child .wizard-progress {
  left: 50%;
  width: 50%;
}

.habitat-wrap .wizard .wizard-step:first-child.active .progress-bar,
.app-habitat .wizard .wizard-step:first-child.active .progress-bar {
  width: 0;
}

.habitat-wrap .wizard .wizard-step:last-child .wizard-progress,
.app-habitat .wizard .wizard-step:last-child .wizard-progress {
  width: 50%;
}

.habitat-wrap .wizard .wizard-step:last-child.active .progress-bar,
.app-habitat .wizard .wizard-step:last-child.active .progress-bar {
  width: 100%;
}

.habitat-wrap .wizard .wizard-step.complete .progress-bar,
.app-habitat .wizard .wizard-step.complete .progress-bar {
  width: 100%;
}

.habitat-wrap .wizard .wizard-step.complete .wizard-dot,
.app-habitat .wizard .wizard-step.complete .wizard-dot {
  color: transparent;
  border-color: #6BA3B7;
}

.habitat-wrap .wizard .wizard-step.complete .wizard-dot:before,
.app-habitat .wizard .wizard-step.complete .wizard-dot:before {
  color: #6BA3B7;
  content: "\e90a";
  left: 5px;
  top: 2px;
}

.habitat-wrap .wizard .wizard-step.active .progress-bar,
.app-habitat .wizard .wizard-step.active .progress-bar {
  width: 50%;
}

.habitat-wrap .wizard .wizard-step.active .wizard-dot,
.app-habitat .wizard .wizard-step.active .wizard-dot {
  color: white;
  background-color: #6BA3B7;
  border-color: transparent;
}

.habitat-wrap .wizard .wizard-progress,
.app-habitat .wizard .wizard-progress {
  position: relative;
  border-radius: 0px;
  height: 3px;
  box-shadow: none;
  margin: 20px 0;
  overflow: hidden;
  background-color: #D8D8D8;
}

.habitat-wrap .wizard .progress-bar,
.app-habitat .wizard .progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #6BA3B7;
  transition: width .3s ease;
}

.habitat-wrap .wizard .wizard-text,
.app-habitat .wizard .wizard-text {
  text-align: center;
  padding-top: 15px;
}

.habitat-wrap .wizard .wizard-dot,
.app-habitat .wizard .wizard-dot {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: calc(50% - 22px);
  color: #D8D8D8;
  z-index: 10;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  display: inline-block;
  background-color: white;
  border: 2px solid #D8D8D8;
}

.habitat-wrap .codigo-int .text,
.app-habitat .codigo-int .text {
  position: relative;
  top: 2px;
}

.habitat-wrap .codigo-int .codigo,
.app-habitat .codigo-int .codigo {
  position: relative;
  top: 10px;
}

.habitat-wrap .input-small,
.app-habitat .input-small {
  line-height: 25px;
  height: 25px !important;
  font-size: 12px !important;
}

.habitat-wrap .datos--simulacion th,
.app-habitat .datos--simulacion th {
  font-family: "robotomediumHabitat";
}

.habitat-wrap .datos--simulacion th,
.habitat-wrap .datos--simulacion td,
.app-habitat .datos--simulacion th,
.app-habitat .datos--simulacion td {
  padding-top: 10px;
  padding-bottom: 10px;
}

.habitat-wrap .datos--simulacion .beneficiarios th,
.habitat-wrap .datos--simulacion .beneficiarios td,
.app-habitat .datos--simulacion .beneficiarios th,
.app-habitat .datos--simulacion .beneficiarios td {
  vertical-align: top;
}

.habitat-wrap .datos--simulacion .beneficiarios p + p,
.app-habitat .datos--simulacion .beneficiarios p + p {
  margin-top: 5px;
}

.habitat-wrap .box-fondos,
.app-habitat .box-fondos {
  overflow: hidden;
  display: table;
  width: 100%;
  padding: 20px;
  background-color: #E8EDEE;
}

.habitat-wrap .box-fondos .head-fondo,
.app-habitat .box-fondos .head-fondo {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #DDD;
}

.habitat-wrap .box-fondos .head-fondo h5,
.app-habitat .box-fondos .head-fondo h5 {
  margin-bottom: 0;
}

.habitat-wrap .box-fondos .body-fondo h6,
.app-habitat .box-fondos .body-fondo h6 {
  margin-bottom: 10px;
}

.habitat-wrap .box-fondos .wrap-fondos,
.app-habitat .box-fondos .wrap-fondos {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.habitat-wrap .box-fondos .fonos-inline,
.app-habitat .box-fondos .fonos-inline {
  text-align: center;
}

.habitat-wrap .box-fondos .fonos-inline [class*="bg-fondo"],
.app-habitat .box-fondos .fonos-inline [class*="bg-fondo"] {
  margin-right: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  margin-bottom: 10px;
}

.habitat-wrap .box-fondos .fonos-inline .cs-radio-wrap,
.app-habitat .box-fondos .fonos-inline .cs-radio-wrap {
  margin: 0 auto;
}

.habitat-wrap .box-fondos + .box-fondos,
.app-habitat .box-fondos + .box-fondos {
  margin-top: 10px;
}

@media (min-width: 992px) {
  .habitat-wrap .full-fondos.is-active,
  .app-habitat .full-fondos.is-active {
    padding: 0 10px;
    /*background-color: #E8EDEE;*/
  }
  .habitat-wrap .full-fondos.is-active .col-md-6,
  .app-habitat .full-fondos.is-active .col-md-6 {
    padding: 0;
  }
  .habitat-wrap .full-fondos.is-active .box-fondos,
  .app-habitat .full-fondos.is-active .box-fondos {
    position: relative;
  }
  .habitat-wrap .full-fondos.is-active .box-fondos:before,
  .app-habitat .full-fondos.is-active .box-fondos:before {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #DDD;
    position: absolute;
    top: 51px;
    left: 0;
  }
  .habitat-wrap .full-fondos.is-active .box-fondos .head-fondo,
  .app-habitat .full-fondos.is-active .box-fondos .head-fondo {
    border-bottom: 0;
  }
  .habitat-wrap .full-fondos.is-active .first .box-fondos,
  .app-habitat .full-fondos.is-active .first .box-fondos {
    padding-right: 30px;
  }
  .habitat-wrap .full-fondos.is-active .add-fondos .head-fondo h5,
  .app-habitat .full-fondos.is-active .add-fondos .head-fondo h5 {
    opacity: 0;
  }
  .habitat-wrap .full-fondos.is-active .add-fondos .box-fondos,
  .app-habitat .full-fondos.is-active .add-fondos .box-fondos {
    padding-left: 0;
  }
  .habitat-wrap .full-fondos.is-active .add-fondos .box-fondos .row,
  .habitat-wrap .full-fondos.is-active .add-fondos .box-fondos h6,
  .app-habitat .full-fondos.is-active .add-fondos .box-fondos .row,
  .app-habitat .full-fondos.is-active .add-fondos .box-fondos h6 {
    padding-left: 20px;
  }
  .habitat-wrap .full-fondos-b.is-active,
  .app-habitat .full-fondos-b.is-active {
    padding: 0 0;
    background-color: transparent;
  }
  .habitat-wrap .full-fondos-b.is-active .box-fondos,
  .app-habitat .full-fondos-b.is-active .box-fondos {
    padding: 20px !important;
  }
  .habitat-wrap .full-fondos-b.is-active .box-fondos .head-fondo h5,
  .app-habitat .full-fondos-b.is-active .box-fondos .head-fondo h5 {
    opacity: 1 !important;
  }
  .habitat-wrap .full-fondos-b.is-active .box-fondos .row,
  .app-habitat .full-fondos-b.is-active .box-fondos .row {
    padding-left: 0 !important;
  }
  .habitat-wrap .full-fondos-b .add-fondos .links-icons,
  .app-habitat .full-fondos-b .add-fondos .links-icons {
    display: table;
    margin: auto;
    padding: 80px 0;
    text-align: center;
  }
  .habitat-wrap .full-fondos-b .add-fondos.remove,
  .app-habitat .full-fondos-b .add-fondos.remove {
    margin-top: 20px;
  }
}

@media (max-width: 991px) {
  .habitat-wrap .add-fondos .links-icons,
  .app-habitat .add-fondos .links-icons {
    margin-top: 20px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 30px 0;
    border: 1px solid #DDD;
  }
}

@media (max-width: 767px) {
  .habitat-wrap .add-pordentaje,
  .app-habitat .add-pordentaje {
    display: block;
    width: 100%;
  }
  .habitat-wrap .add-pordentaje input,
  .app-habitat .add-pordentaje input {
    display: block;
    width: 100%;
  }
}

.habitat-wrap [class*="color-fondo-"],
.app-habitat [class*="color-fondo-"] {
  font-family: "robotomediumHabitat";
}

.habitat-wrap .color-fondo-a,
.app-habitat .color-fondo-a {
  color: #B52A29;
}

.habitat-wrap .color-fondo-b,
.app-habitat .color-fondo-b {
  color: #EB6915;
}

.habitat-wrap .color-fondo-c,
.app-habitat .color-fondo-c {
  color: #5CAE3B;
}

.habitat-wrap .color-fondo-d,
.app-habitat .color-fondo-d {
  color: #2E8ECD;
}

.habitat-wrap .color-fondo-e,
.app-habitat .color-fondo-e {
  color: #2660AA;
}

.habitat-wrap .wrap-beneficiarios .head-bg,
.app-habitat .wrap-beneficiarios .head-bg {
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #DDD;
}

.habitat-wrap .wrap-beneficiarios .head-bg h4,
.app-habitat .wrap-beneficiarios .head-bg h4 {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .habitat-wrap .wrap-beneficiarios .box-bg .links-icons,
  .app-habitat .wrap-beneficiarios .box-bg .links-icons {
    margin-top: 20px;
    display: block;
  }
}

@media (min-width: 992px) {
  .habitat-wrap .conyuge .column:last-child,
  .app-habitat .conyuge .column:last-child {
    text-align: right;
  }
  .habitat-wrap .conyuge .column:last-child a,
  .app-habitat .conyuge .column:last-child a {
    position: relative;
    right: 20px;
  }
  .habitat-wrap .inner-box-bg .column:last-child,
  .app-habitat .inner-box-bg .column:last-child {
    text-align: right;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .habitat-wrap .inner-box-bg .inline-radio,
  .app-habitat .inner-box-bg .inline-radio {
    display: block;
    margin-right: 0;
  }
  .habitat-wrap .inner-box-bg .inline-radio + .inline-radio,
  .app-habitat .inner-box-bg .inline-radio + .inline-radio {
    margin-top: 10px;
  }
  .habitat-wrap .conyuge .column:last-child,
  .app-habitat .conyuge .column:last-child {
    text-align: right;
  }
  .habitat-wrap .conyuge .column:last-child a,
  .app-habitat .conyuge .column:last-child a {
    position: relative;
    right: 20px;
  }
  .habitat-wrap .inner-box-bg .column:last-child,
  .app-habitat .inner-box-bg .column:last-child {
    text-align: right;
  }
}

.habitat-wrap .box-basic,
.app-habitat .box-basic {
  display: table;
  width: 100%;
  overflow: hidden;
}

.habitat-wrap .simulador-apv [class*="texto-regimen-"],
.app-habitat .simulador-apv [class*="texto-regimen-"] {
  font-size: 20px;
  font-family: "robotomediumHabitat";
  text-align: center;
  padding-bottom: 10px;
}

.habitat-wrap .simulador-apv .texto-regimen-a,
.app-habitat .simulador-apv .texto-regimen-a {
  color: #B4123B;
}

.habitat-wrap .simulador-apv .texto-regimen-b,
.app-habitat .simulador-apv .texto-regimen-b {
  color: #002F56;
}

.habitat-wrap .simulador-apv [class*="circle-regimen-"],
.app-habitat .simulador-apv [class*="circle-regimen-"] {
  text-align: center;
  color: white;
  border-radius: 50%;
  font-family: "robotoboldHabitat";
  display: table;
  margin: auto;
}

@media (min-width: 501px) {
  .habitat-wrap .simulador-apv [class*="circle-regimen-"],
  .app-habitat .simulador-apv [class*="circle-regimen-"] {
    width: 130px;
    height: 130px;
    line-height: 125px;
    font-size: 80px;
  }
}

@media (max-width: 500px) {
  .habitat-wrap .simulador-apv [class*="circle-regimen-"],
  .app-habitat .simulador-apv [class*="circle-regimen-"] {
    width: 80px;
    height: 80px;
    line-height: 75px;
    font-size: 60px;
  }
}

.habitat-wrap .simulador-apv .circle-regimen-a,
.app-habitat .simulador-apv .circle-regimen-a {
  background-color: #B4123B;
}

.habitat-wrap .simulador-apv .circle-regimen-b,
.app-habitat .simulador-apv .circle-regimen-b {
  background-color: #002F56;
}

@media (max-width: 767px) {
  .habitat-wrap .simulador-apv .simple-table th,
  .habitat-wrap .simulador-apv .simple-table td,
  .app-habitat .simulador-apv .simple-table th,
  .app-habitat .simulador-apv .simple-table td {
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media (min-width: 992px) {
  .habitat-wrap .simulador-apv .bounceInLeft .head-regimen,
  .habitat-wrap .simulador-apv .bounceInRight .head-regimen,
  .app-habitat .simulador-apv .bounceInLeft .head-regimen,
  .app-habitat .simulador-apv .bounceInRight .head-regimen {
    min-height: 220px;
  }
}

@media (max-width: 767px) {
  .habitat-wrap .simulador-apv,
  .app-habitat .simulador-apv {
    overflow: hidden;
  }
  .habitat-wrap .simulador-apv .wrap-regimen-b,
  .app-habitat .simulador-apv .wrap-regimen-b {
    margin-top: 20px;
  }
}

.habitat-wrap .simulador-apv .panel-body,
.app-habitat .simulador-apv .panel-body {
  padding: 0;
}

.habitat-wrap .inline-regimen p,
.app-habitat .inline-regimen p {
  text-align: left;
  font-size: 14px;
}

.habitat-wrap .inline-regimen p + p,
.app-habitat .inline-regimen p + p {
  margin-top: 0;
}

.habitat-wrap .inline-regimen .inner.destacado,
.app-habitat .inline-regimen .inner.destacado {
  background-color: #D8D8D8;
}

@media (min-width: 601px) {
  .habitat-wrap .inline-regimen,
  .app-habitat .inline-regimen {
    display: table;
    width: 100%;
    /*display: flex;
        flex-flow: row wrap;
        justify-content: space-between;*/
  }
  .habitat-wrap .inline-regimen .inner,
  .app-habitat .inline-regimen .inner {
    display: table-cell;
    vertical-align: middle;
    width: 33.333%;
    padding: 20px;
    position: relative;
  }
  .habitat-wrap .inline-regimen .inner + .inner,
  .app-habitat .inline-regimen .inner + .inner {
    padding-left: 20px;
  }
  .habitat-wrap .inline-regimen .inner + .inner:before,
  .app-habitat .inline-regimen .inner + .inner:before {
    content: '';
    width: 1px;
    height: 60%;
    background-color: #ccc;
    position: absolute;
    top: 20%;
    left: 0;
  }
}

@media (max-width: 600px) {
  .habitat-wrap .inline-regimen .inner,
  .app-habitat .inline-regimen .inner {
    padding: 10px 20px;
  }
  .habitat-wrap .inline-regimen .inner + .inner,
  .app-habitat .inline-regimen .inner + .inner {
    margin-top: 20px;
  }
}

.habitat-wrap .acciones-simulador,
.app-habitat .acciones-simulador {
  padding: 10px;
  background-color: #F0F0F0;
}

.habitat-wrap .acciones-simulador .left span,
.app-habitat .acciones-simulador .left span {
  font-size: 14px;
}

.habitat-wrap .acciones-simulador .left i,
.app-habitat .acciones-simulador .left i {
  font-size: 12px;
}

.habitat-wrap .acciones-simulador .left a + a,
.app-habitat .acciones-simulador .left a + a {
  border-left: 1px solid #DDD;
  padding-left: 20px;
  margin-left: 20px;
}

.habitat-wrap .acciones-simulador .right,
.app-habitat .acciones-simulador .right {
  text-align: right;
  font-size: 12px;
}

.habitat-wrap .acciones-simulador .right p,
.app-habitat .acciones-simulador .right p {
  display: inline-block;
  margin-right: 10px;
  font-size: 14px;
}

.habitat-wrap .acciones-simulador .right a,
.app-habitat .acciones-simulador .right a {
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  font-size: 12px;
  display: inline-block;
  background-color: #F6F6F6;
}

.habitat-wrap .acciones-simulador .right a:hover,
.app-habitat .acciones-simulador .right a:hover {
  color: white;
  background-color: #002F56;
}

.habitat-wrap .acciones-simulador a,
.app-habitat .acciones-simulador a {
  color: #4C4C4A;
}

@media (max-width: 767px) {
  .habitat-wrap .acciones-simulador .left,
  .habitat-wrap .acciones-simulador .right,
  .app-habitat .acciones-simulador .left,
  .app-habitat .acciones-simulador .right {
    text-align: center;
  }
  .habitat-wrap .acciones-simulador .right,
  .app-habitat .acciones-simulador .right {
    padding-top: 20px;
  }
  .habitat-wrap .acciones-simulador .right a,
  .app-habitat .acciones-simulador .right a {
    width: 40px;
    height: 40px;
    font-size: 16px;
    line-height: 40px;
    margin-left: 20px;
  }
}

.habitat-wrap .container-perfil .auto-cent-buttons,
.app-habitat .container-perfil .auto-cent-buttons {
  padding-bottom: 0;
}

.habitat-wrap .wrap-progress,
.app-habitat .wrap-progress {
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #DDD;
}

.habitat-wrap .progress,
.app-habitat .progress {
  height: 20px;
  background: #BAC5C8;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.habitat-wrap .progress .inner-progress,
.app-habitat .progress .inner-progress {
  background: #6BA3B7;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: block;
  border-radius: 15px;
  -webkit-animation: move .4s linear;
          animation: move .4s linear;
  -webkit-animation-name: slideInLeft;
          animation-name: slideInLeft;
}

.habitat-wrap .progress .avance,
.app-habitat .progress .avance {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: white;
  text-align: center;
  z-index: 10;
}

.habitat-wrap .resultado-perfil p + p,
.app-habitat .resultado-perfil p + p {
  margin-top: 0;
}

.habitat-wrap .resultado-perfil h4,
.app-habitat .resultado-perfil h4 {
  margin-bottom: 0;
}

.habitat-wrap .resultado-perfil .sidebar,
.app-habitat .resultado-perfil .sidebar {
  float: right;
  width: 100%;
  color: white;
  text-align: center;
}

.habitat-wrap .resultado-perfil .sidebar a,
.habitat-wrap .resultado-perfil .sidebar p,
.app-habitat .resultado-perfil .sidebar a,
.app-habitat .resultado-perfil .sidebar p {
  color: white;
  font-size: 14px;
}

.habitat-wrap .resultado-perfil .sidebar .head,
.app-habitat .resultado-perfil .sidebar .head {
  padding: 10px;
}

.habitat-wrap .resultado-perfil .sidebar .head .h6,
.app-habitat .resultado-perfil .sidebar .head .h6 {
  margin-bottom: 0;
}

.habitat-wrap .resultado-perfil .sidebar ul li + li,
.app-habitat .resultado-perfil .sidebar ul li + li {
  border-top: 1px solid white;
}

.habitat-wrap .resultado-perfil .sidebar ul a,
.app-habitat .resultado-perfil .sidebar ul a {
  padding: 10px;
  display: block;
}

.habitat-wrap .resultado-perfil.perfil-a .sidebar .head,
.app-habitat .resultado-perfil.perfil-a .sidebar .head {
  background-color: #B52A29;
}

.habitat-wrap .resultado-perfil.perfil-a .sidebar ul,
.app-habitat .resultado-perfil.perfil-a .sidebar ul {
  background-color: rgba(181, 42, 41, 0.8);
}

.habitat-wrap .resultado-perfil.perfil-a .sidebar ul a:hover,
.app-habitat .resultado-perfil.perfil-a .sidebar ul a:hover {
  background-color: #B52A29;
}

.habitat-wrap .resultado-perfil.perfil-b .sidebar .head,
.app-habitat .resultado-perfil.perfil-b .sidebar .head {
  background-color: #EB6915;
}

.habitat-wrap .resultado-perfil.perfil-b .sidebar ul,
.app-habitat .resultado-perfil.perfil-b .sidebar ul {
  background-color: rgba(235, 105, 21, 0.8);
}

.habitat-wrap .resultado-perfil.perfil-b .sidebar ul a:hover,
.app-habitat .resultado-perfil.perfil-b .sidebar ul a:hover {
  background-color: #EB6915;
}

.habitat-wrap .resultado-perfil.perfil-c .sidebar .head,
.app-habitat .resultado-perfil.perfil-c .sidebar .head {
  background-color: #5CAE3B;
}

.habitat-wrap .resultado-perfil.perfil-c .sidebar ul,
.app-habitat .resultado-perfil.perfil-c .sidebar ul {
  background-color: rgba(92, 174, 59, 0.8);
}

.habitat-wrap .resultado-perfil.perfil-c .sidebar ul a:hover,
.app-habitat .resultado-perfil.perfil-c .sidebar ul a:hover {
  background-color: #5CAE3B;
}

.habitat-wrap .resultado-perfil.perfil-d .sidebar .head,
.app-habitat .resultado-perfil.perfil-d .sidebar .head {
  background-color: #2E8ECD;
}

.habitat-wrap .resultado-perfil.perfil-d .sidebar ul,
.app-habitat .resultado-perfil.perfil-d .sidebar ul {
  background-color: rgba(46, 142, 205, 0.8);
}

.habitat-wrap .resultado-perfil.perfil-d .sidebar ul a:hover,
.app-habitat .resultado-perfil.perfil-d .sidebar ul a:hover {
  background-color: #2E8ECD;
}

.habitat-wrap .resultado-perfil.perfil-e .sidebar,
.app-habitat .resultado-perfil.perfil-e .sidebar {
  background-color: #2660AA;
}

.habitat-wrap .resultado-perfil.perfil-e .sidebar ul,
.app-habitat .resultado-perfil.perfil-e .sidebar ul {
  background-color: rgba(38, 96, 170, 0.8);
}

.habitat-wrap .resultado-perfil.perfil-e .sidebar ul a:hover,
.app-habitat .resultado-perfil.perfil-e .sidebar ul a:hover {
  background-color: #2660AA;
}

.habitat-wrap .full-calendar .fc-toolbar h2,
.app-habitat .full-calendar .fc-toolbar h2 {
  font-size: 20px;
}

.habitat-wrap .full-calendar .fc-head,
.app-habitat .full-calendar .fc-head {
  background-color: #6BA3B7;
  border: 0 none;
}

.habitat-wrap .full-calendar .fc-head th,
.app-habitat .full-calendar .fc-head th {
  text-align: center;
  color: white;
  font-size: 14px;
  border: 0 none;
  padding: 10px 7px;
}

.habitat-wrap .full-calendar .fc-day-grid-event .fc-content,
.app-habitat .full-calendar .fc-day-grid-event .fc-content {
  white-space: initial;
}

.habitat-wrap .full-calendar .fc-content-skeleton .fc-day-number,
.app-habitat .full-calendar .fc-content-skeleton .fc-day-number {
  color: white;
  font-size: 12px;
  display: block;
  text-align: center;
  padding: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border: 0;
  background-color: #6BA3B7;
}

.habitat-wrap .full-calendar .fc-content-skeleton .fc-other-month .fc-day-number,
.app-habitat .full-calendar .fc-content-skeleton .fc-other-month .fc-day-number {
  background-color: silver;
}

.habitat-wrap .full-calendar .fc-content-skeleton .fc-event,
.app-habitat .full-calendar .fc-content-skeleton .fc-event {
  background-color: transparent;
  color: #4C4C4A;
  border: 0 none;
  font-size: 12px;
}

.habitat-wrap .full-calendar .fc-content-skeleton .fc-content,
.app-habitat .full-calendar .fc-content-skeleton .fc-content {
  padding: 5px;
}

.habitat-wrap .full-calendar .fc-content-skeleton .fc-more,
.app-habitat .full-calendar .fc-content-skeleton .fc-more {
  display: block;
  font-size: 14px;
  text-align: center;
  text-decoration: underline;
}

.habitat-wrap .full-calendar.fc-unthemed th,
.habitat-wrap .full-calendar.fc-unthemed td,
.habitat-wrap .full-calendar.fc-unthemed thead,
.habitat-wrap .full-calendar.fc-unthemed tbody,
.habitat-wrap .full-calendar.fc-unthemed .fc-divider,
.habitat-wrap .full-calendar.fc-unthemed .fc-row,
.habitat-wrap .full-calendar.fc-unthemed .fc-content,
.habitat-wrap .full-calendar.fc-unthemed .fc-popover,
.habitat-wrap .full-calendar.fc-unthemed .fc-list-view,
.habitat-wrap .full-calendar.fc-unthemed .fc-list-heading td,
.app-habitat .full-calendar.fc-unthemed th,
.app-habitat .full-calendar.fc-unthemed td,
.app-habitat .full-calendar.fc-unthemed thead,
.app-habitat .full-calendar.fc-unthemed tbody,
.app-habitat .full-calendar.fc-unthemed .fc-divider,
.app-habitat .full-calendar.fc-unthemed .fc-row,
.app-habitat .full-calendar.fc-unthemed .fc-content,
.app-habitat .full-calendar.fc-unthemed .fc-popover,
.app-habitat .full-calendar.fc-unthemed .fc-list-view,
.app-habitat .full-calendar.fc-unthemed .fc-list-heading td {
  border-color: #979797;
}

.habitat-wrap .full-calendar .fc-popover .fc-event,
.habitat-wrap .full-calendar .fc-popover .fc-event-dot,
.app-habitat .full-calendar .fc-popover .fc-event,
.app-habitat .full-calendar .fc-popover .fc-event-dot {
  font-size: 14px;
  background-color: transparent;
  border: 0;
  color: #6BA3B7;
}

.habitat-wrap .full-calendar .fc-popover .fc-time,
.app-habitat .full-calendar .fc-popover .fc-time {
  font-weight: "robotoboldHabitat";
}

.habitat-wrap .wrap-alertas,
.app-habitat .wrap-alertas {
  position: relative;
}

.habitat-wrap .wrap-alertas .head .btn,
.app-habitat .wrap-alertas .head .btn {
  position: relative;
}

.habitat-wrap .wrap-alertas .head .badges,
.app-habitat .wrap-alertas .head .badges {
  width: 15px;
  height: 15px;
  padding: 2px;
  border-radius: 50%;
  position: absolute;
  top: -5px;
  right: -5px;
  font-size: 11px;
  line-height: 10px;
  text-align: center;
  color: #B4123B;
  background-color: white;
  border: 1px solid #B4123B;
}

.habitat-wrap .wrap-alertas .body,
.app-habitat .wrap-alertas .body {
  margin-top: 30px;
}

.habitat-wrap .wrap-alertas .body .cont-alertas,
.app-habitat .wrap-alertas .body .cont-alertas {
  border: 1px solid #DDD;
}

.habitat-wrap .wrap-alertas .body .alertas,
.app-habitat .wrap-alertas .body .alertas {
  padding: 20px 30px;
  background-color: #F6F6F6;
}

.habitat-wrap .wrap-alertas .body .alertas .texto,
.app-habitat .wrap-alertas .body .alertas .texto {
  font-size: 14px;
}

.habitat-wrap .wrap-alertas .body .alertas .fecha,
.app-habitat .wrap-alertas .body .alertas .fecha {
  font-size: 12px;
  color: #0085B2;
}

.habitat-wrap .wrap-alertas .body .alertas + .alertas,
.app-habitat .wrap-alertas .body .alertas + .alertas {
  border-top: 1px solid #DDD;
}

@media (min-width: 992px) {
  .habitat-wrap .wrap-alertas .body,
  .app-habitat .wrap-alertas .body {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
  }
}

.habitat-wrap .wrap-alertas .head-body,
.app-habitat .wrap-alertas .head-body {
  position: relative;
  color: white;
  padding: 10px 30px;
  background-color: #B4123B;
}

.habitat-wrap .wrap-alertas .head-body .arrow,
.app-habitat .wrap-alertas .head-body .arrow {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #B4123B;
  position: absolute;
  top: -10px;
  left: 20px;
}

@media (max-width: 991px) {
  .habitat-wrap .wrap-alertas,
  .app-habitat .wrap-alertas {
    margin-bottom: 20px;
  }
}

.habitat-wrap .case-simulador .delete-form,
.app-habitat .case-simulador .delete-form {
  float: right;
  clear: both;
}

.habitat-wrap .new-fondo,
.app-habitat .new-fondo {
  padding-top: 20px;
}

.habitat-wrap .box-scroll,
.app-habitat .box-scroll {
  height: auto;
  max-height: 400px;
  overflow-x: hidden;
}

.habitat-wrap .modal-backdrop,
.app-habitat .modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

.habitat-wrap .modal-backdrop.modal-backdrop.in,
.app-habitat .modal-backdrop.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: .5;
}

.habitat-wrap p,
.habitat-wrap p a {
  font-size: initial;
}

.habitat-wrap .only-960,
.app-habitat .only-960 {
  display: none;
}

.habitat-wrap .only-768,
.app-habitat .only-768 {
  display: none;
}

.habitat-wrap .only-640,
.app-habitat .only-640 {
  display: none;
}

.habitat-wrap .only-480,
.app-habitat .only-480 {
  display: none;
}

.habitat-wrap .only-320,
.app-habitat .only-320 {
  display: none;
}

@media only screen and (max-width: 960px) {
  .habitat-wrap .only-960,
  .app-habitat .only-960 {
    display: block;
  }
  .habitat-wrap .not-960,
  .app-habitat .not-960 {
    display: none;
  }
}

@media only screen and (max-width: 960px) and (max-width: 960px) {
  .habitat-wrap .mobile-breakpad,
  .app-habitat .mobile-breakpad {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media only screen and (max-width: 768px) {
  .habitat-wrap .only-768,
  .app-habitat .only-768 {
    display: block;
  }
  .habitat-wrap .not-768,
  .app-habitat .not-768 {
    display: none;
  }
}

@media only screen and (max-width: 640px) {
  .habitat-wrap .only-640,
  .app-habitat .only-640 {
    display: block;
  }
  .habitat-wrap .not-640,
  .app-habitat .not-640 {
    display: none;
  }
}

@media only screen and (max-width: 480px) {
  .habitat-wrap .only-480,
  .app-habitat .only-480 {
    display: block;
  }
  .habitat-wrap .not-480,
  .app-habitat .not-480 {
    display: none;
  }
  .habitat-wrap .not-h-pad-480,
  .app-habitat .not-h-pad-480 {
    padding-left: 0;
    padding-right: 0;
  }
  .habitat-wrap .auto-cent-buttons,
  .app-habitat .auto-cent-buttons {
    padding: 30px 20px;
  }
  .habitat-wrap .auto-cent-buttons,
  .app-habitat .auto-cent-buttons .load {
    width: 123px;
  }
}

@media only screen and (max-width: 320px) {
  .habitat-wrap .only-320,
  .app-habitat .only-320 {
    display: block;
  }
  .habitat-wrap .not-320,
  .app-habitat .not-320 {
    display: none;
  }
}

.data-align-vertical-example, [data-break-since*="todo"] {
  display: table;
  width: 100%;
}

.data-align-vertical-example .column, [data-break-since*="todo"] .column {
  float: none;
  display: table-cell;
  vertical-align: middle;
}

/* estilos se aplican solo desde la resolucion tablet */
@media (min-width: 992px) {
  [data-break-since*="tablet"] {
    /*
            ===================== Alinear columnas verticalmente - agregar clase .align-vertical al lado de .row =====================
         */
  }
  [data-break-since*="tablet"].data-align-vertical {
    display: table;
    width: 100%;
  }
  [data-break-since*="tablet"].data-align-vertical .column {
    float: none;
    display: table-cell;
    vertical-align: middle;
  }
  [data-break-since*="tablet"].list-table {
    display: table;
    width: 100%;
  }
  [data-break-since*="tablet"].list-table li {
    display: table-cell;
    vertical-align: middle;
  }
  [data-break-since*="tablet"].list-table-border {
    text-align: center;
  }
  [data-break-since*="tablet"].list-table-border li + li {
    border-left: 1px solid #DDD;
  }
  [data-break-since*="tablet"].border-left {
    border-left: 1px solid #DDD;
  }
  [data-break-since*="tablet"].vertical-align {
    width: 100%;
    display: table;
  }
  [data-break-since*="tablet"].vertical-align .vertical {
    display: table-cell;
    vertical-align: middle;
    float: none;
  }
  [data-break-since*="tablet"].equal-fondos {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  [data-break-since*="tablet"] .add-fondos {
    border: 1px solid #DDD;
    position: relative;
  }
  [data-break-since*="tablet"] .add-fondos .links-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0);
    text-align: center;
  }
  [data-break-since*="tablet"] .add-fondos.remove {
    border: 0;
  }
}

@media (min-width: 320px) {
  [data-break-since*="todo"].data-align-vertical {
    display: table;
    width: 100%;
  }
  [data-break-since*="todo"].data-align-vertical .column {
    float: none;
    display: table-cell;
    vertical-align: middle;
  }
}

@media (max-width: 767px) {
  .habitat-wrap .inner-mobile {
    padding-left: 20px;
    padding-right: 20px;
  }
  .habitat-wrap .btn {
    font-family: "robotoregularHabitat";
  }
  .habitat-wrap .example__form,
  .habitat-wrap .text-links-small {
    font-family: "robotoregularHabitat";
  }
  .habitat-wrap input[type="text"],
  .habitat-wrap input[type="text"],
  .habitat-wrap input[type="number"] {
    height: 45px;
    color: black;
    font-family: "robotoregularHabitat";
  }
  .habitat-wrap .input__label-content {
    top: 12px !important;
    color: black;
    font-family: "robotoregularHabitat" !important;
  }
  .habitat-wrap .input__custom-filled .input__label-content, .habitat-wrap .input__custom.input--disabled .input__label-content {
    color: #333;
  }
  .habitat-wrap .dropdown:not(.dropdown--disabled) .dropdown-toggle {
    color: black;
    height: 45px;
    font-family: "robotoregularHabitat" !important;
  }
  .habitat-wrap .dropdown-menu a {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    font-family: "robotoregularHabitat";
  }
  .habitat-wrap .step-holder-mobile span {
    border-color: #666;
    color: #666;
  }
  .habitat-wrap .box-basic {
    padding: 0 20px;
  }
  .habitat-wrap .center-radio .cs-radio-wrap,
  .habitat-wrap .center-radio .small {
    display: inline-block;
    vertical-align: middle;
  }
}

@media (min-width: 767px) {
  .habitat-wrap .center-radio {
    text-align: center;
  }
  .habitat-wrap .center-radio .cs-radio-wrap {
    display: table;
    margin: auto;
  }
  .habitat-wrap .center-radio .small {
    padding-top: 6px;
    display: block;
  }
}

.habitat-wrap .btn {
  padding: 10px 30px;
}

.habitat-wrap .btn-second {
  color: white !important;
}

.habitat-wrap .box-fondo .head {
  height: 50px;
}

.habitat-wrap .opcion-filter {
  display: none;
  background-color: #B4123B;
  position: relative;
  color: white;
  text-decoration: none;
  padding: 15px 55px 15px 15px;
}

.habitat-wrap .icon-arrow-bottom:before {
  content: "\e911";
}

/* 18 01 17 por Mauricio Rebolledo*/
.breadcrumbs li, 
.breadcrumbs li a{
  font-size: 14px;
   font-family: "robotoregular", sans-serif;
  /* text-transform: capitalize;*/
}
/*# sourceMappingURL=app-wp.css.map */



@media (max-width: 768px) {
  .habitat-wrap #calendar .fc-row.fc-week.fc-widget-content.fc-rigid {
    height: 100px!important;
  }

  .habitat-wrap #calendar .fc-title {
    /*color: red!important;*/
    /*opacity: 0;*/
    height: 0;
    font-size: 11px;
  }

  .habitat-wrap #calendar .fc-more {
    font-size: 12px;
  }

  .habitat-wrap #calendar .fc-scroller.fc-day-grid-container {
    height: initial!important;
  }


  .habitat-wrap #calendar .fc-content {
    padding: 0;
  }
}
.print-content{
    display: none;
    position: fixed;
    top: 13%;
    left: 23%;
    width: 49%;
    height: 74%;
    z-index: 9999999;
    overflow: auto;
    background-color: #ffffff;
}

.fadebox{
    display: none;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 9999;
    -moz-opacity: 0.8;
    opacity: 0.5;
}

#lightbox_tipo{
  width: 640px;
  padding: 30px 50px;
  position: relative;
}
#lightbox_tipo .top_lbx .logo_top{
  float: left;
}
#lightbox_tipo div{
  position: inherit;
}
#lightbox_tipo div{
  position: inherit;
  font-size: 11px;
}
#lightbox_tipo table{
  font-size: 13px; 
  color: #515151; 
  margin: 0 0 20px 0; 
  border-top: solid 1px #ccc; 
  border-left: 1px #ccc solid;
}
#lightbox_tipo table th{
  background: #eae9e9; 
  font-weight: normal; 
  height: 30px; 
  border-right: solid 1px #ccc; 
  border-bottom: solid 1px #ccc;
}
#lightbox_tipo table td{
  height: 30px; 
  border-right: solid 1px #ccc; 
  border-bottom: solid 1px #ccc; 
  padding: 0 0 0 10px; 
  text-align: left;
}
#lightbox_tipo .top_lbx .herramientas{
  float: right;
  font-size: 12px;
}
#lightbox_tipo .top_lbx .herramientas ul li a.exporta{
  padding: 0 0 0 19px;
}
#lightbox_tipo .top_lbx .herramientas ul li a{
  height: 20px; 
  display: block;
}
#lightbox_tipo .conte .firma{
  text-align: center; 
  padding: 40px 0;
  margin-left: 40%;
}
#lightbox_tipo h2{
  color: #263c75;    
  font-size: 16px;
  margin: 58px 0 26px 0;
}
#lightbox_tipo .footer{
  font-size: 11px;
} 
.cerrarLig{
  cursor:pointer;
  color:white;
  float: right;
  margin-top: -19px;
  position: fixed;
  width: 50px;
  margin-left: 46%;
}

g.highcharts-range-selector-buttons {
    display: none;
}

.print-content-historico
{
    display: none;
    position: fixed;
    top: 13%;
    left: 23%;
    width: 49%;
    height: 74%;
    z-index: 9999999;
    overflow: auto;
    background-color: #ffffff;
}

#lightbox_tipo1 {
    width: 640px;
    padding: 30px 50px;
    position: relative;
}


#lightbox_tipo1 div {
    position: inherit;
    font-size: 11px;
}

#lightbox_tipo1 h2 {
    color: #263c75;
    font-size: 16px;
    margin: 58px 0 26px 0;
}

#lightbox_tipo1 table {
    font-size: 13px;
    color: #515151;
    margin: 0 0 20px 0;
    border-top: solid 1px #ccc;
    border-left: 1px #ccc solid;
}

#lightbox_tipo1 .footer {
    font-size: 11px;
}

#lightbox_tipo1 .top_lbx .herramientas1 {
    float: right;
    font-size: 12px;
}

#lightbox_tipo1 .top_lbx .logo_top {
    float: left;
}

#lightbox_tipo1 table th {
    background: #eae9e9;
    font-weight: normal;
    height: 30px;
    border-right: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
}

#lightbox_tipo1 table td {
    height: 30px;
    border-right: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    padding: 0 0 0 10px;
    text-align: left;
}

@media (max-width: 768px) {
    .print-content, .print-content-historico{
      top: 8% !important; 
      left: 5% !important; 
      width: 92% !important; 
      height: 85% !important; 
    }
    .cerrarLig {
      margin-top: -19px;
      width: 50px;
      margin-left: 79%; 
    }
}

/*POR MAURI REBOLLEDO PARA TABLA HABITAT MOVIL*/
.modal-backdrop{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: .5;
}
.scroll-vertical {
  max-height: 420px;
  overflow-y: scroll;
  overflow-x: hidden;
}

.paso4-fix thead th:first-child {
  display: initial!important;
}
.paso4-fix tbody td:first-child {
  width: 20%!important;
}

.wrap-faq [class*="icons"] {
  width: 30px;
  height: 30px;
  
  background-repeat: no-repeat;
  background-image: url('../../img/icons-faq.png');
}

.wrap-faq [class*="icons"],
.wrap-faq .head-faq h4 {
  display: inline-block!important;
  vertical-align: middle;
}


.wrap-faq .head-faq h4 {
  margin-bottom: 0!important;
  font-family: "robotomediumHabitat" !important;
}

.icons-pensiones        { background-position: 0 0; }
.icons-informacion-economica  { background-position: -30px 0; }
.icons-claves-y-sitio-web           { background-position: -60px 0; }
.icons-cotizaciones     { background-position: -90px 0; }
.icons-ahorro-voluntario{ background-position: -120px 0; }
.icons-certificados     { background-position: -150px 0; }
.icons-fondos-a-b-c-d-e           { background-position: -150px 0; }
.icons-seguro-de-cesantia           { background-position: -180px 0; }




.habitat-wrap .box-shadow .icon-doc-check {
  font-family: 'icon' !important;
}
.icons-tributario       { background-position: -210px 0; }

textarea#textOpinion {height: 20%;}

.tools{
font-size: 14px !important;
}

.habitat-wrap .wrapper-faq .nav-nivel .current.is-active{
background-color: #9AACB1!important;
}
.separate__content.load {
    position: relative;
    top: -192px;
    background: rgba(0, 0, 0, 0.08);
    height: 188px;
}

/* correcion boton formulario /formulario-deposito-directo-en-linea/ */ 
@media only screen and (max-width: 480px) {
.habitat-wrap .auto-cent-buttons { width: auto; }


}
/*correcion boton formulario /formulario-deposito-directo-en-linea/ */ 

.habitat-wrap .list-links a:hover .text-list, .app-habitat .list-links a:hover .text-list {
  text-decoration: none;
}
.habitat-wrap .list-check a:hover .text-list, .app-habitat .list-check a:hover .text-list {
  color: #0085B2;
  text-decoration: none;
}
ul.list-check.list-links li {
    min-height: 55px;
}

.col-categorias {
    margin-top: 20px;
}