@charset "UTF-8";
/* 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);
}
body {
    overflow-x: hidden;
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    position: relative;
    height: 100%;
}
p {
    font-size: 14px;
    line-height: 1.75;
}
p.large {
    font-size: 16px;
}
a,
a:hover,
a:focus,
a:active,
a.active {
    outline: none;
}
a {
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #272727;
    cursor: pointer;
}
a:hover,
a:focus,
a:active,
a.active {
    cursor: pointer;
    color: #0e5e81;
    text-decoration: underline;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}
.img-centered {
    margin: 0 auto;
}
.bg-light-gray {
    background-color: #f0f0f0;
}
.bg-darkest-gray {
    background-color: #222222;
}
.btn-primary {
    color: #ffffff;
    background-color: #1380af;
    border-color: #1380af;
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
    color: #ffffff;
    background-color: #0e5e81;
    border-color: #0d5878;
}
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
    background-image: none;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
    background-color: #1380af;
    border-color: #1380af;
}
.btn-primary .badge {
    color: #1380af;
    background-color: #ffffff;
}
.btn-xl {
    color: #ffffff;
    background-color: #1380af;
    border-color: #1380af;
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    font-size: 18px;
    padding: 20px 40px;
    text-transform: none;
}
.btn-xl:hover,
.btn-xl:focus,
.btn-xl:active,
.btn-xl.active,
.open .dropdown-toggle.btn-xl {
    color: #ffffff;
    background-color: #0e5e81;
    border-color: #0d5878;
}
.btn-xl:active,
.btn-xl.active,
.open .dropdown-toggle.btn-xl {
    background-image: none;
}
.btn-xl.disabled,
.btn-xl[disabled],
fieldset[disabled] .btn-xl,
.btn-xl.disabled:hover,
.btn-xl[disabled]:hover,
fieldset[disabled] .btn-xl:hover,
.btn-xl.disabled:focus,
.btn-xl[disabled]:focus,
fieldset[disabled] .btn-xl:focus,
.btn-xl.disabled:active,
.btn-xl[disabled]:active,
fieldset[disabled] .btn-xl:active,
.btn-xl.disabled.active,
.btn-xl[disabled].active,
fieldset[disabled] .btn-xl.active {
    background-color: #1380af;
    border-color: #1380af;
}
.btn-xl .badge {
    color: #1380af;
    background-color: #ffffff;
}
.btn:focus,
.btn:active,
.btn.active,
.btn:active:focus {
    outline: none;
}
::-moz-selection {
    text-shadow: none;
    background: #1380af;
}
::selection {
    text-shadow: none;
    background: #1380af;
}
img::selection {
    background: transparent;
}
img::-moz-selection {
    background: transparent;
}
body {
    webkit-tap-highlight-color: #1380af;
}
section {
    padding: 25px 0;
}
section h2.section-heading {
    font-size: 45px;
    margin-top: 0;
    margin-bottom: 15px;
    text-transform: none;
    color: #278fe6;
    font-weight: normal;
    letter-spacing: -1px;
}
section h3.section-subheading {
    font-size: 30px;
    color: black;
}
.body-text {
    text-transform: none;
    font-size: 18px;
    line-height: 135%;
    font-weight: 300;
    color: black;
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding: 0;
    margin: 0;
}
footer {
    padding: 75px 0;
    text-align: center;
    clear: both;
    position: relative;
    background: white;
}
footer a {
    font-size: 14px;
    padding: 5px 0;
    display: block;
}
footer a:hover {
    text-decoration: none;
}
footer .caption {
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}
footer .text {
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
}
footer .black-logo {
    text-align: left;
    float: left;
}
footer span.copyright {
    line-height: 50px;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    text-align: left;
    text-transform: none;
    display: block;
    font-weight: bold;
    clear: both;
}
footer ul.quicklinks {
    margin-bottom: 0;
    line-height: 40px;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    text-transform: none;
}
footer .badges {
    text-align: left;
}
footer .badges img {
    width: 90px;
    margin-right: 10px;
}
footer .badges a,
footer .badges img {
    display: inline;
}
footer .partner-link a {
    background: #00b978;
    color: white;
    display: inline-block;
    margin: 0 -10px;
    padding: 5px 10px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
footer .partner-link a:hover {
    color: white;
    background: #00a067;
}
@media (min-width: 768px) {
    section h2.section-heading {
        font-size: 60px;
    }
    .btn {
        font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 20px;
        font-weight: 700;
        font-weight: 500;
        background-color: #fcc817;
        color: white;
    }
    .btn:hover {
        background-color: #e7b204;
    }
    .form-container {
        margin: 20px auto;
        padding: 50px 40px;
    }
    .form-container .err {
        margin: -20px 15px 10px;
        font-size: 16px;
    }
    .form-group .bigInput {
        height: 48px !important;
        width: 440px !important;
        margin: 5px;
    }
    .form-group .smallInput {
        height: 48px !important;
        width: 215px !important;
        margin: 5px;
    }
    .form-group textarea {
        height: 200px !important;
        width: 440px !important;
        margin: 5px;
    }
}
@media (min-width: 1600px) {
    .container {
        margin: 0 auto;
        width: 86%;
    }
}
@media (min-width: 1920px) {
    .body-text {
        text-transform: none;
        font-size: 21px;
        line-height: 135%;
        font-weight: 300;
        color: black;
        font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    }
}
.navbar {
    padding-top: 14px;
}
.navbar-default {
    background-color: #222222;
    border-color: transparent;
}
.navbar-default .navbar-brand {
    margin: 10px;
    margin-left: 0;
    color: #1380af;
    background-image: url(/common/assets/jobs-assets/images/ComeetLogos/header-logo-white.png);
    background-repeat: no-repeat;
    width: 220px;
    font-family: "Kaushan Script", "Helvetica Neue", Helvetica, Arial, cursive;
    -moz-transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus,
.navbar-default .navbar-brand:active,
.navbar-default .navbar-brand.active {
    color: #0e5e81;
    background-repeat: no-repeat;
    color: rgba(255, 255, 255, 0.7);
}
.navbar-default .navbar-collapse {
    border-color: rgba(255, 255, 255, 0.02);
}
.navbar-default .navbar-toggle {
    background-color: #1380af;
    border-color: #1380af;
}
.navbar-default .navbar-toggle .icon-bar {
    background-color: white;
}
.navbar-default .nav li a {
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    color: white;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0 0 0 20px;
    -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-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
    background: none;
    background-color: none;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    -moz-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.navbar-default .nav li a.comapny {
    color: white;
}
.navbar-default .nav li a:hover,
.navbar-default .nav li a:focus,
.navbar-default .nav li a:active {
    color: rgba(255, 255, 255, 0.7);
    background: none;
    background-color: none;
    outline: none;
    text-shadow: none;
}
.navbar-default .nav li a:hover.company,
.navbar-default .nav li a:focus.company,
.navbar-default .nav li a:active.company {
    color: white;
}
.navbar-default .nav li a#findJobButton {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
.navbar-default .nav li a#findJobButton:hover {
    color: white;
    opacity: 0.7;
}
.navbar-default .nav li a#seeDemo {
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
.navbar-default .nav li a#seeDemo:hover {
    color: white !important;
    opacity: 0.7;
}
.navbar-default .nav li.active > a {
    background: none;
    background-color: none;
    color: white;
}
.navbar-default .nav li.active > a:hover,
.navbar-default .nav li.active > a:focus {
    color: #fcc817;
    background: none;
    background-color: none;
    outline: none;
    text-shadow: none;
}
.navbar-default.navbar-shrink {
    position: fixed !important;
    background-color: rgba(255, 255, 255, 0.98);
    color: #272727;
    max-height: 70px;
    padding: 14px 0;
    /*
    #loginButton {
        //border: 1px solid fade(@cta-btn,70%);
        //background-color: @cta-btn;
        color: @cta-btn;
        .rounded(2px);
        &:hover {color: @cta-btn !important;}
    } */
}
.navbar-default.navbar-shrink .navbar-brand {
    background-image: url(/common/assets/jobs-assets/images/ComeetLogos/comeet-logo-lightblue.png);
    background-repeat: no-repeat;
    background-size: 152px;
}
.navbar-default.navbar-shrink #findJobButton {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid rgba(39, 39, 39, 0.6) !important;
    color: #272727;
}
.navbar-default.navbar-shrink #findJobButton:hover {
    color: #278fe6;
    border: 1px solid #278fe6 !important;
    opacity: 1 !important;
}
.navbar-default.navbar-shrink #seeDemo {
    border: 1px solid rgba(255, 255, 255, 0.8);
    background-color: #00b978;
    color: white !important;
    border: 1px solid white;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
