@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Roboto+Mono:500|Roboto+Slab:700|Roboto:400,500,700');
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
input,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
a,
b,
u,
i,
ul,
li,
label,
td {
  font-size: 100%;
  font: inherit;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* Variables */
@font-face {
  font-family: 'allerbold';
  src: url('/common/fonts/aller-webfont.eot');
  src: url('/common/fonts/aller-webfont.eot?#iefix') format('embedded-opentype'), url('/common/fonts/aller-webfont.woff2') format('woff2'), url('/common/fonts/aller-webfont.woff') format('woff'), url('/common/fonts/aller-webfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'allerregular';
  src: url('/common/fonts/aller_rg-webfont.eot');
  src: url('/common/fonts/aller_rg-webfont.eot?#iefix') format('embedded-opentype'), url('/common/fonts/aller_rg-webfont.woff2') format('woff2'), url('/common/fonts/aller_rg-webfont.woff') format('woff'), url('/common/fonts/aller_rg-webfont.ttf') format('truetype'), url('/common/fonts/aller_rg-webfont.svg#allerregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
/*

Animate.less
Cross-browser LESS animation library for Bootstrap
Licensed under the â˜º license (http://licence.visualidiot.com/)
Documenation: https://github.com/machito/animate.less
-------------------------------------------------------
Copyright Â© 2012 Michael Castilla
Email: yo@machito.co
Twitter: https://twitter.com/micr0bitz

*/
body {
  -webkit-backface-visibility: hidden;
}
.animated {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  -moz-animation-duration: 2s;
  -o-animation-duration: 2s;
  animation-duration: 2s;
}
@-webkit-keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@-moz-keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@-o-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;
  -moz-animation-name: flash;
  -o-animation-name: flash;
  animation-name: flash;
}
@-webkit-keyframes shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
  }
}
@-moz-keyframes shake {
  0%,
  100% {
    -moz-transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -moz-transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    -moz-transform: translateX(10px);
  }
}
@-o-keyframes shake {
  0%,
  100% {
    -o-transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -o-transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    -o-transform: translateX(10px);
  }
}
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(10px);
  }
}
.shake {
  -webkit-animation-name: shake;
  -moz-animation-name: shake;
  -o-animation-name: shake;
  animation-name: shake;
}
@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
  }
}
@-moz-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
  }
}
@-o-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -o-transform: translateY(0);
  }
  40% {
    -o-transform: translateY(-30px);
  }
  60% {
    -o-transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  -moz-animation-name: bounce;
  -o-animation-name: bounce;
  animation-name: bounce;
}
@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
  }
  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
  }
}
@-moz-keyframes tada {
  0% {
    -moz-transform: scale(1);
  }
  10%,
  20% {
    -moz-transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -moz-transform: scale(1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -moz-transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -moz-transform: scale(1) rotate(0);
  }
}
@-o-keyframes tada {
  0% {
    -o-transform: scale(1);
  }
  10%,
  20% {
    -o-transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -o-transform: scale(1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -o-transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -o-transform: scale(1) rotate(0);
  }
}
@keyframes tada {
  0% {
    transform: scale(1);
  }
  10%,
  20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale(1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
.tada {
  -webkit-animation-name: tada;
  -moz-animation-name: tada;
  -o-animation-name: tada;
  animation-name: tada;
}
@-webkit-keyframes swing {
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-transform-origin: top center;
  }
  20% {
    -webkit-transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@-moz-keyframes swing {
  20% {
    -moz-transform: rotate(15deg);
  }
  40% {
    -moz-transform: rotate(-10deg);
  }
  60% {
    -moz-transform: rotate(5deg);
  }
  80% {
    -moz-transform: rotate(-5deg);
  }
  100% {
    -moz-transform: rotate(0deg);
  }
}
@-o-keyframes swing {
  20% {
    -o-transform: rotate(15deg);
  }
  40% {
    -o-transform: rotate(-10deg);
  }
  60% {
    -o-transform: rotate(5deg);
  }
  80% {
    -o-transform: rotate(-5deg);
  }
  100% {
    -o-transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
  -o-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  -moz-animation-name: swing;
  -o-animation-name: swing;
  animation-name: swing;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
@-moz-keyframes wobble {
  0% {
    -moz-transform: translateX(0%);
  }
  15% {
    -moz-transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -moz-transform: translateX(20%) rotate(3deg);
  }
  45% {
    -moz-transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -moz-transform: translateX(10%) rotate(2deg);
  }
  75% {
    -moz-transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -moz-transform: translateX(0%);
  }
}
@-o-keyframes wobble {
  0% {
    -o-transform: translateX(0%);
  }
  15% {
    -o-transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -o-transform: translateX(20%) rotate(3deg);
  }
  45% {
    -o-transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -o-transform: translateX(10%) rotate(2deg);
  }
  75% {
    -o-transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -o-transform: translateX(0%);
  }
}
@keyframes wobble {
  0% {
    transform: translateX(0%);
  }
  15% {
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    transform: translateX(0%);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  -moz-animation-name: wobble;
  -o-animation-name: wobble;
  animation-name: wobble;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes pulse {
  0% {
    -moz-transform: scale(1);
  }
  50% {
    -moz-transform: scale(1.1);
  }
  100% {
    -moz-transform: scale(1);
  }
}
@-o-keyframes pulse {
  0% {
    -o-transform: scale(1);
  }
  50% {
    -o-transform: scale(1.1);
  }
  100% {
    -o-transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  -moz-animation-name: pulse;
  -o-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(0);
    -webkit-animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -webkit-animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) scale(1);
    -webkit-animation-timing-function: ease-in;
  }
}
@-moz-keyframes flip {
  0% {
    -moz-transform: perspective(400px) rotateY(0);
    -moz-animation-timing-function: ease-out;
  }
  40% {
    -moz-transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -moz-animation-timing-function: ease-out;
  }
  50% {
    -moz-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -moz-animation-timing-function: ease-in;
  }
  80% {
    -moz-transform: perspective(400px) rotateY(360deg) scale(0.95);
    -moz-animation-timing-function: ease-in;
  }
  100% {
    -moz-transform: perspective(400px) scale(1);
    -moz-animation-timing-function: ease-in;
  }
}
@-o-keyframes flip {
  0% {
    -o-transform: perspective(400px) rotateY(0);
    -o-animation-timing-function: ease-out;
  }
  40% {
    -o-transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -o-animation-timing-function: ease-out;
  }
  50% {
    -o-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -o-animation-timing-function: ease-in;
  }
  80% {
    -o-transform: perspective(400px) rotateY(360deg) scale(0.95);
    -o-animation-timing-function: ease-in;
  }
  100% {
    -o-transform: perspective(400px) scale(1);
    -o-animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    transform: perspective(400px) rotateY(0);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(170deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) rotateY(360deg) scale(0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px) scale(1);
    animation-timing-function: ease-in;
  }
}
.flip {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flip;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flip;
  -o-backface-visibility: visible !important;
  -o-animation-name: flip;
  backface-visibility: visible !important;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@-moz-keyframes flipInX {
  0% {
    -moz-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -moz-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -moz-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -moz-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@-o-keyframes flipInX {
  0% {
    -o-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -o-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -o-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -o-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipInX;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipInX;
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@-moz-keyframes flipOutX {
  0% {
    -moz-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -moz-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@-o-keyframes flipOutX {
  0% {
    -o-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -o-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -moz-animation-name: flipOutX;
  -moz-backface-visibility: visible !important;
  -o-animation-name: flipOutX;
  -o-backface-visibility: visible !important;
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@-moz-keyframes flipInY {
  0% {
    -moz-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -moz-transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -moz-transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -moz-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@-o-keyframes flipInY {
  0% {
    -o-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -o-transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -o-transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -o-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipInY;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipInY;
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@-moz-keyframes flipOutY {
  0% {
    -moz-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -moz-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@-o-keyframes flipOutY {
  0% {
    -o-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -o-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipOutY;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipOutY;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes fadeInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  -moz-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes fadeInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -o-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-o-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -o-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  -moz-animation-name: fadeInLeft;
  -o-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes fadeInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-o-keyframes fadeInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  -moz-animation-name: fadeInRight;
  -o-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  -moz-animation-name: fadeInUpBig;
  -o-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  -moz-animation-name: fadeInDownBig;
  -o-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-o-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  -moz-animation-name: fadeInLeftBig;
  -o-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-o-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  -moz-animation-name: fadeInRightBig;
  -o-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  -moz-animation-name: fadeOut;
  -o-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
}
@-moz-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }
}
@-o-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(-20px);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  -moz-animation-name: fadeOutUp;
  -o-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
}
@-moz-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(20px);
  }
}
@-o-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(20px);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  -moz-animation-name: fadeOutDown;
  -o-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
}
@-moz-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(-20px);
  }
}
@-o-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(-20px);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  -moz-animation-name: fadeOutLeft;
  -o-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
}
@-moz-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(20px);
  }
}
@-o-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(20px);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  -moz-animation-name: fadeOutRight;
  -o-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}
@-moz-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
}
@-o-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  -moz-animation-name: fadeOutUpBig;
  -o-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}
@-moz-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
}
@-o-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  -moz-animation-name: fadeOutDownBig;
  -o-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}
@-moz-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
}
@-o-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  -moz-animation-name: fadeOutLeftBig;
  -o-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}
@-moz-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
}
@-o-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  -moz-animation-name: fadeOutRightBig;
  -o-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes bounceIn {
  0% {
    opacity: 0;
    -moz-transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -moz-transform: scale(1.05);
  }
  70% {
    -moz-transform: scale(0.9);
  }
  100% {
    -moz-transform: scale(1);
  }
}
@-o-keyframes bounceIn {
  0% {
    opacity: 0;
    -o-transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -o-transform: scale(1.05);
  }
  70% {
    -o-transform: scale(0.9);
  }
  100% {
    -o-transform: scale(1);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  -moz-animation-name: bounceIn;
  -o-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes bounceInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateY(-30px);
  }
  80% {
    -moz-transform: translateY(10px);
  }
  100% {
    -moz-transform: translateY(0);
  }
}
@-o-keyframes bounceInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -o-transform: translateY(-30px);
  }
  80% {
    -o-transform: translateY(10px);
  }
  100% {
    -o-transform: translateY(0);
  }
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(-30px);
  }
  80% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  -moz-animation-name: bounceInUp;
  -o-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes bounceInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateY(30px);
  }
  80% {
    -moz-transform: translateY(-10px);
  }
  100% {
    -moz-transform: translateY(0);
  }
}
@-o-keyframes bounceInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -o-transform: translateY(30px);
  }
  80% {
    -o-transform: translateY(-10px);
  }
  100% {
    -o-transform: translateY(0);
  }
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(30px);
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  -moz-animation-name: bounceInDown;
  -o-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateX(30px);
  }
  80% {
    -moz-transform: translateX(-10px);
  }
  100% {
    -moz-transform: translateX(0);
  }
}
@-o-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -o-transform: translateX(30px);
  }
  80% {
    -o-transform: translateX(-10px);
  }
  100% {
    -o-transform: translateX(0);
  }
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(30px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  -moz-animation-name: bounceInLeft;
  -o-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes bounceInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateX(-30px);
  }
  80% {
    -moz-transform: translateX(10px);
  }
  100% {
    -moz-transform: translateX(0);
  }
}
@-o-keyframes bounceInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -o-transform: translateX(-30px);
  }
  80% {
    -o-transform: translateX(10px);
  }
  100% {
    -o-transform: translateX(0);
  }
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(-30px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  -moz-animation-name: bounceInRight;
  -o-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
}
@-moz-keyframes bounceOut {
  0% {
    -moz-transform: scale(1);
  }
  25% {
    -moz-transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -moz-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -moz-transform: scale(0.3);
  }
}
@-o-keyframes bounceOut {
  0% {
    -o-transform: scale(1);
  }
  25% {
    -o-transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -o-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -o-transform: scale(0.3);
  }
}
@keyframes bounceOut {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  -moz-animation-name: bounceOut;
  -o-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}
