@charset "UTF-8";
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}
@-webkit-keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }
  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }
  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    -ms-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }
  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    -ms-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }
  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    -ms-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}
@keyframes shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(.9);
    transform: scale(.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(.95);
    transform: scale(.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }
}
@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(.95);
    -ms-transform: scale(.95);
    transform: scale(.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) 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 {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}
@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(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: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-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: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    -ms-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    -ms-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(48px);
    transform: scale(.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    -ms-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(48px);
    -ms-transform: scale(.475) translateX(48px);
    transform: scale(.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-48px);
    transform: scale(.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    -ms-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-48px);
    -ms-transform: scale(.475) translateX(-48px);
    transform: scale(.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    -ms-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    -ms-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }
  100% {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    -ms-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    -ms-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(42px);
    transform: scale(.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(42px);
    -ms-transform: scale(.475) translateX(42px);
    transform: scale(.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    -ms-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-42px);
    transform: scale(.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-42px);
    -ms-transform: scale(.475) translateX(-42px);
    transform: scale(.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    -ms-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    transform-origin: center top;
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    -ms-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    -ms-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    -ms-transform-origin: center top;
    transform-origin: center top;
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}
@-webkit-keyframes grow {
  from {
    -webkit-transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes grow {
  from {
    -moz-transform: scale(0);
  }
  to {
    -moz-transform: scale(1);
  }
}
@keyframes grow {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@-webkit-keyframes shrink {
  from {
    -webkit-transform: scale(1);
  }
  to {
    -webkit-transform: scale(0);
  }
}
@-moz-keyframes shrink {
  from {
    -moz-transform: scale(1);
  }
  to {
    -moz-transform: scale(0);
  }
}
@keyframes shrink {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0);
  }
}
.section {
  padding: 2rem;
}
.unfinished {
  background-color: #d9534f;
  color: white;
  display: none !important;
}
.profile-picture {
  height: 10rem;
  width: 10rem;
  float: left;
  background: white;
}
.profile-picture > .profile-image {
  width: 100%;
  text-align: center;
  height: 100%;
  background-size: cover;
  background-position: top center;
  position: relative;
}
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  *zoom: 1;
}
available,
div[available] {
  overflow-x: auto;
}
available table.vertical,
div[available] table.vertical {
  display: table;
}
available table.horizontal,
div[available] table.horizontal {
  display: none;
}
available .btn-commit,
div[available] .btn-commit {
  width: 100%;
  margin-bottom: 0;
}
available .available-checkbox,
div[available] .available-checkbox {
  cursor: pointer;
  background-color: #d9534f;
  height: 30px;
  width: 100%;
  border: 1px solid white;
  background-repeat: no-repeat;
  background-size: 20px;
  background-position-x: center;
  background-position-y: center;
  background-image: url("/assets/img/icons/basic/020_w.png");
}
available .available-checkbox.active,
div[available] .available-checkbox.active {
  background-color: #428bca;
  background-image: url("/assets/img/icons/basic/023_w.png");
}
available .available-checkbox.active:hover,
div[available] .available-checkbox.active:hover {
  border-color: #428bca;
  background-color: #6aa3d5;
}
available .available-checkbox:hover,
div[available] .available-checkbox:hover {
  border-color: #428bca;
  background-color: #e27c79;
}
available .key,
div[available] .key {
  text-align: center;
  padding: 2rem;
}
available table,
div[available] table {
  width: 100%;
}
available table tr th,
available table tr td,
div[available] table tr th,
div[available] table tr td {
  width: 12.5%;
  padding: 0;
  text-align: center;
  text-transform: capitalize;
}
@media (min-width: 768px) {
  available .btn-commit,
  div[available] .btn-commit {
    width: auto;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  available table.vertical,
  div[available] table.vertical {
    display: none;
  }
  available table.horizontal,
  div[available] table.horizontal {
    display: table;
  }
}
@media print {
  available table.show-print .available-checkbox,
  div[available] table.show-print .available-checkbox {
    background-color: #666 !important;
    color: white !important;
  }
  available table.show-print .available-checkbox.active,
  div[available] table.show-print .available-checkbox.active {
    background-color: white !important;
    color: black !important;
  }
}
menu-item {
  display: block;
  width: 24rem;
}
menu-item .item-clickable {
  color: #333333;
  padding: 0 20px;
  background: #eee;
  display: block;
  position: relative;
  line-height: 4em;
  height: 57px;
}
menu-item .item-clickable:focus {
  text-decoration: none;
}
menu-item .item-clickable:hover {
  background: #006f45;
  color: white;
  text-decoration: none;
  cursor: pointer;
}
menu-item .item-clickable:hover .controls {
  display: block;
}
menu-item .item-clickable > .fa {
  font-size: 2em;
}
menu-item .item-clickable > span {
  margin-left: 0.5em;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  width: auto;
}
menu-item .item-clickable > * {
  vertical-align: middle;
}
menu-item .item-clickable .media {
  min-width: 28px;
  text-align: center;
}
menu-item .item-clickable .img-wrapper {
  display: inline-block;
  height: 28px;
  width: 28px;
}
menu-item .item-clickable .beta {
  position: absolute;
  top: 5px;
  left: 5px;
  margin: 0;
}
menu-item .item-clickable .controls {
  display: none;
  position: absolute;
  top: 0;
  font-size: 14px;
  right: 0;
  line-height: 1;
  padding: 3px;
}
menu-item .item-clickable .control {
  opacity: 1;
}
menu-item .item-clickable .control.fa-thumb-tack:hover {
  color: #428bca;
  opacity: 1;
}
menu-item .item-clickable .control.fa-window-close {
  color: #d9534f;
}
menu-item .item-clickable .control.fa-window-close:hover {
  color: #333333;
  opacity: 1;
}
menu-bar #menu-bar {
  position: relative;
  background-color: #eee;
  display: flex;
  max-width: 100vw;
}
menu-bar #menu-bar #tabs {
  flex-grow: 1;
  overflow-x: hidden;
  overflow-y: hidden;
}
menu-bar #menu-bar #tabs .shrink {
  height: 57px;
}
menu-bar #menu-bar #tabs .item-wrapper {
  float: left;
}
menu-bar #menu-bar #tabs .item-wrapper.ng-move,
menu-bar #menu-bar #tabs .item-wrapper.ng-enter,
menu-bar #menu-bar #tabs .item-wrapper.ng-leave {
  transition: all linear 0.2s;
}
menu-bar #menu-bar #tabs .item-wrapper.ng-leave.ng-leave-active,
menu-bar #menu-bar #tabs .item-wrapper.ng-move,
menu-bar #menu-bar #tabs .item-wrapper.ng-enter {
  float: left !important;
  opacity: 0;
  -webkit-transform: translateY(57px);
  transform: translateY(57px);
}
menu-bar #menu-bar #tabs .item-wrapper.ng-leave,
menu-bar #menu-bar #tabs .item-wrapper.ng-move.ng-move-active,
menu-bar #menu-bar #tabs .item-wrapper.ng-enter.ng-enter-active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
menu-bar #menu-bar #controls {
  overflow: hidden;
  float: right;
}
menu-bar #menu-bar #controls .item-wrapper {
  transition: all linear 0.2s;
  opacity: 1;
  -webkit-transform: translateX(100px);
  transform: translateX(100px);
}
menu-bar #menu-bar:hover #controls .item-wrapper {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
menu-bar #menu-bar #dynamic,
menu-bar #menu-bar #static {
  float: left;
}
menu-bar #menu-bar menu-item {
  width: auto;
  border-right: 1px solid #ccc;
}
menu-bar #menu-bar menu-item .active {
  background: white;
}
menu-bar #menu-bar menu-item .active:hover {
  color: #333333;
}
menu-bar #menu-full {
  position: fixed;
  background: rgba(0,0,0,0.68);
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999999;
  display: flex;
  align-items: center;
  justify-content: center;
}
menu-bar #menu-full #menu-close {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 24px;
  line-height: 24px;
  width: 24px;
  color: #d9534f;
}
menu-bar #menu-full #menu-close:hover {
  color: #333333;
  opacity: 1;
  cursor: pointer;
}
menu-bar #menu-full > .inner {
  max-height: 94vh;
  position: relative;
  background: white;
  margin: 2rem;
  display: flex;
  float: left;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  align-content: flex-start;
  overflow-y: auto;
  padding: 3rem;
}
menu-bar #menu-full > .inner .category {
  width: 100%;
}
menu-bar #menu-full > .inner .category .items {
  display: flex;
  flex-wrap: wrap;
  float: left;
}
menu-bar #menu-full > .inner .category .items > div {
  margin: 0 1rem 1rem 0;
}
#new-version #new-version-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3000;
  text-align: center;
  background-color: #444;
  padding: 0.5rem;
  width: 100%;
  color: white;
  border-bottom: 1px solid #333;
}
#new-version #new-version-spacer {
  height: 45px;
}
position-preview .wrap {
  white-space: pre-wrap;
}
position-preview .bold {
  font-weight: bold;
}
position-preview h5 {
  margin-top: 17px;
  margin-bottom: 3px;
}
position-preview .col-sm-6 [zen-video-embed] {
  height: 30vw;
}
position-preview .col-sm-12 [zen-video-embed] {
  height: 50vw;
}
@media (min-width: 992px) {
  position-preview .col-sm-12 [zen-video-embed] {
    height: 30vw;
  }
  position-preview .col-sm-12 [zen-video-embed].show-name {
    height: 20vw;
  }
  position-preview .col-sm-6 [zen-video-embed] {
    height: 20vw;
  }
  position-preview .col-sm-6 [zen-video-embed].show-name {
    height: 20vw;
  }
}
queue {
  position: fixed;
  bottom: 10px;
  left: 0px;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
}
queue .job {
  display: flex;
  flex-grow: 1;
  width: 100%;
  align-items: center;
  margin-top: 2px;
  background: #545454;
  padding: 5px 5px;
  border-radius: 0 4px 4px 0;
}
queue .job .status {
  padding: 5px 5px;
  width: 80px;
  text-align: right;
}
queue .job .title {
  padding: 5px 10px;
  text-align: left;
  background: white;
  flex-grow: 1;
  border: 1px solid #ccc;
}
.VerticalNav {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  background: white;
  overflow: hidden;
  padding-left: 0;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
  -webkit-transition: all all 200ms ease ease-out;
  -moz-transition: all all 200ms ease ease-out;
  -o-transition: all all 200ms ease ease-out;
  transition: all all 200ms ease ease-out;
}
.VerticalNav li {
  background-color: #eee;
  font-size: 1.5em;
  margin-bottom: 1px;
  overflow: hidden;
  height: 4rem;
}
.VerticalNav li.header {
  height: 3rem;
  background-color: #D8D8D8;
  margin-bottom: 1px;
  font-size: 1em;
  text-transform: uppercase;
  color: #666;
  padding: 0.5rem 1rem;
}
.VerticalNav li.active {
  border-left: 10px solid #428bca;
}
.VerticalNav li > a {
  display: block;
  padding: 0.5rem 1rem;
  color: #333;
  text-decoration: none;
}
.VerticalNav li > a:hover {
  text-decoration: none;
  background-color: #428bca;
  color: white;
}
.VerticalNav li > a:hover .help-button {
  border-color: #1f496e;
}
.VerticalNav li > a > img {
  width: 1em;
  margin-right: 0.5rem;
}
.VerticalNav .icon.black {
  display: inline-block;
}
.VerticalNav .icon.white {
  display: none;
}
.VerticalNav.small-menu {
  width: 4rem;
}
.VerticalNav.small-menu .help-button {
  display: none;
}
.VerticalNav.small-menu li > a {
  text-align: center;
}
.VerticalNav.small-menu li > a > img {
  margin-right: 0rem;
}
.VerticalNav.small-menu li.active {
  border-left: 0;
  background: #428bca;
}
.VerticalNav.small-menu li.active .icon.black {
  display: none;
}
.VerticalNav.small-menu li.active .icon.white {
  display: inline-block;
}
.VerticalNav.small-menu .text {
  display: none;
}
.VerticalNav.small-menu:hover {
  padding-left: 0rem;
  width: 100%;
}
.VerticalNav.small-menu:hover .help-button {
  display: inline-block;
}
.VerticalNav.small-menu:hover li > a {
  text-align: left;
}
.VerticalNav.small-menu:hover li > a > img {
  margin-right: 0.5rem;
}
.VerticalNav.small-menu:hover li.active {
  background: #eee;
  border-left: 10px solid #428bca;
}
.VerticalNav.small-menu:hover li.active .icon.black {
  display: inline-block;
}
.VerticalNav.small-menu:hover li.active .icon.white {
  display: none;
}
.VerticalNav.small-menu:hover .text {
  display: inline;
}
.VerticalNav.large-menu {
  padding-left: 2rem;
}
.VerticalNav.large-menu .help-button {
  float: right;
}
@media (min-width: 992px) {
  .VerticalNav {
    width: 32rem;
  }
  .VerticalNav.small-menu:hover {
    padding-left: 2rem;
    width: 32rem;
  }
}
#Notifications {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  padding-top: 2rem;
  z-index: 10000;
  display: block;
  margin-top: -2rem;
}
.Notification {
  -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.5);
  -moz-box-shadow: 0 0 10px rgba(0,0,0,0.5);
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  position: relative;
  border-radius: 1rem;
  margin-top: 2rem;
  padding: 2rem;
  padding-left: 5rem;
  background: white;
}
.Notification.error {
  background-color: #d9534f;
  color: white;
}
.Notification.success,
.Notification.saved {
  background-color: #5cb85c;
  color: white;
}
.Notification.warning {
  background-color: #f0ad4e;
  color: white;
}
.Notification > .img {
  position: absolute;
  top: 1.5rem;
  left: 1rem;
  width: 3rem;
  height: auto;
  background: transparent;
}
.Notification > .img img {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  #Notifications {
    position: fixed;
    top: 0;
    left: 0;
    width: 40vw;
    left: inherit;
    bottom: inherit;
  }
}
available,
div[available] {
  overflow-x: auto;
}
available table.vertical,
div[available] table.vertical {
  display: table;
}
available table.horizontal,
div[available] table.horizontal {
  display: none;
}
available .btn-commit,
div[available] .btn-commit {
  width: 100%;
  margin-bottom: 0;
}
available .available-checkbox,
div[available] .available-checkbox {
  cursor: pointer;
  background-color: #d9534f;
  height: 30px;
  width: 100%;
  border: 1px solid white;
  background-repeat: no-repeat;
  background-size: 20px;
  background-position-x: center;
  background-position-y: center;
  background-image: url("/assets/img/icons/basic/020_w.png");
}
available .available-checkbox.active,
div[available] .available-checkbox.active {
  background-color: #428bca;
  background-image: url("/assets/img/icons/basic/023_w.png");
}
available .available-checkbox.active:hover,
div[available] .available-checkbox.active:hover {
  border-color: #428bca;
  background-color: #6aa3d5;
}
available .available-checkbox:hover,
div[available] .available-checkbox:hover {
  border-color: #428bca;
  background-color: #e27c79;
}
available .key,
div[available] .key {
  text-align: center;
  padding: 2rem;
}
available table,
div[available] table {
  width: 100%;
}
available table tr th,
available table tr td,
div[available] table tr th,
div[available] table tr td {
  width: 12.5%;
  padding: 0;
  text-align: center;
  text-transform: capitalize;
}
@media (min-width: 768px) {
  available .btn-commit,
  div[available] .btn-commit {
    width: auto;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  available table.vertical,
  div[available] table.vertical {
    display: none;
  }
  available table.horizontal,
  div[available] table.horizontal {
    display: table;
  }
}
@media print {
  available table.show-print .available-checkbox,
  div[available] table.show-print .available-checkbox {
    background-color: #666 !important;
    color: white !important;
  }
  available table.show-print .available-checkbox.active,
  div[available] table.show-print .available-checkbox.active {
    background-color: white !important;
    color: black !important;
  }
}
menu-item {
  display: block;
  width: 24rem;
}
menu-item .item-clickable {
  color: #333333;
  padding: 0 20px;
  background: #eee;
  display: block;
  position: relative;
  line-height: 4em;
  height: 57px;
}
menu-item .item-clickable:focus {
  text-decoration: none;
}
menu-item .item-clickable:hover {
  background: #006f45;
  color: white;
  text-decoration: none;
  cursor: pointer;
}
menu-item .item-clickable:hover .controls {
  display: block;
}
menu-item .item-clickable > .fa {
  font-size: 2em;
}
menu-item .item-clickable > span {
  margin-left: 0.5em;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  width: auto;
}
menu-item .item-clickable > * {
  vertical-align: middle;
}
menu-item .item-clickable .media {
  min-width: 28px;
  text-align: center;
}
menu-item .item-clickable .img-wrapper {
  display: inline-block;
  height: 28px;
  width: 28px;
}
menu-item .item-clickable .beta {
  position: absolute;
  top: 5px;
  left: 5px;
  margin: 0;
}
menu-item .item-clickable .controls {
  display: none;
  position: absolute;
  top: 0;
  font-size: 14px;
  right: 0;
  line-height: 1;
  padding: 3px;
}
menu-item .item-clickable .control {
  opacity: 1;
}
menu-item .item-clickable .control.fa-thumb-tack:hover {
  color: #428bca;
  opacity: 1;
}
menu-item .item-clickable .control.fa-window-close {
  color: #d9534f;
}
menu-item .item-clickable .control.fa-window-close:hover {
  color: #333333;
  opacity: 1;
}
menu-bar #menu-bar {
  position: relative;
  background-color: #eee;
  display: flex;
  max-width: 100vw;
}
menu-bar #menu-bar #tabs {
  flex-grow: 1;
  overflow-x: hidden;
  overflow-y: hidden;
}
menu-bar #menu-bar #tabs .shrink {
  height: 57px;
}
menu-bar #menu-bar #tabs .item-wrapper {
  float: left;
}
menu-bar #menu-bar #tabs .item-wrapper.ng-move,
menu-bar #menu-bar #tabs .item-wrapper.ng-enter,
menu-bar #menu-bar #tabs .item-wrapper.ng-leave {
  transition: all linear 0.2s;
}
menu-bar #menu-bar #tabs .item-wrapper.ng-leave.ng-leave-active,
menu-bar #menu-bar #tabs .item-wrapper.ng-move,
menu-bar #menu-bar #tabs .item-wrapper.ng-enter {
  float: left !important;
  opacity: 0;
  -webkit-transform: translateY(57px);
  transform: translateY(57px);
}
menu-bar #menu-bar #tabs .item-wrapper.ng-leave,
menu-bar #menu-bar #tabs .item-wrapper.ng-move.ng-move-active,
menu-bar #menu-bar #tabs .item-wrapper.ng-enter.ng-enter-active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
menu-bar #menu-bar #controls {
  overflow: hidden;
  float: right;
}
menu-bar #menu-bar #controls .item-wrapper {
  transition: all linear 0.2s;
  opacity: 1;
  -webkit-transform: translateX(100px);
  transform: translateX(100px);
}
menu-bar #menu-bar:hover #controls .item-wrapper {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
menu-bar #menu-bar #dynamic,
menu-bar #menu-bar #static {
  float: left;
}
menu-bar #menu-bar menu-item {
  width: auto;
  border-right: 1px solid #ccc;
}
menu-bar #menu-bar menu-item .active {
  background: white;
}
menu-bar #menu-bar menu-item .active:hover {
  color: #333333;
}
menu-bar #menu-full {
  position: fixed;
  background: rgba(0,0,0,0.68);
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999999;
  display: flex;
  align-items: center;
  justify-content: center;
}
menu-bar #menu-full #menu-close {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 24px;
  line-height: 24px;
  width: 24px;
  color: #d9534f;
}
menu-bar #menu-full #menu-close:hover {
  color: #333333;
  opacity: 1;
  cursor: pointer;
}
menu-bar #menu-full > .inner {
  max-height: 94vh;
  position: relative;
  background: white;
  margin: 2rem;
  display: flex;
  float: left;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  align-content: flex-start;
  overflow-y: auto;
  padding: 3rem;
}
menu-bar #menu-full > .inner .category {
  width: 100%;
}
menu-bar #menu-full > .inner .category .items {
  display: flex;
  flex-wrap: wrap;
  float: left;
}
menu-bar #menu-full > .inner .category .items > div {
  margin: 0 1rem 1rem 0;
}
#new-version #new-version-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3000;
  text-align: center;
  background-color: #444;
  padding: 0.5rem;
  width: 100%;
  color: white;
  border-bottom: 1px solid #333;
}
#new-version #new-version-spacer {
  height: 45px;
}
position-preview .wrap {
  white-space: pre-wrap;
}
position-preview .bold {
  font-weight: bold;
}
position-preview h5 {
  margin-top: 17px;
  margin-bottom: 3px;
}
position-preview .col-sm-6 [zen-video-embed] {
  height: 30vw;
}
position-preview .col-sm-12 [zen-video-embed] {
  height: 50vw;
}
@media (min-width: 992px) {
  position-preview .col-sm-12 [zen-video-embed] {
    height: 30vw;
  }
  position-preview .col-sm-12 [zen-video-embed].show-name {
    height: 20vw;
  }
  position-preview .col-sm-6 [zen-video-embed] {
    height: 20vw;
  }
  position-preview .col-sm-6 [zen-video-embed].show-name {
    height: 20vw;
  }
}
queue {
  position: fixed;
  bottom: 10px;
  left: 0px;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
}
queue .job {
  display: flex;
  flex-grow: 1;
  width: 100%;
  align-items: center;
  margin-top: 2px;
  background: #545454;
  padding: 5px 5px;
  border-radius: 0 4px 4px 0;
}
queue .job .status {
  padding: 5px 5px;
  width: 80px;
  text-align: right;
}
queue .job .title {
  padding: 5px 10px;
  text-align: left;
  background: white;
  flex-grow: 1;
  border: 1px solid #ccc;
}
.VerticalNav {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  background: white;
  overflow: hidden;
  padding-left: 0;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
  -webkit-transition: all all 200ms ease ease-out;
  -moz-transition: all all 200ms ease ease-out;
  -o-transition: all all 200ms ease ease-out;
  transition: all all 200ms ease ease-out;
}
.VerticalNav li {
  background-color: #eee;
  font-size: 1.5em;
  margin-bottom: 1px;
  overflow: hidden;
  height: 4rem;
}
.VerticalNav li.header {
  height: 3rem;
  background-color: #D8D8D8;
  margin-bottom: 1px;
  font-size: 1em;
  text-transform: uppercase;
  color: #666;
  padding: 0.5rem 1rem;
}
.VerticalNav li.active {
  border-left: 10px solid #428bca;
}
.VerticalNav li > a {
  display: block;
  padding: 0.5rem 1rem;
  color: #333;
  text-decoration: none;
}
.VerticalNav li > a:hover {
  text-decoration: none;
  background-color: #428bca;
  color: white;
}
.VerticalNav li > a:hover .help-button {
  border-color: #1f496e;
}
.VerticalNav li > a > img {
  width: 1em;
  margin-right: 0.5rem;
}
.VerticalNav .icon.black {
  display: inline-block;
}
.VerticalNav .icon.white {
  display: none;
}
.VerticalNav.small-menu {
  width: 4rem;
}
.VerticalNav.small-menu .help-button {
  display: none;
}
.VerticalNav.small-menu li > a {
  text-align: center;
}
.VerticalNav.small-menu li > a > img {
  margin-right: 0rem;
}
.VerticalNav.small-menu li.active {
  border-left: 0;
  background: #428bca;
}
.VerticalNav.small-menu li.active .icon.black {
  display: none;
}
.VerticalNav.small-menu li.active .icon.white {
  display: inline-block;
}
.VerticalNav.small-menu .text {
  display: none;
}
.VerticalNav.small-menu:hover {
  padding-left: 0rem;
  width: 100%;
}
.VerticalNav.small-menu:hover .help-button {
  display: inline-block;
}
.VerticalNav.small-menu:hover li > a {
  text-align: left;
}
.VerticalNav.small-menu:hover li > a > img {
  margin-right: 0.5rem;
}
.VerticalNav.small-menu:hover li.active {
  background: #eee;
  border-left: 10px solid #428bca;
}
.VerticalNav.small-menu:hover li.active .icon.black {
  display: inline-block;
}
.VerticalNav.small-menu:hover li.active .icon.white {
  display: none;
}
.VerticalNav.small-menu:hover .text {
  display: inline;
}
.VerticalNav.large-menu {
  padding-left: 2rem;
}
.VerticalNav.large-menu .help-button {
  float: right;
}
@media (min-width: 992px) {
  .VerticalNav {
    width: 32rem;
  }
  .VerticalNav.small-menu:hover {
    padding-left: 2rem;
    width: 32rem;
  }
}
#Notifications {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  padding-top: 2rem;
  z-index: 10000;
  display: block;
  margin-top: -2rem;
}
.Notification {
  -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.5);
  -moz-box-shadow: 0 0 10px rgba(0,0,0,0.5);
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  position: relative;
  border-radius: 1rem;
  margin-top: 2rem;
  padding: 2rem;
  padding-left: 5rem;
  background: white;
}
.Notification.error {
  background-color: #d9534f;
  color: white;
}
.Notification.success,
.Notification.saved {
  background-color: #5cb85c;
  color: white;
}
.Notification.warning {
  background-color: #f0ad4e;
  color: white;
}
.Notification > .img {
  position: absolute;
  top: 1.5rem;
  left: 1rem;
  width: 3rem;
  height: auto;
  background: transparent;
}
.Notification > .img img {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  #Notifications {
    position: fixed;
    top: 0;
    left: 0;
    width: 40vw;
    left: inherit;
    bottom: inherit;
  }
}
available,
div[available] {
  overflow-x: auto;
}
available table.vertical,
div[available] table.vertical {
  display: table;
}
available table.horizontal,
div[available] table.horizontal {
  display: none;
}
available .btn-commit,
div[available] .btn-commit {
  width: 100%;
  margin-bottom: 0;
}
available .available-checkbox,
div[available] .available-checkbox {
  cursor: pointer;
  background-color: #d9534f;
  height: 30px;
  width: 100%;
  border: 1px solid white;
  background-repeat: no-repeat;
  background-size: 20px;
  background-position-x: center;
  background-position-y: center;
  background-image: url("/assets/img/icons/basic/020_w.png");
}
available .available-checkbox.active,
div[available] .available-checkbox.active {
  background-color: #428bca;
  background-image: url("/assets/img/icons/basic/023_w.png");
}
available .available-checkbox.active:hover,
div[available] .available-checkbox.active:hover {
  border-color: #428bca;
  background-color: #6aa3d5;
}
available .available-checkbox:hover,
div[available] .available-checkbox:hover {
  border-color: #428bca;
  background-color: #e27c79;
}
available .key,
div[available] .key {
  text-align: center;
  padding: 2rem;
}
available table,
div[available] table {
  width: 100%;
}
available table tr th,
available table tr td,
div[available] table tr th,
div[available] table tr td {
  width: 12.5%;
  padding: 0;
  text-align: center;
  text-transform: capitalize;
}
@media (min-width: 768px) {
  available .btn-commit,
  div[available] .btn-commit {
    width: auto;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  available table.vertical,
  div[available] table.vertical {
    display: none;
  }
  available table.horizontal,
  div[available] table.horizontal {
    display: table;
  }
}
@media print {
  available table.show-print .available-checkbox,
  div[available] table.show-print .available-checkbox {
    background-color: #666 !important;
    color: white !important;
  }
  available table.show-print .available-checkbox.active,
  div[available] table.show-print .available-checkbox.active {
    background-color: white !important;
    color: black !important;
  }
}
menu-item {
  display: block;
  width: 24rem;
}
menu-item .item-clickable {
  color: #333333;
  padding: 0 20px;
  background: #eee;
  display: block;
  position: relative;
  line-height: 4em;
  height: 57px;
}
menu-item .item-clickable:focus {
  text-decoration: none;
}
menu-item .item-clickable:hover {
  background: #006f45;
  color: white;
  text-decoration: none;
  cursor: pointer;
}
menu-item .item-clickable:hover .controls {
  display: block;
}
menu-item .item-clickable > .fa {
  font-size: 2em;
}
menu-item .item-clickable > span {
  margin-left: 0.5em;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  width: auto;
}
menu-item .item-clickable > * {
  vertical-align: middle;
}
menu-item .item-clickable .media {
  min-width: 28px;
  text-align: center;
}
menu-item .item-clickable .img-wrapper {
  display: inline-block;
  height: 28px;
  width: 28px;
}
menu-item .item-clickable .beta {
  position: absolute;
  top: 5px;
  left: 5px;
  margin: 0;
}
menu-item .item-clickable .controls {
  display: none;
  position: absolute;
  top: 0;
  font-size: 14px;
  right: 0;
  line-height: 1;
  padding: 3px;
}
menu-item .item-clickable .control {
  opacity: 1;
}
menu-item .item-clickable .control.fa-thumb-tack:hover {
  color: #428bca;
  opacity: 1;
}
menu-item .item-clickable .control.fa-window-close {
  color: #d9534f;
}
menu-item .item-clickable .control.fa-window-close:hover {
  color: #333333;
  opacity: 1;
}
menu-bar #menu-bar {
  position: relative;
  background-color: #eee;
  display: flex;
  max-width: 100vw;
}
menu-bar #menu-bar #tabs {
  flex-grow: 1;
  overflow-x: hidden;
  overflow-y: hidden;
}
menu-bar #menu-bar #tabs .shrink {
  height: 57px;
}
menu-bar #menu-bar #tabs .item-wrapper {
  float: left;
}
menu-bar #menu-bar #tabs .item-wrapper.ng-move,
menu-bar #menu-bar #tabs .item-wrapper.ng-enter,
menu-bar #menu-bar #tabs .item-wrapper.ng-leave {
  transition: all linear 0.2s;
}
menu-bar #menu-bar #tabs .item-wrapper.ng-leave.ng-leave-active,
menu-bar #menu-bar #tabs .item-wrapper.ng-move,
menu-bar #menu-bar #tabs .item-wrapper.ng-enter {
  float: left !important;
  opacity: 0;
  -webkit-transform: translateY(57px);
  transform: translateY(57px);
}
menu-bar #menu-bar #tabs .item-wrapper.ng-leave,
menu-bar #menu-bar #tabs .item-wrapper.ng-move.ng-move-active,
menu-bar #menu-bar #tabs .item-wrapper.ng-enter.ng-enter-active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
menu-bar #menu-bar #controls {
  overflow: hidden;
  float: right;
}
menu-bar #menu-bar #controls .item-wrapper {
  transition: all linear 0.2s;
  opacity: 1;
  -webkit-transform: translateX(100px);
  transform: translateX(100px);
}
menu-bar #menu-bar:hover #controls .item-wrapper {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
menu-bar #menu-bar #dynamic,
menu-bar #menu-bar #static {
  float: left;
}
menu-bar #menu-bar menu-item {
  width: auto;
  border-right: 1px solid #ccc;
}
menu-bar #menu-bar menu-item .active {
  background: white;
}
menu-bar #menu-bar menu-item .active:hover {
  color: #333333;
}
menu-bar #menu-full {
  position: fixed;
  background: rgba(0,0,0,0.68);
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999999;
  display: flex;
  align-items: center;
  justify-content: center;
}
menu-bar #menu-full #menu-close {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 24px;
  line-height: 24px;
  width: 24px;
  color: #d9534f;
}
menu-bar #menu-full #menu-close:hover {
  color: #333333;
  opacity: 1;
  cursor: pointer;
}
menu-bar #menu-full > .inner {
  max-height: 94vh;
  position: relative;
  background: white;
  margin: 2rem;
  display: flex;
  float: left;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  align-content: flex-start;
  overflow-y: auto;
  padding: 3rem;
}
menu-bar #menu-full > .inner .category {
  width: 100%;
}
menu-bar #menu-full > .inner .category .items {
  display: flex;
  flex-wrap: wrap;
  float: left;
}
menu-bar #menu-full > .inner .category .items > div {
  margin: 0 1rem 1rem 0;
}
#new-version #new-version-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3000;
  text-align: center;
  background-color: #444;
  padding: 0.5rem;
  width: 100%;
  color: white;
  border-bottom: 1px solid #333;
}
#new-version #new-version-spacer {
  height: 45px;
}
position-preview .wrap {
  white-space: pre-wrap;
}
position-preview .bold {
  font-weight: bold;
}
position-preview h5 {
  margin-top: 17px;
  margin-bottom: 3px;
}
position-preview .col-sm-6 [zen-video-embed] {
  height: 30vw;
}
position-preview .col-sm-12 [zen-video-embed] {
  height: 50vw;
}
@media (min-width: 992px) {
  position-preview .col-sm-12 [zen-video-embed] {
    height: 30vw;
  }
  position-preview .col-sm-12 [zen-video-embed].show-name {
    height: 20vw;
  }
  position-preview .col-sm-6 [zen-video-embed] {
    height: 20vw;
  }
  position-preview .col-sm-6 [zen-video-embed].show-name {
    height: 20vw;
  }
}
queue {
  position: fixed;
  bottom: 10px;
  left: 0px;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
}
queue .job {
  display: flex;
  flex-grow: 1;
  width: 100%;
  align-items: center;
  margin-top: 2px;
  background: #545454;
  padding: 5px 5px;
  border-radius: 0 4px 4px 0;
}
queue .job .status {
  padding: 5px 5px;
  width: 80px;
  text-align: right;
}
queue .job .title {
  padding: 5px 10px;
  text-align: left;
  background: white;
  flex-grow: 1;
  border: 1px solid #ccc;
}
.VerticalNav {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  background: white;
  overflow: hidden;
  padding-left: 0;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
  -webkit-transition: all all 200ms ease ease-out;
  -moz-transition: all all 200ms ease ease-out;
  -o-transition: all all 200ms ease ease-out;
  transition: all all 200ms ease ease-out;
}
.VerticalNav li {
  background-color: #eee;
  font-size: 1.5em;
  margin-bottom: 1px;
  overflow: hidden;
  height: 4rem;
}
.VerticalNav li.header {
  height: 3rem;
  background-color: #D8D8D8;
  margin-bottom: 1px;
  font-size: 1em;
  text-transform: uppercase;
  color: #666;
  padding: 0.5rem 1rem;
}
.VerticalNav li.active {
  border-left: 10px solid #428bca;
}
.VerticalNav li > a {
  display: block;
  padding: 0.5rem 1rem;
  color: #333;
  text-decoration: none;
}
.VerticalNav li > a:hover {
  text-decoration: none;
  background-color: #428bca;
  color: white;
}
.VerticalNav li > a:hover .help-button {
  border-color: #1f496e;
}
.VerticalNav li > a > img {
  width: 1em;
  margin-right: 0.5rem;
}
.VerticalNav .icon.black {
  display: inline-block;
}
.VerticalNav .icon.white {
  display: none;
}
.VerticalNav.small-menu {
  width: 4rem;
}
.VerticalNav.small-menu .help-button {
  display: none;
}
.VerticalNav.small-menu li > a {
  text-align: center;
}
.VerticalNav.small-menu li > a > img {
  margin-right: 0rem;
}
.VerticalNav.small-menu li.active {
  border-left: 0;
  background: #428bca;
}
.VerticalNav.small-menu li.active .icon.black {
  display: none;
}
.VerticalNav.small-menu li.active .icon.white {
  display: inline-block;
}
.VerticalNav.small-menu .text {
  display: none;
}
.VerticalNav.small-menu:hover {
  padding-left: 0rem;
  width: 100%;
}
.VerticalNav.small-menu:hover .help-button {
  display: inline-block;
}
.VerticalNav.small-menu:hover li > a {
  text-align: left;
}
.VerticalNav.small-menu:hover li > a > img {
  margin-right: 0.5rem;
}
.VerticalNav.small-menu:hover li.active {
  background: #eee;
  border-left: 10px solid #428bca;
}
.VerticalNav.small-menu:hover li.active .icon.black {
  display: inline-block;
}
.VerticalNav.small-menu:hover li.active .icon.white {
  display: none;
}
.VerticalNav.small-menu:hover .text {
  display: inline;
}
.VerticalNav.large-menu {
  padding-left: 2rem;
}
.VerticalNav.large-menu .help-button {
  float: right;
}
@media (min-width: 992px) {
  .VerticalNav {
    width: 32rem;
  }
  .VerticalNav.small-menu:hover {
    padding-left: 2rem;
    width: 32rem;
  }
}
#Notifications {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  padding-top: 2rem;
  z-index: 10000;
  display: block;
  margin-top: -2rem;
}
.Notification {
  -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.5);
  -moz-box-shadow: 0 0 10px rgba(0,0,0,0.5);
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  position: relative;
  border-radius: 1rem;
  margin-top: 2rem;
  padding: 2rem;
  padding-left: 5rem;
  background: white;
}
.Notification.error {
  background-color: #d9534f;
  color: white;
}
.Notification.success,
.Notification.saved {
  background-color: #5cb85c;
  color: white;
}
.Notification.warning {
  background-color: #f0ad4e;
  color: white;
}
.Notification > .img {
  position: absolute;
  top: 1.5rem;
  left: 1rem;
  width: 3rem;
  height: auto;
  background: transparent;
}
.Notification > .img img {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  #Notifications {
    position: fixed;
    top: 0;
    left: 0;
    width: 40vw;
    left: inherit;
    bottom: inherit;
  }
}
apply-next-button .bottom-nav-wrapper {
  background: white;
  padding: 2rem;
  text-align: center;
}
apply-next-button .bottom-nav-wrapper .bottom-btn {
  padding: 6px 12px;
  width: 100%;
  font-size: 2em;
}
apply-next-button .bottom-nav-wrapper .btn-default.disabled {
  background: #ccc;
}
apply-next-button #not-sticky-nav.bottom-nav-wrapper {
  width: 100%;
  float: none;
}
apply-next-button #is-sticky-nav.bottom-nav-wrapper {
  background-color: #fff;
  display: block;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 9999;
  border-top: 1px solid #ccc;
  box-shadow: 0 0 10px #aaa;
}
@media (min-width: 992px) {
  apply-next-button #not-sticky-nav.bottom-nav-wrapper {
    width: 33%;
    float: right;
  }
  apply-next-button #is-sticky-nav {
    display: none !important;
  }
}
image-slider {
  height: 100%;
  overflow: hidden;
}
image-slider.col-sm-4 {
  padding: 0;
}
image-slider .image-slider {
  width: 100%;
  height: 100%;
}
image-slider .image-slider .image-slider-item {
  opacity: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
}
.dropbtn {
  background-color: #4CAF50;
  color: white;
  font-size: 16px;
  border: none;
}
.localeBtn {
  margin-left: -15px;
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
.dropdown-content a {
  color: black;
  padding: 0 12px;
  text-decoration: none;
  display: block;
}
.dropdown-content a:hover {
  background-color: #ddd;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}
#Apply #Culture iframe.video {
  height: 20rem;
}
#Apply #Culture .welcome-row .welcome-outer {
  display: none;
  background: #006f45;
  color: white;
}
#Apply #Culture .welcome-row .welcome-outer h1 {
  padding: 3rem 4rem;
  display: inline-block;
  margin: 0;
}
#Apply #Culture .welcome-row .welcome-outer .btn {
  margin: 3rem;
}
#Apply #Culture .welcome-row .welcome-outer .apply-button {
  padding: 3rem;
  color: white;
  background: #00a265;
  padding: 35.5px;
}
#Apply #Culture .welcome-row .welcome-outer .apply-button:hover {
  background: #008955;
  cursor: pointer;
}
#Apply #Culture .well {
  margin-bottom: 0;
}
#Apply #Culture .glassdoor {
  padding: 2rem;
  background: #72b533;
  color: white;
  border: 0;
  border-radius: 0;
  font-size: 1.5em;
  display: block;
}
#Apply #Culture .glassdoor:hover {
  cursor: pointer;
  opacity: 0.85;
}
#Apply #Culture .glassdoor img {
  height: 100px;
}
#Apply #Culture .carousel-row {
  height: 250px;
  overflow: hidden;
}
#Apply #Culture .carousel-row image-slider:nth-child(1) {
  display: none;
}
#Apply #Culture .carousel-row image-slider:nth-child(2) {
  display: none;
}
#Apply #Culture .carousel {
  padding: 0;
}
#Apply #Culture .carousel .image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-color: black;
  min-width: 10px;
  min-height: 250px;
  margin: auto;
}
#Apply #Culture .carousel-control,
#Apply #Culture .carousel-indicators {
  display: none;
}
#Apply #Culture .apply-now-big {
  display: none;
  background-color: #006f45;
  border-color: #003c25;
}
#Apply #Culture .apply-now-big:hover {
  background-color: #005635;
  border-color: #003c25;
}
@media (min-width: 992px) {
  #Apply #Culture iframe.video {
    height: 33rem;
  }
  #Apply #Culture .pad-2 {
    padding: 2rem;
  }
  #Apply #Culture .welcome-row .welcome-outer {
    display: block;
  }
  #Apply #Culture .apply-now-big {
    display: inline-block;
  }
  #Apply #Culture .carousel-row {
    height: auto;
    height: 250px;
  }
  #Apply #Culture .carousel-row image-slider:nth-child(1) {
    display: block;
  }
  #Apply #Culture .carousel-row image-slider:nth-child(2) {
    display: block;
  }
}
#Apply #Info label {
  margin-bottom: 2px;
  margin-top: 10px;
}
#Apply #Jobs #All #job-list {
  width: 100%;
  padding-bottom: 5rem;
  max-height: auto;
  overflow-y: none;
}
#Apply #Jobs #All #job-list .btn-group-custom {
  position: relative;
  width: 100%;
}
#Apply #Jobs #All #job-list .btn-group-custom .btn {
  white-space: normal;
}
#Apply #Jobs #All #job-list .btn-group-custom .title {
  display: block;
  width: auto;
  padding-left: 2.6rem;
  padding-right: 1rem;
  margin-right: 8rem;
}
#Apply #Jobs #All #job-list .btn-group-custom .info {
  position: absolute;
  right: 0;
  top: 0;
  width: 7rem;
}
#Apply #Jobs #All #filters .btn {
  font-size: 12px;
}
#Apply #Jobs #All #social {
  display: none;
}
#Apply #Jobs #All #map,
#Apply #Jobs #All #map-info,
#Apply #Jobs #All #filters {
  display: none;
}
#Apply #Jobs #All h6 {
  margin: 0;
}
@media (min-width: 992px) {
  #Apply #Jobs #All #job-list {
    width: 50%;
    overflow-y: auto;
    max-height: 700px;
  }
  #Apply #Jobs #All #filters .btn {
    font-size: 12px;
  }
  #Apply #Jobs #All #social {
    display: block;
  }
  #Apply #Jobs #All #map,
  #Apply #Jobs #All #map-info,
  #Apply #Jobs #All #filters {
    display: block;
  }
  #Apply #Jobs #All h6 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