.navbar-default.navbar-shrink #seeDemo:hover {
    color: white !important;
    background-color: #278fe6;
    opacity: 1 !important;
}
.navbar-default.navbar-shrink li a {
    background-color: white;
    color: #272727 !important;
    text-shadow: none;
}
.navbar-default.navbar-shrink li a:hover,
.navbar-default.navbar-shrink li a:focus {
    text-shadow: none;
    color: #278fe6 !important;
}
.navbar-default.navbar-shrink a:hover,
.navbar-default.navbar-shrink a:focus {
    color: #272727 !important;
}
.navbar > .container .navbar-brand,
.navbar > .container-fluid .navbar-brand {
    margin-left: 0 !important;
}
@media (min-width: 768px) {
    .navbar-default {
        position: absolute !important;
        background-color: transparent;
        padding: 10px 0;
        -webkit-transition: padding 0.3s;
        -moz-transition: padding 0.3s;
        -o-transition: padding 0.3s;
        transition: padding 0.3s;
        border: none;
    }
    .navbar-default .navbar-brand {
        font-size: 2em;
    }
    .navbar-default.navbar-shrink {
        position: fixed !important;
        background-color: rgba(255, 255, 255, 0.98);
        color: #272727;
        max-height: 70px;
        padding: 14px 0;
    }
    .navbar-default.navbar-shrink .navbar-brand {
        background-image: url(/common/assets/jobs-assets/images/ComeetLogos/comeet-logo-lightblue.png);
        background-repeat: no-repeat;
        background-size: 152px;
    }
}
@media (max-width: 1599px) {
    #findJobButton {
        display: none;
    }
}
@media (min-width: 1024px) {
    .navbar-default .nav li a {
        margin: 0 0 0 20px;
    }
}
@media (max-width: 767px) {
    .navbar-default {
        background: #ffffff;
    }
    .navbar-default .nav li a,
    .navbar-default .nav li a:hover {
        color: #278fe6;
        text-shadow: initial;
    }
    .navbar-default .nav li a#seeDemo,
    .navbar-default .nav li a:hover#seeDemo {
        color: #278fe6 !important;
        text-shadow: initial;
    }
    .navbar-default .navbar-brand {
        background-position: 12px 4px;
        margin: 0;
        background-image: url(/common/assets/jobs-assets/images/ComeetLogos/comeet-logo-lightblue.png);
        background-repeat: no-repeat;
        background-size: 152px;
    }
    .navbar-default .navbar-toggle {
        background: transparent;
        border-color: transparent;
        margin-top: 0px;
    }
    .navbar-default .navbar-toggle .icon-bar {
        background-color: #278fe6;
    }
    .navbar-default .navbar-nav {
        margin: 0 -15px;
        background: white;
    }
    .navbar-default .navbar-nav > li > a:hover,
    .navbar-default .navbar-nav > li > a:focus {
        background: #ffffff;
    }
}
.cta-btn {
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    font-size: 15px;
    font-weight: normal;
    height: 45px;
    background-color: #00b978;
    color: white;
    border: none;
    -moz-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
.cta-btn:hover {
    background-color: #278fe6;
}
#notifications {
    position: fixed;
    min-width: 400px;
    top: 0;
    right: 0;
    left: 0;
    background: #333;
    z-index: 10000;
    color: white;
    font-size: 400;
    padding: 15px 15px;
}
.notification {
    -webkit-border-top-right-radius: 0;
    -webkit-border-bottom-right-radius: 2px;
    -webkit-border-bottom-left-radius: 2px;
    -webkit-border-top-left-radius: 0;
    -moz-border-radius-topright: 0;
    -moz-border-radius-bottomright: 2px;
    -moz-border-radius-bottomleft: 2px;
    -moz-border-radius-topleft: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
    border-top-left-radius: 0;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    text-align: center;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    -moz-animation-delay: 0.5s;
    -o-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
}
.notification a,
.notification a:hover {
    color: white;
    text-decoration: underline;
}
.notification.warning {
    color: white;
}
.errPadding {
    padding-top: 60px !important;
}
.padding-bottom30 {
    padding-bottom: 30px;
}
#services a {
    color: #fcc817;
    text-decoration: underline;
}
#services .body-text {
    margin: 0 0 20px;
}
header {
    -webkit-transition: background 3s linear;
    -moz-transition: background 3s linear;
    -o-transition: background 3s linear;
    -ms-transition: background 3s linear;
    transition: background 3s linear;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    text-align: center;
    color: white;
    position: relative;
    height: 485px;
    overflow: hidden;
}
header.homepage {
    background-color: #278fe6;
    background-image: url('/common/assets/marketing/images/homepage/Main-image-blue.jpg');
}
header.company {
    background-color: #278fe6;
}
header.features {
    background-color: #00B978;
    background-image: url('/common/assets/marketing/images/features/header-image.jpg');
    background-position-x: right;
    background-position-y: top;
}
header.features .intro-heading {
    font-size: 60px !important;
}
header.customers {
    background-color: #278fe6;
    height: 400px;
}
header.customers .intro-text {
    margin: initial;
    left: 15px;
    right: 15px;
}
@media (min-width: 992px) {
    header.customers .intro-text {
        margin: 0 20%;
    }
}
header .header-image {
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -moz-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
header .header-image.blue-header-background {
    background-color: #278fe6;
}
header .header-image.green-header-background {
    background-color: #00B978;
}
header .header-image.disable-element {
    opacity: 0;
}
header .container {
    position: relative;
    height: 100%;
}
header .gradient-overlay-A {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
    pointer-events: none;
    /* IE9 SVG, needs conditional override of 'filter' to 'none' */
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjEiLz4KICAgIDxzdG9wIG9mZnNldD0iNjUlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMyIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMyIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 65%, rgba(0, 0, 0, 0.3) 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.1)), color-stop(65%, rgba(0, 0, 0, 0.3)), color-stop(100%, rgba(0, 0, 0, 0.3)));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 65%, rgba(0, 0, 0, 0.3) 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 65%, rgba(0, 0, 0, 0.3) 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 65%, rgba(0, 0, 0, 0.3) 100%);
    /* IE10+ */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 65%, rgba(0, 0, 0, 0.3) 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1a000000', endColorstr='#4d000000', GradientType=0);
    /* IE6-8 */
}
header .gradient-overlay-B {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    z-index: 0;
    pointer-events: none;
    /* IE9 SVG, needs conditional override of 'filter' to 'none' */
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjE1Ii8+CiAgICA8c3RvcCBvZmZzZXQ9IjQwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjE1Ii8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMCIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0) 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(0, 0, 0, 0.15)), color-stop(40%, rgba(0, 0, 0, 0.15)), color-stop(100%, rgba(0, 0, 0, 0)));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0) 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0) 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(left, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0) 100%);
    /* IE10+ */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0) 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#26000000', endColorstr='#00000000', GradientType=1);
    /* IE6-8 */
}
header #watch-video .btn {
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    font-size: 15px;
    font-weight: normal;
    background-color: transparent;
    text-transform: uppercase;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    -moz-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