@-moz-keyframes bounceOutUp {
  0% {
    -moz-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -moz-transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
}
@-o-keyframes bounceOutUp {
  0% {
    -o-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -o-transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
}
@keyframes bounceOutUp {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  -moz-animation-name: bounceOutUp;
  -o-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}
@-moz-keyframes bounceOutDown {
  0% {
    -moz-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -moz-transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
}
@-o-keyframes bounceOutDown {
  0% {
    -o-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -o-transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
}
@keyframes bounceOutDown {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  -moz-animation-name: bounceOutDown;
  -o-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}
@-moz-keyframes bounceOutLeft {
  0% {
    -moz-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -moz-transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
}
@-o-keyframes bounceOutLeft {
  0% {
    -o-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -o-transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
}
@keyframes bounceOutLeft {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  -moz-animation-name: bounceOutLeft;
  -o-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}
@-moz-keyframes bounceOutRight {
  0% {
    -moz-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -moz-transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
}
@-o-keyframes bounceOutRight {
  0% {
    -o-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -o-transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
}
@keyframes bounceOutRight {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  -moz-animation-name: bounceOutRight;
  -o-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@-moz-keyframes rotateIn {
  0% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}
@-o-keyframes rotateIn {
  0% {
    -o-transform-origin: center center;
    -o-transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -o-transform-origin: center center;
    -o-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    transform-origin: center center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  -moz-animation-name: rotateIn;
  -o-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@-moz-keyframes rotateInUpLeft {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}
@-o-keyframes rotateInUpLeft {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  -moz-animation-name: rotateInUpLeft;
  -o-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@-moz-keyframes rotateInDownLeft {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}
@-o-keyframes rotateInDownLeft {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  -moz-animation-name: rotateInDownLeft;
  -o-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@-moz-keyframes rotateInUpRight {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}
@-o-keyframes rotateInUpRight {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  -moz-animation-name: rotateInUpRight;
  -o-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@-moz-keyframes rotateInDownRight {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}
@-o-keyframes rotateInDownRight {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  -moz-animation-name: rotateInDownRight;
  -o-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(200deg);
    opacity: 0;
  }
}
@-moz-keyframes rotateOut {
  0% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(200deg);
    opacity: 0;
  }
}
@-o-keyframes rotateOut {
  0% {
    -o-transform-origin: center center;
    -o-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -o-transform-origin: center center;
    -o-transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: center center;
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  -moz-animation-name: rotateOut;
  -o-animation-name: rotateOut;
  animation-name: rotateOut;
}
@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
}
@-moz-keyframes rotateOutUpLeft {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0;
  }
}
@-o-keyframes rotateOutUpLeft {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  -moz-animation-name: rotateOutUpLeft;
  -o-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
}
@-moz-keyframes rotateOutDownLeft {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(90deg);
    opacity: 0;
  }
}
@-o-keyframes rotateOutDownLeft {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  -moz-animation-name: rotateOutDownLeft;
  -o-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
}
@-moz-keyframes rotateOutUpRight {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(90deg);
    opacity: 0;
  }
}
@-o-keyframes rotateOutUpRight {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  -moz-animation-name: rotateOutUpRight;
  -o-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}
@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
}
@-moz-keyframes rotateOutDownRight {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0;
  }
}
@-o-keyframes rotateOutDownRight {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  -moz-animation-name: rotateOutDownRight;
  -o-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}
@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
    opacity: 0;
  }
}
@-moz-keyframes hinge {
  0% {
    -moz-transform: rotate(0);
    -moz-transform-origin: top left;
    -moz-animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -moz-transform: rotate(80deg);
    -moz-transform-origin: top left;
    -moz-animation-timing-function: ease-in-out;
  }
  40% {
    -moz-transform: rotate(60deg);
    -moz-transform-origin: top left;
    -moz-animation-timing-function: ease-in-out;
  }
  80% {
    -moz-transform: rotate(60deg) translateY(0);
    opacity: 1;
    -moz-transform-origin: top left;
    -moz-animation-timing-function: ease-in-out;
  }
  100% {
    -moz-transform: translateY(700px);
    opacity: 0;
  }
}
@-o-keyframes hinge {
  0% {
    -o-transform: rotate(0);
    -o-transform-origin: top left;
    -o-animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -o-transform: rotate(80deg);
    -o-transform-origin: top left;
    -o-animation-timing-function: ease-in-out;
  }
  40% {
    -o-transform: rotate(60deg);
    -o-transform-origin: top left;
    -o-animation-timing-function: ease-in-out;
  }
  80% {
    -o-transform: rotate(60deg) translateY(0);
    opacity: 1;
    -o-transform-origin: top left;
    -o-animation-timing-function: ease-in-out;
  }
  100% {
    -o-transform: translateY(700px);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    transform: rotate(0);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  80% {
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  100% {
    transform: translateY(700px);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  -moz-animation-name: hinge;
  -o-animation-name: hinge;
  animation-name: hinge;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
  }
}
@-moz-keyframes rollIn {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0px) rotate(0deg);
  }
}
@-o-keyframes rollIn {
  0% {
    opacity: 0;
    -o-transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0px) rotate(0deg);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  -moz-animation-name: rollIn;
  -o-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
  }
}
@-moz-keyframes rollOut {
  0% {
    opacity: 1;
    -moz-transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(100%) rotate(120deg);
  }
}
@-o-keyframes rollOut {
  0% {
    opacity: 1;
    -o-transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(100%) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  -moz-animation-name: rollOut;
  -o-animation-name: rollOut;
  animation-name: rollOut;
}
/* originally authored by Angelo Rohit - https://github.com/angelorohit */
@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
@-moz-keyframes lightSpeedIn {
  0% {
    -moz-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -moz-transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -moz-transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -moz-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
@-o-keyframes lightSpeedIn {
  0% {
    -o-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -o-transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -o-transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -o-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  -moz-animation-name: lightSpeedIn;
  -o-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  -moz-animation-timing-function: ease-out;
  -o-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
.animated.lightSpeedIn {
  -webkit-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  -o-animation-duration: 0.5s;
  animation-duration: 0.5s;
}
/* originally authored by Angelo Rohit - https://github.com/angelorohit */
@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@-moz-keyframes lightSpeedOut {
  0% {
    -moz-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -moz-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@-o-keyframes lightSpeedOut {
  0% {
    -o-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -o-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  -moz-animation-name: lightSpeedOut;
  -o-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  -moz-animation-timing-function: ease-in;
  -o-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
.animated.lightSpeedOut {
  -webkit-animation-duration: 0.25s;
  -moz-animation-duration: 0.25s;
  -o-animation-duration: 0.25s;
  animation-duration: 0.25s;
}
/* originally authored by Angelo Rohit - https://github.com/angelorohit */
@-webkit-keyframes wiggle {
  0% {
    -webkit-transform: skewX(9deg);
  }
  10% {
    -webkit-transform: skewX(-8deg);
  }
  20% {
    -webkit-transform: skewX(7deg);
  }
  30% {
    -webkit-transform: skewX(-6deg);
  }
  40% {
    -webkit-transform: skewX(5deg);
  }
  50% {
    -webkit-transform: skewX(-4deg);
  }
  60% {
    -webkit-transform: skewX(3deg);
  }
  70% {
    -webkit-transform: skewX(-2deg);
  }
  80% {
    -webkit-transform: skewX(1deg);
  }
  90% {
    -webkit-transform: skewX(0deg);
  }
  100% {
    -webkit-transform: skewX(0deg);
  }
}
@-moz-keyframes wiggle {
  0% {
    -moz-transform: skewX(9deg);
  }
  10% {
    -moz-transform: skewX(-8deg);
  }
  20% {
    -moz-transform: skewX(7deg);
  }
  30% {
    -moz-transform: skewX(-6deg);
  }
  40% {
    -moz-transform: skewX(5deg);
  }
  50% {
    -moz-transform: skewX(-4deg);
  }
  60% {
    -moz-transform: skewX(3deg);
  }
  70% {
    -moz-transform: skewX(-2deg);
  }
  80% {
    -moz-transform: skewX(1deg);
  }
  90% {
    -moz-transform: skewX(0deg);
  }
  100% {
    -moz-transform: skewX(0deg);
  }
}
@-o-keyframes wiggle {
  0% {
    -o-transform: skewX(9deg);
  }
  10% {
    -o-transform: skewX(-8deg);
  }
  20% {
    -o-transform: skewX(7deg);
  }
  30% {
    -o-transform: skewX(-6deg);
  }
  40% {
    -o-transform: skewX(5deg);
  }
  50% {
    -o-transform: skewX(-4deg);
  }
  60% {
    -o-transform: skewX(3deg);
  }
  70% {
    -o-transform: skewX(-2deg);
  }
  80% {
    -o-transform: skewX(1deg);
  }
  90% {
    -o-transform: skewX(0deg);
  }
  100% {
    -o-transform: skewX(0deg);
  }
}
@keyframes wiggle {
  0% {
    transform: skewX(9deg);
  }
  10% {
    transform: skewX(-8deg);
  }
  20% {
    transform: skewX(7deg);
  }
  30% {
    transform: skewX(-6deg);
  }
  40% {
    transform: skewX(5deg);
  }
  50% {
    transform: skewX(-4deg);
  }
  60% {
    transform: skewX(3deg);
  }
  70% {
    transform: skewX(-2deg);
  }
  80% {
    transform: skewX(1deg);
  }
  90% {
    transform: skewX(0deg);
  }
  100% {
    transform: skewX(0deg);
  }
}
.wiggle {
  -webkit-animation-name: wiggle;
  -moz-animation-name: wiggle;
  -o-animation-name: wiggle;
  animation-name: wiggle;
  -webkit-animation-timing-function: ease-in;
  -moz-animation-timing-function: ease-in;
  -o-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
.animated.wiggle {
  -webkit-animation-duration: 0.75s;
  -moz-animation-duration: 0.75s;
  -o-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
/*---------------------------------------------------
    LESS Elements 0.7
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
.no-shadow {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.scrollbar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.scrollbar::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.07);
}
.scrollbar::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}
.scrollbar::-webkit-scrollbar-corner {
  background-color: transparent;
}
.showScrollbarOnHover,
.scrollOnHover {
  overflow-y: auto;
}
.showScrollbarOnHover::-webkit-scrollbar,
.scrollOnHover::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.showScrollbarOnHover::-webkit-scrollbar-corner,
.scrollOnHover::-webkit-scrollbar-corner {
  background-color: transparent;
}
.showScrollbarOnHover::-webkit-scrollbar-button,
.scrollOnHover::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}
.showScrollbarOnHover::-webkit-scrollbar-thumb,
.scrollOnHover::-webkit-scrollbar-thumb {
  background: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.showScrollbarOnHover:hover,
.scrollOnHover:hover {
  overflow-y: auto;
}
.showScrollbarOnHover:hover::-webkit-scrollbar-thumb,
.scrollOnHover:hover::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.05), inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}
.socialIcon {
  background: url(/common/assets/common/images/social_icons_variations.png) no-repeat;
  display: block;
}
.socialIcon.inline {
  display: inline-block;
}
.socialIcon.facebook {
  width: 30px;
  height: 30px;
  background-position: 0px 0px;
}
.socialIcon.facebook.white,
.white > .socialIcon.facebook,
.socialIcon.facebook.whiteOnHover:hover,
.whiteOnHover:hover > .socialIcon.facebook {
  width: 30px;
  height: 30px;
  background-position: 0px -30px;
}
.socialIcon.facebook.grey,
.socialIcon.facebook.greyOnHover:hover,
.greyOnHover:hover > .socialIcon.facebook {
  width: 30px;
  height: 30px;
  background-position: 0px -60px;
}
.socialIcon.facebook.colored,
.colored > .socialIcon.facebook,
.socialIcon.facebook.coloredOnHover:hover,
.coloredOnHover:hover > .socialIcon.facebook {
  width: 30px;
  height: 30px;
  background-position: 0px -90px;
}
.socialIcon.facebook.small {
  display: inline-block;
  vertical-align: middle;
  background-size: 529.33333333px 20px;
  width: 20px;
  height: 20px;
  background-position: 0px 0px;
}
.socialIcon.twitter {
  width: 30px;
  height: 30px;
  background-position: -45px 0px;
}
.socialIcon.twitter.white,
.white > .socialIcon.twitter,
.socialIcon.twitter.whiteOnHover:hover,
.whiteOnHover:hover > .socialIcon.twitter {
  width: 30px;
  height: 30px;
  background-position: -45px -30px;
}
.socialIcon.twitter.grey,
.socialIcon.twitter.greyOnHover:hover,
.greyOnHover:hover > .socialIcon.twitter {
  width: 30px;
  height: 30px;
  background-position: -45px -60px;
}
.socialIcon.twitter.colored,
.colored > .socialIcon.twitter,
.socialIcon.twitter.coloredOnHover:hover,
.coloredOnHover:hover > .socialIcon.twitter {
  width: 30px;
  height: 30px;
  background-position: -45px -90px;
}
.socialIcon.twitter.small {
  display: inline-block;
  vertical-align: middle;
  background-size: 529.33333333px 20px;
  width: 20px;
  height: 20px;
  background-position: -30px 0px;
}
.socialIcon.linkedin {
  width: 30px;
  height: 30px;
  background-position: -90px 0px;
}
.socialIcon.linkedin.white,
.white > .socialIcon.linkedin,
.socialIcon.linkedin.whiteOnHover:hover,
.whiteOnHover:hover > .socialIcon.linkedin {
  width: 30px;
  height: 30px;
  background-position: -90px -30px;
}
.socialIcon.linkedin.grey,
.socialIcon.linkedin.greyOnHover:hover,
.greyOnHover:hover > .socialIcon.linkedin {
  width: 30px;
  height: 30px;
  background-position: -90px -60px;
}
.socialIcon.linkedin.colored,
.colored > .socialIcon.linkedin,
.socialIcon.linkedin.coloredOnHover:hover,
.coloredOnHover:hover > .socialIcon.linkedin {
  width: 30px;
  height: 30px;
  background-position: -90px -90px;
}
.socialIcon.linkedin.small {
  display: inline-block;
  vertical-align: middle;
  background-size: 529.33333333px 20px;
  width: 20px;
  height: 20px;
  background-position: -60px 0px;
}
.socialIcon.rss {
  width: 30px;
  height: 30px;
  background-position: -135px 0px;
}
.socialIcon.rss.white,
.white > .socialIcon.rss,
.socialIcon.rss.whiteOnHover:hover,
.whiteOnHover:hover > .socialIcon.rss {
  width: 30px;
  height: 30px;
  background-position: -135px -30px;
}
.socialIcon.rss.grey,
.socialIcon.rss.greyOnHover:hover,
.greyOnHover:hover > .socialIcon.rss {
  width: 30px;
  height: 30px;
  background-position: -135px -60px;
}
.socialIcon.rss.colored,
.colored > .socialIcon.rss,
.socialIcon.rss.coloredOnHover:hover,
.coloredOnHover:hover > .socialIcon.rss {
  width: 30px;
  height: 30px;
  background-position: -135px -90px;
}
.socialIcon.rss.small {
  display: inline-block;
  vertical-align: middle;
  background-size: 529.33333333px 20px;
  width: 20px;
  height: 20px;
  background-position: -90px 0px;
}
.socialIcon.google-plus {
  width: 30px;
  height: 30px;
  background-position: -180px 0px;
}
.socialIcon.google-plus.white,
.white > .socialIcon.google-plus,
.socialIcon.google-plus.whiteOnHover:hover,
.whiteOnHover:hover > .socialIcon.google-plus {
  width: 30px;
  height: 30px;
  background-position: -180px -30px;
}
.socialIcon.google-plus.grey,
.socialIcon.google-plus.greyOnHover:hover,
.greyOnHover:hover > .socialIcon.google-plus {
  width: 30px;
  height: 30px;
  background-position: -180px -60px;
}
.socialIcon.google-plus.colored,
.colored > .socialIcon.google-plus,
.socialIcon.google-plus.coloredOnHover:hover,
.coloredOnHover:hover > .socialIcon.google-plus {
  width: 30px;
  height: 30px;
  background-position: -180px -90px;
}
.socialIcon.google-plus.small {
  display: inline-block;
  vertical-align: middle;
  background-size: 529.33333333px 20px;
  width: 20px;
  height: 20px;
  background-position: -120px 0px;
}
.socialIcon.pinterest {
  width: 30px;
  height: 30px;
  background-position: -225px 0px;
}
.socialIcon.pinterest.white,
.white > .socialIcon.pinterest,
.socialIcon.pinterest.whiteOnHover:hover,
.whiteOnHover:hover > .socialIcon.pinterest {
  width: 30px;
  height: 30px;
  background-position: -225px -30px;
}
.socialIcon.pinterest.grey,
.socialIcon.pinterest.greyOnHover:hover,
.greyOnHover:hover > .socialIcon.pinterest {
  width: 30px;
  height: 30px;
  background-position: -225px -60px;
}
.socialIcon.pinterest.colored,
.colored > .socialIcon.pinterest,
.socialIcon.pinterest.coloredOnHover:hover,
.coloredOnHover:hover > .socialIcon.pinterest {
  width: 30px;
  height: 30px;
  background-position: -225px -90px;
}
.socialIcon.pinterest.small {
  display: inline-block;
  vertical-align: middle;
  background-size: 529.33333333px 20px;
  width: 20px;
  height: 20px;
  background-position: -150px 0px;
}
.socialIcon.dribbble {
  width: 30px;
  height: 30px;
  background-position: -270px 0px;
}
.socialIcon.dribbble.white,
.white > .socialIcon.dribbble,
.socialIcon.dribbble.whiteOnHover:hover,
.whiteOnHover:hover > .socialIcon.dribbble {
  width: 30px;
  height: 30px;
  background-position: -270px -30px;
}
.socialIcon.dribbble.grey,
.socialIcon.dribbble.greyOnHover:hover,
.greyOnHover:hover > .socialIcon.dribbble {
  width: 30px;
  height: 30px;
  background-position: -270px -60px;
}
.socialIcon.dribbble.colored,
.colored > .socialIcon.dribbble,
.socialIcon.dribbble.coloredOnHover:hover,
.coloredOnHover:hover > .socialIcon.dribbble {
  width: 30px;
  height: 30px;
  background-position: -270px -90px;
}
.socialIcon.dribbble.small {
  display: inline-block;
  vertical-align: middle;
  background-size: 529.33333333px 20px;
  width: 20px;
  height: 20px;
  background-position: -180px 0px;
}
.socialIcon.youtube {
  width: 30px;
  height: 30px;
  background-position: -315px 0px;
}
.socialIcon.youtube.white,
.white > .socialIcon.youtube,
.socialIcon.youtube.whiteOnHover:hover,
.whiteOnHover:hover > .socialIcon.youtube {
  width: 30px;
  height: 30px;
  background-position: -315px -30px;
}
.socialIcon.youtube.grey,
.socialIcon.youtube.greyOnHover:hover,
.greyOnHover:hover > .socialIcon.youtube {
  width: 30px;
  height: 30px;
  background-position: -315px -60px;
}
.socialIcon.youtube.colored,
.colored > .socialIcon.youtube,
.socialIcon.youtube.coloredOnHover:hover,
.coloredOnHover:hover > .socialIcon.youtube {
  width: 30px;
  height: 30px;
  background-position: -315px -90px;
}
.socialIcon.youtube.small {
  display: inline-block;
  vertical-align: middle;
  background-size: 529.33333333px 20px;
  width: 20px;
  height: 20px;
  background-position: -210px 0px;
}
.socialIcon.vimeo {
  width: 30px;
  height: 30px;
  background-position: -360px 0px;
}
.socialIcon.vimeo.white,
.white > .socialIcon.vimeo,
.socialIcon.vimeo.whiteOnHover:hover,
.whiteOnHover:hover > .socialIcon.vimeo {
  width: 30px;
  height: 30px;
  background-position: -360px -30px;
}
.socialIcon.vimeo.grey,
.socialIcon.vimeo.greyOnHover:hover,
.greyOnHover:hover > .socialIcon.vimeo {
  width: 30px;
  height: 30px;
  background-position: -360px -60px;
}
.socialIcon.vimeo.colored,
.colored > .socialIcon.vimeo,
.socialIcon.vimeo.coloredOnHover:hover,
.coloredOnHover:hover > .socialIcon.vimeo {
  width: 30px;
  height: 30px;
  background-position: -360px -90px;
}
.socialIcon.vimeo.small {
  display: inline-block;
  vertical-align: middle;
  background-size: 529.33333333px 20px;
  width: 20px;
  height: 20px;
  background-position: -240px 0px;
}
.socialIcon.flickr {
  width: 30px;
  height: 30px;
  background-position: -405px 0px;
}
.socialIcon.flickr.white,
.white > .socialIcon.flickr,
.socialIcon.flickr.whiteOnHover:hover,
.whiteOnHover:hover > .socialIcon.flickr {
  width: 30px;
  height: 30px;
  background-position: -405px -30px;
}
.socialIcon.flickr.grey,
.socialIcon.flickr.greyOnHover:hover,
.greyOnHover:hover > .socialIcon.flickr {
  width: 30px;
  height: 30px;
  background-position: -405px -60px;
}
.socialIcon.flickr.colored,
.colored > .socialIcon.flickr,
.socialIcon.flickr.coloredOnHover:hover,
.coloredOnHover:hover > .socialIcon.flickr {
  width: 30px;
  height: 30px;
  background-position: -405px -90px;
}
.socialIcon.flickr.small {
  display: inline-block;
  vertical-align: middle;
  background-size: 529.33333333px 20px;
  width: 20px;
  height: 20px;
  background-position: -270px 0px;
}
.socialIcon.yelp {
  width: 30px;
  height: 30px;
  background-position: -450px 0px;
}
.socialIcon.yelp.white,
.white > .socialIcon.yelp,
.socialIcon.yelp.whiteOnHover:hover,
.whiteOnHover:hover > .socialIcon.yelp {
  width: 30px;
  height: 30px;
  background-position: -450px -30px;
}
.socialIcon.yelp.grey,
.socialIcon.yelp.greyOnHover:hover,
.greyOnHover:hover > .socialIcon.yelp {
  width: 30px;
  height: 30px;
  background-position: -450px -60px;
}
.socialIcon.yelp.colored,
.colored > .socialIcon.yelp,
.socialIcon.yelp.coloredOnHover:hover,
.coloredOnHover:hover > .socialIcon.yelp {
  width: 30px;
  height: 30px;
  background-position: -450px -90px;
}
.socialIcon.yelp.small {
  display: inline-block;
  vertical-align: middle;
  background-size: 529.33333333px 20px;
  width: 20px;
  height: 20px;
  background-position: -300px 0px;
}
.socialIcon.stumbleupon {
  width: 30px;
  height: 30px;
  background-position: -495px 0px;
}
.socialIcon.stumbleupon.white,
.white > .socialIcon.stumbleupon,
.socialIcon.stumbleupon.whiteOnHover:hover,
.whiteOnHover:hover > .socialIcon.stumbleupon {
  width: 30px;
  height: 30px;
  background-position: -495px -30px;
}
.socialIcon.stumbleupon.grey,
.socialIcon.stumbleupon.greyOnHover:hover,
.greyOnHover:hover > .socialIcon.stumbleupon {
  width: 30px;
  height: 30px;
  background-position: -495px -60px;
}
.socialIcon.stumbleupon.colored,
.colored > .socialIcon.stumbleupon,
.socialIcon.stumbleupon.coloredOnHover:hover,
.coloredOnHover:hover > .socialIcon.stumbleupon {
  width: 30px;
  height: 30px;
  background-position: -495px -90px;
}
.socialIcon.stumbleupon.small {
  display: inline-block;
  vertical-align: middle;
  background-size: 529.33333333px 20px;
  width: 20px;
  height: 20px;
  background-position: -330px 0px;
}
.socialIcon.stackoverflow {
  width: 30px;
  height: 30px;
  background-position: -540px 0px;
}
.socialIcon.stackoverflow.white,
.white > .socialIcon.stackoverflow,
.socialIcon.stackoverflow.whiteOnHover:hover,
.whiteOnHover:hover > .socialIcon.stackoverflow {
  width: 30px;
  height: 30px;
  background-position: -540px -30px;
}
.socialIcon.stackoverflow.grey,
.socialIcon.stackoverflow.greyOnHover:hover,
.greyOnHover:hover > .socialIcon.stackoverflow {
  width: 30px;
  height: 30px;
  background-position: -540px -60px;
}
.socialIcon.stackoverflow.colored,
.colored > .socialIcon.stackoverflow,
.socialIcon.stackoverflow.coloredOnHover:hover,
.coloredOnHover:hover > .socialIcon.stackoverflow {
  width: 30px;
  height: 30px;
  background-position: -540px -90px;
}
.socialIcon.stackoverflow.small {
  display: inline-block;
  vertical-align: middle;
  background-size: 529.33333333px 20px;
  width: 20px;
  height: 20px;
  background-position: -360px 0px;
}
.socialIcon.github {
  width: 30px;
  height: 30px;
  background-position: -585px 0px;
}
.socialIcon.github.white,
.white > .socialIcon.github,
.socialIcon.github.whiteOnHover:hover,
.whiteOnHover:hover > .socialIcon.github {
  width: 30px;
  height: 30px;
  background-position: -585px -30px;
}
.socialIcon.github.grey,
.socialIcon.github.greyOnHover:hover,
.greyOnHover:hover > .socialIcon.github {
  width: 30px;
  height: 30px;
  background-position: -585px -60px;
}
.socialIcon.github.colored,
.colored > .socialIcon.github,
.socialIcon.github.coloredOnHover:hover,
.coloredOnHover:hover > .socialIcon.github {
  width: 30px;
  height: 30px;
  background-position: -585px -90px;
}
.socialIcon.github.small {
  display: inline-block;
  vertical-align: middle;
  background-size: 529.33333333px 20px;
  width: 20px;
  height: 20px;
  background-position: -390px 0px;
}
.socialIcon.behance {
  width: 30px;
  height: 30px;
  background-position: -630px 0px;
}
.socialIcon.behance.white,
.white > .socialIcon.behance,
.socialIcon.behance.whiteOnHover:hover,
.whiteOnHover:hover > .socialIcon.behance {
  width: 30px;
  height: 30px;
  background-position: -630px -30px;
}
.socialIcon.behance.grey,
.socialIcon.behance.greyOnHover:hover,
.greyOnHover:hover > .socialIcon.behance {
  width: 30px;
  height: 30px;
  background-position: -630px -60px;
}
.socialIcon.behance.colored,
.colored > .socialIcon.behance,
.socialIcon.behance.coloredOnHover:hover,
.coloredOnHover:hover > .socialIcon.behance {
  width: 30px;
  height: 30px;
  background-position: -630px -90px;
}
.socialIcon.behance.small {
  display: inline-block;
  vertical-align: middle;
  background-size: 529.33333333px 20px;
  width: 20px;
  height: 20px;
  background-position: -420px 0px;
}
.socialIcon.blogger {
  width: 30px;
  height: 30px;
  background-position: -675px 0px;
}
.socialIcon.blogger.white,
.white > .socialIcon.blogger,
.socialIcon.blogger.whiteOnHover:hover,
.whiteOnHover:hover > .socialIcon.blogger {
  width: 30px;
  height: 30px;
  background-position: -675px -30px;
}
.socialIcon.blogger.grey,
.socialIcon.blogger.greyOnHover:hover,
.greyOnHover:hover > .socialIcon.blogger {
  width: 30px;
  height: 30px;
  background-position: -675px -60px;
}
.socialIcon.blogger.colored,
.colored > .socialIcon.blogger,
.socialIcon.blogger.coloredOnHover:hover,
.coloredOnHover:hover > .socialIcon.blogger {
  width: 30px;
  height: 30px;
  background-position: -675px -90px;
}
.socialIcon.blogger.small {
  display: inline-block;
  vertical-align: middle;
  background-size: 529.33333333px 20px;
  width: 20px;
  height: 20px;
  background-position: -450px 0px;
}
.socialIcon.page {
  background-color: #e6e9ea;
  width: 30px;
  height: 30px;
  background-position: -720px 0px;
}
.socialIcon.page.white,
.white > .socialIcon.page,
.socialIcon.page.whiteOnHover:hover,
.whiteOnHover:hover > .socialIcon.page {
  width: 30px;
  height: 30px;
  background-position: -720px -30px;
}
.socialIcon.page.grey,
.socialIcon.page.greyOnHover:hover,
.greyOnHover:hover > .socialIcon.page {
  width: 30px;
  height: 30px;
  background-position: -720px -60px;
}
.socialIcon.page.colored,
.colored > .socialIcon.page,
.socialIcon.page.coloredOnHover:hover,
.coloredOnHover:hover > .socialIcon.page {
  width: 30px;
  height: 30px;
  background-position: -720px -90px;
}
.socialIcon.page.small {
  display: inline-block;
  vertical-align: middle;
  background-size: 529.33333333px 20px;
  width: 20px;
  height: 20px;
  background-position: -480px 0px;
}
.socialIcon.email {
  width: 30px;
  height: 30px;
  background-position: -765px 0px;
}
.socialIcon.email.white,
.white > .socialIcon.email,
.socialIcon.email.whiteOnHover:hover,
.whiteOnHover:hover > .socialIcon.email {
  width: 30px;
  height: 30px;
  background-position: -765px -30px;
}
.socialIcon.email.grey,
.socialIcon.email.greyOnHover:hover,
.greyOnHover:hover > .socialIcon.email {
  width: 30px;
  height: 30px;
  background-position: -765px -60px;
}
.socialIcon.email.colored,
.colored > .socialIcon.email,
.socialIcon.email.coloredOnHover:hover,
.coloredOnHover:hover > .socialIcon.email {
  width: 30px;
  height: 30px;
  background-position: -765px -90px;
}
.socialIcon.email.small {
  display: inline-block;
  vertical-align: middle;
  background-size: 529.33333333px 20px;
  width: 20px;
  height: 20px;
  background-position: -510px 0px;
}
.socialIcon.whatsApp {
  width: 30px;
  height: 30px;
  background-position: -810px 0px;
}
.socialIcon.whatsApp.white,
.white > .socialIcon.whatsApp,
.socialIcon.whatsApp.whiteOnHover:hover,
.whiteOnHover:hover > .socialIcon.whatsApp {
  width: 30px;
  height: 30px;
  background-position: -810px -30px;
}
.socialIcon.whatsApp.grey,
.socialIcon.whatsApp.greyOnHover:hover,
.greyOnHover:hover > .socialIcon.whatsApp {
  width: 30px;
  height: 30px;
  background-position: -810px -60px;
}
.socialIcon.whatsApp.colored,
.colored > .socialIcon.whatsApp,
.socialIcon.whatsApp.coloredOnHover:hover,
.coloredOnHover:hover > .socialIcon.whatsApp {
  width: 30px;
  height: 30px;
  background-position: -810px -90px;
}
.socialIcon.whatsApp.small {
  display: inline-block;
  vertical-align: middle;
  background-size: 529.33333333px 20px;
  width: 20px;
  height: 20px;
  background-position: -540px 0px;
}
.twitterBackOnHover:hover,
.twitterBack {
  background-color: #2daae1 !important;
}
.facebookBackOnHover:hover,
.facebookBack {
  background-color: #3560a0 !important;
}
.linkedinBackOnHover:hover,
.linkedinBack {
  background-color: #096c9b !important;
}
.googlePlusBackOnHover:hover,
.googlePlusBack {
  background-color: #dc5442 !important;
}
.pinterestBackOnHover:hover,
.pinterestBack {
  background-color: #cb2027 !important;
}
.whatsAppBackOnHover:hover,
.whatsAppBack {
  background-color: #25d366 !important;
}
.emailBackOnHover:hover,
.emailBack {
  background-color: #656565 !important;
}
.modal-backdrop {
  background: #d5dbdd;
}
.modal-backdrop.in {
  -moz-opacity: 0.9;
  -khtml-opacity: 0.9;
  -webkit-opacity: 0.9;
  opacity: 0.9;
}
.closeButton {
  position: absolute;
  top: 5px;
  right: 10px;
  color: #d5dbdd;
  font-size: 18px;
  cursor: pointer;
}
.closeButton:hover {
  color: #555555;
}
.okButton {
  width: 100%;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -moz-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  background: #278fe6;
  color: white;
  border: none;
  height: 34px;
  font-size: 15px;
  font-weight: 300;
}
.okButton:hover {
  background: #55a7eb;
}
.okButton:active {
  background: #1775c3;
}
.modal {
  border-radius: 2px;
}
.modal-header {
  padding: 20px 50px 10px;
  height: auto;
  min-height: 65px;
  border: none;
}
.modal-header h2 {
  line-height: 125%;
  font-size: 20px;
  color: #555555;
}
.modal-body {
  padding: 0 50px;
  margin: -20px 0 10px;
}
.modal-body p {
  font-size: 13px;
  color: #555555;
}
.modal-body .form-group {
  line-height: 34px;
  font-size: 15px;
  font-weight: normal;
}
.modal-body .form-control,
.modal-body .secondary {
  font-size: 15px;
  font-weight: 500;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.modal-body .error {
  color: #c80202;
  font-weight: normal;
}
.modal-body .control-tip {
  margin-top: 5px;
}
.modal-footer {
  background: white;
  height: 50px;
  padding: 10px 25px;
}
.modal-footer button {
  min-width: 80px;
  height: 30px;
  line-height: 25px;
  margin-left: 10px;
}
.modal-footer button.spaceAfter {
  margin-right: 20px;
}
.modal-footer .sideNote {
  float: left;
  font-size: 13px;
  line-height: 30px;
}
.modal-content {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.socialWidget {
  margin-right: -10px;
  /* Styles for old devices that does not support flex */
  /*
    #trackableLink {    	
        font-size: @txt-m;

    	.inputLabel {line-height: 200%;}
    	input, button {
    		background-color: white;// @light-back;
        	font-size: @txt-s;            
        	height: 30px;
        	line-height: 30px;
        	padding: 0 10px; 
        	border: 1px solid @light-line-color;   		
        	.rounded(0);
    	}    	

    	input {border-right: 2px solid white;}

    	.buttonWrap {
    		padding-right: 10px;
    	}

    	button {
    		width: 100%;
    		font-weight: bold;
        	color: @gray-medium;        	
    	}
    }*/
}
.socialWidget > ul.row {
  padding: 10px 0;
}
.socialWidget .shareButton {
  padding-left: 0;
  padding-right: 0;
}
.socialWidget .shareButton a {
  display: block;
  border: 1px solid #e3e6e8;
  height: 50px;
  line-height: 30px;
  padding-top: 10px;
  position: relative;
  white-space: nowrap;
  margin: 0 10px 10px 0;
  font-size: 13px;
  cursor: pointer;
  font-weight: bold;
  color: #656565 !important;
  text-align: center;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
  background: white;
}
.socialWidget .shareButton a i {
  width: 30px;
  height: 30px;
}
.socialWidget .shareButton a:hover,
.socialWidget .shareButton a.white {
  color: white !important;
  text-decoration: none !important;
}
.socialWidget .shareButton a.noBorder {
  border: none;
}
.socialWidget .grid-4 > li {
  width: 25% !important;
}
.socialWidget .grid-5 > li {
  width: 20% !important;
}
.socialWidget .grid-7 > li {
  width: 14.285714286% !important;
}
.socialWidget .buttonsGroup {
  display: block;
  background: #f4f5f6;
  height: 30px;
  line-height: 30px;
  padding: 0;
  position: relative;
  white-space: nowrap;
  margin: 0 20px 20px 0;
  font-size: 13px;
  cursor: pointer;
  font-weight: bold;
  color: #656565;
}
.socialWidget .buttonsGroup input {
  height: 30px;
}
.questionnairesWidget .questionnaires > li:first-of-type {
  border-top: 1px solid #d2d8da;
  padding-top: 30px;
  margin-top: 30px;
}
.questionnairesWidget .questionnaires > li {
  border-bottom: 1px solid #d2d8da;
  padding-bottom: 30px;
}
.questionnairesWidget .questionnaires > li:not(:last-of-type) {
  margin-bottom: 30px;
}
.questionnairesWidget .questionnairesLinks li {
  margin: 0;
}
.questionnaire {
  line-height: 150%;
}
.questionnaire .questionnaire-name {
  font-weight: bold;
  margin: 0;
}
.questionnaire .questionnaire-header {
  margin: 0 0 30px;
}
.questionnaire .questionnaire-description {
  margin-top: 15px;
}
.questionnaire .indent {
  padding-left: 40px;
}
.questionnaire .lightText {
  color: #9da6af;
}
.questionnaire .mediumText {
  color: #656565;
}
.questionnaire .mediumText b,
.questionnaire .mediumText strong {
  color: #222222;
}
.questionnaire .question {
  margin-top: 30px;
}
.questionnaire .question .question-header .question-title {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 5px;
}
.questionnaire .question .question-header .question-fineprint {
  margin-bottom: 20px;
  font-size: 11px;
}
.questionnaire .question .question-description,
.questionnaire .question .option-description {
  font-size: 11px;
}
.questionnaire .question ul.options {
  margin-top: 10px;
}
.questionnaire .question .error {
  color: #c80202;
}
.questionnaire .question a.dropdown-toggle:hover,
.questionnaire .question a.dropdown-toggle:active,
.questionnaire .question a.dropdown-toggle:focus {
  text-decoration: none;
}
.questionnaire .question .dropdown-menu {
  max-width: 100%;
  margin: 0 0 0 -1px;
}
.questionnaire .question .dropdown-menu .option-description,
.questionnaire .question .dropdown-menu .option-title {
  white-space: initial;
}
.questionnaire .question .dropdown-menu a {
  padding: 5px 20px !important;
}
.questionnaire .question .dropdown-menu > .active > a .option-description,
.questionnaire .question .dropdown-menu > .active > a:focus .option-description,
.questionnaire .question .dropdown-menu > .active > a:hover .option-description {
  color: rgba(255, 255, 255, 0.8);
}
.questionnaire .question .userDesignedContent * {
  font-size: inherit !important;
}
.questionnaire .question input.form-control,
.questionnaire .question textarea.form-control {
  margin: 10px 0;
}
.questionnaire .applyButton {
  width: 100px;
}
.questionnaire .checkboxList {
  margin-top: 5px;
}
.questionnaire .checkboxList > li {
  margin-bottom: 2px;
}
.questionnaire .title {
  font-weight: bold;
}
.questionnaire input[type=checkbox] {
  display: none;
}
.questionnaire input[type=radio] {
  display: none;
}
.questionnaire .checkboxLabel {
  padding-left: 40px;
  position: relative;
  font-size: 13px;
  line-height: 20px;
  cursor: pointer;
  vertical-align: middle;
  display: block;
}
.questionnaire .checkboxLabel:hover .fa-square,
.questionnaire .checkboxLabel:hover .fa-circle {
  text-shadow: 1px 1px 0px #656565, -1px 1px 0px #656565, -1px -1px 0px #656565, 1px -1px 0px #656565;
}
.questionnaire .checkboxLabel:active .fa-square,
.questionnaire .checkboxLabel:active .fa-circle {
  color: rgba(255, 255, 255, 0.8);
}
.questionnaire .checkboxLabel i.optionIcon {
  width: 15px;
  font-size: 12px;
  margin: 0 5px 0 0;
  text-align: center;
  color: #656565;
}
.questionnaire .checkboxLabel:hover i.optionIcon {
  color: #19334d;
}
.questionnaire .checkboxLabel .optionColor {
  width: 15px;
  font-size: 12px;
  margin: 0 7px 0 7px;
  text-align: center;
}
.questionnaire .fa-stack {
  position: absolute;
  left: 0;
  width: 15px;
  height: 15px;
  line-height: initial;
  margin: 0 10px;
  padding-top: 2px;
}
.questionnaire .fa-stack .fa-square,
.questionnaire .fa-stack .fa-circle {
  color: white;
  font-size: 15px;
  text-shadow: 1px 1px 0px rgba(111, 133, 144, 0.5), -1px 1px 0px rgba(111, 133, 144, 0.5), -1px -1px 0px rgba(111, 133, 144, 0.5), 1px -1px 0px rgba(111, 133, 144, 0.5);
  -moz-transition-duration: 0.1s;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
}
.questionnaire .fa-stack .fa-check {
  -moz-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  position: relative;
  font-size: 16px;
  bottom: 0.2em;
  left: 0.2em;
  color: #19334d;
}
.questionnaire .fa-stack .fa-check.ng-hide {
  display: inline-block !important;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  transform: scale(0.5);
}
.questionnaireWrapper {
  min-height: 100%;
  height: auto !important;
  height: 100%;
  margin: 0 auto -70px;
  padding-bottom: 30px;
}
.questionnaireWrapper .marginTop {
  margin-top: 40px;
}
.questionnaireFooter,
.push {
  height: 100px;
  clear: both;
}
.clearAfter:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
}
a {
  cursor: pointer;
}
.hugeIcon {
  color: #9da6af;
  font-size: 60px;
}
.inline-block {
  display: inline-block;
}
.buttonsGroup button,
.buttonsGroup input,
.buttonsGroup label {
  float: left;
  margin: 0;
  height: 30px;
  padding: 0 5px;
  font-size: 13px;
  min-width: 80px;
  line-height: 28px;
  text-align: center;
  border: 1px solid #e3e6e8;
  font-weight: normal;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.buttonsGroup button.small,
.buttonsGroup input.small,
.buttonsGroup label.small {
  min-width: initial;
  width: 30px;
}
.buttonsGroup button.medium,
.buttonsGroup input.medium,
.buttonsGroup label.medium {
  font-size: 15px;
  padding: 0 10px;
}
.buttonsGroup button i,
.buttonsGroup input i,
.buttonsGroup label i {
  font-size: 14px !important;
}
.buttonsGroup button:first-child,
.buttonsGroup input:first-child,
.buttonsGroup label:first-child {
  -webkit-border-top-left-radius: 2px;
  -webkit-border-bottom-left-radius: 2px;
  -moz-border-radius-topleft: 2px;
  -moz-border-radius-bottomleft: 2px;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.buttonsGroup button:last-child,
.buttonsGroup input:last-child,
.buttonsGroup label:last-child {
  -webkit-border-top-right-radius: 2px;
  -webkit-border-bottom-right-radius: 2px;
  -moz-border-radius-topright: 2px;
  -moz-border-radius-bottomright: 2px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
.buttonsGroup button:not(:last-child),
.buttonsGroup input:not(:last-child),
.buttonsGroup label:not(:last-child) {
  border-right: none;
}
.buttonsGroup button:hover:not(.selected):not(.disabled),
.buttonsGroup input:hover:not(.selected):not(.disabled),
.buttonsGroup label:hover:not(.selected):not(.disabled) {
  background: rgba(111, 133, 144, 0.1);
}
.buttonsGroup button.disabled,
.buttonsGroup input.disabled,
.buttonsGroup label.disabled {
  color: #9da6af;
}
.buttonsGroup button.selected,
.buttonsGroup input.selected,
.buttonsGroup label.selected {
  background: #c8eaf9;
  color: #555555;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}
.buttonsGroup button {
  color: #05202c;
}
.buttonsGroup > .smallButton:hover,
.buttonsGroup > .smallButton:active,
.buttonsGroup > .smallButton:focus,
.buttonsGroup > .smallButton.active {
  border-color: #e3e6e8;
}
.buttonsGroup.light button {
  background: none;
  border-color: #d2d8da;
}
.buttonsGroup.light button:not(:disabled):not(.selected):not(.active):hover {
  background: #f4f5f6;
}
.buttonsGroup.light button:disabled {
  opacity: 1;
  color: #9da6af;
}
.buttonsGroup.light button:disabled:hover {
  background: none;
}
.buttonsGroup.light button.selected {
  background: #e6e9ea;
}
.buttonsGroup.light button:not(.small) {
  min-width: 80px;
}
.buttonsGroup > .smallButton:hover,
.buttonsGroup > .smallButton:active,
.buttonsGroup > .smallButton:focus,
.buttonsGroup > .smallButton.active {
  border-color: #d2d8da;
}
.userDesignedContentWrap .ta-bind,
.userDesignedContent {
  font-size: 15px;
  line-height: 150%;
  font-weight: normal;
}
.userDesignedContentWrap .ta-bind:not(.lightText):not(.mediumText),
.userDesignedContent:not(.lightText):not(.mediumText) {
  color: #222222;
}
.userDesignedContentWrap .ta-bind.addPadding,
.userDesignedContent.addPadding {
  padding: 10px;
}
.userDesignedContentWrap .ta-bind h1,
.userDesignedContent h1,
.userDesignedContentWrap .ta-bind h2,
.userDesignedContent h2,
.userDesignedContentWrap .ta-bind h3,
.userDesignedContent h3,
.userDesignedContentWrap .ta-bind h4,
.userDesignedContent h4,
.userDesignedContentWrap .ta-bind h5,
.userDesignedContent h5,
.userDesignedContentWrap .ta-bind h6,
.userDesignedContent h6,
.userDesignedContentWrap .ta-bind p,
.userDesignedContent p,
.userDesignedContentWrap .ta-bind ul,
.userDesignedContent ul,
.userDesignedContentWrap .ta-bind ol,
.userDesignedContent ol,
.userDesignedContentWrap .ta-bind *,
.userDesignedContent * {
  margin: 0;
  font-size: 15px;
  line-height: 150%;
}
.userDesignedContentWrap .ta-bind h1,
.userDesignedContent h1,
.userDesignedContentWrap .ta-bind h2,
.userDesignedContent h2 {
  font-size: 26px;
  font-weight: bold;
  margin: 16px 0 8px;
}
.userDesignedContentWrap .ta-bind h1:first-child,
.userDesignedContent h1:first-child,
.userDesignedContentWrap .ta-bind p:first-child,
.userDesignedContent p:first-child {
  margin-top: 0;
  padding-top: 0;
}
.userDesignedContentWrap .ta-bind ul,
.userDesignedContent ul {
  list-style-type: disc;
  margin-left: 20px;
}
.userDesignedContentWrap .ta-bind ol,
.userDesignedContent ol {
  list-style-type: decimal;
  margin-left: 20px;
}
.userDesignedContentWrap .ta-bind b,
.userDesignedContent b {
  font-weight: bold;
}
.userDesignedContentWrap .ta-bind i,
.userDesignedContent i {
  font-style: italic;
}
.userDesignedContentWrap .ta-bind a,
.userDesignedContent a {
  text-decoration: underline;
}
.userDesignedContent.ta-left li {
  margin-left: 20px;
  direction: ltr;
  text-align: left;
}
.userDesignedContent.ta-right li {
  margin-right: 20px;
  direction: rtl;
  text-align: right;
}
.userDesignedContent,
.userDesignedContent h1,
.userDesignedContent p,
.userDesignedContent ul,
.userDesignedContent ol {
  font-weight: normal;
  font-size: 15px;
  line-height: 150%;
  margin-right: 15px;
}
.userDesignedContent h2 {
  font-size: 17px;
}
.userDesignedContent h1,
.userDesignedContent h2 {
  font-size: 20px;
}
.userDesignedContent ul,
.userDesignedContent ol {
  padding-top: 5px;
}
.userDesignedContent li {
  padding-top: 5px;
  padding-bottom: 5px;
  margin-left: 20px;
}
.userDesignedContent li.ta-left {
  margin-left: 20px;
  direction: ltr;
  text-align: left;
}
.userDesignedContent li.ta-right {
  margin-right: 20px;
  direction: rtl;
  text-align: right;
}
.userDesignedContent a {
  color: #278fe6;
}
.userDesignedContent a:hover {
  text-decoration: underline;
  color: #278fe6;
}
.userDesignedContent .ta-left {
  text-align: left;
}
.userDesignedContent .ta-right {
  text-align: right;
}
.userDesignedContent .ta-center {
  text-align: center;
}
.richTextBlock h3 {
  margin: 0 !important;
  padding: 0 10px;
  line-height: 30px;
  border-bottom: 1px solid #e3e6e8;
}
html {
  height: 100%;
}
html[use-redesign] body.iframe #aboutCompany {
  display: none;
}
html[use-redesign] .careerHeroHeader.iframeHeader {
  background-color: transparent !important;
  color: inherit;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
body.iframe {
  height: auto;
  background: transparent !important;
}
body:not(.iframe) {
  height: 100%;
}
body:not(.iframe) .wrapper {
  min-height: 100%;
  height: auto !important;
  /* This line and the next line are not necessary unless you need IE6 support */
  height: 100%;
  margin: 0 auto -60px;
  /* the bottom margin is the negative value of the footer's height */
}
footer,
.push {
  clear: both;
  overflow: hidden;
  height: 40px;
  /* .push must be the same height as .footer */
}
.noPadding {
  padding: 0;
}
a {
  color: #278fe6;
}
a:hover {
  text-decoration: underline;
  color: #278fe6;
}
body {
  overflow-x: hidden;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.row {
  margin: 0;
  padding: 20px 0;
}
.row.mainRow {
  padding: 20px 0 20px;
}
.row.noPaddingTop {
  padding-top: 0;
}
.row.extraPaddingBottom {
  padding-bottom: 50px;
}
.row.noPaddingBottom {
  padding-bottom: 0;
}
.row > [class^="col-"] {
  padding-left: 0;
  padding-right: 0;
}
.loadingPage {
  position: absolute;
  background-color: white;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.loadingIcon {
  -webkit-animation: spin 0.8s steps(8) infinite;
  -moz-animation: spin 0.8s steps(8) infinite;
  -o-animation: spin 0.8s steps(8) infinite;
  animation: spin 0.8s steps(8) infinite;
}
.loadingIcon.centerAbsolute {
  -webkit-animation: spin 0.8s steps(8) infinite !important;
  -moz-animation: spin 0.8s steps(8) infinite !important;
  -o-animation: spin 0.8s steps(8) infinite !important;
  animation: spin 0.8s steps(8) infinite !important;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -15px;
  margin-top: -15px;
  margin: 0 auto;
  display: block;
  font-size: 26px;
  color: #222222;
}
h2 {
  font-size: 40px;
  color: #222222;
  font-weight: normal;
  margin: 0 0 20px;
}
h2.smallTitle {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: bold;
}
h3 {
  color: #222222;
  font-size: 26px;
  font-weight: normal;
  line-height: 150%;
}
h4 {
  color: #222222;
  font-size: 17px;
  font-weight: normal;
  line-height: 115%;
  padding: 8px 0;
}
h5 {
  color: #222222;
  font-size: 15px;
  font-weight: normal;
  line-height: 200%;
}
p {
  color: #222222;
  font-weight: normal;
  font-size: 15px;
  line-height: 180%;
}
.positionLink {
  color: #278fe6;
  font-size: 17px;
  font-weight: 500;
}
.brandBottomLine {
  border-bottom: 1px solid rgba(111, 133, 144, 0.7);
}
.brandLeftLine {
  border-left: 1px solid rgba(111, 133, 144, 0.7);
}
.brandTopLine {
  border-top: 1px solid rgba(111, 133, 144, 0.7);
}
.lightTopLine {
  border-top: 1px solid #e3e6e8;
}
.lightBottomLine {
  border-bottom: 1px solid #e3e6e8;
}
#companyLogo {
  max-width: 300px;
}
.company-header {
  padding: 30px 0 40px;
}
#aboutCompany {
  margin: 30px 0;
}
#aboutCompany h2 {
  margin-bottom: 40px;
}
.positionsList h2 {
  padding: 40px 0 0;
  margin: 0 0 40px;
}
.positionsList .positionsGroup {
  padding: 20px 0 15px;
}
.positionsList .positionsGroupTitle {
  color: #222222;
  font-weight: 500;
  font-size: 17px;
  margin-bottom: 10px;
}
.positionsList .positionItem {
  width: 48%;
  float: left;
  margin-bottom: 10px;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #e3e6e8;
  min-height: 65px;
  border-radius: 2px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: white;
}
.positionsList .positionItem:hover,
.positionsList .positionItem:active {
  cursor: pointer;
  border: 1px solid #9da6af;
  text-decoration: none;
}
.positionsList .positionItem:nth-child(odd) {
  margin-right: 3%;
}
.positionsList .positionItem h4 {
  margin-top: 0;
  padding-top: 0;
}
@media (max-width: 767px) {
  .positionsList .positionItem {
    width: 100%;
    margin: 0 0 10px;
  }
}
.positionsList h2 {
  padding: 40px 0 0;
  margin: 0 0 40px;
}
.positionsList .positionsGroup {
  padding: 20px 0 15px;
}
.positionsList .positionsGroupTitle {
  color: #222222;
  font-weight: 500;
  font-size: 17px;
  margin-bottom: 10px;
}
.company-links > li {
  display: inline;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 13px;
  line-height: 300%;
}
.company-links > li a:hover {
  text-decoration: none;
}
.company-links > li a:hover div {
  text-decoration: underline;
}
.company-links > li a div {
  display: inline;
}
.company-links > li:not(:last-of-type):after {
  content: " ";
  display: inline-block;
  margin: 0 10px;
  color: #9da6af;
}
.inputFiles {
  visibility: hidden;
  display: inline !important;
  height: 0px;
  width: 0px;
}
/*
.inputFileAsLink {

    &::-webkit-file-upload-button {
      visibility: hidden;
    }
    input {
        height: 0px;
        width: 0px;
    }
    label {}
}*/
.positionName {
  font-weight: normal;
}
.positionDetails {
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.positionDetails.addMarginBottom {
  margin-bottom: 15px;
}
.positionDetails > li {
  float: left;
  display: inline;
  font-size: 13px;
  color: #656565;
  font-weight: normal;
  line-height: 125%;
  margin: 0;
}
.positionDetails > li:not(:last-of-type):after {
  content: "\0000B7";
  display: inline-block;
  margin: 0 7px;
  color: #656565;
}
.body-text {
  text-transform: none;
  font-size: 18px;
  line-height: 135%;
  font-weight: normal;
  color: black;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 0 30px;
  margin: 0;
}
.form-control {
  padding: 6px;
  max-width: 100% !important;
}
.form-container .field {
  margin-bottom: 15px;
}
.clickableLink {
  cursor: pointer;
}
#jobFormDiv,
#questionnairesDiv {
  position: relative;
  width: 100%;
}
#jobFormDiv .loadingIcon,
#questionnairesDiv .loadingIcon {
  font-size: 25px;
  position: relative;
  left: 10px;
  top: 2px;
}
#jobFormDiv .form-group,
#questionnairesDiv .form-group {
  line-height: 34px;
  font-size: 15px;
  font-weight: normal;
}
#jobFormDiv .clickableLink,
#questionnairesDiv .clickableLink {
  cursor: pointer;
  color: #278fe6;
}
#jobFormDiv .clickableLink:hover,
#questionnairesDiv .clickableLink:hover {
  text-decoration: underline;
}
#jobFormDiv label,
#questionnairesDiv label,
#jobFormDiv a,
#questionnairesDiv a,
#jobFormDiv .clickableLink,
#questionnairesDiv .clickableLink {
  font-size: 15px;
  font-weight: normal;
  padding-top: 0;
}
@media (min-width: 768px) {
  #jobFormDiv label.right,
  #questionnairesDiv label.right,
  #jobFormDiv a.right,
  #questionnairesDiv a.right,
  #jobFormDiv .clickableLink.right,
  #questionnairesDiv .clickableLink.right {
    text-align: right;
  }
}
#jobFormDiv label.left,
#questionnairesDiv label.left,
#jobFormDiv a.left,
#questionnairesDiv a.left,
#jobFormDiv .clickableLink.left,
#questionnairesDiv .clickableLink.left {
  text-align: left;
}
#jobFormDiv label.center,
#questionnairesDiv label.center,
#jobFormDiv a.center,
#questionnairesDiv a.center,
#jobFormDiv .clickableLink.center,
#questionnairesDiv .clickableLink.center {
  text-align: center;
}
#jobFormDiv label.clickableLink,
#questionnairesDiv label.clickableLink {
  line-height: 25px;
  padding: 5px 0;
}
#jobFormDiv a,
#questionnairesDiv a {
  cursor: pointer;
}
#jobFormDiv label,
#questionnairesDiv label {
  line-height: 18px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 0;
}
#jobFormDiv .removeButton,
#questionnairesDiv .removeButton {
  cursor: pointer;
  color: rgba(0, 0, 0, 0.3);
}
#jobFormDiv .removeButton:hover,
#questionnairesDiv .removeButton:hover {
  color: #222222;
}
#jobFormDiv .form-control,
#questionnairesDiv .form-control,
#jobFormDiv .secondary,
#questionnairesDiv .secondary {
  font-size: 15px;
  font-weight: 500;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#jobFormDiv .error,
#questionnairesDiv .error {
  color: #c80202;
  font-weight: normal;
}
#jobFormDiv .control-tip,
#questionnairesDiv .control-tip {
  margin-top: 5px;
  margin-bottom: 5px;
  line-height: 115%;
  font-size: 13px;
}
#jobFormDiv .marginRight,
#questionnairesDiv .marginRight {
  margin-right: 20px;
}
#jobFormDiv .input-like,
#questionnairesDiv .input-like {
  width: 100%;
  line-height: 32px;
  vertical-align: middle;
  display: block;
  height: 34px;
  border: 1px solid #ccc;
  background: white;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#jobFormDiv .linkedin-thumb,