#Apply #Jobs #Info iframe {
  max-width: 100%;
}
#Apply #Jobs #Info img {
  max-width: 100%;
}
#Apply #Jobs #Info .video {
  height: 240px;
  margin-bottom: 20px;
}
#Apply #Jobs #Info .wrap {
  white-space: pre-wrap;
}
#Apply #Jobs #Info .bold {
  font-weight: bold;
}
.localeBtn {
  margin-left: -15px;
}
@media (min-width: 768px) {
  #Apply #Jobs #Info .video {
    height: 480px;
  }
}
@media (min-width: 992px) {
  #Apply #Jobs #Info .video {
    height: 640px;
  }
}
@media (min-width: 1200px) {
  #Apply #Jobs #Info .video {
    height: 640px;
  }
}
#Old html,
#Old body,
#Old #layout,
#Old #main {
  height: 100%;
}
#Old #main {
  padding: 0;
}
#Old #apply #social {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
#Old #apply #map {
  display: none;
}
#Old #apply #job-list {
  padding-bottom: 5rem;
  overflow-y: auto;
  max-height: 700px;
}
#Old #apply #job-list .btn-group {
  width: 100%;
}
#Old #apply #job-list .btn-group .title {
  width: 80%;
  padding-left: 2rem;
  padding-right: 1rem;
}
#Old #apply #job-list .btn-group .info {
  width: 20%;
}
#Old #apply #login-btn {
  display: inline-block;
  width: 23%;
  text-align: right;
  float: right;
  padding-right: 1rem;
}
#Old #apply img.logo {
  padding: 0 1rem;
  max-width: 75%;
  display: inline-block;
  margin-bottom: 0;
}
#Old #apply #inner {
  position: relative;
  background-color: white;
}
#Old #apply #inner #header {
  background-color: white;
  padding: 3rem 0 3rem;
  text-align: left;
  width: auto;
  height: auto;
  border-bottom: 5px solid #006f45;
}
#Old #apply #inner #content {
  background-color: white;
  padding-bottom: 0rem;
}
#Old #apply #inner #content .position {
  margin-bottom: 1rem;
}
#Old #apply #inner #content .position .btn-checkmark.title {
  text-align: left;
  line-height: 2.1rem;
  font-size: 0.8em;
}
#Old #apply .btn-next {
  text-align: center;
  width: 100%;
  background: #5cb85c;
  vertical-align: top;
  border-radius: 0;
  border: 0;
  color: white;
}
#Old #apply .btn-next:hover {
  background-color: #47a447;
}
#Old #apply #tabs .tab {
  text-align: center;
  position: relative;
  padding: 15px;
  width: 100%;
  color: black;
}
#Old #apply #tabs .tab h4 {
  margin: 0;
}
#Old #apply #tabs .tab.next {
  text-align: center;
  width: 100%;
  background: #5cb85c;
  vertical-align: top;
  border-radius: 0;
  border: 0;
  color: white;
}
#Old #apply #tabs .tab.next:hover {
  background-color: #47a447;
}
#Old #apply #tabs .done {
  background-color: #ddd;
  color: black;
}
#Old #apply #tabs .current {
  background-color: white;
  color: black;
}
#Old #apply #contact_info {
  padding-bottom: 5rem;
}
#Old #apply #contact_info .form-control {
  margin-bottom: 1rem;
}
#Old #apply #availability {
  padding-bottom: 5rem;
}
#Old #apply #about-us .welcome-row .welcome-outer {
  background: #006f45;
  color: white;
}
#Old #apply #about-us .welcome-row .welcome-outer h1 {
  padding: 3rem 4rem;
  display: inline-block;
  margin: 0;
}
#Old #apply #about-us .welcome-row .welcome-outer .btn {
  margin: 3rem;
}
#Old #apply #about-us .welcome-row .welcome-outer .apply-button {
  padding: 3rem;
  color: white;
  background: #00a265;
  padding: 35.5px;
}
#Old #apply #about-us .welcome-row .welcome-outer .apply-button:hover {
  background: #008955;
  cursor: pointer;
}
#Old #apply #about-us .well {
  margin-bottom: 0;
}
#Old #apply #about-us .glassdoor {
  padding: 2rem;
  background: #72b533;
  color: white;
  border: 0;
  border-radius: 0;
  font-size: 1.5em;
  display: block;
}
#Old #apply #about-us .glassdoor:hover {
  cursor: pointer;
  opacity: 0.85;
}
#Old #apply #about-us .glassdoor img {
  height: 100px;
}
#Old #apply #about-us .carousel-row {
  height: 250px;
  overflow: hidden;
}
#Old #apply #about-us .carousel-row image-slider:nth-child(1) {
  display: none;
}
#Old #apply #about-us .carousel-row image-slider:nth-child(2) {
  display: none;
}
#Old #apply #about-us .carousel {
  padding: 0;
}
#Old #apply #about-us .carousel .image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-color: black;
  min-width: 10px;
  min-height: 250px;
  margin: auto;
}
#Old #apply #about-us .carousel-control,
#Old #apply #about-us .carousel-indicators {
  display: none;
}
#Old #apply #about-us .apply-now-big {
  background-color: #006f45;
  border-color: #003c25;
}
#Old #apply #about-us .apply-now-big:hover {
  background-color: #005635;
  border-color: #003c25;
}
@media (min-width: 768px) {
  #Old #main {
    padding: 0;
  }
  #Old #main #apply #social {
    width: auto;
    margin-top: 0px;
    margin-bottom: 0px;
  }
  #Old #main #apply .btn-next {
    text-align: center;
    background: #5cb85c;
    vertical-align: top;
    color: white;
  }
  #Old #main #apply .btn-next:hover {
    background-color: #47a447;
  }
  #Old #main #apply #map {
    display: block;
  }
  #Old #main #apply img.logo {
    width: auto;
    max-width: 245px;
    max-height: 20rem;
  }
  #Old #main #apply #login-btn {
    text-align: right;
    padding: 0 2rem;
    position: absolute;
    right: 0;
  }
  #Old #main #apply #inner #header {
    text-align: center;
  }
  #Old #main #apply #tabs .cheveron {
    position: absolute;
    height: 50px;
    width: 50px;
    right: -50px;
    top: 0;
    z-index: 5;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-right: 25px solid transparent;
    border-left: 25px solid white;
  }
  #Old #main #apply #tabs .tab {
    display: inline-block;
    padding: 15px;
    width: 30%;
  }
  #Old #main #apply #tabs .tab:nth-child(2) {
    background-color: #eee;
  }
  #Old #main #apply #tabs .tab:nth-child(2) .cheveron {
    border-left-color: #eee;
  }
  #Old #main #apply #tabs .tab:nth-child(3) {
    background-color: #ddd;
  }
  #Old #main #apply #tabs .tab:nth-child(3) .cheveron {
    border-left-color: #ddd;
  }
  #Old #main #apply #tabs .tab:nth-child(4) {
    background-color: #ccc;
  }
  #Old #main #apply #tabs .tab:nth-child(4) .cheveron {
    border-left-color: #ccc;
  }
  #Old #main #apply #tabs .tab h4 {
    margin: 0;
  }
  #Old #main #apply #tabs .tab.next {
    text-align: center;
    width: 10%;
    background: #5cb85c;
    vertical-align: top;
    border-radius: 0;
    border: 0;
  }
  #Old #main #apply #tabs .tab.next:hover {
    background-color: #47a447;
  }
  #Old #main #apply #tabs .tab.next:hover .cheveron {
    border-left-color: #47a447;
  }
  #Old #main #apply #tabs .done {
    background-color: #5cb85c !important;
    color: white;
  }
  #Old #main #apply #tabs .done .cheveron {
    border-left-color: #5cb85c !important;
  }
  #Old #main #apply #tabs .current {
    background-color: white !important;
    color: black;
  }
  #Old #main #apply #tabs .current .cheveron {
    border-left-color: white !important;
  }
  #Old #main #apply #tabs.tabs-4 .tab-default {
    width: 22.5%;
  }
  #Old #main #apply #tabs.tabs-3 .tab-default {
    width: 30%;
  }
  #Old #main #apply #tabs.tabs-2 .tab-default {
    width: 45%;
  }
  #Old #main #apply #content .btn-checkmark.title {
    width: 36rem;
  }
  #Old #main #apply #about-us .carousel-row {
    height: auto;
    height: 250px;
  }
  #Old #main #apply #about-us .carousel-row image-slider:nth-child(1) {
    display: block;
  }
  #Old #main #apply #about-us .carousel-row image-slider:nth-child(2) {
    display: block;
  }
}
#Apply .btn-next {
  text-align: center;
  width: 100%;
  background: #006f45;
  vertical-align: top;
  border-radius: 0;
  border: 0;
  color: white;
}
#Apply .btn-next:hover {
  background-color: #008955;
}
#Apply .btn-next:hover .cheveron {
  border-left-color: #008955;
}
#Apply #login-btn {
  display: inline-block;
  width: 23%;
  text-align: right;
  float: right;
  padding-right: 1rem;
  position: absolute;
  top: 1rem;
  right: 0;
}
#Apply #inner {
  position: relative;
  background-color: white;
}
#Apply #inner #header {
  background-color: white;
  padding: 3rem 1rem 3rem;
  text-align: left;
  width: auto;
  height: auto;
  border-bottom: 5px solid #086743;
  padding-top: 5.5rem;
}
#Apply #inner #header img {
  max-width: 100%;
  max-height: 8rem;
}
#Apply #inner #content {
  background-color: white;
  padding-bottom: 0rem;
}
#Apply #inner #content .position {
  margin-bottom: 1rem;
}
#Apply #inner #content .position .btn-checkmark.title {
  text-align: left;
  line-height: 2.1rem;
  font-size: 0.8em;
}
#Apply #tabs .tab {
  display: none;
  text-align: center;
  position: relative;
  width: 100%;
  color: black;
}
#Apply #tabs .tab h4 {
  margin: 0;
}
#Apply #tabs .tab.next {
  text-align: center;
  width: 100%;
  background: #006f45;
  vertical-align: top;
  border-radius: 0;
  border: 0;
  color: white;
}
#Apply #tabs .tab.next:hover {
  background-color: #008955;
}
#Apply #tabs .tab.next:hover .cheveron {
  border-left-color: #008955;
}
#Apply #tabs .done {
  background-color: #ddd;
  color: black;
}
#Apply #tabs .current {
  background-color: white;
  color: black;
}
@media (min-width: 992px) {
  #Apply #mobile-nav {
    display: none;
  }
  #Apply #inner #header {
    text-align: center;
    padding: 3rem 1rem 3rem;
    padding-top: 3rem;
  }
  #Apply #inner #header img {
    max-width: 50rem;
    max-height: 15rem;
  }
  #Apply #login-btn {
    text-align: right;
    padding: 0 2rem;
    position: absolute;
    right: 0;
    top: 20px;
    width: auto;
  }
  #Apply #tabs .cheveron {
    position: absolute;
    height: 50px;
    width: 50px;
    right: -50px;
    top: 0;
    z-index: 5;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-right: 0 solid transparent;
    border-left: 25px solid white;
  }
  #Apply #tabs .tab {
    display: inline-block;
    padding: 15px;
    width: 30%;
    height: 50px;
    padding-left: 40px;
  }
  #Apply #tabs .tab:nth-child(1) {
    padding-left: 15px;
  }
  #Apply #tabs .tab:nth-child(2) {
    background-color: #eee;
  }
  #Apply #tabs .tab:nth-child(2) .cheveron {
    border-left-color: #eee;
  }
  #Apply #tabs .tab:nth-child(3) {
    background-color: #ddd;
  }
  #Apply #tabs .tab:nth-child(3) .cheveron {
    border-left-color: #ddd;
  }
  #Apply #tabs .tab:nth-child(4) {
    background-color: #ccc;
  }
  #Apply #tabs .tab:nth-child(4) .cheveron {
    border-left-color: #ccc;
  }
  #Apply #tabs .tab:nth-child(5) {
    background-color: #bbb;
  }
  #Apply #tabs .tab:nth-child(5) .cheveron {
    border-left-color: #bbb;
  }
  #Apply #tabs .tab h4 {
    margin: 0;
  }
  #Apply #tabs .tab.next {
    text-align: center;
    width: 10%;
    background: #006f45;
    vertical-align: top;
    border-radius: 0;
    border: 0;
  }
  #Apply #tabs .tab.next:hover {
    background-color: #008955;
  }
  #Apply #tabs .tab.next:hover .cheveron {
    border-left-color: #008955;
  }
  #Apply #tabs .done {
    background-color: #006f45 !important;
    color: white;
  }
  #Apply #tabs .done .cheveron {
    border-left-color: #006f45 !important;
  }
  #Apply #tabs .current {
    background-color: white !important;
    color: black;
  }
  #Apply #tabs .current .cheveron {
    border-left-color: white !important;
  }
  #Apply #tabs.tabs-5 .tab-default {
    width: 18%;
  }
  #Apply #tabs.tabs-4 .tab-default {
    width: 22.5%;
  }
  #Apply #tabs.tabs-3 .tab-default {
    width: 30%;
  }
  #Apply #tabs.tabs-2 .tab-default {
    width: 45%;
  }
}
body,
label,
.checkbox label {
  font-weight: 300;
}
html {
  min-height: 100%;
  position: relative;
}
body {
  height: 100%;
  background: transparent;
}
[ui-sref]:hover {
  cursor: pointer;
}
.flex {
  display: flex;
}
uib-accordion .panel-heading {
  padding: 0;
}
.panel-title > a {
  display: block;
  width: 100%;
  padding: 10px 15px;
}
.help-button {
  display: inline-block;
  background-color: #FFFFFF;
  color: #428bca;
  border-radius: 1em;
  width: 1.5em;
  text-align: center;
  height: 1.5em;
  line-height: 1.2em;
  border: 0.2em solid #428bca;
  font-weight: bold;
}
.help-button:hover {
  color: #FFFFFF;
  background-color: #428bca;
  cursor: pointer;
}
.loader,
.loader:before,
.loader:after {
  background: #006f45;
  -webkit-animation: load1 1s infinite ease-in-out;
  animation: load1 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}
