/*
Colors:
blue: #073d9f
light-blue: #176daa
light-blue2: #3399cc;
purple: #502895
green: #5bbe48
*/
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animated-fast {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s; }

.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s; }

.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s; }

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.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 swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing; }

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
.tada {
  -webkit-animation-name: tada;
  animation-name: tada; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    -webkit-transform: none;
    transform: none; } }
@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    -webkit-transform: none;
    transform: none; } }
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble; }

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg); }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg); } }
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg); }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg); } }
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center; }

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn; }

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown; }

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft; }

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight; }

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp; }

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut; }

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown; }

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft; }

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight; }

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp; }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -ms-transform: scale(0.95);
    -webkit-transform: scale(0.95);
    transform: scale(0.95); }
  to {
    opacity: 1;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1); } }
@keyframes fadeIn {
  from {
    opacity: 0;
    -ms-transform: scale(0.95);
    -webkit-transform: scale(0.95);
    transform: scale(0.95); }
  to {
    opacity: 1;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1); } }
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    /*-webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);*/
    -webkit-transform: translate3d(0, -50px, 0);
    transform: translate3d(0, -50px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInDown {
  from {
    opacity: 0;
    /*-webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);*/
    -webkit-transform: translate3d(0, -50px, 0);
    transform: translate3d(0, -50px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig; }

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    /*-webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);*/
    -webkit-transform: translate3d(-50px, 0, 0);
    transform: translate3d(-50px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInLeft {
  from {
    opacity: 0;
    /*-webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);*/
    -webkit-transform: translate3d(-50px, 0, 0);
    transform: translate3d(-50px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig; }

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    /*-webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);*/
    -webkit-transform: translate3d(50px, 0, 0);
    transform: translate3d(50px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInRight {
  from {
    opacity: 0;
    /*-webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);*/
    -webkit-transform: translate3d(50px, 0, 0);
    transform: translate3d(50px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight; }

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig; }

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    visibility: hidden;
    /*-webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);*/
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0); }
  to {
    opacity: 1;
    /*visibility: visible;*/
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInUp {
  from {
    opacity: 0;
    visibility: hidden;
    /*-webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);*/
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0); }
  to {
    visibility: visible;
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

@-webkit-keyframes fadeInUpMenu {
  from {
    opacity: 0;
    visibility: hidden;
    /*-webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);*/
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInUpMenu {
  from {
    opacity: 0;
    visibility: hidden;
    /*-webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);*/
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    visibility: visible;
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInUpMenu {
  -webkit-animation-name: fadeInUpMenu;
  animation-name: fadeInUpMenu; }

@-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, 40px, 0);
    transform: translate3d(0, 40px, 0); } }
@keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 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; }

.text-primary2 {
  color: #502895; }

.text-blue {
  color: #073d9f; }

.text-purple {
  color: #502895; }

.text-green {
  color: #5bbe48; }

/* mixins */
/* animation delay*/
.hasIntroGroup .animated {
  animation-delay: 0s; }
.hasIntroGroup .animated + .animated {
  animation-delay: 0.075s; }
.hasIntroGroup .animated + .animated + .animated {
  animation-delay: 0.15s; }
.hasIntroGroup .animated + .animated + .animated + .animated {
  animation-delay: 0.225s; }
.hasIntroGroup .animated + .animated + .animated + .animated + .animated {
  animation-delay: 0.3s; }
.hasIntroGroup .animated + .animated + .animated + .animated + .animated + .animated {
  animation-delay: 0.375s; }
.hasIntroGroup .animated + .animated + .animated + .animated + .animated + .animated + .animated {
  animation-delay: 0.45s; }
.hasIntroGroup .animated + .animated + .animated + .animated + .animated + .animated + .animated + .animated {
  animation-delay: 0.525s; }
.hasIntroGroup .animated + .animated + .animated + .animated + .animated + .animated + .animated + .animated + .animated {
  animation-delay: 0.6s; }
.hasIntroGroup .animated + .animated + .animated + .animated + .animated + .animated + .animated + .animated + .animated + .animated {
  animation-delay: 0.675s; }

/* animation delay*/
.hasIntroGroupDelayed .animated {
  animation-delay: 0.9s; }
.hasIntroGroupDelayed .animated + .animated {
  animation-delay: 1s; }
.hasIntroGroupDelayed .animated + .animated + .animated {
  animation-delay: 1.1s; }
.hasIntroGroupDelayed .animated + .animated + .animated + .animated {
  animation-delay: 1.2s; }
.hasIntroGroupDelayed .animated + .animated + .animated + .animated + .animated {
  animation-delay: 1.3s; }
.hasIntroGroupDelayed .animated + .animated + .animated + .animated + .animated + .animated {
  animation-delay: 1.4s; }
.hasIntroGroupDelayed .animated + .animated + .animated + .animated + .animated + .animated + .animated {
  animation-delay: 1.5s; }
.hasIntroGroupDelayed .animated + .animated + .animated + .animated + .animated + .animated + .animated + .animated {
  animation-delay: 1.6s; }
.hasIntroGroupDelayed .animated + .animated + .animated + .animated + .animated + .animated + .animated + .animated + .animated {
  animation-delay: 1.7s; }
.hasIntroGroupDelayed .animated + .animated + .animated + .animated + .animated + .animated + .animated + .animated + .animated + .animated {
  animation-delay: 1.8s; }

/*BORDER-RADIUS*/
/*box-shadow*/
body, .side-menu > li > a {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif !important; }

/*page-title-heading*/
.page-title .page-title-description, .page-title .page-title-heading {
  letter-spacing: normal; }

/*footer*/
.footer {
  color: #555;
  padding: 10px 30px;
  font-size: 11px;
  background: transparent;
  border-top: none; }

.a-dark {
  color: #333 !important; }
  .a-dark:hover {
    color: #176daa !important; }

.a-white {
  color: #fff !important; }
  .a-white:hover {
    color: #fff !important; }

/*fonts*/
/* text */
.font-xxs {
  font-size: 8px !important; }

.font-xs {
  font-size: 10px !important; }

.font-sm {
  font-size: 12px !important; }

.font-md {
  font-size: 16px !important; }

.font-md2 {
  font-size: 18px !important; }

.font-lg {
  font-size: 24px !important; }

.font-xl {
  font-size: 30px !important; }

.font-xxl {
  font-size: 36px !important; }

.font-xxxl {
  font-size: 45px !important; }

.font-primary {
  font-family: 'Quicksand',sans-serif; }

.font-bold {
  font-weight: bold !important; }

.font-thin {
  font-weight: 300 !important; }

.font-normal {
  font-weight: normal !important; }

.text-uppercase {
  text-transform: uppercase; }

.text-normal {
  text-transform: none; }

.letter-space {
  letter-spacing: 1px; }

.letter-space2 {
  letter-spacing: 2px; }

.letter-space3 {
  letter-spacing: 3px; }

.ln-normal {
  line-height: normal; }

.box-shadow {
  box-shadow: 2px 3px 15px rgba(0, 0, 0, 0.05); }

.box-shadow-lg {
  box-shadow: 2px 3px 30px rgba(0, 0, 0, 0.05); }

.pill, .rounded {
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px; }

.lh-normal {
  line-height: normal !important; }

.ellipsis-block2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; }

.ellipsis-block3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; }

.disable-select, .dashboard-item, .dashboard-item-card {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.position-relative {
  position: relative !important; }

.position-absolute {
  position: absolute !important; }

.img-xxxs {
  width: 18px !important; }

.img-xxs {
  min-width: 24px !important;
  min-height: 24px !important;
  width: 24px !important;
  height: 24px !important; }

.img-xs {
  min-width: 32px !important;
  min-height: 32px !important;
  width: 32px !important;
  height: 32px !important; }

.img-sm {
  min-width: 48px !important;
  min-height: 48px !important;
  width: 48px !important;
  height: 48px !important; }

.img-md {
  min-width: 60px !important;
  min-height: 60px !important;
  width: 60px !important;
  height: 60px !important; }

.img-lg {
  min-width: 80px !important;
  min-height: 80px !important;
  width: 80px !important;
  height: 80px !important; }

.img-xl {
  min-width: 100px !important;
  min-height: 100px !important;
  width: 100px !important;
  height: 100px !important; }

.img-xxl {
  min-width: 140px !important;
  min-height: 140px !important;
  width: 140px !important;
  height: 140px !important; }

.img-cover {
  object-fit: cover;
  height: 100%;
  width: 100%; }

.img-fill {
  object-fit: fill;
  height: 100%;
  width: 100%; }

.img-bg-cover {
  background-size: cover !important;
  width: 100%;
  height: 100%; }

/************
* PADDING
************/
/*padding*/
.p0 {
  margin: 0px !important; }

.p5 {
  margin: 5px !important; }

.p10 {
  margin: 10px !important; }

.p15 {
  margin: 15px !important; }

.p20 {
  margin: 20px !important; }

.p25 {
  margin: 25px !important; }

.p30 {
  margin: 30px !important; }

.p35 {
  margin: 35px !important; }

.p40 {
  margin: 40px !important; }

.p45 {
  margin: 45px !important; }

.p50 {
  margin: 50px !important; }

/*padding left*/
.pl0 {
  padding-left: 0px !important; }

.pl5 {
  padding-left: 5px !important; }

.pl10 {
  padding-left: 10px !important; }

.pl15 {
  padding-left: 15px !important; }

.pl20 {
  padding-left: 20px !important; }

.pl25 {
  padding-left: 25px !important; }

.pl30 {
  padding-left: 30px !important; }

.pl35 {
  padding-left: 35px !important; }

.pl40 {
  padding-left: 40px !important; }

.pl45 {
  padding-left: 45px !important; }

.pl50 {
  padding-left: 50px !important; }

.pl55 {
  padding-left: 55px !important; }

.pl60 {
  padding-left: 60px !important; }

.pl65 {
  padding-left: 65px !important; }

.pl70 {
  padding-left: 70px !important; }

.pl75 {
  padding-left: 75px !important; }

.pl80 {
  padding-left: 80px !important; }

.pl85 {
  padding-left: 85px !important; }

.pl90 {
  padding-left: 90px !important; }

.pl95 {
  padding-left: 95px !important; }

.pl100 {
  padding-left: 100px !important; }

/*padding top*/
.pt0 {
  padding-top: 0px !important; }

.pt5 {
  padding-top: 5px !important; }

.pt10 {
  padding-top: 10px !important; }

.pt15 {
  padding-top: 15px !important; }

.pt20 {
  padding-top: 20px !important; }

.pt25 {
  padding-top: 25px !important; }

.pt30 {
  padding-top: 30px !important; }

.pt35 {
  padding-top: 35px !important; }

.pt40 {
  padding-top: 40px !important; }

.pt45 {
  padding-top: 45px !important; }

.pt50 {
  padding-top: 50px !important; }

.pt55 {
  padding-top: 55px !important; }

.pt60 {
  padding-top: 60px !important; }

.pt65 {
  padding-top: 65px !important; }

.pt70 {
  padding-top: 70px !important; }

.pt75 {
  padding-top: 75px !important; }

.pt80 {
  padding-top: 80px !important; }

.pt85 {
  padding-top: 85px !important; }

.pt90 {
  padding-top: 90px !important; }

.pt95 {
  padding-top: 95px !important; }

.pt100 {
  padding-top: 100px !important; }

/*padding right*/
.pr0 {
  padding-right: 0px !important; }

.pr5 {
  padding-right: 5px !important; }

.pr10 {
  padding-right: 10px !important; }

.pr15 {
  padding-right: 15px !important; }

.pr20 {
  padding-right: 20px !important; }

.pr25 {
  padding-right: 25px !important; }

.pr30 {
  padding-right: 30px !important; }

.pr35 {
  padding-right: 35px !important; }

.pr40 {
  padding-right: 40px !important; }

.pr45 {
  padding-right: 45px !important; }

.pr50 {
  padding-right: 50px !important; }

.pr55 {
  padding-right: 55px !important; }

.pr60 {
  padding-right: 60px !important; }

.pr65 {
  padding-right: 65px !important; }

.pr70 {
  padding-right: 70px !important; }

.pr75 {
  padding-right: 75px !important; }

.pr80 {
  padding-right: 80px !important; }

.pr85 {
  padding-right: 85px !important; }

.pr90 {
  padding-right: 90px !important; }

.pr95 {
  padding-right: 95px !important; }

.pr100 {
  padding-right: 100px !important; }

/*padding bottom*/
.pb0 {
  padding-bottom: 0px !important; }

.pb5 {
  padding-bottom: 5px !important; }

.pb10 {
  padding-bottom: 10px !important; }

.pb15 {
  padding-bottom: 15px !important; }

.pb20 {
  padding-bottom: 20px !important; }

.pb25 {
  padding-bottom: 25px !important; }

.pb30 {
  padding-bottom: 30px !important; }

.pb35 {
  padding-bottom: 35px !important; }

.pb40 {
  padding-bottom: 40px !important; }

.pb45 {
  padding-bottom: 45px !important; }

.pb50 {
  padding-bottom: 50px !important; }

.pb55 {
  padding-bottom: 55px !important; }

.pb60 {
  padding-bottom: 60px !important; }

.pb65 {
  padding-bottom: 65px !important; }

.pb70 {
  padding-bottom: 70px !important; }

.pb75 {
  padding-bottom: 75px !important; }

.pb80 {
  padding-bottom: 80px !important; }

.pb85 {
  padding-bottom: 85px !important; }

.pb90 {
  padding-bottom: 90px !important; }

.pb95 {
  padding-bottom: 95px !important; }

.pb100 {
  padding-bottom: 100px !important; }

/************
* MARGINS
************/
/*margin*/
.m0 {
  margin: 0px !important; }

.m5 {
  margin: 5px !important; }

.m10 {
  margin: 10px !important; }

.m15 {
  margin: 15px !important; }

.m20 {
  margin: 20px !important; }

.m25 {
  margin: 25px !important; }

.m30 {
  margin: 30px !important; }

.m35 {
  margin: 35px !important; }

.m40 {
  margin: 40px !important; }

.m45 {
  margin: 45px !important; }

.m50 {
  margin: 50px !important; }

/*margin left*/
.ml0 {
  margin-left: 0px !important; }

.ml5 {
  margin-left: 5px !important; }

.ml10 {
  margin-left: 10px !important; }

.ml15 {
  margin-left: 15px !important; }

.ml20 {
  margin-left: 20px !important; }

.ml25 {
  margin-left: 25px !important; }

.ml30 {
  margin-left: 30px !important; }

.ml35 {
  margin-left: 35px !important; }

.ml40 {
  margin-left: 40px !important; }

.ml45 {
  margin-left: 45px !important; }

.ml50 {
  margin-left: 50px !important; }

.ml55 {
  margin-left: 55px !important; }

.ml60 {
  margin-left: 60px !important; }

.ml65 {
  margin-left: 65px !important; }

.ml70 {
  margin-left: 70px !important; }

.ml75 {
  margin-left: 75px !important; }

.ml80 {
  margin-left: 80px !important; }

.ml85 {
  margin-left: 85px !important; }

.ml90 {
  margin-left: 90px !important; }

.ml95 {
  margin-left: 95px !important; }

.ml100 {
  margin-left: 100px !important; }

/*margin top*/
.mt0 {
  margin-top: 0px !important; }

.mt5 {
  margin-top: 5px !important; }

.mt10 {
  margin-top: 10px !important; }

.mt15 {
  margin-top: 15px !important; }

.mt20 {
  margin-top: 20px !important; }

.mt25 {
  margin-top: 25px !important; }

.mt30 {
  margin-top: 30px !important; }

.mt35 {
  margin-top: 35px !important; }

.mt40 {
  margin-top: 40px !important; }

.mt45 {
  margin-top: 45px !important; }

.mt50 {
  margin-top: 50px !important; }

.mt55 {
  margin-top: 55px !important; }

.mt60 {
  margin-top: 60px !important; }

.mt65 {
  margin-top: 65px !important; }

.mt70 {
  margin-top: 70px !important; }

.mt75 {
  margin-top: 75px !important; }

.mt80 {
  margin-top: 80px !important; }

.mt85 {
  margin-top: 85px !important; }

.mt90 {
  margin-top: 90px !important; }

.mt95 {
  margin-top: 95px !important; }

.mt100 {
  margin-top: 100px !important; }

/*margin right*/
.mr0 {
  margin-right: 0px !important; }

.mr5 {
  margin-right: 5px !important; }

.mr10 {
  margin-right: 10px !important; }

.mr15 {
  margin-right: 15px !important; }

.mr20 {
  margin-right: 20px !important; }

.mr25 {
  margin-right: 25px !important; }

.mr30 {
  margin-right: 30px !important; }

.mr35 {
  margin-right: 35px !important; }

.mr40 {
  margin-right: 40px !important; }

.mr45 {
  margin-right: 45px !important; }

.mr50 {
  margin-right: 50px !important; }

.mr55 {
  margin-right: 55px !important; }

.mr60 {
  margin-right: 60px !important; }

.mr65 {
  margin-right: 65px !important; }

.mr70 {
  margin-right: 70px !important; }

.mr75 {
  margin-right: 75px !important; }

.mr80 {
  margin-right: 80px !important; }

.mr85 {
  margin-right: 85px !important; }

.mr90 {
  margin-right: 90px !important; }

.mr95 {
  margin-right: 95px !important; }

.mr100 {
  margin-right: 100px !important; }

/*margin bottom*/
.mb0 {
  margin-bottom: 0px !important; }

.mb5 {
  margin-bottom: 5px !important; }

.mb10 {
  margin-bottom: 10px !important; }

.mb15 {
  margin-bottom: 15px !important; }

.mb20 {
  margin-bottom: 20px !important; }

.mb25 {
  margin-bottom: 25px !important; }

.mb30 {
  margin-bottom: 30px !important; }

.mb35 {
  margin-bottom: 35px !important; }

.mb40 {
  margin-bottom: 40px !important; }

.mb45 {
  margin-bottom: 45px !important; }

.mb50 {
  margin-bottom: 50px !important; }

.mb55 {
  margin-bottom: 55px !important; }

.mb60 {
  margin-bottom: 60px !important; }

.mb65 {
  margin-bottom: 65px !important; }

.mb70 {
  margin-bottom: 70px !important; }

.mb75 {
  margin-bottom: 75px !important; }

.mb80 {
  margin-bottom: 80px !important; }

.mb85 {
  margin-bottom: 85px !important; }

.mb90 {
  margin-bottom: 90px !important; }

.mb95 {
  margin-bottom: 95px !important; }

.mb100 {
  margin-bottom: 100px !important; }

/* negative margin */
.m--0 {
  margin: 0px !important; }

.m--1 {
  margin: -1px !important; }

.m--2 {
  margin: -2px !important; }

.m--3 {
  margin: -3px !important; }

.m--4 {
  margin: -4px !important; }

.m--5 {
  margin: -5px !important; }

.m--6 {
  margin: -6px !important; }

.m--7 {
  margin: -7px !important; }

.m--8 {
  margin: -8px !important; }

.m--9 {
  margin: -9px !important; }

.m--10 {
  margin: -10px !important; }

.m--11 {
  margin: -11px !important; }

.m--12 {
  margin: -12px !important; }

.m--13 {
  margin: -13px !important; }

.m--14 {
  margin: -14px !important; }

.m--15 {
  margin: -15px !important; }

.m--16 {
  margin: -16px !important; }

.m--17 {
  margin: -17px !important; }

.m--18 {
  margin: -18px !important; }

.m--19 {
  margin: -19px !important; }

.m--20 {
  margin: -20px !important; }

.m--21 {
  margin: -21px !important; }

.m--22 {
  margin: -22px !important; }

.m--23 {
  margin: -23px !important; }

.m--24 {
  margin: -24px !important; }

.m--25 {
  margin: -25px !important; }

.m--26 {
  margin: -26px !important; }

.m--27 {
  margin: -27px !important; }

.m--28 {
  margin: -28px !important; }

.m--29 {
  margin: -29px !important; }

.m--30 {
  margin: -30px !important; }

/* negative margin left */
.ml--0 {
  margin-left: 0px !important; }

.ml--1 {
  margin-left: -1px !important; }

.ml--2 {
  margin-left: -2px !important; }

.ml--3 {
  margin-left: -3px !important; }

.ml--4 {
  margin-left: -4px !important; }

.ml--5 {
  margin-left: -5px !important; }

.ml--6 {
  margin-left: -6px !important; }

.ml--7 {
  margin-left: -7px !important; }

.ml--8 {
  margin-left: -8px !important; }

.ml--9 {
  margin-left: -9px !important; }

.ml--10 {
  margin-left: -10px !important; }

.ml--11 {
  margin-left: -11px !important; }

.ml--12 {
  margin-left: -12px !important; }

.ml--13 {
  margin-left: -13px !important; }

.ml--14 {
  margin-left: -14px !important; }

.ml--15 {
  margin-left: -15px !important; }

.ml--16 {
  margin-left: -16px !important; }

.ml--17 {
  margin-left: -17px !important; }

.ml--18 {
  margin-left: -18px !important; }

.ml--19 {
  margin-left: -19px !important; }

.ml--20 {
  margin-left: -20px !important; }

.ml--21 {
  margin-left: -21px !important; }

.ml--22 {
  margin-left: -22px !important; }

.ml--23 {
  margin-left: -23px !important; }

.ml--24 {
  margin-left: -24px !important; }

.ml--25 {
  margin-left: -25px !important; }

.ml--26 {
  margin-left: -26px !important; }

.ml--27 {
  margin-left: -27px !important; }

.ml--28 {
  margin-left: -28px !important; }

.ml--29 {
  margin-left: -29px !important; }

.ml--30 {
  margin-left: -30px !important; }

/* negative margin right */
.mr--0 {
  margin-right: 0px !important; }

.mr--1 {
  margin-right: -1px !important; }

.mr--2 {
  margin-right: -2px !important; }

.mr--3 {
  margin-right: -3px !important; }

.mr--4 {
  margin-right: -4px !important; }

.mr--5 {
  margin-right: -5px !important; }

.mr--6 {
  margin-right: -6px !important; }

.mr--7 {
  margin-right: -7px !important; }

.mr--8 {
  margin-right: -8px !important; }

.mr--9 {
  margin-right: -9px !important; }

.mr--10 {
  margin-right: -10px !important; }

.mr--11 {
  margin-right: -11px !important; }

.mr--12 {
  margin-right: -12px !important; }

.mr--13 {
  margin-right: -13px !important; }

.mr--14 {
  margin-right: -14px !important; }

.mr--15 {
  margin-right: -15px !important; }

.mr--16 {
  margin-right: -16px !important; }

.mr--17 {
  margin-right: -17px !important; }

.mr--18 {
  margin-right: -18px !important; }

.mr--19 {
  margin-right: -19px !important; }

.mr--20 {
  margin-right: -20px !important; }

.mr--21 {
  margin-right: -21px !important; }

.mr--22 {
  margin-right: -22px !important; }

.mr--23 {
  margin-right: -23px !important; }

.mr--24 {
  margin-right: -24px !important; }

.mr--25 {
  margin-right: -25px !important; }

.mr--26 {
  margin-right: -26px !important; }

.mr--27 {
  margin-right: -27px !important; }

.mr--28 {
  margin-right: -28px !important; }

.mr--29 {
  margin-right: -29px !important; }

.mr--30 {
  margin-right: -30px !important; }

/* negative margin bottom */
.mb--0 {
  margin-bottom: 0px !important; }

.mb--1 {
  margin-bottom: -1px !important; }

.mb--2 {
  margin-bottom: -2px !important; }

.mb--3 {
  margin-bottom: -3px !important; }

.mb--4 {
  margin-bottom: -4px !important; }

.mb--5 {
  margin-bottom: -5px !important; }

.mb--6 {
  margin-bottom: -6px !important; }

.mb--7 {
  margin-bottom: -7px !important; }

.mb--8 {
  margin-bottom: -8px !important; }

.mb--9 {
  margin-bottom: -9px !important; }

.mb--10 {
  margin-bottom: -10px !important; }

.mb--11 {
  margin-bottom: -11px !important; }

.mb--12 {
  margin-bottom: -12px !important; }

.mb--13 {
  margin-bottom: -13px !important; }

.mb--14 {
  margin-bottom: -14px !important; }

.mb--15 {
  margin-bottom: -15px !important; }

.mb--16 {
  margin-bottom: -16px !important; }

.mb--17 {
  margin-bottom: -17px !important; }

.mb--18 {
  margin-bottom: -18px !important; }

.mb--19 {
  margin-bottom: -19px !important; }

.mb--20 {
  margin-bottom: -20px !important; }

.mb--21 {
  margin-bottom: -21px !important; }

.mb--22 {
  margin-bottom: -22px !important; }

.mb--23 {
  margin-bottom: -23px !important; }

.mb--24 {
  margin-bottom: -24px !important; }

.mb--25 {
  margin-bottom: -25px !important; }

.mb--26 {
  margin-bottom: -26px !important; }

.mb--27 {
  margin-bottom: -27px !important; }

.mb--28 {
  margin-bottom: -28px !important; }

.mb--29 {
  margin-bottom: -29px !important; }

.mb--30 {
  margin-bottom: -30px !important; }

/* negative margin top */
.mt--0 {
  margin-top: 0px !important; }

.mt--1 {
  margin-top: -1px !important; }

.mt--2 {
  margin-top: -2px !important; }

.mt--3 {
  margin-top: -3px !important; }

.mt--4 {
  margin-top: -4px !important; }

.mt--5 {
  margin-top: -5px !important; }

.mt--6 {
  margin-top: -6px !important; }

.mt--7 {
  margin-top: -7px !important; }

.mt--8 {
  margin-top: -8px !important; }

.mt--9 {
  margin-top: -9px !important; }

.mt--10 {
  margin-top: -10px !important; }

.mt--11 {
  margin-top: -11px !important; }

.mt--12 {
  margin-top: -12px !important; }

.mt--13 {
  margin-top: -13px !important; }

.mt--14 {
  margin-top: -14px !important; }

.mt--15 {
  margin-top: -15px !important; }

.mt--16 {
  margin-top: -16px !important; }

.mt--17 {
  margin-top: -17px !important; }

.mt--18 {
  margin-top: -18px !important; }

.mt--19 {
  margin-top: -19px !important; }

.mt--20 {
  margin-top: -20px !important; }

.mt--21 {
  margin-top: -21px !important; }

.mt--22 {
  margin-top: -22px !important; }

.mt--23 {
  margin-top: -23px !important; }

.mt--24 {
  margin-top: -24px !important; }

.mt--25 {
  margin-top: -25px !important; }

.mt--26 {
  margin-top: -26px !important; }

.mt--27 {
  margin-top: -27px !important; }

.mt--28 {
  margin-top: -28px !important; }

.mt--29 {
  margin-top: -29px !important; }

.mt--30 {
  margin-top: -30px !important; }

.animeFast, #navbarHome, #navbarHome .navbar-nav > li > a, .side-menu a:not([class*=color-]) > .list-icon, .table-card tbody > tr:not(.tr-separator) > td, .dashboard-item, .dashboard-item .dashboard-icon, .dashboard-item-card, .dashboard-item-card .dashboard-item-card-icon img, .card-hover, .card.card-hover {
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out; }

.anime, .side-menu a, .btn-upload-file button,
.btn-upload-file input[type=file], .btn-upload-file:before, .btn-upload-file:after {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out; }

.animeSlow, .accordion .accordion-header .accordion-btn {
  -webkit-transition: all 0.32s ease-in-out;
  -moz-transition: all 0.32s ease-in-out;
  -o-transition: all 0.32s ease-in-out;
  transition: all 0.32s ease-in-out; }

.animeSlow2 {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; }

/*hasIntroGroup animation delay*/
.hasIntroGroup .animated {
  animation-delay: 0s; }
.hasIntroGroup .animated + .animated {
  animation-delay: 0.075s; }
.hasIntroGroup .animated + .animated + .animated {
  animation-delay: 0.15s; }
.hasIntroGroup .animated + .animated + .animated + .animated {
  animation-delay: 0.225s; }
.hasIntroGroup .animated + .animated + .animated + .animated + .animated {
  animation-delay: 0.3s; }
.hasIntroGroup .animated + .animated + .animated + .animated + .animated + .animated {
  animation-delay: 0.375s; }
.hasIntroGroup .animated + .animated + .animated + .animated + .animated + .animated + .animated {
  animation-delay: 0.45s; }
.hasIntroGroup .animated + .animated + .animated + .animated + .animated + .animated + .animated + .animated {
  animation-delay: 0.525s; }
.hasIntroGroup .animated + .animated + .animated + .animated + .animated + .animated + .animated + .animated + .animated {
  animation-delay: 0.6s; }
.hasIntroGroup .animated + .animated + .animated + .animated + .animated + .animated + .animated + .animated + .animated + .animated {
  animation-delay: 0.675s; }

/*animation delay*/
.a-delay0 {
  animation-delay: 0s; }

.a-delay1 {
  animation-delay: 0.075s; }

.a-delay2 {
  animation-delay: 0.15s; }

.a-delay3 {
  animation-delay: 0.225s; }

.a-delay4 {
  animation-delay: 0.3s; }

.a-delay5 {
  animation-delay: 0.375s; }

.a-delay6 {
  animation-delay: 0.45s; }

.a-delay7 {
  animation-delay: 0.525s; }

.a-delay8 {
  animation-delay: 0.6s; }

.a-delay9 {
  animation-delay: 0.675s; }

.a-delay10 {
  animation-delay: 0.75s; }

.bg-primary-gradient {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#073d9f+0,502895+34,a64cc9+100 */
  background: #073d9f;
  /* Old browsers */
  background: -moz-linear-gradient(45deg, #073d9f 0%, #502895 34%, #a64cc9 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg, #073d9f 0%, #502895 34%, #a64cc9 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, #073d9f 0%, #502895 34%, #a64cc9 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#073d9f', endColorstr='#a64cc9',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */ }

.bg-overlay {
  position: relative; }
  .bg-overlay:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .5; }
  .bg-overlay > * {
    z-index: 5; }
  .bg-overlay.bg-overlay-primary:after {
    background: #176daa; }
  .bg-overlay.bg-overlay-primary2:after {
    background: #073d9f; }
  .bg-overlay.bg-overlay-purple:after {
    background: #502895; }
  .bg-overlay.bg-overlay-green:after {
    background: #5bbe48; }
  .bg-overlay.opacity-30:after {
    opacity: .3 !important; }
  .bg-overlay.opacity-40:after {
    opacity: .4 !important; }
  .bg-overlay.opacity-50:after {
    opacity: .5 !important; }
  .bg-overlay.opacity-60:after {
    opacity: .6 !important; }
  .bg-overlay.opacity-70:after {
    opacity: .7 !important; }
  .bg-overlay.opacity-80:after {
    opacity: .8 !important; }
  .bg-overlay.opacity-90:after {
    opacity: .9 !important; }
  .bg-overlay.opacity-100:after {
    opacity: 1 !important; }

.topnav-overlay > * {
  position: relative; }
.topnav-overlay:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 80px;
  opacity: .7;
  background: white;
  background: -moz-linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1); }

.fix-top .topnav-overlay:after {
  opacity: 0; }

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; }

.w-auto {
  width: auto !important; }

.sheet {
  margin: 0;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  page-break-after: always;
  /** Padding area **/ }
  .sheet.padding-10mm {
    padding: 10mm; }
  .sheet.padding-15mm {
    padding: 15mm; }
  .sheet.padding-20mm {
    padding: 20mm; }
  .sheet.padding-25mm {
    padding: 25mm; }

.table-form-card {
  page-break-before: auto;
  page-break-inside: avoid; }

.table-form tr,
p {
  page-break-inside: avoid;
  page-break-after: auto;
  break-before: auto; }

.table-form-card {
  color: #000;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #ccc;
  border-width: 1px 1px 3px 1px;
  border-bottom-color: #bbb; }

.table-form {
  width: 100%;
  border-collapse: collapse;
  border-style: hidden;
  border-spacing: 0;
  border-radius: 5px;
  overflow: hidden; }
  .table-form tr:first-child td {
    border-top: 0; }
  .table-form tr td:first-child {
    border-left: 0; }
  .table-form tr:last-child td {
    border-bottom: 0; }
  .table-form tr td:last-child {
    border-right: 0; }
  .table-form td {
    padding: 5px 10px;
    border: 1px solid #ccc;
    margin-right: -1px;
    margin-bottom: -1px; }
    .table-form td.bg-fill {
      border-color: #ccc;
      background-color: #ddd; }
  .table-form .table-form-label {
    font-size: 10px;
    letter-spacing: 0.5px; }
  .table-form .table-form-input {
    border: 0;
    width: 100%; }

@media print {
  body {
    background-color: #fff !important;
    -webkit-print-color-adjust: exact !important;
    margin: 0;
    width: 100%; }

  body.printModal > * {
    display: none; }

  .no-print {
    display: none; }

  .printModal {
    overflow: visible !important;
    display: block;
    background-color: #fff;
    color: #000; }
    .printModal .modal {
      display: none !important;
      visibility: hidden !important; }
      .printModal .modal .close {
        visibility: hidden;
        display: none; }
    .printModal .wrapper,
    .printModal .modal-backdrop,
    .printModal .modal-header,
    .printModal .modal-footer {
      display: none !important; }
    .printModal .modal.printable-modal {
      overflow: visible !important;
      visibility: visible !important;
      display: block !important;
      position: relative; }
      .printModal .modal.printable-modal .modal-content {
        border: none; }
      .printModal .modal.printable-modal .print-container {
        position: static;
        overflow: visible !important;
        display: block !important; }

  /*printable-page*/
  .printThePage .main-wrapper {
    background-color: #fff !important; }
  .printThePage #navbarHome,
  .printThePage #wrapper > .navbar,
  .printThePage .site-sidebar,
  .printThePage footer.footer {
    display: none !important; }
  .printThePage .main-wrapper {
    margin-left: 0; }
  .printThePage .printlogo {
    display: block !important; } }
/*homepage*/
#navbarHome {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  height: 70px;
  z-index: 900;
  padding-top: 0 !important; }
  #navbarHome .navbar-brand {
    background: transparent;
    border: none;
    opacity: 0;
    transform: translateX(20px); }
  #navbarHome .navbar-nav > li > a {
    position: relative;
    color: #fff;
    padding-top: 14px;
    font-weight: 700;
    padding-left: 5px !important;
    padding-right: 5px !important;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 0 0 5px 5px; }
    #navbarHome .navbar-nav > li > a:after {
      content: '';
      background: #176daa;
      width: 0%;
      height: 3px;
      position: absolute;
      top: -1px;
      left: 0;
      right: 0;
      transition: all ease-out .18s;
      margin: auto;
      text-align: center; }
    #navbarHome .navbar-nav > li > a.active:after, #navbarHome .navbar-nav > li > a:hover:after {
      width: 100%; }
    #navbarHome .navbar-nav > li > a.text-blue {
      color: #176daa; }
      #navbarHome .navbar-nav > li > a.text-blue:after {
        background: #176daa; }
    #navbarHome .navbar-nav > li > a.text-purple {
      color: #502895; }
      #navbarHome .navbar-nav > li > a.text-purple:after {
        background: #502895; }
    #navbarHome .navbar-nav > li > a.text-green {
      color: #5bbe48; }
      #navbarHome .navbar-nav > li > a.text-green:after {
        background: #5bbe48; }
  #navbarHome .navbar-nav .nav-link {
    padding-right: 1.3rem;
    padding-left: 1.3rem; }

.fix-top #navbarHome,
.always-top #navbarHome {
  position: fixed;
  height: 56px;
  background: linear-gradient(90deg, #3399cc, #176daa);
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); }
  .fix-top #navbarHome .navbar-brand,
  .always-top #navbarHome .navbar-brand {
    opacity: 1;
    transform: translateX(0px); }
  .fix-top #navbarHome .navbar-nav > li > a,
  .always-top #navbarHome .navbar-nav > li > a {
    border-radius: 0;
    text-shadow: none; }
    .fix-top #navbarHome .navbar-nav > li > a.text-blue,
    .always-top #navbarHome .navbar-nav > li > a.text-blue {
      color: #176daa; }
      .fix-top #navbarHome .navbar-nav > li > a.text-blue:after,
      .always-top #navbarHome .navbar-nav > li > a.text-blue:after {
        background: #176daa; }
    .fix-top #navbarHome .navbar-nav > li > a.text-purple,
    .always-top #navbarHome .navbar-nav > li > a.text-purple {
      color: #502895; }
      .fix-top #navbarHome .navbar-nav > li > a.text-purple:after,
      .always-top #navbarHome .navbar-nav > li > a.text-purple:after {
        background: #502895; }
    .fix-top #navbarHome .navbar-nav > li > a.text-green,
    .always-top #navbarHome .navbar-nav > li > a.text-green {
      color: #5bbe48; }
      .fix-top #navbarHome .navbar-nav > li > a.text-green:after,
      .always-top #navbarHome .navbar-nav > li > a.text-green:after {
        background: #5bbe48; }
    .fix-top #navbarHome .navbar-nav > li > a.active.text-blue, .fix-top #navbarHome .navbar-nav > li > a:hover.text-blue,
    .always-top #navbarHome .navbar-nav > li > a.active.text-blue,
    .always-top #navbarHome .navbar-nav > li > a:hover.text-blue {
      color: #176daa; }
      .fix-top #navbarHome .navbar-nav > li > a.active.text-blue:after, .fix-top #navbarHome .navbar-nav > li > a:hover.text-blue:after,
      .always-top #navbarHome .navbar-nav > li > a.active.text-blue:after,
      .always-top #navbarHome .navbar-nav > li > a:hover.text-blue:after {
        background: #176daa; }
    .fix-top #navbarHome .navbar-nav > li > a.active.text-purple, .fix-top #navbarHome .navbar-nav > li > a:hover.text-purple,
    .always-top #navbarHome .navbar-nav > li > a.active.text-purple,
    .always-top #navbarHome .navbar-nav > li > a:hover.text-purple {
      color: #502895; }
      .fix-top #navbarHome .navbar-nav > li > a.active.text-purple:after, .fix-top #navbarHome .navbar-nav > li > a:hover.text-purple:after,
      .always-top #navbarHome .navbar-nav > li > a.active.text-purple:after,
      .always-top #navbarHome .navbar-nav > li > a:hover.text-purple:after {
        background: #502895; }
    .fix-top #navbarHome .navbar-nav > li > a.active.text-green, .fix-top #navbarHome .navbar-nav > li > a:hover.text-green,
    .always-top #navbarHome .navbar-nav > li > a.active.text-green,
    .always-top #navbarHome .navbar-nav > li > a:hover.text-green {
      color: #5bbe48; }
      .fix-top #navbarHome .navbar-nav > li > a.active.text-green:after, .fix-top #navbarHome .navbar-nav > li > a:hover.text-green:after,
      .always-top #navbarHome .navbar-nav > li > a.active.text-green:after,
      .always-top #navbarHome .navbar-nav > li > a:hover.text-green:after {
        background: #5bbe48; }

.always-top .topnav-overlay:after {
  display: none !important; }

/*sidebar*/
.side-menu a:not([class*=color-]) > .list-icon {
  color: #aaa; }
.side-menu a:hover {
  transform: translateX(3px); }
  .side-menu a:hover .list-icon {
    transform: translateX(3px); }
  .side-menu a:hover:before {
    width: 4px; }
.side-menu a.active:before {
  width: 8px; }
.side-menu a.active, .side-menu a:hover {
  color: #176daa !important; }
  .side-menu a.active > .list-icon, .side-menu a:hover > .list-icon {
    color: #176daa !important; }
.side-menu a:before {
  content: '';
  position: absolute;
  left: -20px;
  width: 0px;
  background: #176daa;
  height: 100%; }

.wrapper.page-home {
  background: #f2f2f2 url("../img/login-bg.jpg") 50% 50% no-repeat fixed;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover; }

.login-logo {
  max-width: 250px; }

.full-height {
  min-height: 100vh; }

footer {
  /*color:#fff !important;
  text-shadow: 0 0 1px #000;*/ }

.widget_nav_menu .menu.menu-disc .menu-item {
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 2em;
  position: relative; }
.widget_nav_menu .menu.menu-disc .menu-item:before {
  content: '\f10c';
  font-family: 'FontAwesome';
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #5bbe48;
  font-size: 0.8em; }
.widget_nav_menu .menu.menu-disc a {
  color: #fff; }

.hero_banner {
  overflow: hidden;
  position: relative;
  background: #fff url("img/cusp-patient-hero.jpg") no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  min-height: 550px;
  max-height: 85vh;
  height: 85vh; }
  .hero_banner .banner-text {
    max-width: 25vw; }

.bottom-media {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 20; }
  .bottom-media img {
    width: 100vw;
    height: auto; }

.media-divider {
  position: relative;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 20;
  margin-bottom: -158px; }
  .media-divider img {
    width: 100vw;
    height: auto;
    max-height: 120px; }

/*footer*/
footer {
  z-index: 1; }

/*modal*/
.modal .modal-title {
  font-weight: 300; }
.modal .negative-margin {
  margin-left: -25px;
  margin-right: -25px;
  padding-left: 25px;
  padding-right: 25px; }
.modal .modal-fullscreen .modal-dialog {
  width: auto;
  max-width: 100%;
  margin: 0; }

/*animation*/
*[data-animate-effect] {
  visibility: hidden;
  opacity: 0; }

.done-animate[data-animate-effect] {
  visibility: visible !important; }

/*input*/
/* input */
.card-input textarea,
.card-input .pill:not(.btn),
.card-input .form-control:not(.btn) {
  border-color: #e4e8ef;
  background-color: #f5f5f5; }
.card-input .input-group-prepend > .input-group-text {
  background-color: #fff !important; }

/*form*/
.form-title {
  position: relative;
  margin-top: 20px;
  margin-bottom: 30px; }
  .form-title:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: #f2f2f2;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto; }

/*form-control*/
.form-control {
  border-color: transparent; }
  .form-control:hover, .form-control:focus {
    border-color: #176daa !important;
    box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.1); }

/*list*/
.icon-list .icon-list-icon {
  width: 20px;
  float: left;
  display: inline-block;
  margin-top: 12px;
  text-align: center; }
.icon-list .icon-list-label {
  margin-left: 30px;
  overflow: hidden;
  display: block;
  padding: 7px 0; }
.icon-list .icon-list-link {
  color: #fff; }
.icon-list.icon-list-compact .icon-list-icon {
  margin-top: 10px; }
.icon-list.icon-list-compact .icon-list-label {
  padding: 5px 0; }
.icon-list.icon-list-compact-sm .icon-list-icon {
  margin-top: 7px; }
.icon-list.icon-list-compact-sm .icon-list-label {
  padding: 2px 0;
  font-size: 12px; }

/*button */
.btn-circle.btn-xs, .btn-group-xs > .btn-circle.xs {
  height: 1rem;
  width: 1rem; }

.btn.btn-icons {
  border-width: 1px;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  opacity: .5;
  padding: 0.5625rem;
  display: inline-block; }
  .btn.btn-icons .fa {
    text-align: center; }
    .btn.btn-icons .fa:before {
      width: 14px;
      display: inline-block; }

.btn.btn-icons:hover {
  opacity: 1; }

/* badge*/
.badge {
  min-width: 20px; }

/*dropdown*/
.dropdown-menu {
  box-shadow: 2px 5px 20px rgba(0, 0, 0, 0.2) !important; }
  .dropdown-menu .a-normal {
    white-space: normal;
    line-height: normal;
    display: block; }

/*accordion*/
.accordion .accordion-header {
  cursor: pointer; }
  .accordion .accordion-header .accordion-btn {
    transform: rotate(450deg);
    padding: 5px; }
  .accordion .accordion-header h4 {
    font-size: 20px; }
  .accordion .accordion-header:hover, .accordion .accordion-header:hover h4 {
    color: #502895; }
    .accordion .accordion-header:hover .accordion-btn:not(.no-hover), .accordion .accordion-header:hover h4 .accordion-btn:not(.no-hover) {
      transform: rotate(450deg) translateX(3px); }
.accordion .collapsed .accordion-btn {
  transform: rotate(0deg); }
.accordion .collapsed:hover .accordion-btn:not(.no-hover), .accordion .collapsed:hover h4 .accordion-btn:not(.no-hover) {
  transform: rotate(0deg) translateX(3px); }
.accordion > .card:hover, .accordion .accordion-header:hover {
  z-index: 120; }
.accordion .accordion-tr {
  transform: translateY(-5px); }
  .accordion .accordion-tr > td > .accordion-tr-wrap {
    z-index: -1; }
    .accordion .accordion-tr > td > .accordion-tr-wrap > .accordion-tr-content {
      -webkit-box-shadow: 0 1px 5px rgba(10, 10, 10, 0.05);
      -moz-box-shadow: 0 1px 5px rgba(10, 10, 10, 0.05);
      -o-box-shadow: 0 1px 5px rgba(10, 10, 10, 0.05);
      box-shadow: 0 1px 5px rgba(10, 10, 10, 0.05);
      background-color: rgba(231, 231, 231, 0.5);
      background-color: rgba(255, 255, 255, 0.6);
      z-index: -1;
      margin-bottom: 5px; }

/*TABLE*/
.table.vMiddle,
.table.vMiddle td,
.table tr.vMiddle th {
  vertical-align: middle; }

.table.table-hover tr:hover {
  background-color: rgba(100, 100, 100, 0.05); }

/*card table*/
.table-card {
  border-collapse: separate !important;
  border-spacing: 0 5px !important;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px; }
  .table-card.table-card-space-sm {
    border-spacing: 0 2px !important; }
    .table-card.table-card-space-sm .accordion-tr {
      transform: translateY(-2px); }
  .table-card th {
    font-weight: normal;
    color: #999;
    font-size: 80%;
    text-transform: uppercase;
    background-color: transparent;
    border: 0px !important;
    padding: 0.9rem 1.1rem; }
  .table-card tbody > tr:not(.tr-separator) {
    -webkit-box-shadow: 0 1px 5px rgba(10, 10, 10, 0.05);
    -moz-box-shadow: 0 1px 5px rgba(10, 10, 10, 0.05);
    -o-box-shadow: 0 1px 5px rgba(10, 10, 10, 0.05);
    box-shadow: 0 1px 5px rgba(10, 10, 10, 0.05); }
    .table-card tbody > tr:not(.tr-separator):hover {
      -webkit-box-shadow: 0 2px 8px rgba(10, 10, 10, 0.1);
      -moz-box-shadow: 0 2px 8px rgba(10, 10, 10, 0.1);
      -o-box-shadow: 0 2px 8px rgba(10, 10, 10, 0.1);
      box-shadow: 0 2px 8px rgba(10, 10, 10, 0.1); }
    .table-card tbody > tr:not(.tr-separator) > td {
      padding: 0.3rem 1.1rem;
      background-color: #ffffff;
      border: none;
      vertical-align: middle; }
      .table-card tbody > tr:not(.tr-separator) > td:first-child {
        -webkit-border-radius: 3px 0 0 3px;
        -moz-border-radius: 3px 0 0 3px;
        -o-border-radius: 3px 0 0 3px;
        border-radius: 3px 0 0 3px; }
      .table-card tbody > tr:not(.tr-separator) > td:last-child {
        -webkit-border-radius: 0 3px 3px 0;
        -moz-border-radius: 0 3px 3px 0;
        -o-border-radius: 0 3px 3px 0;
        border-radius: 0 3px 3px 0; }
  .table-card tbody > tr.tr-separator > td {
    border: none !important; }
  .table-card tbody > tr.tr-separator:not(.first-child) td {
    padding-top: 1.5rem; }
  .table-card.table-card-cozy tbody tr > td {
    padding: 15px !important; }
  .table-card.table-card-sm {
    background-color: transparent;
    border-spacing: 0 2px !important;
    margin-bottom: 0px; }
    .table-card.table-card-sm thead tr {
      opacity: .5;
      letter-spacing: .5px; }
    .table-card.table-card-sm tr {
      box-shadow: none !important; }
      .table-card.table-card-sm tr th {
        font-size: 10px;
        padding: 3px 15px !important; }
    .table-card.table-card-sm tbody tr {
      box-shadow: none !important; }
      .table-card.table-card-sm tbody tr:hover {
        box-shadow: none !important; }
      .table-card.table-card-sm tbody tr > td {
        padding: 7px 15px !important;
        background-color: rgba(10, 10, 10, 0.05);
        vertical-align: middle; }

/*tabs*/
.nav-tabs .nav-link {
  padding-top: 0px;
  padding-bottom: 5px; }
.nav-tabs .nav-link.active, .nav-tabs .nav-link:hover {
  padding-top: 8px;
  padding-bottom: 8px; }
.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
  border-color: #ddd #ddd #fff;
  background: #fff; }

/*slider*/
.slick-dots li {
  margin: 0; }
  .slick-dots li button {
    padding: 30px; }
.slick-dots li.slick-active button:before {
  -webkit-transition: all 220ms ease;
  -moz-transition: all 220ms ease;
  -ms-transition: all 220ms ease;
  -o-transition: all 220ms ease;
  transition: all 220ms ease;
  width: 10px;
  height: 10px;
  border: 2px solid #8e7011;
  border-radius: 50%;
  top: 5px;
  left: 5px;
  color: transparent;
  line-height: -2px; }

.slick-slide:focus {
  outline: none; }

.dashboard-section {
  position: relative; }

.dashboard-item {
  width: 160px;
  height: 160px;
  max-width: 160px;
  max-height: 160px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #fff;
  margin-bottom: 2rem;
  -webkit-box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.05);
  cursor: pointer !important; }
  .dashboard-item .dashboard-icon {
    color: #111; }
  .dashboard-item .dashboard-label {
    text-align: center;
    color: #333;
    font-size: 14px; }
  .dashboard-item:hover {
    background-color: #fff;
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 1px 7px 8px 3px rgba(0, 0, 0, 0.02);
    -moz-box-shadow: 1px 7px 8px 3px rgba(0, 0, 0, 0.02);
    -o-box-shadow: 1px 7px 8px 3px rgba(0, 0, 0, 0.02);
    box-shadow: 1px 7px 8px 3px rgba(0, 0, 0, 0.02); }
    .dashboard-item:hover .dashboard-icon {
      color: #176daa;
      -moz-transform: scale(1.2);
      -webkit-transform: scale(1.2);
      -o-transform: scale(1.2);
      -ms-transform: scale(1.2);
      transform: scale(1.2); }

.dashboard-item-wrap {
  position: relative; }
  .dashboard-item-wrap:hover, .dashboard-item-wrap:focus, .dashboard-item-wrap:active {
    z-index: 950; }

.dashboard-item-card {
  height: 120px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #fff;
  margin-bottom: 15px;
  -webkit-box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.05);
  cursor: pointer !important; }
  .dashboard-item-card .dashboard-item-card-icon {
    max-height: 120px;
    overflow: hidden;
    margin: -1px;
    border-radius: 4px 0 0 4px; }
  .dashboard-item-card .dashboard-label {
    text-align: center;
    color: #333;
    font-size: 14px; }
  .dashboard-item-card:hover {
    z-index: 950;
    background-color: #fff;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-box-shadow: 1px 7px 8px 3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 1px 7px 8px 3px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 1px 7px 8px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 1px 7px 8px 3px rgba(0, 0, 0, 0.1); }

.rounded50 {
  border-radius: 50px; }

.input-group.addon-transparent .form-control {
  border: none;
  border-right-color: transparent !important; }

.input-group.addon-transparent .input-group-text {
  background-color: transparent !important;
  border-left-color: transparent !important; }

.navbar-brand img {
  max-height: 50px; }

.card-hover:hover {
  transform: translateX(3px);
  background-color: #fff;
  box-shadow: 2px 3px 15px rgba(0, 0, 0, 0.05); }

.card.card-hover:hover {
  transform: translateY(-3px);
  box-shadow: 2px 3px 15px rgba(0, 0, 0, 0.05);
  z-index: 30; }

/*checkbox*/
.checkbox.checkbox-dark
.label-text:after {
  border-color: #555; }
.checkbox .label-text:after {
  border-color: #ccc; }

.checkbox.checkbox-rounded span.label-text::after {
  border-radius: 50%; }

.checklist-card .checklist-title {
  color: #333;
  font-weight: bold; }
.checklist-card.checked .checklist-title {
  color: #777;
  font-weight: normal;
  text-decoration: line-through; }

/*upload file*/
.btn-upload-file {
  position: relative;
  overflow: hidden;
  height: 100%;
  border-radius: 4px; }
  .btn-upload-file img {
    position: relative;
    z-index: 1; }
  .btn-upload-file button,
  .btn-upload-file input[type=file], .btn-upload-file:before, .btn-upload-file:after {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    margin: auto; }
  .btn-upload-file button {
    border: none;
    background: transparent;
    padding: 0;
    z-index: 0; }
  .btn-upload-file input[type=file] {
    opacity: 0;
    z-index: 10;
    cursor: pointer; }
  .btn-upload-file:before {
    content: '';
    background-color: #000;
    opacity: 0;
    z-index: 3; }
  .btn-upload-file:after {
    content: '\f030';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    z-index: 5;
    transform: translateY(0);
    height: 16px;
    color: #fff;
    font-size: 24px;
    opacity: 0; }
  .btn-upload-file:hover:before {
    opacity: 0.5; }
  .btn-upload-file:hover:after {
    transform: translateY(-10px);
    opacity: 1; }

.faq-title {
  margin: 10px 0 5px 0; }
  .faq-title a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 125%;
    padding: 7px 0px;
    border-radius: 6px; }
    .faq-title a:hover {
      background-color: rgba(255, 255, 255, 0.1); }
      .faq-title a:hover .fa {
        opacity: 1;
        transform: translateX(3px); }
    .faq-title a .fa {
      transition: all ease-out 120ms;
      opacity: .8; }
    .faq-title a[aria-expanded="true"] .fa {
      transform: rotate(90deg); }

.clip-path1 {
  clip-path: polygon(100% 0, 100% 23%, 100% 91%, 75% 100%, 30% 87%, 0 89%, 0 0); }

.clip-path2 {
  clip-path: polygon(0 72px, 33% 101px, 56% 130px, 79% 150px, 100% 40px, 100% 100%, 0 100%); }

@media (max-width: 1024px) {
  .clip-path2 {
    clip-path: polygon(0 79px, 33% 101px, 56% 131px, 79% 149px, 100% 50px, 100% 100%, 0 100%); } }
@media (max-width: 922px) {
  .clip-path2 {
    clip-path: polygon(0 85px, 33% 111px, 56% 141px, 79% 149px, 100% 60px, 100% 100%, 0 100%); } }
@media (max-width: 768px) {
  .clip-path2X {
    clip-path: polygon(0 50px, 33% 80px, 56% 120px, 79% 140px, 100% 10px, 100% 100%, 0 100%); }

  #navbarHome {
    position: relative;
    background: #fff;
    height: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); }
    #navbarHome .navbar-header {
      width: auto; }
    #navbarHome .navbar-brand {
      opacity: 1;
      transform: translateX(0px); }
    #navbarHome .navbar-nav > li > a {
      color: #000;
      border-radius: 0;
      text-shadow: none;
      text-align: center; }
      #navbarHome .navbar-nav > li > a.active, #navbarHome .navbar-nav > li > a:hover {
        color: #fff !important; }
      #navbarHome .navbar-nav > li > a:after {
        z-index: -1;
        height: 100%; }
    #navbarHome .navbar-collapse {
      border-top: 1px solid #eef1f2; }

  .topnav-overlay:after {
    display: none !important;
    opacity: 0; }

  .fix-top #navbarHome {
    position: fixed;
    height: auto; }

  .hero_banner {
    min-height: 400px;
    max-height: 80vh; }
    .hero_banner .banner-text {
      max-width: 40vw; }

  .clip-path2 {
    clip-path: polygon(0 97px, 33% 118px, 56% 151px, 79% 148px, 100% 72px, 100% 100%, 0 100%); } }
@media (max-width: 590px) {
  .clip-path2 {
    clip-path: polygon(0 111px, 33% 130px, 56% 151px, 79% 148px, 100% 94px, 100% 100%, 0 100%); } }
@media (max-width: 576px) {
  .clip-path2 {
    clip-path: polygon(0 43px, 25% 48px, 50% 66px, 75% 75px, 100% 35px, 100% 100%, 0 100%); }

  section.clip-path2 {
    padding-top: 0 !important;
    margin-top: 75px; }

  .media-divider.media-divider-sm {
    margin-bottom: -83px; } }
@media (max-width: 400px) {
  .clip-path2 {
    clip-path: polygon(0 58px, 25% 63px, 50% 75px, 75% 75px, 100% 51px, 100% 100%, 0 100%); } }
@media (min-width: 576px) and (max-width: 992px) {
  .modal-dialog {
    width: auto;
    max-width: 100%;
    margin: 10px; } }

/*# sourceMappingURL=custom.css.map */