#questionnairesDiv .linkedin-thumb {
  height: 34px;
  line-height: 34px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -2px;
  margin-right: 10px;
}
#jobFormDiv .linkedin-field,
#questionnairesDiv .linkedin-field {
  position: relative;
}
#jobFormDiv .linkedin-field .linkedin-thumb,
#questionnairesDiv .linkedin-field .linkedin-thumb {
  position: absolute;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 2px;
  -webkit-border-top-left-radius: 2px;
  -moz-border-radius-topright: 0;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 2px;
  -moz-border-radius-topleft: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  top: 0;
}
#jobFormDiv .linkedin-field input,
#questionnairesDiv .linkedin-field input {
  padding-left: 40px;
}
#jobFormDiv textarea,
#questionnairesDiv textarea {
  width: 100% !important;
}
#jobFormDiv.submitting,
#questionnairesDiv.submitting {
  pointer-events: none;
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  -webkit-opacity: 0.5;
  opacity: 0.5;
}
.applyButton,
.brandColoredButton {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -moz-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  background: #278fe6;
  color: white;
  border: none;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}
.applyButton:hover,
.brandColoredButton:hover {
  background: #55a7eb;
  outline: none;
}
.applyButton:active,
.brandColoredButton:active {
  background: #1775c3;
  outline: none;
}
.applyButton:focus,
.brandColoredButton:focus {
  outline: none;
}
.applyButton {
  width: 100%;
  line-height: 50px;
}
.applyButton.fullPageApplyButton {
  max-width: 200px;
}
.privacyPolicy {
  font-size: 15px !important;
  line-height: 125%;
}
.required-asterisk {
  color: #c80202;
  font-size: 15px;
}
footer {
  padding-top: 30px;
  padding-bottom: 20px;
}
footer .conditions {
  line-height: 125%;
  font-size: 11px;
  font-weight: normal;
  color: #656565;
  padding: 10px 0 0 !important;
}
footer .conditions a {
  display: inline-block;
  color: #656565 !important;
  text-decoration: none;
}
footer .conditions a:hover {
  color: #278fe6;
}
footer #footerLogo {
  margin: 0 0 5px;
  height: 11px;
  display: inline;
  vertical-align: middle;
}
footer .row {
  padding: 0;
}
footer.formFooter {
  padding-top: 0;
  float: right;
  margin: -20px 0 0;
}
#jobFormWrapper {
  border-top: none !important;
}
#jobFormWrapper .marginBottom {
  margin-bottom: 30px;
}
#showApplyForm {
  width: 100%;
  line-height: 50px;
  padding: 0;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
  border: 1px solid transparent;
}
#showApplyForm:active,
#showApplyForm:focus {
  outline: none;
}
#showApplyForm.open {
  background: none !important;
  border: 1px solid;
}
#applyFormWrapper {
  max-height: 5000px;
}
#applyFormWrapper:not(.noBottomBorder) {
  border-bottom: 1px solid #d2d8da;
}
#applyFormWrapper.animate {
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
#applyFormWrapper.ng-hide {
  display: block !important;
  max-height: 0;
  overflow: hidden;
}
#refer-a-friend {
  margin-top: 10px;
}
.shareHeader {
  font-size: 17px;
}
.shareHeader h2 {
  float: left;
  margin: 5px 0 0 0;
}
.shareHeader a.suggestEmployee {
  float: right;
  cursor: pointer;
  font-size: 13px;
}
.shareTitle {
  margin-top: 5px;
  color: #222222;
  font-weight: 500;
  font-size: 17px;
}
#copyLink {
  float: right;
  margin-top: 20px;
}
#copyLink a,
#copyLink * {
  font-size: 13px;
  color: #9da6af !important;
}
.referSuccess .shareTitle {
  font-size: 20px;
  font-weight: normal;
  line-height: 150%;
  text-align: center;
  padding: 0 50px;
}
.referSuccess .hugeIcon {
  margin-bottom: 30px;
  margin-top: 20px;
}
#shareWrapperInCareersPage .referSuccess,
#shareWrapperInIframe .referSuccess {
  padding: 20px 50px;
  border: 1px solid #e3e6e8;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#shareWrapperInModal {
  margin: 30px 30px 0;
}
#shareWrapperInModal .shareTitle {
  min-height: 65px;
}
#shareWrapperInModal .form-container {
  margin-bottom: 30px;
}
#shareWrapperInModal .referSuccess {
  border: none !important;
}
.employeeProfileModal .modal-body,
.employeeProfileModal .modal-header {
  padding: 0 30px;
  color: #222222;
}
.employeeProfileModal h2 {
  margin-top: 20px;
  color: #222222;
  line-height: 150%;
}
.employeeProfileModal .closeButton {
  top: 5px;
  right: 5px;
}
.employeeProfileModal button {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.employeeProfileModal input {
  color: #222222;
  margin-bottom: 10px;
}
.employeeProfileModal .formComponents {
  margin-right: -10px;
}
.employeeProfileModal .innerRightPadding {
  padding-right: 10px;
}
.employeeProfileModal .redText {
  color: #c80202;
}
.employeeProfileModal .halfOpacity {
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  -webkit-opacity: 0.5;
  opacity: 0.5;
}
.employeeProfileModal .signinFooter {
  line-height: 125%;
  padding: 0;
  margin: 20px 0;
}
.modal-backdrop {
  background: white;
}
@media (min-width: 768px) {
  .sm-text-center {
    text-align: center;
  }
  .sm-text-right {
    text-align: right;
  }
  .modal-dialog {
    width: 500px;
    margin-top: 150px;
  }
}
@media (min-width: 992px) {
  .md-text-center {
    text-align: center;
  }
  .md-text-right {
    text-align: right;
  }
}
@media (min-width: 1200px) {
  .lg-text-center {
    text-align: center;
  }
  .lg-text-right {
    text-align: right;
  }
  #jobFormWrapper {
    padding-left: 50px;
  }
  .container {
    width: 90%;
    max-width: 1280px;
  }
}
@media (max-width: 1200px) {
  #jobFormWrapper {
    border-left: none !important;
    position: relative !important;
  }
}
.company-links a > * {
  line-height: 1;
}
.flex {
  display: flex;
}
.clearAfter:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
}
html[use-redesign],
html[use-redesign] body {
  font-family: Roboto, sans-serif;
  font-size: 1rem;
}
html[use-redesign] body {
  background: #fbfbfb;
}
html[use-redesign] .container {
  width: 960px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}
