/*!
 * WEB UI SYSTEM albo
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * @rulotico
 */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

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

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

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

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

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

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

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

@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  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;
  transform-origin: center; }

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3); }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3); }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3); }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3); }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out; }

@-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-duration: 0.75s;
  animation-duration: 0.75s;
  -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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.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-duration: 0.75s;
  animation-duration: 0.75s;
  -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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

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

.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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

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

.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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

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

.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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

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

.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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

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

.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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

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

.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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

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

.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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

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

.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 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; }

.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.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s; }

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s; }

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s; }

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s; }

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s; }

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms; }

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms; }

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

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s; }

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important; } }

/*!
 * WEB UI SYSTEM albo
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * @rulotico
 */
.wrapper, .row {
  *zoom: 1; }
  .wrapper:before, .row:before, .wrapper:after, .row:after {
    content: " ";
    display: table; }
  .wrapper:after, .row:after {
    clear: both; }

*, *:after, *:before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

img {
  width: auto;
  max-width: 100%;
  height: auto !important; }

.wrapper {
  width: 100%;
  margin: 0 auto; }
  .wrapper.wrapper-flex {
    display: flex;
    flex-wrap: wrap; }
    .wrapper.wrapper-flex .card {
      height: 100%; }

[class*='size-'] {
  float: left;
  padding: 16px;
  width: 100%;
  min-height: 1px; }
  [class*='size-'] h1, [class*='size-'] h2, [class*='size-'] h3, [class*='size-'] p, [class*='size-'] small {
    padding: 0px; }

@media only screen and (min-width: 30em) {
  .wrapper {
    width: 95%;
    max-width: 80em; }
  .size-1 {
    width: 8.33333%; }
  .size-2 {
    width: 16.66667%; }
  .size-3 {
    width: 25%; }
  .size-4 {
    width: 33.33333%; }
  .size-5 {
    width: 41.66667%; }
  .size-6 {
    width: 50%; }
  .size-7 {
    width: 58.33333%; }
  .size-8 {
    width: 66.66667%; }
  .size-9 {
    width: 75%; }
  .size-10 {
    width: 83.33333%; }
  .size-11 {
    width: 91.66667%; }
  .size-12 {
    width: 100%; }
  .space-1 {
    margin-left: 8.33333%; }
  .space-2 {
    margin-left: 16.66667%; }
  .space-3 {
    margin-left: 25%; }
  .space-4 {
    margin-left: 33.33333%; }
  .space-5 {
    margin-left: 41.66667%; }
  .space-6 {
    margin-left: 50%; } }

/*!
 * WEB UI SYSTEM albo
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * @rulotico
 */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.3;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0; }

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  margin: 16px 0; }

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font size in all browsers.
 */
/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none; }

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none; }

/*!
 * WEB UI SYSTEM albo
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * @rulotico
 */