@media (min-width: 767px) {
    header #watch-video .btn {
        position: absolute;
        right: 100px;
        margin-right: 3%;
        bottom: 90px;
        border-radius: 50%;
        width: 120px;
        height: 120px;
    }
    header #watch-video .btn i {
        font-size: 32px;
        margin-bottom: -15px;
        display: block;
    }
    header #watch-video .btn span {
        display: block;
        white-space: normal;
        text-align: center;
    }
}
@media (max-width: 767px) {
    header #watch-video .btn {
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        border-radius: 2px;
        -moz-background-clip: padding;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
        float: left;
        margin-bottom: 30px;
        height: 45px;
    }
}
header #watch-video .btn:hover {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}
header .intro-text {
    position: absolute;
    bottom: 64px;
    margin-right: 40%;
}
header .intro-text .intro-lead-in {
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin-bottom: 25px;
    font-size: 25px;
    line-height: 110%;
    font-weight: 300;
}
header .intro-text .intro-heading {
    font-family: "allerbold", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: none;
    font-size: 50px;
    line-height: 110%;
    margin-bottom: 30px;
}
header .intro-text .input-group {
    width: 297px;
    height: 52px;
}
header .intro-text .form-control {
    width: 202px;
    height: 52px;
    font-size: 20px;
    font-weight: normal;
    padding: 0 20px;
}
header .intro-text .input-group-btn {
    width: 135px;
    height: 52px;
}
header .intro-text .btn-blue {
    width: 149px;
    height: 52px;
    font-size: 18px;
    font-weight: normal;
    background-color: #fcc817;
    color: white;
    border: none;
    -webkit-border-top-right-radius: 0;
    -webkit-border-bottom-right-radius: 2px;
    -webkit-border-bottom-left-radius: 2px;
    -webkit-border-top-left-radius: 0;
    -moz-border-radius-topright: 0;
    -moz-border-radius-bottomright: 2px;
    -moz-border-radius-bottomleft: 2px;
    -moz-border-radius-topleft: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
    border-top-left-radius: 0;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
section.features-header-bottom {
    background: #00B978;
    min-height: 154px;
}
section.features-header-bottom .container {
    font-family: "allerregular", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin-bottom: 25px;
    font-size: 31px;
    line-height: 110%;
    font-weight: 100;
    color: white;
    margin-top: 17px;
    line-height: 125%;
}
section.features-header-bottom .container div {
    max-width: 750px;
}
.top-small-arrow {
    width: 78%;
    padding-left: 15%;
    max-width: 1300px;
    margin: 0 auto;
}
.top-small-arrow div {
    background: url(/common/assets/marketing/images/features/top-small-arrow.png) no-repeat;
    width: 77px;
    height: 62px;
    background-position: center;
}
section.home-header-bottom {
    padding: 0;
    background: #ffffff;
    min-height: 154px;
    /*
    .btn {
        .btn-font;
        font-size: 15px;
        font-weight: normal;
        width: 100%;
        height: 45px;
        background-color: @blue;
        //margin-bottom: 35px;
        .transition-duration(0.3s);
		.rounded();

        &:hover {
            background-color: @blue-dark;
        }

        color: white;
    }*/
}
section.home-header-bottom.company {
    background-color: #A0B7FF;
}
section.home-header-bottom .top-arrow {
    background: url(/common/assets/marketing/images/homepage/top-arrow.png) no-repeat;
    width: 115px;
    height: 48px;
    background-position: center;
    margin-top: -16px;
    display: block;
    font-size: 50px;
    color: #9da6af;
    -moz-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    text-align: center;
}
section.home-header-bottom .top-arrow:hover {
    color: #093b51;
}
section.home-header-bottom .contactImg {
    padding: 20px;
}
section.home-header-bottom .section-subheading {
    color: #333;
    text-align: left;
    margin: 24px 0 20px 0;
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 25px;
    line-height: 110%;
    font-family: "allerregular", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
section.home-header-bottom .btn {
    width: 100%;
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    font-size: 15px;
    font-weight: normal;
    height: 45px;
    color: white;
    border: none;
    -moz-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: #00b978;
}
section.home-header-bottom .btn:hover {
    background-color: #278fe6;
}
section.home-header-bottom .form-container {
    margin: 0;
    max-width: 1220px;
    padding: 0;
}
section.home-header-bottom .form-container div span {
    padding: 0 0.5%;
}
section.home-header-bottom .form-container.company {
    height: 360px;
    background-color: #A0B7FF;
    padding: 20px;
    border: 1px solid white;
}
section.home-header-bottom .form-container .err {
    margin: 4px 5px;
    font-size: 16px;
}
section.home-header-bottom .form-container .bigInput {
    font-size: 15px;
    font-weight: normal;
    width: 100%;
    height: 45px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border-color: white;
    background: #f0f2f2;
    text-align: left;
}
section.home-header-bottom .section-heading {
    color: black;
}
section.home-header-bottom .btnSend {
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    background-color: #FF1042;
}
section.home-header-bottom .form-control {
    display: inline;
}
section.home-header-bottom .thankyou-row .form-container {
    max-width: initial !important;
}
section.home-header-bottom .thankyou-row .form-container .section-subheading {
    color: #333;
    text-align: left;
    margin: 4% 0 0 0;
    font-family: "allerregular", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 30px;
}
section.home-header-bottom .thankyou-row .form-container .body-text {
    color: #333;
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: left;
    padding: 0;
}
section.home-header-bottom .form-control:focus {
    border-color: #1380af;
    box-shadow: none;
}
section.home-header-bottom ::-webkit-input-placeholder {
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    font-weight: normal;
    color: #bbbbbb;
    text-transform: none;
}
section.home-header-bottom :-moz-placeholder {
    /* Firefox 18- */
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    font-weight: normal;
    color: #bbbbbb;
    text-transform: none;
}
section.home-header-bottom ::-moz-placeholder {
    /* Firefox 19+ */
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    font-weight: normal;
    color: #bbbbbb;
    text-transform: none;
}
section.home-header-bottom :-ms-input-placeholder {
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    font-weight: normal;
    color: #bbbbbb;
    text-transform: none;
}
section.home-header-bottom .text-danger {
    color: #e74c3c;
}
.bigInputSelect {
    position: relative;
    padding-right: 30px;
}
.bigInputSelect i {
    position: absolute;
    top: 14px;
    right: 10px;
}
.bigInputSelect + .dropdown-menu {
    width: 100%;
}
#workflowDiv {
    height: 250px;
}
#workflowIframe {
    height: 250px;
}
#knowledgeDiv {
    height: 325px;
}
#knowledgeIframe {
    height: 325px;
}
#evaluationDiv {
    height: 250px;
}
#evaluationIframe {
    height: 250px;
}
.service-heading {
    margin: 30px 0 20px;
    text-transform: none;
    font-size: 30px;
    font-weight: normal;
    color: #278fe6;
    letter-spacing: -1px;
}
/*
.body-text {
    text-transform: none;
    font-size: 18px;
    line-height: 135%;
    font-weight: 300;
    color: black;
    .body-font;
}
*/
section#portfolio {
    background-color: #f0f0f0;
}
#portfolio .portfolio-item {
    margin: 0 0 15px;
    right: 0;
}
#portfolio .portfolio-item .portfolio-link {
    display: block;
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}
#portfolio .portfolio-item .portfolio-link .portfolio-hover {
    background: rgba(19, 128, 175, 0.9);
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
}
#portfolio .portfolio-item .portfolio-link .portfolio-hover:hover {
    opacity: 1;
}
#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content {
    position: absolute;
    width: 100%;
    height: 20px;
    font-size: 20px;
    text-align: center;
    top: 50%;
    margin-top: -12px;
    color: white;
}
#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content i {
    margin-top: -12px;
}
#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h3,
#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h4 {
    margin: 0;
}
#portfolio .portfolio-item .portfolio-caption {
    max-width: 400px;
    margin: 0 auto;
    background-color: white;
    text-align: center;
    padding: 25px;
}
#portfolio .portfolio-item .portfolio-caption h4 {
    text-transform: none;
    margin: 0;
}
#portfolio .portfolio-item .portfolio-caption p {
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: italic;
    font-size: 16px;
    margin: 0;
}
#portfolio * {
    z-index: 2;
}
section#uxaward .container {
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    padding-top: 30px;
    padding-bottom: 30px;
}
section#uxaward .award-content {
    position: relative;
    padding-left: 195px;
}
section#uxaward .ux-badge {
    left: 15px;
    width: 150px;
    position: absolute;
}
section#uxaward h1,
section#uxaward h2 {
    text-transform: none;
    font-family: "allerbold", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 40px;
    margin: 0 0 20px;
}
section#uxaward p {
    color: #9da6af;
}
section#uxaward p,
section#uxaward a {
    font-size: 15px;
}
section#uxaward a {
    color: #278fe6;
    margin-top: 15px;
    display: inline-block;
}
@media (max-width: 767px) {
    section#uxaward .award-content {
        padding-left: 15px;
    }
    section#uxaward .ux-badge {
        position: relative;
        margin: 0 auto 20px;
        display: block;
    }
    section#uxaward h1,
    section#uxaward p,
    section#uxaward a {
        text-align: center;
    }
}
section#demo .section-subheading {
    margin: 30px 0;
    font-family: "allerregular", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin-bottom: 0;
    font-size: 25px;
}
section#demo .btn {
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    font-size: 15px;
    font-weight: normal;
    width: 27%;
    height: 45px;
    background-color: #278fe6;
    -moz-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    color: white;
}
section#demo .btn:hover {
    background-color: #093b51;
}
section#demo .before-form-container {
    margin: 0 auto;
    float: none;
}
section#demo .form-container {
    margin: 16px auto;
    padding: 36px 27px;
}
section#demo .form-container div span {
    padding: 0 0.5%;
}
section#demo .form-container.company {
    height: 360px;
    background-color: #A0B7FF;
    padding: 20px;
    border: 1px solid white;
}
section#demo .form-container .err {
    margin: -20px 15px 10px;
    font-size: 16px;
}
section#demo .form-container .bigInput {
    font-size: 12px;
    width: 100%;
    height: 45px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border-color: white;
}
section#demo .section-heading {
    color: black;
}
section#demo .btnSend {
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    background-color: #FF1042;
}
section#demo .form-control {
    display: inline;
}
section#demo .form-control:focus {
    border-color: #1380af;
    box-shadow: none;
}
section#demo ::-webkit-input-placeholder {
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    font-weight: normal;
    color: #bbbbbb;
    text-transform: none;
}
section#demo :-moz-placeholder {
    /* Firefox 18- */
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    font-weight: normal;
    color: #bbbbbb;
    text-transform: none;
}
section#demo ::-moz-placeholder {
    /* Firefox 19+ */
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    font-weight: normal;
    color: #bbbbbb;
    text-transform: none;
}
section#demo :-ms-input-placeholder {
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    font-weight: normal;
    color: #bbbbbb;
    text-transform: none;
}
section#demo .text-danger {
    color: #e74c3c;
}
#betaSubscribeForm {
    padding-left: 10px;
    padding-right: 10px;
}
#betaSubscribeForm .link-form {
    line-height: 45px;
    text-align: left;
}
#betaSubscribeForm .link-form a {
    color: #00b978;
    line-height: 45px;
}
#betaSubscribeForm form.submitted .ng-invalid {
    border: 1px solid #e74c3c;
}
#betaSubscribeForm .col-xs-1,
#betaSubscribeForm .col-sm-1,
#betaSubscribeForm .col-md-1,
#betaSubscribeForm .col-lg-1,
#betaSubscribeForm .col-xs-2,
#betaSubscribeForm .col-sm-2,
#betaSubscribeForm .col-md-2,
#betaSubscribeForm .col-lg-2,
#betaSubscribeForm .col-xs-3,
#betaSubscribeForm .col-sm-3,
#betaSubscribeForm .col-md-3,
#betaSubscribeForm .col-lg-3,
#betaSubscribeForm .col-xs-4,
#betaSubscribeForm .col-sm-4,
#betaSubscribeForm .col-md-4,
#betaSubscribeForm .col-lg-4,
#betaSubscribeForm .col-xs-5,
#betaSubscribeForm .col-sm-5,
#betaSubscribeForm .col-md-5,
#betaSubscribeForm .col-lg-5,
#betaSubscribeForm .col-xs-6,
#betaSubscribeForm .col-sm-6,
#betaSubscribeForm .col-md-6,
#betaSubscribeForm .col-lg-6,
#betaSubscribeForm .col-xs-7,
#betaSubscribeForm .col-sm-7,
#betaSubscribeForm .col-md-7,
#betaSubscribeForm .col-lg-7,
#betaSubscribeForm .col-xs-8,
#betaSubscribeForm .col-sm-8,
#betaSubscribeForm .col-md-8,
#betaSubscribeForm .col-lg-8,
#betaSubscribeForm .col-xs-9,
#betaSubscribeForm .col-sm-9,
#betaSubscribeForm .col-md-9,
#betaSubscribeForm .col-lg-9,
#betaSubscribeForm .col-xs-10,
#betaSubscribeForm .col-sm-10,
#betaSubscribeForm .col-md-10,
#betaSubscribeForm .col-lg-10,
#betaSubscribeForm .col-xs-11,
#betaSubscribeForm .col-sm-11,
#betaSubscribeForm .col-md-11,
#betaSubscribeForm .col-lg-11,
#betaSubscribeForm .col-xs-12,
#betaSubscribeForm .col-sm-12,
#betaSubscribeForm .col-md-12,
#betaSubscribeForm .col-lg-12 {
    padding-right: 10px;
    padding-left: 10px;
}
@media (max-width: 990px) {
    #betaSubscribeForm .col-xs-1,
    #betaSubscribeForm .col-sm-1,
    #betaSubscribeForm .col-md-1,
    #betaSubscribeForm .col-lg-1,
    #betaSubscribeForm .col-xs-2,
    #betaSubscribeForm .col-sm-2,
    #betaSubscribeForm .col-md-2,
    #betaSubscribeForm .col-lg-2,
    #betaSubscribeForm .col-xs-3,
    #betaSubscribeForm .col-sm-3,
    #betaSubscribeForm .col-md-3,
    #betaSubscribeForm .col-lg-3,
    #betaSubscribeForm .col-xs-4,
    #betaSubscribeForm .col-sm-4,
    #betaSubscribeForm .col-md-4,
    #betaSubscribeForm .col-lg-4,
    #betaSubscribeForm .col-xs-5,
    #betaSubscribeForm .col-sm-5,
    #betaSubscribeForm .col-md-5,
    #betaSubscribeForm .col-lg-5,
    #betaSubscribeForm .col-xs-6,
    #betaSubscribeForm .col-sm-6,
    #betaSubscribeForm .col-md-6,
    #betaSubscribeForm .col-lg-6,
    #betaSubscribeForm .col-xs-7,
    #betaSubscribeForm .col-sm-7,
    #betaSubscribeForm .col-md-7,
    #betaSubscribeForm .col-lg-7,
    #betaSubscribeForm .col-xs-8,
    #betaSubscribeForm .col-sm-8,
    #betaSubscribeForm .col-md-8,
    #betaSubscribeForm .col-lg-8,
    #betaSubscribeForm .col-xs-9,
    #betaSubscribeForm .col-sm-9,
    #betaSubscribeForm .col-md-9,
    #betaSubscribeForm .col-lg-9,
    #betaSubscribeForm .col-xs-10,
    #betaSubscribeForm .col-sm-10,
    #betaSubscribeForm .col-md-10,
    #betaSubscribeForm .col-lg-10,
    #betaSubscribeForm .col-xs-11,
    #betaSubscribeForm .col-sm-11,
    #betaSubscribeForm .col-md-11,
    #betaSubscribeForm .col-lg-11,
    #betaSubscribeForm .col-xs-12,
    #betaSubscribeForm .col-sm-12,
    #betaSubscribeForm .col-md-12,
    #betaSubscribeForm .col-lg-12 {
        padding-right: 5px;
        padding-left: 5px;
    }
}
@media (min-width: 991px) {
    #betaSubscribeForm .formDemo > div {
        width: 16.5%;
    }
}
#benefitsLink {
    position: absolute;
    right: 0;
}
#footerSubscribe .bigInput {
    text-align: left;
}
.hbspt-form {
    display: none !important;
}
section#contact {
    background-color: #f0f2f2;
    position: relative;
}
section#contact.company {
    background-color: #A0B7FF;
}
section#contact h1,
section#contact h2 {
    text-transform: none;
    font-size: 40px;
    margin: 65px 0 30px 0;
    font-family: "allerbold", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