html[use-redesign] .positionsList[class],
html[use-redesign] .row.mainRow[class],
html[use-redesign] #aboutCompany,
html[use-redesign] .rowFix {
  width: 100%;
  margin: 0;
  padding: 0;
}
html[use-redesign] .userDesignedContent,
html[use-redesign] .userDesignedContent h1,
html[use-redesign] .userDesignedContent p,
html[use-redesign] .userDesignedContent ul,
html[use-redesign] .userDesignedContent ol {
  font: inherit;
  font-size: 1.125rem;
  line-height: 150%;
  margin-right: 0;
}
html[use-redesign] .userDesignedContentWrap .ta-bind h1,
html[use-redesign] .userDesignedContent h1,
html[use-redesign] .userDesignedContentWrap .ta-bind h2,
html[use-redesign] .userDesignedContent h2,
html[use-redesign] .userDesignedContentWrap .ta-bind h3,
html[use-redesign] .userDesignedContent h3,
html[use-redesign] .userDesignedContentWrap .ta-bind h4,
html[use-redesign] .userDesignedContent h4,
html[use-redesign] .userDesignedContentWrap .ta-bind h5,
html[use-redesign] .userDesignedContent h5,
html[use-redesign] .userDesignedContentWrap .ta-bind h6,
html[use-redesign] .userDesignedContent h6,
html[use-redesign] .userDesignedContentWrap .ta-bind p,
html[use-redesign] .userDesignedContent p,
html[use-redesign] .userDesignedContentWrap .ta-bind ul,
html[use-redesign] .userDesignedContent ul,
html[use-redesign] .userDesignedContentWrap .ta-bind ol,
html[use-redesign] .userDesignedContent ol,
html[use-redesign] .userDesignedContentWrap .ta-bind *,
html[use-redesign] .userDesignedContent * {
  font-size: inherit;
  line-height: inherit;
}
html[use-redesign] .userDesignedContent ul li,
html[use-redesign] .userDesignedContent ol li {
  margin-left: 0;
  padding: 0;
}
html[use-redesign] .noBrandBottomLine {
  border-bottom: none;
}
html[use-redesign] .careerCard,
html[use-redesign] .careerCard.row,
html[use-redesign] .row > [class^="col-"].careerCard {
  margin: 0 auto 70px;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  padding: 30px;
  width: 100% !important;
  margin-left: 0 !important;
}
html[use-redesign] .careerCard.brandTopLine,
html[use-redesign] .careerCard.row.brandTopLine,
html[use-redesign] .row > [class^="col-"].careerCard.brandTopLine {
  border-top: none;
}
html[use-redesign] .careerCardFiller {
  margin: 0 0 0 -30px;
  width: calc(100% + 60px);
}
html[use-redesign] .featureImage {
  vertical-align: bottom;
  margin-top: 30px;
  margin-bottom: -32px;
}
html[use-redesign] .careerHeroHeader {
  position: relative;
  text-align: center;
  color: #ffffff;
  margin: 0 0 70px;
  padding: 265px 15px;
  background: #656565 no-repeat center bottom / 13px auto;
}
html[use-redesign] .careerHeroHeader.careerHeroHeaderPosition {
  margin-bottom: 25px;
}
@media screen and (max-width: 960px) {
  html[use-redesign] .careerHeroHeader {
    margin-bottom: 0;
    padding: 150px 15px 130px;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0.3 0 1.4 7' fill='none' stroke='rgba(255,255,255,0.5)'><path d='M0 0l1 1 1-1' stroke-width='.2'/><path d='M0 1l1 1 1-1' stroke-width='.35'/><path d='M0 2.2l1 1 1-1' stroke-width='.5'/></svg>");
  }
}
@media (max-height: 750px) and (min-width: 960px) {
  html[use-redesign] .careerHeroHeader {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0.3 0 1.4 7' fill='none' stroke='rgba(255,255,255,1)'><path d='M0 1l1 1 1-1' stroke-width='.35'/><path d='M0 2.2l1 1 1-1' stroke-width='.35'/></svg>");
  }
}
html[use-redesign] .careerHeroHeader.headerContainsLogo {
  height: 560px;
  padding: 290px 15px 30px;
}
@media screen and (max-width: 960px) {
  html[use-redesign] .careerHeroHeader.headerContainsLogo {
    margin-bottom: 0;
    padding: 200px 15px 100px;
  }
}
html[use-redesign] .careerHeroHeader > * {
  position: relative;
}
html[use-redesign] .careerHeroHeader .careerHeroBackdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: transparent no-repeat center / cover;
  opacity: 0.1;
}
html[use-redesign] .careerHeroHeader .careerLogo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff no-repeat center / contain;
  border: 10px solid #ffffff;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
  width: 200px;
  height: 200px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 960px) {
  html[use-redesign] .careerHeroHeader .careerLogo {
    width: 150px;
    height: 150px;
  }
}
html[use-redesign] .careerHeroHeader h1 {
  margin: 0 0 25px;
  padding: 0 0 25px;
}
html[use-redesign] .careerHeroHeader h1:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  background: #ffffff;
  height: 2px;
  width: 400px;
  max-width: 60%;
}
html[use-redesign] .careerHeroHeader.bigHeadlineHeader h2,
html[use-redesign] .careerHeroHeader:not(.bigHeadlineHeader) h1 {
  font-family: "Roboto Slab", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  color: inherit;
}
html[use-redesign] .careerHeroHeader.bigHeadlineHeader h1,
html[use-redesign] .careerHeroHeader:not(.bigHeadlineHeader) h2 {
  font-family: "Roboto Slab", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  color: inherit;
}
html[use-redesign] .careerHeroHeader h3 {
  font-family: "Roboto Slab", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: inherit;
}
html[use-redesign] .careerHeroHeader h3 span:not(:first-child):before {
  content: "· ";
}
html[use-redesign] .tilingBackground {
  background-size: 15% !important;
  background-repeat: repeat !important;
  opacity: 0.05 !important;
}
html[use-redesign] .noOpenPositions[class] {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  padding: 80px 20px;
}
html[use-redesign] .noOpenPositions[class] small {
  font-size: 1.25rem;
  font-weight: 400;
  color: #818181;
  display: block;
}
html[use-redesign] .positionsGroup.careerCard {
  padding: 0;
}
html[use-redesign] .positionsGroup.careerCard .positionsGroupHeader {
  position: relative;
  height: 140px;
  max-height: 50vw;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
html[use-redesign] .positionsGroup.careerCard .positionsGroupHeader > * {
  position: relative;
}
html[use-redesign] .positionsGroup.careerCard .positionsGroupHeader .positionsGroupHeaderBackdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: transparent no-repeat center / cover;
  opacity: 0.15;
}
html[use-redesign] .positionsGroup.careerCard .positionsGroupHeader .positionsGroupTitle {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.55);
  max-width: 85%;
  padding: 20px 50px;
}
@media screen and (max-width: 960px) {
  html[use-redesign] .positionsGroup.careerCard .positionsGroupHeader .positionsGroupTitle {
    width: 85%;
  }
}
html[use-redesign] .positionsGroup.careerCard .positionItem {
  color: positionItemTextColor;
  border: none;
  border-bottom: 1px solid #e1e1e1;
  margin: 0;
  padding: 25px 30px;
  display: flex;
  align-items: flex-start;
  width: 100%;
  float: none;
  min-height: none;
  border-radius: 0;
  box-shadow: none;
  transition: none;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
}
@media screen and (max-width: 960px) {
  html[use-redesign] .positionsGroup.careerCard .positionItem {
    position: relative;
    padding-right: 45px;
    flex-direction: column;
  }
  html[use-redesign] .positionsGroup.careerCard .positionItem:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,<svg viewBox='-0.1 0 1.25 2' xmlns='http://www.w3.org/2000/svg'><path d='M0 0l1 1-1 1' stroke='%239b9b9b' stroke-width='.15' fill='none'/></svg>") no-repeat center center / auto 10px;
    width: 45px;
    height: 100%;
  }
}
html[use-redesign] .positionsGroup.careerCard .positionItem * {
  font: inherit;
  font-size: inherit;
  line-height: 125%;
}
html[use-redesign] .positionsGroup.careerCard .positionItem .positionLink {
  width: 30%;
  margin: 0;
  margin-right: 15px;
  padding: 0;
  flex: none;
  font-weight: 500;
  color: #222222;
}
@media screen and (max-width: 960px) {
  html[use-redesign] .positionsGroup.careerCard .positionItem .positionLink {
    font-weight: bold;
    width: auto;
  }
}
@media screen and (max-width: 960px) {
  html[use-redesign] .positionsGroup.careerCard .positionItem .positionDetails {
    font-size: 0.875em;
    margin-top: 5px;
  }
}
html[use-redesign] .positionsGroup.careerCard .positionItem .positionDetails > li,
html[use-redesign] .positionsGroup.careerCard .positionItem .positionDetails > li:after {
  color: #bfbfbf;
}
html[use-redesign] .positionsGroup.careerCard .positionItem .careerApplyButton {
  font: inherit;
  font-size: 1rem;
  font-weight: bold;
  text-transform: none;
  border-radius: 2px;
  padding: 9px 35px;
  opacity: 0;
  margin: -8px 0 -8px auto;
  flex-shrink: 1;
}
html[use-redesign] .positionsGroup.careerCard .positionItem .careerApplyButton:active,
html[use-redesign] .positionsGroup.careerCard .positionItem .careerApplyButton:focus {
  text-decoration: none;
}
@media screen and (max-width: 960px) {
  html[use-redesign] .positionsGroup.careerCard .positionItem .careerApplyButton {
    display: none;
  }
}
html[use-redesign] .positionsGroup.careerCard .positionItem:hover,
html[use-redesign] .positionsGroup.careerCard .positionItem:focus {
  background: #fafbfa;
}
html[use-redesign] .positionsGroup.careerCard .positionItem:hover .careerApplyButton,
html[use-redesign] .positionsGroup.careerCard .positionItem:focus .careerApplyButton {
  opacity: 1;
}
html[use-redesign] .socialWidget > ul.row {
  padding-bottom: 0;
}
html[use-redesign] .socialWidget .shareButton a {
  margin-bottom: 0;
}
html[use-redesign] .company-links {
  margin: 10px 0 35px;
}
@media screen and (max-width: 960px) {
  html[use-redesign] .company-links {
    margin: 17.5px;
  }
}
html[use-redesign] .company-links a {
  font: inherit;
  font-size: 1rem;
  font-weight: bold;
  text-transform: none;
  border-radius: 2px;
  padding: 9px 35px;
  position: relative;
  border: 1px solid transparent;
  padding: 9px;
  display: inline-flex;
  align-items: center;
}
html[use-redesign] .company-links a:active,
html[use-redesign] .company-links a:focus {
  text-decoration: none;
}
@media screen and (max-width: 960px) {
  html[use-redesign] .company-links a {
    border: none;
  }
}
html[use-redesign] .company-links a > i {
  font-size: 1.25rem;
}
html[use-redesign] .company-links a > div {
  line-height: 1;
  padding: 0 26px;
  flex-grow: 1;
}
@media screen and (max-width: 960px) {
  html[use-redesign] .company-links a > div {
    padding: 0 15px;
  }
}
html[use-redesign] .company-links a:hover {
  text-decoration: none;
}
html[use-redesign] .company-links a:hover:after {
  font: inherit;
  font-size: 1rem;
  font-weight: bold;
  text-transform: none;
  border-radius: 2px;
  padding: 9px 35px;
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
html[use-redesign] .company-links a:hover:after:active,
html[use-redesign] .company-links a:hover:after:focus {
  text-decoration: none;
}
@media screen and (max-width: 960px) {
  html[use-redesign] .company-links a:hover:after {
    content: none;
  }
}
html[use-redesign] h2.positionSubTitle {
  font-size: 1.25rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
}
html[use-redesign] .positionInfo {
  float: none;
}
html[use-redesign] .positionInfo .row {
  padding: 0 0 35px;
}
html[use-redesign] .positionInfo,
html[use-redesign] #jobFormWrapper {
  width: 100%;
  padding: 0;
}
html[use-redesign] .careerMap {
  margin-bottom: 35px;
  display: block;
}
html[use-redesign] .careerMap img {
  width: 100%;
}
html[use-redesign] #jobFormWrapper {
  max-width: 750px;
  margin: 70px auto;
  float: none;
}
@media screen and (max-width: 960px) {
  html[use-redesign] #jobFormWrapper {
    margin: 35px auto 0;
  }
}
html[use-redesign] #jobFormWrapper .marginBottom {
  margin-bottom: 0;
}
html[use-redesign] #jobFormWrapper .marginBottom + * {
  border-top: 1px solid #e6e6e6;
  margin-top: 35px;
  padding-top: 35px;
}
html[use-redesign] #jobFormWrapper #jobFormDiv .row {
  margin: 35px 0 0;
}
html[use-redesign] #showApplyForm[id],
html[use-redesign] .applyButton {
  font: inherit;
  font-size: 1rem;
  font-weight: bold;
  text-transform: none;
  border-radius: 2px;
  padding: 9px 35px;
  font-size: 1.25em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 4px;
  margin: 0;
  padding: 20px;
}
html[use-redesign] #showApplyForm[id]:active,
html[use-redesign] .applyButton:active,
html[use-redesign] #showApplyForm[id]:focus,
html[use-redesign] .applyButton:focus {
  text-decoration: none;
}
@media screen and (max-width: 990px) {
  html[use-redesign] .mobilePadding {
    padding-left: 15px;
    padding-right: 15px;
  }
}