.loader:before,
.loader:after {
  position: absolute;
  top: 0;
  content: '';
}
.loader:before {
  left: -1.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader {
  text-indent: -9999em;
  margin: 0px auto;
  position: relative;
  font-size: 11px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader:after {
  left: 1.5em;
}
@-webkit-keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0 #006f45;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em #006f45;
    height: 5em;
  }
}
@keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0 #006f45;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em #006f45;
    height: 5em;
  }
}
ul.dnd-list li {
  border: 1px solid #ccc;
  border-top: 0;
}
ul.dnd-list li:hover {
  cursor: move;
}
ul.dnd-list li:first-child {
  border-top: 1px solid #ccc;
}
ul.dnd-list .dndDragging {
  opacity: 0.7;
}
ul.dnd-list .dndDraggingSource {
  display: none;
}
ul.dnd-list .dndPlaceholder {
  background-color: #bbb;
  border: 1px solid #666;
  border-top: 1px solid #666;
}
.form-group.required .control-label:after {
  content: "*";
  color: red;
}
.btn .glyphicon {
  height: 2rem;
  line-height: 1.8rem;
}
.btn.glyphicon {
  height: 3.3rem;
  line-height: 1.8rem;
}
.glyphicon.glyphicon-flag {
  color: #5bc0de;
}
.glyphicon.glyphicon-earphone {
  color: #5cb85c;
}
.glyphicon.glyphicon-stats {
  color: #428bca;
}
.glyphicon.glyphicon-star {
  color: #f0ad4e;
}
.glyphicon.glyphicon-map-marker {
  color: #d9534f;
}
.angular-google-map-container {
  height: 400px;
}
.dc-chart .empty-chart .pie-slice path {
  fill: #333;
}
.nav,
.pagination,
.carousel,
.panel-title a {
  cursor: pointer;
}
.box-over {
  width: 100%;
  overflow: hidden;
  background-color: #ccc;
  position: absolute;
  padding: 1rem;
}
.box-over:hover {
  width: auto;
  height: auto;
  z-index: 5;
}
.box-over:hover .content {
  display: block;
}
.box-over:hover .text {
  display: none;
}
.box-over .text {
  display: block;
  text-align: center;
  top: 0;
  left: 0;
  width: 100%;
  color: white;
}
.box-over .content {
  display: none;
}
.online img {
  height: 10px;
}
.dz .dz-default.dz-message {
  background-size: 200px;
  width: 200px;
  height: 55px;
  margin-left: -100px;
}
.btn-checkmark {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
  padding: 6px 23px;
}
.btn-checkmark.active {
  background-image: url("/assets/img/icons/basic/023_w.png");
  background-size: 1em 1em;
  background-repeat: no-repeat;
  background-position: 10px center;
  background-color: #428bca;
  color: white;
  padding-left: 32px;
}
.btn-checkmark.active.success {
  background-color: #5cb85c;
}
.btn-checkmark.active.info {
  background-color: #5bc0de;
}
.btn-checkmark.active.warning {
  background-color: #f0ad4e;
}
.btn-checkmark.active.danger {
  background-color: #d9534f;
}
.noselect {
  -webkit-touch-callout: none;
  -webkit-profile-select: none;
  -khtml-profile-select: none;
  -moz-profile-select: none;
  -ms-profile-select: none;
  profile-select: none;
}
#app-loading {
  height: 100%;
  width: 100%;
  background-color: white;
  position: fixed;
  z-index: 100000;
  top: 0;
  left: 0;
  text-align: center;
  font-size: 1em;
}
#app-loading #inner {
  margin-top: calc(45vh);
}
#app-loading #inner .status {
  text-transform: uppercase;
  color: #aaa;
}
#layout {
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: 0;
  min-height: 100vh;
  margin: 0 auto 0;
}
#layout #flash {
  text-align: center;
  margin-bottom: 0;
  width: 100%;
  top: 0;
  padding: 1em 0;
  background: #b41029;
  color: white;
  border-radius: 0;
}
#layout #background {
  background-color: white;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: -1;
}
#layout #header {
  background-color: white;
}
#layout #header #brand {
  height: 7.4rem;
  padding: 1em;
  border-bottom: 10px solid #006f45;
}
#layout #header #brand img {
  max-height: 36px;
  max-width: 75%;
  margin: 0;
}
#layout #header #menu {
  background-color: transparent;
  position: absolute;
  z-index: 9999;
  top: 0;
  padding: 7px 0 0 0;
  float: left;
  width: 100%;
  border: none;
  border-radius: 0;
}
#layout #header #menu .nav-secondary {
  background-color: #666;
}
#layout #header #menu .nav-secondary li a {
  background-color: #666;
  border-left-color: #555;
}
#layout #header #menu .nav > li > a > img {
  max-width: none;
  height: 25px;
}
#layout #header #menu .nav a img.white {
  display: inline-block;
}
#layout #header #menu .nav a img.black {
  display: none;
}
#layout #header #menu .nav a.active img.white {
  display: none;
}
#layout #header #menu .nav a.active img.black {
  display: inline-block;
}
#layout #header #menu .navbar-toggle {
  margin-bottom: 25px;
}
#layout #header #menu .navbar-header {
  margin-right: 0;
  margin-left: 0;
}
#layout #header #menu .navbar-collapse {
  margin-right: 0;
  margin-left: 0;
  border-top: 0;
  background: #333;
}
#layout #header #menu .menu-button {
  background-color: #333333;
  color: white;
}
#layout #header #menu .flexnav li ul.flexnav-show li {
  height: 51px;
}
#layout #header #menu ul.navbar-nav {
  width: 100%;
}
#layout #header #menu .container-fluid {
  padding-right: 0;
  padding-left: 0;
}
#layout #header #menu .navbar-collapse {
  padding-right: 0;
  padding-left: 0;
}
#layout #header #menu .dropdown-menu {
  border-top: 0;
}
#layout #header #menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#layout #header #menu ul li a {
  background-color: #333333;
  color: white;
  text-decoration: none;
  line-height: 24px;
}
#layout #header #menu ul li a.first {
  width: auto;
  padding-left: 3rem;
  padding-right: 3rem;
}
#layout #header #menu ul li a.second {
  width: auto;
  padding-left: 6rem;
  padding-right: 3rem;
}
#layout #header #menu ul li a:hover {
  background-color: #0e6142;
}
#layout #header #menu ul li a.active {
  background-color: white;
  color: #333;
}
#layout #main {
  float: none;
  width: 100%;
  padding: 0;
  padding-bottom: 4rem;
}
#main,
#footer {
  position: relative;
}
#main.background-white,
#footer.background-white {
  background-color: white;
}
#footer {
  width: 100%;
  margin-top: 4rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  line-height: 1rem;
  font-size: 1rem;
  color: white;
  background-color: #a6a6a6;
  border-top: 1px solid #999999;
}
#footer #social {
  width: auto;
  margin-bottom: 0px;
  margin-top: -6px;
  text-decoration: none;
}
#footer #social:hover {
  text-decoration: none;
}
#footer .inner {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
#footer a {
  color: white;
}
#footer .logo {
  height: 3rem;
}
#footer a {
  color: 100;
  padding: 1rem;
  width: 100%;
  display: block;
}
#footer p {
  padding: 1rem;
}
#push {
  height: 81px;
}
.modal .container-fluid {
  padding: 15px;
}
@media (min-width: 768px) {
  #push {
    height: 81px;
  }
  #layout #header #brand img {
    width: auto;
  }
  #layout #header #menu {
    background-color: #333333;
    position: relative;
    padding: 0;
    margin-bottom: 0;
  }
  #layout #header #menu .navbar-toggle {
    margin-bottom: 8px;
  }
  #layout #header #menu ul li a {
    border-right: 1px solid #222222;
  }
  #layout #header #menu ul li a.first {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  #layout #header #menu ul li a.second {
    padding-left: 2rem;
  }
  #footer a {
    display: inline-block;
    width: auto;
  }
}
@media (min-width: 992px) {
  #push {
    height: 81px;
  }
  .dz .dz-default.dz-message {
    background-size: 428px;
    width: 428px;
    height: 123px;
    margin-left: -214px;
  }
  #layout {
    min-height: 100vh;
    background-size: cover;
  }
  #layout #background {
    display: block;
    background-color: white;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: fixed;
  }
  #layout #header,
  #layout #main {
    position: relative;
    margin: auto;
    float: none;
    width: 100%;
    max-width: 100%;
  }
  #layout #header {
    height: 192px;
  }
  #layout #header #brand {
    padding: 20px;
    height: 135px;
    display: flex;
    align-items: flex-end;
    align-items: center;
  }
  #layout #header #brand img {
    max-height: 95px;
  }
  #layout #header #menu ul li a.first {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  #layout #header #menu ul li a.second {
    padding-left: 3rem;
  }
  #footer .inner {
    width: 962px;
    max-width: 962px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1200px) {
  #layout #header,
  #layout #main {
    margin: auto;
    width: 100%;
    max-width: 100%;
  }
  #layout #header.fixed-width,
  #layout #main.fixed-width {
    width: 1170px;
    margin: 4rem auto;
  }
  #footer .inner {
    width: 1170px;
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media print {
  .page-break {
    display: block;
    position: relative;
    page-break-after: always;
    page-break-inside: avoid;
    -webkit-region-break-inside: avoid;
  }
  .hide-print {
    display: none !important;
  }
  .show-print {
    display: block !important;
  }
}
.color-default {
  color: #333333;
}
.color-primary {
  color: #428bca;
}
.color-success {
  color: #5cb85c;
}
.color-info {
  color: #5bc0de;
}
.color-danger {
  color: #d9534f;
}
.color-warning {
  color: #f0ad4e;
}