section#contact h2.section-heading {
    text-align: center;
    text-transform: none;
    font-weight: normal;
    font-size: 36px;
}
section#contact .get-started-description {
    max-width: 696px;
    font-size: 18px;
    margin: 20px auto;
    line-height: 125%;
}
section#contact .get-started-icons {
    max-width: 978px;
    margin: 40px auto 90px auto;
    font-size: 18px;
    font-weight: bold;
    line-height: 115%;
}
section#contact a.top-arrow {
    display: none;
}
section#contact #migration {
    background: url(/common/assets/marketing/images/homepage/get-started-icon1.png) center no-repeat;
    width: 60px;
    height: 37px;
}
section#contact #information {
    background: url(/common/assets/marketing/images/homepage/get-started-icon.png) center no-repeat;
    width: 60px;
    height: 37px;
}
section#contact #easy {
    background: url(/common/assets/marketing/images/homepage/get-started-icon2.png) center no-repeat;
    width: 60px;
    height: 37px;
}
section#contact #personal {
    background: url(/common/assets/marketing/images/homepage/get-started-icon3.png) center no-repeat;
    width: 60px;
    height: 37px;
}
section#contact .contactImg {
    padding: 20px;
}
section#contact .section-subheading {
    margin: 30px 0;
    font-family: "allerregular", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin-bottom: 0;
    font-size: 25px;
}
section#contact .btn {
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    font-size: 15px;
    font-weight: normal;
    width: 100%;
    height: 45px;
    background-color: #00b978;
    -moz-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    color: white;
}
section#contact .btn:hover {
    background-color: #278fe6;
}
section#contact .before-form-container {
    margin: 0 auto;
    float: none;
}
section#contact .main-form-class {
    width: 100% !important;
}
section#contact .form-container {
    margin: 16px auto;
    max-width: 1050px;
    padding: 36px 27px;
}
section#contact .form-container div span {
    padding: 0 0.5%;
}
section#contact .form-container.company {
    height: 360px;
    background-color: #A0B7FF;
    padding: 20px;
    border: 1px solid white;
}
section#contact .form-container .err {
    margin: 0;
    font-size: 16px;
}
section#contact .form-container .bigInput {
    font-size: 15px;
    font-weight: normal;
    width: 100%;
    height: 45px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border-color: white;
}
section#contact .section-heading {
    color: black;
}
section#contact .btnSend {
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    background-color: #FF1042;
}
section#contact .form-control {
    display: inline;
}
section#contact .thankyou-row .form-container .section-subheading {
    color: #333;
    text-align: center;
    margin: 4% 0 0 0;
    font-family: "allerregular", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 30px;
}
section#contact .thankyou-row .form-container .body-text {
    color: #333;
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: center;
    padding: 0;
}
section#contact .form-control:focus {
    border-color: #1380af;
    box-shadow: none;
}
section#contact ::-webkit-input-placeholder {
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    font-weight: normal;
    color: #bbbbbb;
    text-transform: none;
}
section#contact :-moz-placeholder {
    /* Firefox 18- */
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    font-weight: normal;
    color: #bbbbbb;
    text-transform: none;
}
section#contact ::-moz-placeholder {
    /* Firefox 19+ */
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    font-weight: normal;
    color: #bbbbbb;
    text-transform: none;
}
section#contact :-ms-input-placeholder {
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    font-weight: normal;
    color: #bbbbbb;
    text-transform: none;
}
section#contact .text-danger {
    color: #e74c3c;
}
section#conference {
    padding: 100px 0 0;
}
section#conference .body-text {
    margin-bottom: 20px;
}
section#conference strong {
    font-weight: 400;
}
.team-member {
    border: 1px solid #f0f0f0;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 50px;
    padding: 20px;
}
.team-member img {
    margin: 0 auto;
    border: 7px solid white;
}
.team-member h4 {
    margin-top: 25px;
    margin-bottom: 0;
    text-transform: none;
}
.team-member p {
    margin-top: 0;
}
section#about .body-text {
    margin-bottom: 20px;
}
section#team h1,
section#team h2 {
    text-align: center;
    text-transform: none;
    font-family: "allerregular", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 40px;
}
section#advisors h1,
section#advisors h2 {
    text-align: center;
    text-transform: none;
    font-family: "allerregular", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 40px;
}
ul.social-buttons {
    margin-bottom: 0;
}
ul.social-buttons li a {
    display: block;
    background-color: #222222;
    height: 30px;
    width: 30px;
    border-radius: 100%;
    font-size: 15px;
    line-height: 30px;
    color: white;
    outline: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
}
ul.social-buttons li a:hover,
ul.social-buttons li a:focus,
ul.social-buttons li a:active {
    background-color: #1380af;
}
.portfolio-modal .modal-content {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    -moz-background-clip: border-box;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    min-height: 100%;
    padding: 100px 0;
    text-align: center;
}
.portfolio-modal .modal-content h2 {
    margin-bottom: 15px;
    font-size: 3em;
}
.portfolio-modal .modal-content p {
    margin-bottom: 30px;
}
.portfolio-modal .modal-content p.item-intro {
    margin: 20px 0 30px;
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: italic;
    font-size: 16px;
}
.portfolio-modal .modal-content ul.list-inline {
    margin-bottom: 30px;
    margin-top: 0;
}
.portfolio-modal .modal-content img {
    margin-bottom: 30px;
}
.portfolio-modal .close-modal {
    position: absolute;
    width: 75px;
    height: 75px;
    background-color: transparent;
    top: 25px;
    right: 25px;
    cursor: pointer;
}
.portfolio-modal .close-modal:hover {
    opacity: 0.3;
}
.portfolio-modal .close-modal .lr {
    height: 75px;
    width: 1px;
    margin-left: 35px;
    background-color: #222222;
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    /* IE 9 */
    -webkit-transform: rotate(45deg);
    /* Safari and Chrome */
    z-index: 1051;
}
.portfolio-modal .close-modal .lr .rl {
    height: 75px;
    width: 1px;
    background-color: #222222;
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    /* IE 9 */
    -webkit-transform: rotate(90deg);
    /* Safari and Chrome */
    z-index: 1052;
}
.seeDemoBtn {
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
    font-weight: 500;
    width: 220px;
    height: 52px;
    padding: 0;
    border: 0;
    background-color: #00b978;
}
.seeDemoBtn:hover {
    background-color: #278fe6;
}
.left {
    text-align: left;
}
[ng\:cloak],
[ng-cloak],
.ng-cloak {
    display: none !important;
}
.thankyou {
    line-height: 125%;
    margin: 0;
    padding: 5px 10px;
    font-size: 30px;
    width: auto;
}
.closeNotifications {
    color: white;
    float: right;
    -moz-transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}