:root {
  --space:  8px;
  --space2: 16px;
  --space3: 24px;
  --space4: 32px;
  --h1: 38px;
  --h2: 24px;
  --h3: 16px;
  --p: 14px;
  --small: 12px;
  --neutral: #969BA0;
  --white: white;
  --charcoal:  #3E3E42;
  --indigo: #3743AA;
  --snow: #FAFAFA;
  --manatee: #EDF0F4;
  --sunset: #F8644F;
  --gold: #FDB201;
  --vivere: #6CB156;
  --bolt: #07B1FD; }

/* ============================================================  FONTS */
html {
  font-family: Muli;
  color: #3E3E42; }

h1, .h1 {
  font-size: 38px; }

h2, .h2 {
  font-size: 24px; }

h3, .h3 {
  font-size: 16px; }

p {
  font-size: 14px; }

small {
  font-size: 12px; }

/* ============================================================  COLORS */
.neutral {
  color: #969BA0; }
  .neutral_background {
    background-color: #969BA0 !important; }

.white {
  color: white; }
  .white_background {
    background-color: white !important; }

.charcoal {
  color: #3E3E42; }
  .charcoal_background {
    background-color: #3E3E42 !important; }

.indigo {
  color: #3743AA; }
  .indigo_background {
    background-color: #3743AA !important; }

.manatee {
  color: #EDF0F4; }
  .manatee_background {
    background-color: #EDF0F4 !important; }

.gold {
  color: #FDB201; }
  .gold_background {
    background-color: #FDB201 !important; }

.sunset {
  color: #F8644F; }
  .sunset_background {
    background-color: #F8644F !important; }

.vivere {
  color: #6CB156; }
  .vivere_background {
    background-color: #6CB156 !important; }

.bolt {
  color: #07B1FD; }
  .bolt_background {
    background-color: #07B1FD !important; }

.snow {
  color: #FAFAFA; }
  .snow_background {
    background-color: #FAFAFA !important; }

/*!
 * WEB UI SYSTEM albo
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * @rulotico
 */
@import url("https://fonts.googleapis.com/css?family=Muli:400,700&display=swap&subset=latin-ext");
html, * {
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  font-family: Muli,sans-serif; }

hr {
  border: #EDF0F4 solid 0.5px;
  margin: 16px 0 16px 0; }

input, div, body, label {
  font-size: 14px; }

button {
  font-size: 16px; }

h1, h2, h3, p, small {
  padding: 16px;
  color: #3E3E42; }

p {
  font-weight: 400; }

a {
  color: #3743AA; }

strong {
  font-weight: 700; }

br {
  display: block;
  margin-bottom: 8px; }

.bold {
  font-weight: 700; }

.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                  supported by Chrome, Opera and Firefox */ }

.tap {
  cursor: pointer; }

.tap:active {
  opacity: .5; }

.hidden {
  display: none; }

.flex {
  display: flex; }

.flex-wrap {
  flex-wrap: wrap; }

.justify-between {
  justify-content: space-between; }

.justify-center {
  justify-content: center; }

.justify-end {
  justify-content: flex-end !important; }

.align-center {
  align-items: center; }

.fixed-bottom {
  position: fixed;
  bottom: 0px; }

.size_100vh {
  height: 100vh; }

.text-right {
  text-align: right; }

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

.text-center {
  text-align: center; }

.noPadding {
  padding: 0px !important; }

.padding {
  padding: 8px !important; }

.padding2 {
  padding: 16px !important; }

.padding-right {
  padding-right: 8px; }

.padding-left {
  padding-left: 8px; }

.padding-top {
  padding-top: 8px; }

.padding-bottom {
  padding-bottom: 8px; }

.margin-left {
  margin-left: 8px;
  margin-right: 8px; }

.w100 {
  width: 100%;
  max-width: none !important; }

.fill {
  width: -webkit-fill-available; }

.noBorder {
  border: 0px !important; }

.top-line {
  border-top: 1px solid #EDF0F4; }

.bottom-line {
  border-bottom: 1px solid #EDF0F4; }

.right-line {
  border-right: 1px solid #EDF0F4; }

@media (min-width: 920px) {
  .mobile {
    display: none !important; } }

@media (max-width: 920px) {
  .desktop {
    display: none !important; } }

@charset "UTF-8";
@font-face {
  font-family: "ibons";
  src: url("../fonts/ibons.eot?31p1ox");
  src: url("../fonts/ibons.eot?31p1ox#iefix") format("embedded-opentype"), url("../fonts/ibons.ttf") format("truetype"), url("../fonts/ibons.woff") format("woff"), url("../fonts/ibons.svg?31p1ox#ibons") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block; }

i {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "ibons" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.ibon-download:before {
  content: ""; }

.ibon-account:before {
  content: ""; }

.ibon-addperson:before {
  content: ""; }

.ibon-alias:before {
  content: ""; }

.ibon-autodeposit:before {
  content: ""; }

.ibon-bank:before {
  content: ""; }

.ibon-birthday:before {
  content: ""; }

.ibon-cake:before {
  content: ""; }

.ibon-calendar:before {
  content: ""; }

.ibon-camera:before {
  content: ""; }

.ibon-car:before {
  content: ""; }

.ibon-card:before {
  content: ""; }

.ibon-cellphone:before {
  content: ""; }

.ibon-check:before {
  content: ""; }

.ibon-chevron-down:before {
  content: ""; }

.ibon-chevron-left:before {
  content: ""; }

.ibon-chevron-right:before {
  content: ""; }

.ibon-chevron-up:before {
  content: ""; }

.ibon-city:before {
  content: ""; }

.ibon-close:before {
  content: ""; }

.ibon-coupon:before {
  content: ""; }

.ibon-delete:before {
  content: ""; }

.ibon-edit:before {
  content: ""; }

.ibon-exchange:before {
  content: ""; }

.ibon-exclamation:before {
  content: ""; }

.ibon-flame:before {
  content: ""; }

.ibon-gallery:before {
  content: ""; }

.ibon-gender:before {
  content: ""; }

.ibon-home:before {
  content: ""; }

.ibon-id:before {
  content: ""; }

.ibon-info:before {
  content: ""; }

.ibon-lock:before {
  content: ""; }

.ibon-mailbox:before {
  content: ""; }

.ibon-message:before {
  content: ""; }

.ibon-null:before {
  content: ""; }

.ibon-number:before {
  content: ""; }

.ibon-person:before {
  content: ""; }

.ibon-phone:before {
  content: ""; }

.ibon-pin:before {
  content: ""; }

.ibon-reports:before {
  content: ""; }

.ibon-search:before {
  content: ""; }

.ibon-send:before {
  content: ""; }

.ibon-services:before {
  content: ""; }

.ibon-settings:before {
  content: ""; }

.ibon-share:before {
  content: ""; }

.ibon-sink:before {
  content: ""; }

.ibon-spaces:before {
  content: ""; }

.ibon-suitcase:before {
  content: ""; }

.ibon-support:before {
  content: ""; }

.ibon-tag:before {
  content: ""; }

.ibon-television:before {
  content: ""; }

.ibon-thunder:before {
  content: ""; }

.ibon-star:before {
  content: ""; }


/*!
 * WEB UI SYSTEM albo
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * @rulotico
 */
.aftHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 24px;
  padding-right: 24px; }
  .aftHeader :first-child.bigButton {
    padding-right: 8px; }
  .aftHeader .aftHeaderCompany > i {
    margin-left: 8px;
    font-size: 16px;
    margin-top: 8px;
    color: #3743AA; }
  .aftHeader .aftHeaderCompany div > div:first-child {
    padding-right: 16px;
    border-right: 1px solid #969BA0; }
  .aftHeader .aftHeaderCompany div > .aftHeaderAmmount {
    padding-left: 16px; }
  .aftHeader .aftHeaderCompany .aftHeaderOptions:hover {
    cursor: pointer; }
    .aftHeader .aftHeaderCompany .aftHeaderOptions:hover .aftHeaderList {
      display: block; }
  .aftHeader .aftHeaderCompany .aftHeaderList {
    display: none;
    height: 0px;
    width: 0px;
    position: relative;
    z-index: 10; }
    .aftHeader .aftHeaderCompany .aftHeaderList ul {
      display: inline-block;
      list-style: none;
      box-shadow: 0px 0px 8px 5px #EDF0F4;
      border-radius: 0px 0px 3px 3px;
      overflow: hidden; }
    .aftHeader .aftHeaderCompany .aftHeaderList li:first-child {
      font-weight: bold;
      cursor: default !important; }
      .aftHeader .aftHeaderCompany .aftHeaderList li:first-child:hover {
        background: white; }
    .aftHeader .aftHeaderCompany .aftHeaderList li {
      min-width: 240px;
      background: white;
      padding: 16px; }
      .aftHeader .aftHeaderCompany .aftHeaderList li:hover {
        cursor: pointer;
        background: #EDF0F4; }
        .aftHeader .aftHeaderCompany .aftHeaderList li:hover span:first-child {
          color: #3743AA; }
  .aftHeader .aftHeaderInfo {
    margin-right: 24px; }
    .aftHeader .aftHeaderInfo span {
      display: flex;
      align-items: center; }
    .aftHeader .aftHeaderInfo i {
      margin-left: 16px; }
  .aftHeader .aftHeaderItems {
    display: flex;
    align-items: center; }

@media (max-width: 768px) {
  .aftHeader {
    display: initial;
    padding: 16px; }
    .aftHeader .aftHeaderCompany {
      width: 100%;
      text-align: center;
      display: flex;
      align-items: center; }
  .aftHeaderItems {
    justify-content: space-between; } }

@media (max-width: 425px) {
  .aftHeader .aftHeaderItems {
    display: block; }
    .aftHeader .aftHeaderItems .bigButton {
      padding-top: 8px; } }

/*!
 * WEB UI SYSTEM albo
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * @rulotico
 */
.alert {
  position: fixed;
  z-index: 1;
  bottom: 0;
  color: white;
  margin-bottom: 16px;
  margin: auto;
  width: 100vw;
  display: flex;
  align-items: center;
  margin-bottom: 16px; }
  .alert .alertContainer {
    display: flex;
    justify-content: space-between;
    margin: auto;
    min-width: 600px;
    max-width: 600px;
    border-radius: 3px;
    padding: 16px; }
    .alert .alertContainer .alertAction {
      text-decoration: underline; }

@media (max-width: 992px) {
  .alert {
    margin-bottom: 0; }
    .alert .alertContainer {
      display: block;
      border-radius: 0; } }

/*!
 * WEB UI SYSTEM albo
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * @rulotico
 */
.bigButton, .inputButton {
  padding-top: 0; }
  .bigButton > button, .inputButton > button {
    background: #3743AA;
    padding: 16px;
    font-weight: bold;
    color: white;
    text-align: center;
    border-radius: 3px;
    border: 0;
    width: 100%;
    outline: none;
    cursor: pointer; }
  .bigButton.secundary > button, .inputButton.secundary > button {
    background: white;
    border: 1px solid #3743AA;
    color: #3743AA; }
  .bigButton.delete > button, .inputButton.delete > button {
    background: white;
    border: 1px solid #F8644F;
    color: #F8644F; }
  .bigButton.delete:hover > button, .inputButton.delete:hover > button {
    background: #F8644F;
    border: 1px solid #F8644F;
    color: white; }
  .bigButton.disable > button, .inputButton.disable > button {
    background: #EDF0F4;
    color: #969BA0; }
  .bigButton:hover > button, .inputButton:hover > button {
    background-color: #2F3391;
    color: white; }
  .bigButton:focus, .inputButton:focus {
    box-shadow: 0px 0px 4px 1px #07B1FD; }
    .bigButton:focus > button, .inputButton:focus > button {
      box-shadow: 0px 0px 4px 1px #07B1FD; }

.bigButton.short {
  max-width: 280px;
  margin: auto; }

.bigButton.left {
  justify-content: flex-start;
  display: flex; }
  .bigButton.left button {
    width: auto; }

.bigButton.right {
  justify-content: flex-end;
  display: flex; }
  .bigButton.right button {
    width: auto; }

/*!
 * WEB UI SYSTEM albo
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * @rulotico
 */
.bigInput input {
  font-size: 38px;
  color: #3E3E42;
  font-weight: 700;
  border: 0;
  border-bottom: #3743AA 1px solid;
  border-radius: 0px;
  margin-bottom: 8px; }

/*!
 * WEB UI SYSTEM albo
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * @rulotico
 */
.card {
  border-radius: 3px;
  background: white;
  border: solid 1px #EDF0F4;
  padding: 16px;
  position: relative; }
  .card.cardFullH {
    min-height: calc(100vh - 200px);
    max-height: calc(100vh - 200px);
    position: relative; }

.card.size-12 {
  margin-bottom: 16px; }

.badge {
  padding: 2px 8px;
  border-radius: 3px; }

.cardIssue {
  padding: 16px;
  padding-bottom: 0; }
  .cardIssue h3 {
    padding-bottom: 8px !important; }

.cardPaper {
  margin-bottom: 16px; }
  .cardPaper .paper {
    width: 100%;
    margin-left: -16px;
    position: absolute;
    bottom: -19px; }
    .cardPaper .paper img {
      width: 100%; }

.cardFullH .top {
  margin-left: -16px;
  padding-left: 16px;
  padding-bottom: 16px;
  width: calc(100% + 32px); }

.cardFullH .medium {
  height: calc(100vh - 306px);
  margin-left: -16px;
  width: calc(100% + 32px);
  padding: 16px; }

.cardFullH .cardParts {
  margin-left: -16px;
  margin-top: -16px;
  height: calc(100vh - 246px);
  width: calc(100% + 32px); }

.cardFullH .cardFullHpart {
  padding-bottom: 0px;
  overflow-y: scroll; }
  .cardFullH .cardFullHpart .cardPartList {
    height: calc(100vh - 357px);
    margin-left: -16px;
    width: calc(100% + 32px); }

/*!
 * WEB UI SYSTEM albo
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * @rulotico
 */
.chat {
  background: white;
  padding: 16px;
  border-bottom: solid #EDF0F4 1px;
  border-top: solid #EDF0F4 1px;
  margin-top: -1px;
  overflow: scroll; }
  .chat img {
    margin: 8px;
    width: 25%;
    border: #f0f0f0 solid 6px;
    box-shadow: 1px 1px 2px 1px #d1d1d1; }
  .chat img:last-child {
    margin: 0;
    width: 10px;
    border: 0;
    box-shadow: none; }

/*!
 * WEB UI SYSTEM albo
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * @rulotico
 */
.chip {
  border: 1px solid #3743AA;
  border-radius: 10em;
  font-size: 14px;
  font-weight: bold;
  padding: 16px 32px;
  color: #3743AA;
  margin: 0px 8px;
  height: 50px; }
  .chip.inactive {
    color: #969BA0;
    border-color: #969BA0; }
  .chip.disable {
    color: #969BA0;
    background-color: #EDF0F4;
    border: 0; }

.chipGroup {
  display: flex; }

@media (max-width: 768px) {
  .chipGroup {
    display: block; }
    .chipGroup .chip {
      margin-bottom: 8px; } }

/*!
 * WEB UI SYSTEM albo
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * @rulotico
 */
.dataBlock .dataBlockItem {
  display: flex; }
  .dataBlock .dataBlockItem label, .dataBlock .dataBlockItem p {
    padding: 8px 0;
    display: block;
    width: 50%; }

@media (max-width: 992px) {
  .dataBlock select {
    margin-bottom: 8px; }
  .dataBlock .dataBlockItem {
    display: block; }
    .dataBlock .dataBlockItem label, .dataBlock .dataBlockItem p {
      width: 100%; } }

/*!
 * WEB UI SYSTEM albo
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * @rulotico
 */
.imageUploaded {
  display: flex;
  background-color: white;
  align-items: center; }
  .imageUploaded * {
    padding-right: 8px; }
  .imageUploaded :last-child {
    margin-left: auto;
    padding: 0; }
  .imageUploaded img {
    height: 16px !important; }

/*!
 * WEB UI SYSTEM albo
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * @rulotico
 */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
  width: 48px;
  text-align: center; }

input[type=date] {
  height: 50px; }

input, .input, select {
  padding: 16px;
  color: #3E3E42;
  border: 0;
  border-bottom: 1px solid #EDF0F4;
  border-top: solid #EDF0F4 1px;
  margin-top: -1px;
  transition: border .5s;
  width: 100%; }
  input.error, .input.error, select.error {
    border-bottom: #F8644F solid 1px;
    border-top: #F8644F solid 1px;
    margin-bottom: 1px; }
    input.error.detail, .input.error.detail, select.error.detail {
      margin-bottom: 16px; }
      input.error.detail::after, .input.error.detail::after, select.error.detail::after {
        content: "Campo requerido"; }
  input:focus, .input:focus, select:focus {
    outline: none; }

.inputTwice {
  display: flex; }
  .inputTwice .inputGroup {
    width: calc(50% - 4px); }
    .inputTwice .inputGroup:first-child {
      margin-right: 4px; }
    .inputTwice .inputGroup:last-child {
      margin-left: 4px; }
  .inputTwice .bigButton {
    padding-left: 4px;
    padding-right: 0px;
    padding-top: 0; }
    .inputTwice .bigButton button {
      height: 48px; }

.inputDuo {
  padding-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .inputDuo select {
    border-radius: 3px;
    padding: 8px;
    max-width: 50%;
    border: 1px solid #969BA0; }

.inputIconLeft input {
  padding-left: 40px; }

.inputIconLeft i {
  position: absolute;
  padding-left: 16px;
  padding-top: 17px; }

.inputIconRight input {
  padding-right: 40px; }

.inputIconRight i {
  position: absolute;
  margin-left: -32px;
  margin-top: 17px; }

.inputButton input {
  padding-right: 72px;
  max-width: none !important; }

.inputButton button {
  width: auto;
  padding: 15px;
  background: #3743AA;
  border: 0;
  color: white;
  border-radius: 0 3px 3px 0;
  position: absolute;
  top: -1px;
  right: 0px;
  border: 1px solid #3743AA; }

@media only screen and (min-width: 30em) {
  input, select {
    border: 1px solid #EDF0F4;
    border-radius: 2px;
    width: 100%; }
  [class*='size-'] select, .lightbox select {
    padding: 14px; }
  [class*='size-'] .inputGroup, .lightbox .inputGroup {
    position: relative; }
    [class*='size-'] .inputGroup input, [class*='size-'] .inputGroup select, .lightbox .inputGroup input, .lightbox .inputGroup select {
      margin-bottom: 8px; }
      [class*='size-'] .inputGroup input.error, [class*='size-'] .inputGroup select.error, .lightbox .inputGroup input.error, .lightbox .inputGroup select.error {
        border: #F8644F 1px solid !important; }
      [class*='size-'] .inputGroup input.error ~ .inputLabel, [class*='size-'] .inputGroup select.error ~ .inputLabel, .lightbox .inputGroup input.error ~ .inputLabel, .lightbox .inputGroup select.error ~ .inputLabel {
        color: #F8644F; }
    [class*='size-'] .inputGroup input ~ .inputLabel, [class*='size-'] .inputGroup select ~ .inputLabel, .lightbox .inputGroup input ~ .inputLabel, .lightbox .inputGroup select ~ .inputLabel {
      transition-property: opacity,top;
      transition: .5s ease;
      color: #3743AA;
      opacity: 0;
      position: relative;
      height: 0px;
      top: -61px;
      font-size: 12px;
      left: 16px;
      color: #3743AA; }
      [class*='size-'] .inputGroup input ~ .inputLabel label, [class*='size-'] .inputGroup select ~ .inputLabel label, .lightbox .inputGroup input ~ .inputLabel label, .lightbox .inputGroup select ~ .inputLabel label {
        padding: .5px;
        font-size: 12px;
        background-color: white; }
    [class*='size-'] .inputGroup input[type='checkbox'], .lightbox .inputGroup input[type='checkbox'] {
      width: 16px; }
      [class*='size-'] .inputGroup input[type='checkbox'] ~ label, .lightbox .inputGroup input[type='checkbox'] ~ label {
        position: relative;
        top: -2px; }
    [class*='size-'] .inputGroup input:focus, [class*='size-'] .inputGroup select:focus, .lightbox .inputGroup input:focus, .lightbox .inputGroup select:focus {
      border: 1px solid #3743AA; }
    [class*='size-'] .inputGroup input:not(:placeholder-shown), [class*='size-'] .inputGroup select:not(:checked), .lightbox .inputGroup input:not(:placeholder-shown), .lightbox .inputGroup select:not(:checked) {
      border: 1px solid #EDF0F4; }
    [class*='size-'] .inputGroup input:not(:placeholder-shown) ~ .inputLabel, [class*='size-'] .inputGroup select ~ .inputLabel, .lightbox .inputGroup input:not(:placeholder-shown) ~ .inputLabel, .lightbox .inputGroup select ~ .inputLabel {
      color: #969BA0; }
    [class*='size-'] .inputGroup input:focus::-webkit-input-placeholder, .lightbox .inputGroup input:focus::-webkit-input-placeholder {
      color: white; }
    [class*='size-'] .inputGroup input:focus ~ .inputLabel, [class*='size-'] .inputGroup input:not(:placeholder-shown) ~ .inputLabel, [class*='size-'] .inputGroup select:focus ~ .inputLabel, [class*='size-'] .inputGroup select:not(:placeholder-shown) ~ .inputLabel, .lightbox .inputGroup input:focus ~ .inputLabel, .lightbox .inputGroup input:not(:placeholder-shown) ~ .inputLabel, .lightbox .inputGroup select:focus ~ .inputLabel, .lightbox .inputGroup select:not(:placeholder-shown) ~ .inputLabel {
      opacity: 1;
      top: -64px; } }

@media (max-width: 425px) {
  [class*='size-'] input {
    margin-left: -16px;
    width: calc(100% + 32px); }
  .inputGroup .inputLabel {
    display: none; }
  .inputIconLeft i {
    padding-left: 0; }
  .inputIconRight i {
    padding-left: 8px;
    right: 0;
    margin-right: 16px;
    margin-top: -32px; } }

@media (max-width: 992px) {
  .inputDuo {
    display: block; }
    .inputDuo * {
      display: block;
      padding: 8px 0;
      width: 100%;
      max-width: 100% !important; } }

textarea {
  color: #3E3E42;
  border: 0;
  border-bottom: 1px solid #EDF0F4;
  border-top: solid #EDF0F4 1px;
  margin-top: -1px; }
  textarea:focus {
    outline: none; }
  textarea.error {
    border-bottom: #F8644F solid 1px;
    border-top: #F8644F solid 1px; }

/*!
 * WEB UI SYSTEM albo
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * @rulotico
 */
.itemsCloud .itemsCloudTitle {
  text-align: center;
  padding-bottom: 16px; }

.itemsCloud ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap; }
  .itemsCloud ul li {
    cursor: pointer;
    padding: 4px;
    border: 1px solid #3743AA;
    margin: 4px;
    border-radius: 3px;
    color: #3743AA;
    font-size: 16px;
    font-weight: bold; }
  .itemsCloud ul li.active {
    background-color: #3743AA;
    color: white; }
  .itemsCloud ul li.disable {
    background-color: #EDF0F4;
    border-color: #EDF0F4;
    color: #969BA0; }

/*!
 * WEB UI SYSTEM albo
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * @rulotico
 */
.lightbox {
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  z-index: 30;
  display: flex;
  justify-content: center;
  align-items: center; }
  .lightbox .card {
    width: 500px;
    padding: 32px; }
  .lightbox p, .lightbox h1, .lightbox h2, .lightbox h3 {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0; }
  .lightbox .card .size-6, .lightbox .card .size-12 {
    padding: 0; }
  .lightbox .card .tabBox ul {
    width: calc(100% + 64px);
    margin-left: -32px; }
  .lightbox .card > .size-6 {
    padding-right: 8px; }
  .lightbox .card > .size-6 ~ .size-6 {
    padding-right: 0; }

@media (max-width: 992px) {
  .lightbox .card {
    padding: 0px; }
    .lightbox .card div:first-child, .lightbox .card div:last-child, .lightbox .card h3, .lightbox .card h3, .lightbox .card h1, .lightbox .card p {
      padding: 16px; } }

/*!
 * WEB UI SYSTEM albo
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * @rulotico
 */
.loadingLayout {
  display: flex;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }
  .loadingLayout > div {
    background: #EDF0F4;
    min-height: 60px;
    border-radius: 3px;
    width: 100%;
    padding: 16px; }

.loadingFullScreen {
  display: flex;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center; }
  .loadingFullScreen img {
    height: 100px !important; }

/*!
 * WEB UI SYSTEM albo
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * @rulotico
 */
.login .size-6:first-child {
  display: flex;
  padding: 56px;
  display: flex;
  flex-flow: wrap;
  align-content: space-between; }

.login .loginForm {
  width: 100%; }

@media (max-width: 900px) {
  .login .size-6:first-child {
    padding: 16px; }
  .login > .size-5 {
    width: 100%; }
  .login > .size-5, .login > .size-5 .size-12:nth-child(2) {
    padding: 0; } }

/*!
 * WEB UI SYSTEM albo
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * @rulotico
 */
.mainNav {
  background: white;
  position: fixed;
  width: 100%;
  padding: 16px;
  box-shadow: 0px 0px 8px 5px #EDF0F4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10; }
  .mainNav h3 {
    display: initial; }
  .mainNav .mainNavNotification {
    font-size: 16px; }
  .mainNav .mainNavRightContainer {
    display: flex;
    align-items: center; }
  .mainNav .mainNavRightData {
    padding-right: 12px; }
    .mainNav .mainNavRightData > div {
      font-size: 12px; }
  .mainNav .mainNavIcons {
    display: flex;
    align-items: center; }
  .mainNav .mainNavUserPin {
    margin-right: 12px;
    border: 2px solid #07B1FD;
    border-radius: 11em;
    height: 21px;
    width: 21px;
    padding-left: 3px;
    font-weight: bold;
    display: inline-block;
    background: #07B1FD;
    color: white; }
  .mainNav .mainNavAvatar {
    height: 30px;
    width: 30px;
    background-color: #EDF0F4;
    border-radius: 50%;
    background-size: cover;
    background-position: center center; }
  .mainNav .mainNavLogo {
    background: #07B1FD;
    padding: 19px;
    margin-left: -16px;
    position: relative;
    top: -3px; }
  .mainNav .mainNavLogoImage {
    max-height: 53px !important;
    padding: 0px;
    position: absolute;
    top: 0px;
    left: 0px; }
  .mainNav .mainNavName {
    padding-left: 56px; }

@media (max-width: 920px) {
  .mainNav {
    display: block; }
  .mainNavLeft, .mainNavRight {
    width: 100%; }
  .mainNavLeft {
    padding-bottom: 8px; }
  .mainNavRight {
    padding-top: 8px; }
  .mainNavRightContainer {
    display: flex;
    justify-content: space-between; } }

@media (max-width: 424px) {
  .mainNavIcons {
    display: contents; } }

/*!
 * WEB UI SYSTEM albo
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * @rulotico
 */
.radioButton {
  text-align: left; }

[type="radio"]:checked,
[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px; }

[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 24px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #666;
  padding-top: 8px;
  padding-bottom: 8px; }

[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 18px;
  height: 18px;
  border: 1px solid #969BA0;
  border-radius: 100%;
  background: white; }

[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
  content: '';
  width: 10px;
  height: 10px;
  background: #07B1FD;
  position: absolute;
  top: 13px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease; }

[type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0); }

[type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1); }

[type="radio"]:checked + label:before {
  border: solid #07B1FD 2px; }

/*!
 * WEB UI SYSTEM albo
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * @rulotico
 */
.resultsIn {
  display: flex;
  justify-content: space-around;
  margin-right: 200px;
  padding: 24px; }
  .resultsIn .resultsInTitle {
    padding: 8px;
    color: #969BA0; }
  .resultsIn .resultInItem {
    text-align: center;
    padding: 8px; }

@media (max-width: 992px) {
  .resultsIn {
    flex-wrap: wrap; } }

/*!
 * WEB UI SYSTEM albo
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * @rulotico
 */
.searchIndigo {
  transition: all 1s ease;
  align-items: baseline; }
  .searchIndigo .searchIindigoGroup {
    width: 100%; }
  .searchIndigo .arrow-up {
    display: none; }
  .searchIndigo img {
    padding-right: 16px;
    top: 8px;
    position: relative;
    max-width: 190px; }
  .searchIndigo .flex {
    align-items: baseline; }
  .searchIndigo .searchInput {
    position: relative;
    z-index: 1;
    width: 100%; }
    .searchIndigo .searchInput input {
      padding-left: 32px; }
    .searchIndigo .searchInput i {
      position: absolute; }
    .searchIndigo .searchInput i:first-child {
      padding-left: 16px;
      padding-top: 17px; }
    .searchIndigo .searchInput i:last-child {
      padding-top: 16px;
      margin-left: -32px; }
    .searchIndigo .searchInput .searchIndigoMenu {
      background-color: white; }
  .searchIndigo .searchBox {
    display: none;
    position: relative;
    height: 0px;
    margin: auto; }
    .searchIndigo .searchBox ul {
      padding: 16px;
      background: white;
      border-radius: 3px;
      overflow: hidden;
      border: 1px solid #EDF0F4;
      box-shadow: 0px 0px 8px 5px #EDF0F4; }
    .searchIndigo .searchBox li {
      cursor: pointer;
      padding: 16px;
      background-color: white;
      width: 48%;
      float: left;
      list-style: none;
      margin-left: 1%; }
  .searchIndigo .searchBox.active {
    display: inherit; }

@media (max-width: 990px) {
  .searchIndigo {
    width: 100%;
    margin: 0; }
    .searchIndigo .searchInput i:first-child {
      padding-left: 16px; }
    .searchIndigo .searchInput i:last-child {
      padding: 0px;
      position: absolute;
      right: 16px;
      margin: 0px;
      margin-top: 16px; } }

/*!
 * WEB UI SYSTEM albo
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * @rulotico
 */
.settings {
  font-size: 14px;
  color: #3E3E42;
  padding: 16px;
  border-bottom: 1px solid #EDF0F4;
  border-top: 1px solid #EDF0F4;
  margin-top: -1px;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none; }
  .settings:active {
    transition: all .2s;
    background-color: #FAFAFA; }

/*!
 * WEB UI SYSTEM albo
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * @rulotico
 */
.sideBar {
  width: 250px;
  height: calc(100vh - 62px);
  background-color: #FAFAFA;
  position: absolute;
  border-right: 1px solid #EDF0F4;
  transition: width .5s ease;
  position: fixed;
  z-index: 9; }
  .sideBar li {
    user-select: none;
    padding: 16px;
    font-size: 14px;
    display: block;
    align-items: center;
    color: #969BA0;
    cursor: pointer;
    transition: background-color 0.8s ease;
    transition: border-left 0.5s ease; }
    .sideBar li i {
      margin-right: 16px; }
    .sideBar li .ibon-chevron-down, .sideBar li .ibon-chevron-up {
      right: 0;
      position: absolute; }
  .sideBar li:active {
    opacity: .5; }
  .sideBar li.active {
    color: #3E3E42;
    border-left: 6px solid #3E3E42;
    font-weight: bold;
    padding-left: 10px; }
    .sideBar li.active i {
      margin-right: 16px; }
  .sideBar li:hover {
    background-color: #EDF0F4; }
  .sideBar .sideBarSub {
    padding-left: 48px; }

.containerAft {
  padding-top: 53px; }
  .containerAft .content {
    margin-left: 251px;
    transition: all 1s ease; }

.containerIndigo {
  padding-top: 64px; }
  .containerIndigo .content {
    margin-right: 200px; }
  .containerIndigo .sideBar {
    right: 0;
    width: 200px;
    border-left: 1px solid #EDF0F4; }
    .containerIndigo .sideBar > * {
      padding: 16px; }
    .containerIndigo .sideBar li {
      border: 0px; }
    .containerIndigo .sideBar > ul {
      padding: 0px; }

.sideBarFooter {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 16px; }
  .sideBarFooter i {
    margin-right: 16px; }
  .sideBarFooter a {
    text-decoration: none; }
  .sideBarFooter span {
    white-space: nowrap; }

@media (max-width: 920px) {
  .containerAft {
    padding-top: 98px; }
  .sideBar {
    height: calc(100vh - 98px); }
  .containerIndigo {
    padding-top: 97px; }
    .containerIndigo .sideBar {
      width: 48px; }
    .containerIndigo .resultsIn, .containerIndigo .content {
      margin-right: 48px; } }

@media (max-width: 768px) {
  .sideBar {
    width: 48px;
    overflow: hidden; }
    .sideBar li i {
      margin-right: 17px; }
    .sideBar li.active i {
      margin-right: 17px; }
  .sideBarFooter i {
    margin-right: 17px; }
  .containerAft .content {
    margin-left: 48px; } }

/*!
 * WEB UI SYSTEM albo
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * @rulotico
 */
.starRank .startRankTitle {
  text-align: center;
  padding-bottom: 16px; }

.starRank .startRanksIcons {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center; }

.starRank i {
  transition: color .5s  ease;
  font-size: 38px;
  cursor: pointer;
  color: #969BA0; }

.starRank i:hover {
  color: #FDB201; }

.starRank i:hover ~ i {
  color: #FDB201; }

.starRank .gold {
  color: #FDB201; }

/*!
 * WEB UI SYSTEM albo
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * @rulotico
 */
.superCorrect, .superBad {
  height: 40px;
  width: 40px;
  border-radius: 50em;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white; }

.superCorrect {
  background-color: #6CB156; }

.superBad {
  background-color: #F8644F; }

.dot {
  width: 10px;
  height: 10px;
  background-color: #969BA0;
  border-radius: 50em;
  display: flex; }

.processSuper {
  display: flex;
  flex-direction: column;
  align-items: center; }
  .processSuper .line {
    border: 1px solid #969BA0;
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-style: dotted;
    height: 85%; }

/*!
 * WEB UI SYSTEM albo
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * @rulotico
 */
.switcherGroup {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.switcher {
  display: flex; }
  .switcher .switcherSlider {
    cursor: pointer;
    background-color: #EDF0F4;
    border-radius: 32px;
    width: 50px;
    height: 32px; }
    .switcher .switcherSlider .switcherSliderCircle {
      transition: all .2s ease-in;
      background: white;
      height: 28px;
      width: 28px;
      border-radius: 50%;
      top: 2px;
      left: 2px;
      position: relative;
      box-shadow: 1px 1px 3px #e3dddd; }
  .switcher:active .switcherSlider, .switcher.active .switcherSlider {
    background-color: #3743AA; }
    .switcher:active .switcherSlider .switcherSliderCircle, .switcher.active .switcherSlider .switcherSliderCircle {
      left: 20px; }
  .switcher.left {
    justify-content: flex-end; }
  .switcher.right {
    justify-content: flex-start; }
  .switcher.center {
    justify-content: center; }

/*!
 * WEB UI SYSTEM albo
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * @rulotico
 */
.card .tableTools {
  display: flex;
  padding: 8px 0;
  justify-content: space-between;
  align-items: center; }
  .card .tableTools input {
    max-width: 200px;
    margin-right: 8px; }
  .card .tableTools > div {
    display: flex; }
  .card .tableTools .tableToolsCargo, .card .tableTools .tableToolsAbonos {
    margin-left: 8px;
    display: flex;
    align-items: center; }
  .card .tableTools .tableToolspages {
    display: flex;
    align-items: center;
    padding-bottom: 16px; }
  .card .tableTools.bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    margin-left: -16px;
    padding: 0;
    background-color: white;
    border-top: #EDF0F4 1px solid; }
    .card .tableTools.bottom > div {
      padding: 16px; }

/*!
 * WEB UI SYSTEM albo
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * @rulotico
 */
table {
  width: 100%;
  text-align: left;
  display: table;
  overflow: scroll; }
  table th {
    padding: 8px;
    border-bottom: solid 1px #EDF0F4;
    font-weight: bold;
    white-space: nowrap; }
  table td {
    padding: 16px;
    white-space: break-all;
    border: none; }
  table tr :first-child {
    padding-left: 0px; }
  table.lines td {
    border-bottom: 1px solid #FAFAFA; }

@media (max-width: 800px) {
  table {
    display: block; } }

.containerAft .tableContainer {
  height: calc(100vh - 380px);
  overflow: scroll;
  margin-left: -16px;
  margin-right: -16px; }
  .containerAft .tableContainer table {
    padding-left: 16px;
    padding-right: 16px; }

/*!
 * WEB UI SYSTEM albo
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * @rulotico
 */
.tabBox {
  background-color: white; }
  .tabBox ul {
    display: flex;
    list-style: none;
    justify-content: space-around;
    width: calc(100% + 32px);
    margin-left: -16px;
    padding-bottom: 16px; }
  .tabBox li {
    transition: all .5s;
    border-bottom: 1px solid #EDF0F4;
    width: 100%;
    text-align: center;
    padding-bottom: 8px;
    cursor: pointer; }
  .tabBox li.active {
    border-bottom: #3743AA 2px solid; }
  .tabBox li:hover {
    border-bottom: #3743AA 2px solid; }

/*!
 * WEB UI SYSTEM albo
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * @rulotico
 */
.title_dispatcher {
  color: #969BA0;
  background-color: #FAFAFA;
  display: flex;
  align-items: center; }

/*!
 * WEB UI SYSTEM albo
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * @rulotico
 */
.transferInfo .transferInfoAmmount {
  height: calc(100vh - 285px);
  margin-top: -16px; }
  .transferInfo .transferInfoAmmount h3 {
    padding-top: 16px; }

.transferInfo .transferInfoContacts .profile :first-child {
  padding-left: 16px;
  padding-right: 16px; }

.transferInfo .transferInfoContacts h3 {
  padding-left: 16px; }

.transferInfo .transferInfoContacts .transferInfoUser {
  overflow: scroll;
  width: calc(100% + 16px);
  height: calc(100vh - 390px); }
  .transferInfo .transferInfoContacts .transferInfoUser .transferInfoItem {
    display: flex;
    align-items: center;
    padding: 16px; }
    .transferInfo .transferInfoContacts .transferInfoUser .transferInfoItem > div:first-child {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 40px;
      width: 40px;
      background-color: #EDF0F4;
      border-radius: 15em;
      margin-right: 8px; }
    .transferInfo .transferInfoContacts .transferInfoUser .transferInfoItem:hover {
      background-color: #FAFAFA;
      cursor: pointer; }

.transferInfo .transferInfoContacts .inputButton {
  padding-left: 16px; }

.transferInfoConfirm {
  height: calc(100vh - 201px);
  margin-top: -16px; }
  .transferInfoConfirm h3 {
    padding-top: 16px; }

/*!
 * WEB UI SYSTEM albo
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * @rulotico
 */
.transactionTitle {
  font-size: 14px;
  color: #969BA0;
  padding: 8px 16px;
  background-color: #FAFAFA; }

/*!
 * WEB UI SYSTEM albo
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * @rulotico
 */
.tweenButton {
  padding-top: 0;
  display: flex; }
  .tweenButton button {
    background: #3743AA;
    padding: 8px;
    font-weight: bold;
    color: white;
    text-align: center;
    border-radius: 3px;
    border: 0;
    width: 50%;
    outline: none; }
  .tweenButton button:first-child {
    margin-right: 4px; }
  .tweenButton button:last-child {
    margin-left: 4px; }
  .tweenButton button.secundary {
    background: white;
    border: 1px solid #3743AA;
    color: #3743AA; }

/*!
 * WEB UI SYSTEM albo
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * @rulotico
 */

/*!
 * WEB UI SYSTEM albo
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * @rulotico
 */
.MuiCardContent-root {
  padding: 0 !important; }

.MuiCardHeader-root {
  padding: 0px !important; }
  .MuiCardHeader-root h1 {
    padding: 0px; }

.MuiCardHeader-root h1 {
  font-size: 16px; }

p p {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0; }

.MuiGridListTile-root {
  width: 50% !important;
  height: 100px !important;
  padding: 0px !important; }
  .MuiGridListTile-root .MuiIconButton-root {
    color: white; }