.closeNotifications:hover {
    cursor: pointer;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.hide {
    display: none !important;
    visibility: hidden !important;
}
.features-content nav#features-nav {
    width: 100%;
    position: absolute;
    padding-top: 75px;
}
.features-content nav#features-nav.ui-scrollfix {
    position: fixed;
    top: 0;
}
.features-content nav#features-nav li {
    list-style: none;
    margin: 12px 0;
    line-height: 115%;
}
.features-content nav#features-nav li a {
    text-decoration: initial;
    font-size: 13px;
    padding: 0;
    display: inline;
}
.features-content nav#features-nav li a.nav-green:hover,
.features-content nav#features-nav li a.nav-green:focus,
.features-content nav#features-nav li a.nav-green:active {
    background: #99fccc;
    color: black;
}
.features-content nav#features-nav li a.nav-blue:hover,
.features-content nav#features-nav li a.nav-blue:focus,
.features-content nav#features-nav li a.nav-blue:active {
    background: #cce4ff;
    color: black;
}
.features-content .feature-content {
    clear: both;
    margin-bottom: 20px;
}
.features-content .feature-item-icon-agency-recruiters {
    background: url(/common/assets/marketing/images/features/icon-agency-recruiters.png) no-repeat;
    width: 77px;
    height: 77px;
}
.features-content .feature-item-icon-arrow {
    background: url(/common/assets/marketing/images/features/icon-arrow.png) no-repeat;
    width: 77px;
    height: 77px;
}
.features-content .feature-item-icon-careers-page {
    background: url(/common/assets/marketing/images/features/icon-careers-page.png) no-repeat;
    width: 77px;
    height: 77px;
}
.features-content .feature-item-icon-careerspage {
    background: url(/common/assets/marketing/images/features/icon-careerspage.png) no-repeat;
    width: 77px;
    height: 77px;
}
.features-content .feature-item-icon-collaboration {
    background: url(/common/assets/marketing/images/features/icon-collaboration.png) no-repeat;
    width: 77px;
    height: 77px;
}
.features-content .feature-item-icon-comunication-with-candidates {
    background: url(/common/assets/marketing/images/features/icon-comunication-with-candidates.png) no-repeat;
    width: 77px;
    height: 77px;
}
.features-content .feature-item-icon-empty {
    background: url(/common/assets/marketing/images/features/icon-empty.png) no-repeat;
    width: 77px;
    height: 77px;
}
.features-content .feature-item-icon-hiring-team {
    background: url(/common/assets/marketing/images/features/icon-hiring-team.png) no-repeat;
    width: 77px;
    height: 77px;
}
.features-content .feature-item-icon-interviewing {
    background: url(/common/assets/marketing/images/features/icon-interviewing.png) no-repeat;
    width: 77px;
    height: 77px;
}
.features-content .feature-item-icon-profiles {
    background: url(/common/assets/marketing/images/features/icon-profiles.png) no-repeat;
    width: 77px;
    height: 77px;
}
.features-content .feature-item-icon-questions {
    background: url(/common/assets/marketing/images/features/icon-questions.png) no-repeat;
    width: 77px;
    height: 77px;
}
.features-content .feature-item-icon-reports {
    background: url(/common/assets/marketing/images/features/icon-reports.png) no-repeat;
    width: 77px;
    height: 77px;
}
.features-content .feature-item-icon-scheduling {
    background: url(/common/assets/marketing/images/features/icon-scheduling.png) no-repeat;
    width: 77px;
    height: 77px;
}
.features-content .feature-item-icon-screening {
    background: url(/common/assets/marketing/images/features/icon-screening.png) no-repeat;
    width: 77px;
    height: 77px;
}
.features-content .feature-item-icon-sourcing {
    background: url(/common/assets/marketing/images/features/icon-sourcing.png) no-repeat;
    width: 77px;
    height: 77px;
}
.features-content .feature-item-icon-workflows {
    background: url(/common/assets/marketing/images/features/icon-workflows.png) no-repeat;
    width: 77px;
    height: 77px;
}
.features-content .feature-item-arrow {
    background: url(/common/assets/marketing/images/features/icon-arrow.png) no-repeat;
    width: 77px;
    height: 433px;
    background-position-y: -100px;
    vertical-align: bottom;
}
.features-content .feature-item-empty-arrow {
    width: 77px;
    height: 551px;
}
.features-content .feature-item-content {
    padding-left: 46px;
    margin-top: -15px;
}
.features-content .feature-item-small-title-green {
    color: #00ba79;
    font-size: 18px;
    line-height: 77px;
    padding-left: 46px;
    font-family: "allerregular", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.features-content .feature-item-small-title-blue {
    color: #3D79AA;
    font-size: 18px;
    line-height: 77px;
    padding-left: 46px;
    font-family: "allerregular", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.features-content ul {
    font-size: 15px;
    padding-left: 20px;
    list-style: none;
}
.features-content ul li {
    margin-bottom: 10px;
    line-height: 125%;
}
.features-content ul li i {
    margin-left: -20px;
    margin-right: 4px;
    font-size: 12px;
    position: relative;
    top: -1px;
}
.features-content .feature-item-small-title-white {
    color: #ffffff;
    font-size: 18px;
    line-height: 77px;
    padding-left: 46px;
    font-family: "allerregular", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.features-content .feature-item-title {
    padding: 0 0 25px 0;
    font-size: 32px;
    font-family: "allerbold", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 125%;
    max-width: 650px;
}
.features-content .feature-item.feature-item-bg-collaboration {
    background: url(/common/assets/marketing/images/features/collaboration-image.jpg) no-repeat;
    background-size: cover;
    color: #ffffff;
}
.features-content .feature-item {
    width: 100%;
    padding: 16px 0;
}
.features-content .features-wrapper {
    width: 78%;
    margin: 0 auto;
    padding-left: 15%;
    max-width: 1300px;
    min-height: 375px;
}
.features-content nav#features-nav ul {
    max-width: 1180px;
    margin: 0 auto;
}
.features-content nav#features-nav ul li {
    width: 12%;
}
.align-text-right {
    text-align: right;
}
section.animation {
    padding: 0;
}
section.animation .animation-wrapper {
    width: 100%;
    padding: 80px 0;
}
section.animation .animation-wrapper.gray {
    background: #f0f2f2;
}
section.animation .animation-row {
    max-width: 1300px;
    margin: 0 auto;
}
section.animation .animation-row h1,
section.animation .animation-row h2 {
    text-transform: none;
    font-family: "allerbold", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 42px;
    line-height: 100%;
    margin: 10px 0 15px 0;
}
section.animation .animation-row > div {
    padding: 0 3%;
}
section.animation .animation-row .animation-image-mobile {
    display: none;
}
section.animation p.block-text {
    width: 470px;
    font-size: 20px;
    line-height: 28px;
}
section.learn-how {
    padding: 0;
}
section.learn-how a {
    -moz-transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    width: 100%;
    text-align: center;
    font-size: 33px;
    color: white;
    background: #fcc817;
    font-weight: bold;
    padding: 4% 0;
    display: inline-block;
    text-decoration: none;
    line-height: 115%;
    font-family: "allerbold", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
section.learn-how a:hover {
    background: #278fe6;
}
section.learn-how a span {
    display: inline-block;
}
section.learn-how a span.black {
    color: black;
    padding-left: 12px;
}
section.learn-how a i {
    font-size: 20px;
}
section.persona {
    max-width: 990px;
    margin: 0 auto;
    padding-top: 0;
    min-height: 500px;
}
section.persona h1,
section.persona h2 {
    text-align: center;
    text-transform: none;
    margin: 100px 0 50px;
    font-size: 36px;
    font-family: "allerbold", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
section.persona #recruiting-coordinator {
    background: url(/common/assets/marketing/images/homepage/persona-coordinator.png) no-repeat;
}
section.persona #reecruiter {
    background: url(/common/assets/marketing/images/homepage/persona-recruiter.png) no-repeat;
}
section.persona #management {
    background: url(/common/assets/marketing/images/homepage/persona.png) no-repeat;
}
section.persona #peers {
    background: url(/common/assets/marketing/images/homepage/persona-managment.png) no-repeat;
}
section.persona #hiring-manager {
    background: url(/common/assets/marketing/images/homepage/persona-hiringmanager.png) no-repeat;
}
section.persona .persona-image {
    background-color: #3d79aa !important;
    border-radius: 61px;
    width: 121px;
    height: 121px;
    margin-left: 10px;
    -moz-transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}
section.persona .persona-image:hover,
section.persona .persona-image.active {
    background-color: #f0f2f2 !important;
}
section.persona .persona-title {
    text-align: center;
    margin-top: 5px;
    font-size: 14px;
}
section.persona .persona-divider {
    height: 4px;
    background-position-x: 736px;
    max-width: 827px;
    margin: 0 auto;
    margin-top: 20px;
}
section.persona .persona-description {
    max-width: 827px;
    margin: 0 auto;
    margin-top: 12px;
    font-size: 22px;
    font-weight: 300;
    background: #f0f2f2;
    padding: 18px;
}
section.persona .persona-divider::before {
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 16px solid #f0f2f2;
    margin-left: 54px;
}
section.persona .persona-divider.reecruiter::before {
    margin-left: 54px;
}
section.persona .persona-divider.reecruiter::after {
    margin-left: 54px;
}
section.persona .persona-divider.hiring-manager::before {
    margin-left: 222px;
}
section.persona .persona-divider.hiring-manager::after {
    margin-left: 222px;
}
section.persona .persona-divider.management::before {
    margin-left: 396px;
}
section.persona .persona-divider.management::after {
    margin-left: 396px;
}
section.persona .persona-divider.peers::before {
    margin-left: 565px;
}
section.persona .persona-divider.peers::after {
    margin-left: 565px;
}
section.persona .persona-divider.recruiting-coordinator::before {
    margin-left: 738px;
}
section.persona .persona-divider.recruiting-coordinator::after {
    margin-left: 738px;
}
section.hiring-steps {
    margin-bottom: 30px;
}
section.hiring-steps h2 {
    text-align: center;
    text-transform: none;
    margin-bottom: 50px;
    font-family: "allerbold", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 40px;
}
section.hiring-steps h3 {
    text-align: center;
    text-transform: none;
    margin-bottom: 30px;
    margin-top: 50px;
    font-weight: normal;
    font-size: 25px;
}
section.hiring-steps .features-tree {
    height: 280px;
    background: url(/common/assets/marketing/images/homepage/features-background.png) no-repeat;
    width: 810px;
    margin: 0 auto;
    background-position-x: 42px;
}
section.hiring-steps .features-tree .features-tree-before {
    height: 280px;
    background: url(/common/assets/marketing/images/homepage/features-arrow.png) no-repeat;
    width: 233px;
    position: absolute;
    left: 50%;
    margin-left: -632px;
}
section.hiring-steps .features-tree .features-tree-after {
    height: 280px;
    background: url(/common/assets/marketing/images/homepage/features-handshake.png) no-repeat;
    width: 120px;
    position: absolute;
    right: 50%;
    margin-right: -488px;
    margin-top: -209px;
    background-position: center center;
    -moz-transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}
section.hiring-steps .features-tree:hover .features-tree-after {
    background-image: url(/common/assets/marketing/images/homepage/features-handshake-big.png) !important;
    background-size: 70%;
}
section.hiring-steps .small-icon-box {
    max-width: 990px;
    margin: 0 auto;
}
section.hiring-steps .small-icon-box div#automated {
    background: url(/common/assets/marketing/images/homepage/features-workflows.png) no-repeat;
}
section.hiring-steps .small-icon-box div#collaboration {
    background: url(/common/assets/marketing/images/homepage/features-collaboration.png) no-repeat;
}
section.hiring-steps .small-icon-box div#reports {
    background: url(/common/assets/marketing/images/homepage/features-reports.png) no-repeat;
}
section.hiring-steps .small-icon-box div#agency {
    background: url(/common/assets/marketing/images/homepage/features-agency-recruiters.png) no-repeat;
}
section.hiring-steps .small-icon-box div#manage {
    background: url(/common/assets/marketing/images/homepage/features-hiringteam.png) no-repeat;
}
section.hiring-steps .small-icon-box .persona-image {
    background-color: #278fe6 !important;
    border-radius: 61px;
    width: 72px;
    height: 72px;
    margin-left: 32px;
    -moz-transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}
section.hiring-steps .small-icon-box .persona-image:hover {
    background-color: #a3cff5 !important;
}
section.hiring-steps .small-icon-box .features-title {
    text-align: center;
    margin-top: 5px;
    font-size: 14px;
    line-height: 115%;
    color: black;
    text-decoration: initial;
}
section.hiring-steps .features-tree .first-row {
    max-width: 1300px;
    margin: 0 0 0 0;
    height: 130px;
}
section.hiring-steps .features-tree .first-row > a > div {
    width: 105px;
    height: 100%;
    float: left;
    -moz-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    cursor: pointer;
}
section.hiring-steps .features-tree .first-row > a > div .features-tree-before-icon {
    background: url(/common/assets/marketing/images/homepage/bubbles.png) no-repeat;
    background-position: center -6px !important;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
    opacity: 1;
    width: 105px;
    height: 130px;
    position: absolute;
}
section.hiring-steps .features-tree .first-row > a > div .features-tree-after-icon {
    background: url(/common/assets/marketing/images/homepage/bubbles.png) no-repeat;
    background-position: center -186px !important;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
    opacity: 0;
    width: 105px;
    height: 130px;
    position: absolute;
}
section.hiring-steps .features-tree .first-row > a > div .features-tree-icon {
    width: 71px;
    height: 78px;
    margin: 0 auto;
    -moz-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    z-index: 2;
    position: relative;
    background-position-y: 4px !important;
}
section.hiring-steps .features-tree .first-row > a > div:hover .features-tree-before-icon {
    opacity: 0;
}
section.hiring-steps .features-tree .first-row > a > div:hover .features-tree-after-icon {
    opacity: 1;
}
section.hiring-steps .features-tree .first-row > a > div:hover .features-tree-icon {
    background-position-y: 2px !important;
}
section.hiring-steps .features-tree .first-row > a > div.sourcing .features-tree-icon {
    background: url(/common/assets/marketing/images/homepage/features1.png) no-repeat;
}
section.hiring-steps .features-tree .first-row > a > div.careers {
    margin-left: 30px;
}
section.hiring-steps .features-tree .first-row > a > div.careers .features-tree-icon {
    background: url(/common/assets/marketing/images/homepage/features-careerspage.png) no-repeat;
}
section.hiring-steps .features-tree .first-row > a > div.communication {
    margin-left: 109px;
}
section.hiring-steps .features-tree .first-row > a > div.communication .features-tree-icon {
    background: url(/common/assets/marketing/images/homepage/features-comunication-wtih-candidates.png) no-repeat;
}
section.hiring-steps .features-tree .first-row > a > div.interviewing {
    margin-left: 28px;
}
section.hiring-steps .features-tree .first-row > a > div.interviewing .features-tree-icon {
    background: url(/common/assets/marketing/images/homepage/features-interviewing.png) no-repeat;
}
section.hiring-steps .features-tree .first-row > a > div.candidate {
    margin-left: 109px;
}
section.hiring-steps .features-tree .first-row > a > div.candidate .features-tree-icon {
    background: url(/common/assets/marketing/images/homepage/features-selection.png) no-repeat;
}
section.hiring-steps .features-tree .first-row > a > div .features-tree-title {
    text-align: center;
    margin-top: 9px;
    font-size: 14px;
    line-height: 115%;
    color: black;
    text-decoration: initial;
}
section.hiring-steps .features-tree .second-row {
    position: relative;
    top: 22px;
    max-width: 1300px;
    margin: 0 0 0 0;
    height: 80px;
}
section.hiring-steps .features-tree .second-row > a > div {
    width: 105px;
    height: 100%;
    background-position: center 0px !important;
    float: left;
    -moz-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    cursor: pointer;
}
section.hiring-steps .features-tree .second-row > a > div .features-tree-before-icon {
    background: url(/common/assets/marketing/images/homepage/bubbles.png) no-repeat;
    background-position: center -406px !important;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
    opacity: 1;
    width: 105px;
    height: 130px;
    position: absolute;
}
section.hiring-steps .features-tree .second-row > a > div .features-tree-after-icon {
    background: url(/common/assets/marketing/images/homepage/bubbles.png) no-repeat;
    background-position: center -583px !important;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
    opacity: 0;
    width: 105px;
    height: 130px;
    position: absolute;
}
section.hiring-steps .features-tree .second-row > a > div .features-tree-icon {
    width: 71px;
    height: 78px;
    margin: 0 auto;
    -moz-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    position: relative;
    z-index: 2;
}
section.hiring-steps .features-tree .second-row > a > div:hover .features-tree-before-icon {
    opacity: 0;
}
section.hiring-steps .features-tree .second-row > a > div:hover .features-tree-after-icon {
    opacity: 1;
}
section.hiring-steps .features-tree .second-row > a > div:hover .features-tree-icon {
    background-position-y: 2px !important;
}
section.hiring-steps .features-tree .second-row > a > div.candidate {
    margin-left: 69px;
}
section.hiring-steps .features-tree .second-row > a > div.candidate .features-tree-icon {
    background: url(/common/assets/marketing/images/homepage/features-profiles.png) no-repeat;
}
section.hiring-steps .features-tree .second-row > a > div.screening {
    margin-left: 108px;
}
section.hiring-steps .features-tree .second-row > a > div.screening .features-tree-icon {
    background: url(/common/assets/marketing/images/homepage/features-screening.png) no-repeat;
}
section.hiring-steps .features-tree .second-row > a > div.scheduling {
    margin-left: 29px;
}
section.hiring-steps .features-tree .second-row > a > div.scheduling .features-tree-icon {
    background: url(/common/assets/marketing/images/homepage/features-scheduling.png) no-repeat;
}
section.hiring-steps .features-tree .second-row > a > div.interview {
    margin-left: 30px;
}
section.hiring-steps .features-tree .second-row > a > div.interview .features-tree-icon {
    background: url(/common/assets/marketing/images/homepage/features-questions.png) no-repeat;
}
section.hiring-steps .features-tree .second-row > a > div .features-tree-title {
    text-align: center;
    font-size: 14px;
    line-height: 115%;
    color: black;
    text-decoration: initial;
    padding-top: 4px;
}
section.testimonails {
    width: 876px;
    margin: 0 auto;
    padding: 50px 0 100px;
}
section.testimonails .testimonail {
    width: 420px;
    height: 365px;
    background: #f0f2f2 url(/common/assets/marketing/images/homepage/quote.png) no-repeat center 32px;
    float: left;
    padding: 70px 45px 30px 45px;
    font-size: 20px;
}
section.testimonails .testimonail:first-child {
    margin-right: 35px;
}
section.testimonails .testimonail .department-blue {
    color: #51a4ea;
    font-size: 16px;
}
section.testimonails .testimonail .department-red {
    color: #fe425e;
    font-size: 16px;
}
section.testimonails .testimonail .name {
    font-size: 14px;
    font-weight: bold;
}
section.testimonails .testimonail .role {
    font-size: 14px;
    line-height: 12px;
}
section.testimonails .testimonail .company {
    font-size: 14px;
}
section.testimonails .testimonail .testimonail-content {
    height: 192px;
    text-align: center;
    font-size: 18px;
}
section.testimonails .testimonail .round {
    border-radius: 50%;
    overflow: hidden;
    width: 75px;
    height: 75px;
}
section.testimonails .testimonail .round img {
    display: block;
    min-width: 100%;
    min-height: 100%;
}
section.testimonails .testimonail .round .layer {
    opacity: 0.6;
    position: absolute;
    top: 0;
    width: 75px;
    height: 75px;
    border-radius: 50%;
}
section.testimonails .testimonail .round .layer.layer-blue {
    background-color: #51a4ea;
}
section.testimonails .testimonail .round .layer.layer-red {
    background-color: #fe425e;
}
@media (min-width: 768px) {
    section.testimonails a.customers-link {
        margin-top: 50px;
    }
}
section#customers h1,
section#customers h2 {
    margin: 70px 0 10px;
    font-family: "allerbold", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 40px;
    text-transform: none;
}
section#customers .customer-item {
    min-height: 375px;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 50px;
    padding: 20px 30px;
}
section#customers .customer-item img {
    margin: 0 auto;
}
section#customers .customer-item h4 {
    margin-top: 25px;
    margin-bottom: 0;
    text-transform: none;
}
section#customers .customer-item p {
    margin-top: 0;
}
section#customers .customer-item .customer-photo {
    margin-bottom: 20px;
}
section#customers .customer-item .customer-quote {
    display: block;
    font-size: 15px;
    line-height: 200%;
    min-height: 90px;
}
section#customers .customer-item .customer-logo {
    max-width: 200px;
    max-height: 120px;
}
section#customers .customer-item .logo-wrapper {
    height: 120px;
}
@media (min-width: 768px) {
    section#customers .customer-item {
        min-height: 480px;
        margin-bottom: 0;
    }
    section#customers .container {
        max-width: 88%;
    }
    section#customers .quote-wrapper {
        height: 140px;
        margin-bottom: 20px;
    }
    section#customers .logo-wrapper {
        border-top: 1px solid #f0f0f0;
        padding-top: 10px;
        height: 125px;
    }
}
@media (min-width: 1360px) {
    section#customers .container {
        max-width: 70%;
    }
    section#customers .customer-item {
        padding: 20px 40px;
    }
}
@media (max-width: 420px) {
    section#customers .customer-item {
        margin-top: 0;
    }
    section#customers .customer-item:not(:last-of-type) {
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 40px;
        margin-bottom: 0;
    }
    section#customers .customer-quote {
        padding: 20px 0;
    }
}
a.customers-link {
    margin-top: 30px;
    font-size: 15px;
}
a.customers-link .fa-heart {
    font-size: 13px;
    position: relative;
    bottom: 2px;
    left: 2px;
    opacity: 0.5;
    color: #c80202;
}
a.customers-link:hover,
a.customers-link:active {
    color: #c80202;
    text-decoration: none;
}
aside#logos-grid {
    background-color: white;
    padding-bottom: 80px;
}
aside#logos-grid img {
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    -webkit-filter: grayscale(100%);
    opacity: 0.4;
}
aside#logos-grid div:hover > img {
    -webkit-filter: grayscale(0%);
    opacity: 1;
}
aside#logos-grid h1,
aside#logos-grid h2 {
    text-align: center;
    text-transform: none;
    margin-bottom: 70px;
    margin-top: 100px;
    font-family: "allerbold", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 40px;
}
aside#logos-grid .logos {
    max-width: 1100px;
    margin: 0 auto;
}
aside#logos-grid .logos div {
    height: 120px;
    overflow: hidden;
    text-align: center;
    padding: 0 2%;
    padding-top: 20px;
    position: relative;
}
aside#logos-grid .logos div:after {
    content: ' ';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid #f0f0f0;
    border-left: 1px solid #f0f0f0;
}
aside#logos-grid a.customers-link {
    clear: both;
    margin-top: 50px;
    font-size: 15px;
    position: relative;
}
@media (min-width: 992px) {
    aside#logos-grid .logos div:nth-child(6n + 1):after {
        border-left: none;
    }
    aside#logos-grid .logos.rows6 div:nth-child(n + 25):after {
        border-bottom: none;
    }
    aside#logos-grid .logos.rows2 div:nth-child(n + 7):after {
        border-bottom: none;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    aside#logos-grid .logos div {
        height: auto;
    }
    aside#logos-grid .logos div:nth-child(3n + 1):after {
        border-left: none;
    }
    aside#logos-grid .logos.rows6 div:nth-child(n + 28):after {
        border-bottom: none;
    }
    aside#logos-grid .logos.rows2 div:nth-child(n + 10):after {
        border-bottom: none;
    }
}
@media (max-width: 768px) {
    aside#logos-grid .logos div {
        height: auto;
    }
    aside#logos-grid .logos div:after {
        border: none;
    }
}
section.case-study {
    background: #f0f2f2;
    border-bottom: 2px solid white;
}
section.case-study .container {
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
}
section.case-study .container .case-study-lead {
    font-size: 15px;
    color: #9da6af;
    text-transform: uppercase;
}
section.case-study .container .case-study-logo {
    margin-bottom: 10px;
}
section.case-study .container .case-study-quote {
    font-size: 26px;
    font-weight: 300;
}
section.case-study .container .case-study-quote .quote {
    font-size: 40px;
    font-weight: 300;
    position: absolute;
    color: #9da6af;
    margin-top: -15px;
}
section.case-study .container .case-study-quote .quote:first-child {
    margin-left: -15px;
}
section.case-study .container .case-study-personname {
    font-size: 15px;
    color: #9da6af;
}
section.case-study .container .case-study-cta button {
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    font-size: 15px;
    font-weight: normal;
    height: 45px;
    background-color: #00b978;
    color: white;
    border: none;
    -moz-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    display: inline-block;
    margin-top: 20px;
    min-width: 120px;
}
section.case-study .container .case-study-cta button:hover {
    background-color: #278fe6;
}
section.case-study .customer-photo {
    float: right;
    margin-left: 50px;
    max-width: 350px;
    border: 2px solid white;
}
@media (max-width: 768px) {
    section.case-study {
        text-align: center;
    }
    section.case-study .customer-photo {
        max-width: 150px;
        float: none;
        margin: 0 auto;
    }
    section.case-study .case-study-logo {
        margin: 0 auto;
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    section.case-study .container {
        max-width: 88%;
    }
    section.case-study .customer-photo {
        max-width: 220px;
        margin-left: 30px;
    }
    section.case-study .case-study-quote {
        max-width: 410px;
    }
}
@media (min-width: 1360px) {
    section.case-study .container {
        max-width: 60%;
    }
}
@media (min-width: 768px) {
    header .intro-text .btn-blue {
        width: 220px !important;
        height: 52px !important;
        font-size: 20px;
        font-weight: normal;
        color: white;
        border: none;
        -webkit-border-top-right-radius: 0;
        -webkit-border-bottom-right-radius: 2px;
        -webkit-border-bottom-left-radius: 2px;
        -webkit-border-top-left-radius: 0;
        -moz-border-radius-topright: 0;
        -moz-border-radius-bottomright: 2px;
        -moz-border-radius-bottomleft: 2px;
        -moz-border-radius-topleft: 0;
        border-top-right-radius: 0;
        border-bottom-right-radius: 2px;
        border-bottom-left-radius: 2px;
        border-top-left-radius: 0;
        -moz-background-clip: padding;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
        background-color: #fcc817;
    }
    header .intro-text .btn-blue:hover {
        background-color: #e7b204;
    }
    #portfolio .portfolio-item {
        margin: 0 0 30px;
    }
}
@media screen and (max-width: 420px) {
    .nopadding {
        padding: 0 !important;
    }
}
@media (min-width: 1024px) {
    #workflowDiv {
        height: 350px;
    }
    #workflowIframe {
        height: 350px;
        width: 980px;
    }
    #knowledgeDiv {
        height: 400px;
    }
    #knowledgeIframe {
        height: 455px;
        width: 980px;
    }
    #evaluationDiv {
        height: 350px;
    }
    #evaluationIframe {
        height: 350px;
        width: 980px;
    }
}
@media (min-width: 1600px) {
    .service-heading {
        font-size: 35px;
    }
}
@media (min-width: 1920px) {
    .service-heading {
        font-size: 37px;
    }
    section h2.section-heading {
        font-size: 65px;
    }
    #workflowDiv {
        height: 370px;
    }
    #workflowIframe {
        height: 500px;
    }
    #knowledgeDiv {
        height: 420px;
    }
    #knowledgeIframe {
        height: 650px;
    }
    #evaluationDiv {
        height: 370px;
    }
    #evaluationIframe {
        height: 500px;
    }
    /*header {
        .intro-text {
            padding-top: 481px;
            padding-bottom: 100px;

            .intro-lead-in {
                .aller-reg-font;
                font-size: 40px;
                //line-height: 36px;
                margin-bottom: 70px;
            }

            .intro-heading {
                font-size: 110px;
                line-height: 79px;
                margin-bottom: 70px;
            }
        }
    }*/
}
@media (max-width: 1199px) {
    .features-content .features-wrapper {
        width: auto;
        padding-left: 5%;
    }
}
@media (max-width: 991px) {
    header .intro-text {
        bottom: 0;
    }
    section .form-container .bigInput {
        margin-bottom: 2px;
    }
    section.animation .animation-row {
        max-width: 100%;
        text-align: center;
    }
    section.animation .animation-row img {
        float: none !important;
        margin: 0 auto;
    }
    section.animation .align-text-right {
        text-align: center;
    }
    section.animation .animation3 img {
        margin-bottom: 20px;
    }
    section.animation p.block-text {
        width: 100%;
    }
    section#contact .form-container {
        padding: 0;
    }
    section.learn-how a {
        padding-left: 150px;
        padding-right: 150px;
    }
    section.testimonails {
        width: 750px;
        padding: 50px 20px;
    }
    section.testimonails .testimonail {
        width: 336px;
        height: auto;
    }
    section.testimonails .testimonail .testimonail-content {
        height: auto;
        min-height: 260px;
    }
    section.persona {
        width: 100%;
        padding: 25px 20px;
        min-height: initial !important;
    }
    section.persona .persona-image {
        background-color: #f0f2f2 !important;
    }
    section.persona h1,
    section.persona h2 {
        margin-bottom: 30px;
    }
    section.persona .persona-title {
        min-height: 42px;
    }
    section.persona .row > div > div:first-child {
        width: 90px!important;
        height: 90px !important;
        background-size: 90px 90px !important;
        margin: 0 auto !important;
        background-position-x: center !important;
    }
    section.hiring-steps .small-icon-box {
        width: 100%;
        padding: 25px 20px;
    }
    section.hiring-steps .small-icon-box h1,
    section.hiring-steps .small-icon-box h2 {
        text-align: center;
        text-transform: none;
        margin-bottom: 92px;
        font-family: "allerbold", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    }
    section.hiring-steps .small-icon-box .features-title {
        min-height: 42px;
    }
    section.hiring-steps .small-icon-box > div > div:first-child {
        width: 100%!important;
        height: 90px !important;
        background-size: 72px 72px !important;
        margin-left: 0 !important;
        background-position-x: center !important;
    }
    .features-content .features-wrapper {
        width: auto;
        padding: 0 15px;
    }
    .features-content .feature-item-content {
        margin-top: 0;
        padding: 20px;
    }
    .features-content .feature-item-small-title-green,
    .features-content .feature-item-small-title-blue,
    .features-content .feature-item-small-title-white {
        line-height: 125%;
        height: 77px;
        /* Internet Explorer 10 */
        display: -ms-flexbox;
        -ms-flex-align: center;
        /* Firefox */
        display: -moz-box;
        -moz-box-align: center;
        /* Safari, Opera, and Chrome */
        display: -webkit-box;
        -webkit-box-align: center;
        /* W3C */
        display: box;
        box-align: center;
    }
}
@media (max-width: 767px) {
    header .intro-text .intro-heading {
        font-size: 35px;
    }
    header .intro-text .intro-lead-in {
        font-size: 20px;
    }
    section.learn-how a {
        font-size: 26px;
    }
    .col-xs-nopadding {
        padding: 0 !important;
    }
    .nopadding {
        padding: 0 !important;
    }
    section.testimonails {
        width: auto;
        padding: 50px 20px;
    }
    section.testimonails .testimonail:first-child {
        margin: 0 auto !important;
        float: none;
        width: auto;
        height: auto;
    }
    section.testimonails .testimonail:first-child .testimonail-content {
        height: auto;
    }
    section.learn-how a {
        padding-left: 0;
        padding-right: 0;
    }
}
@media (max-width: 420px) {
    header .intro-text .intro-heading {
        font-size: 30px;
    }
    section.animation .animation-row .animation-image {
        display: none;
    }
    section.animation .animation-row .animation-image-mobile {
        display: block;
    }
}
.navbar-default .navbar-brand {
    width: 170px;
}
.dropdown-menu {
    border-radius: 2px;
}
.dropdown-menu a,
.dropdown-menu h6 {
    font-family: 'Roboto', 'Open Sans', "segoe ui", "Helvetica", "Lucida Sans", "Arial", sans-serif;
    line-height: 30px;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: 0 20px;
    clear: both;
    font-weight: 400;
    color: #222222;
    text-align: inherit;
    white-space: nowrap;
    background: 0 0;
    border: 0;
}
.dropdown-item:focus,
.dropdown-item:hover {
    color: #222222;
    text-decoration: none;
    background-color: #f8f9fa;
}
.dropdown-header {
    display: block;
    color: #bbbbbb;
    white-space: nowrap;
    margin: 0;
    text-transform: none;
    font-weight: normal;
}
.greyText {
    color: #bbbbbb;
}
body{
    overflow-x: hidden;
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    position: relative;
    height: 100%;
    margin: 0;
    padding: 0;
}
body.calendar-page iframe.fullframe {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    /*padding-bottom: 100px;*/
    border: none;
    overflow-y: auto;
}

body.calendar-page .navbar-default {
    background-color: #080071;
    height: 100px !important;
}

body.calendar-page .navbar-default .navbar-brand {
    margin: 10px !important;
    margin-left: 0 !important;
    color: #1380af !important;
    background-size: 100%;
    background-image: url(/wp-content/uploads/2020/02/Comeet_logo_white.png) !important;
    background-repeat: no-repeat !important;
    width: 220px;
}


body.calendar-page .navbar-default a {
    text-shadow: none;
    line-height: 35px;
}

.container {
    max-width: 1020px;
}

@media (min-width: 992px) {
    .container {
        width: 1020px;
    }
}
