@charset "UTF-8";

 .animated {
animation-duration: 1s;
animation-fill-mode: both;
}
.animated.infinite {
animation-iteration-count: infinite;
}
.animated.hinge {
animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
animation-duration: 0.75s;
}
@keyframes bounce {
20%,
53%,
80%,
from,
to {
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
transform: translate3d(0, 0, 0);
}
40%,
43% {
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
transform: translate3d(0, -30px, 0);
}
70% {
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
transform: translate3d(0, -15px, 0);
}
90% {
transform: translate3d(0, -4px, 0);
}
}
.bounce {
animation-name: bounce;
transform-origin: center bottom;
}
@keyframes flash {
50%,
from,
to {
opacity: 1;
}
25%,
75% {
opacity: 0;
}
}
.flash {
animation-name: flash;
}
@keyframes pulse {
from {
transform: scale3d(1, 1, 1);
}
50% {
transform: scale3d(1.05, 1.05, 1.05);
}
to {
transform: scale3d(1, 1, 1);
}
}
.pulse {
animation-name: pulse;
}
@keyframes rubberBand {
from {
transform: scale3d(1, 1, 1);
}
30% {
transform: scale3d(1.25, 0.75, 1);
}
40% {
transform: scale3d(0.75, 1.25, 1);
}
50% {
transform: scale3d(1.15, 0.85, 1);
}
65% {
transform: scale3d(0.95, 1.05, 1);
}
75% {
transform: scale3d(1.05, 0.95, 1);
}
to {
transform: scale3d(1, 1, 1);
}
}
.rubberBand {
animation-name: rubberBand;
}
@keyframes shake {
from,
to {
transform: translate3d(0, 0, 0);
}
10%,
30%,
50%,
70%,
90% {
transform: translate3d(-10px, 0, 0);
}
20%,
40%,
60%,
80% {
transform: translate3d(10px, 0, 0);
}
}
.shake {
animation-name: shake;
}
@keyframes headShake {
0% {
transform: translateX(0);
}
6.5% {
transform: translateX(-6px) rotateY(-9deg);
}
18.5% {
transform: translateX(5px) rotateY(7deg);
}
31.5% {
transform: translateX(-3px) rotateY(-5deg);
}
43.5% {
transform: translateX(2px) rotateY(3deg);
}
50% {
transform: translateX(0);
}
}
.headShake {
animation-timing-function: ease-in-out;
animation-name: headShake;
}
@keyframes swing {
20% {
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
transform: rotate3d(0, 0, 1, -5deg);
}
to {
transform: rotate3d(0, 0, 1, 0deg);
}
}
.swing {
transform-origin: top center;
animation-name: swing;
}
@keyframes tada {
from {
transform: scale3d(1, 1, 1);
}
10%,
20% {
transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
}
30%,
50%,
70%,
90% {
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%,
60%,
80% {
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
transform: scale3d(1, 1, 1);
}
}
.tada {
animation-name: tada;
}
@keyframes wobble {
from {
transform: none;
}
15% {
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
transform: none;
}
}
.wobble {
animation-name: wobble;
}
@keyframes jello {
11.1%,
from,
to {
transform: none;
}
22.2% {
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
.jello {
animation-name: jello;
transform-origin: center;
}
@keyframes bounceIn {
20%,
40%,
60%,
80%,
from,
to {
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
transform: scale3d(0.6, 0.6, 0.6);
}
20% {
transform: scale3d(1.05, 1.05, 1.05);
}
40% {
transform: scale3d(0.95, 0.95, 0.95);
}
60% {
opacity: 1;
transform: scale3d(1.02, 1.02, 1.02);
}
80% {
transform: scale3d(0.98, 0.98, 0.98);
}
to {
opacity: 1;
transform: scale3d(1, 1, 1);
}
}
.bounceIn {
animation-name: bounceIn;
}
@keyframes bounceInDown {
60%,
75%,
90%,
from,
to {
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
transform: translate3d(0, -20px, 0);
}
60% {
opacity: 1;
transform: translate3d(0, 10px, 0);
}
75% {
transform: translate3d(0, -5px, 0);
}
90% {
transform: translate3d(0, 2px, 0);
}
to {
transform: none;
}
}
.bounceInDown {
animation-name: bounceInDown;
}
@keyframes bounceInLeft {
60%,
75%,
90%,
from,
to {
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
transform: translate3d(-20px, 0, 0);
}
60% {
opacity: 1;
transform: translate3d(10px, 0, 0);
}
75% {
transform: translate3d(-5px, 0, 0);
}
90% {
transform: translate3d(2px, 0, 0);
}
to {
transform: none;
}
}
.bounceInLeft {
animation-name: bounceInLeft;
}
@keyframes bounceInRight {
60%,
75%,
90%,
from,
to {
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
from {
opacity: 0;
transform: translate3d(20px, 0, 0);
}
60% {
opacity: 1;
transform: translate3d(-10px, 0, 0);
}
75% {
transform: translate3d(5px, 0, 0);
}
90% {
transform: translate3d(-2px, 0, 0);
}
to {
transform: none;
}
}
.bounceInRight {
animation-name: bounceInRight;
}
@keyframes bounceInUp {
60%,
75%,
90%,
from,
to {
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
from {
opacity: 0;
transform: translate3d(0, 20px, 0);
}
60% {
opacity: 1;
transform: translate3d(0, -10px, 0);
}
75% {
transform: translate3d(0, 5px, 0);
}
90% {
transform: translate3d(0, -2px, 0);
}
to {
transform: translate3d(0, 0, 0);
}
}
.bounceInUp {
animation-name: bounceInUp;
}
@keyframes bounceOut {
20% {
transform: scale3d(0.95, 0.95, 0.95);
}
50%,
55% {
opacity: 1;
transform: scale3d(1.05, 1.05, 1.05);
}
to {
opacity: 0;
transform: scale3d(0.5, 0.5, 0.5);
}
}
.bounceOut {
animation-name: bounceOut;
}
@keyframes bounceOutDown {
20% {
transform: translate3d(0, 5px, 0);
}
40%,
45% {
opacity: 1;
transform: translate3d(0, -15px, 0);
}
to {
opacity: 0;
transform: translate3d(0, 100px, 0);
}
}
.bounceOutDown {
animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
20% {
opacity: 1;
transform: translate3d(10px, 0, 0);
}
to {
opacity: 0;
transform: translate3d(-100px, 0, 0);
}
}
.bounceOutLeft {
animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
20% {
opacity: 1;
transform: translate3d(-10px, 0, 0);
}
to {
opacity: 0;
transform: translate3d(100px, 0, 0);
}
}
.bounceOutRight {
animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
20% {
transform: translate3d(0, -5px, 0);
}
40%,
45% {
opacity: 1;
transform: translate3d(0, 15px, 0);
}
to {
opacity: 0;
transform: translate3d(0, -100px, 0);
}
}
.bounceOutUp {
animation-name: bounceOutUp;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fadeIn {
animation-name: fadeIn;
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translate3d(0, -40px, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInDown {
animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
from {
opacity: 0;
transform: translate3d(0, -1000px, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInDownBig {
animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
from {
opacity: 0;
transform: translate3d(-40px, 0, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInLeft {
animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
from {
opacity: 0;
transform: translate3d(-1000px, 0, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInLeftBig {
animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
from {
opacity: 0;
transform: translate3d(40px, 0, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInRight {
animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
from {
opacity: 0;
transform: translate3d(1000px, 0, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInRightBig {
animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translate3d(0, 40px, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInUp {
animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
from {
opacity: 0;
transform: translate3d(0, 1000px, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInUpBig {
animation-name: fadeInUpBig;
}
@keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
.fadeOut {
animation-name: fadeOut;
}
@keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(0, 40px, 0);
}
}
.fadeOutDown {
animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(0, 1000px, 0);
}
}
.fadeOutDownBig {
animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(-60px, 0, 0);
}
}
.fadeOutLeft {
animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(-1000px, 0, 0);
}
}
.fadeOutLeftBig {
animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(60px, 0, 0);
}
}
.fadeOutRight {
animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(1000px, 0, 0);
}
}
.fadeOutRightBig {
animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(0, -60px, 0);
}
}
.fadeOutUp {
animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(0, -1000px, 0);
}
}
.fadeOutUpBig {
animation-name: fadeOutUpBig;
}
@keyframes flip {
from {
transform: perspective(1000px) rotate3d(0, 1, 0, -360deg);
animation-timing-function: ease-out;
}
40% {
transform: perspective(1000px) translate3d(0, 0, 150px)
rotate3d(0, 1, 0, -190deg);
animation-timing-function: ease-out;
}
50% {
transform: perspective(1000px) translate3d(0, 0, 150px)
rotate3d(0, 1, 0, -170deg);
animation-timing-function: ease-in;
}
80% {
transform: perspective(1000px) scale3d(0.95, 0.95, 0.95);
animation-timing-function: ease-in;
}
to {
transform: perspective(1000px);
animation-timing-function: ease-in;
}
}
.animated.flip {
-webkit-backface-visibility: visible;
backface-visibility: visible;
animation-name: flip;
}
@keyframes flipInX {
from {
transform: perspective(400px) rotate3d(1, 0, 0, 60deg);
animation-timing-function: ease-in;
opacity: 0;
}
40% {
transform: perspective(400px) rotate3d(1, 0, 0, -10deg);
animation-timing-function: ease-in;
}
60% {
transform: perspective(400px) rotate3d(1, 0, 0, 5deg);
opacity: 1;
}
80% {
transform: perspective(400px) rotate3d(1, 0, 0, -2deg);
}
to {
transform: perspective(400px);
}
}
.flipInX {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
animation-name: flipInX;
}
@keyframes flipInY {
from {
transform: perspective(1000px) rotate3d(0, 1, 0, 60deg);
animation-timing-function: ease-in;
opacity: 0;
}
40% {
transform: perspective(1000px) rotate3d(0, 1, 0, -10deg);
animation-timing-function: ease-in;
}
60% {
transform: perspective(1000px) rotate3d(0, 1, 0, 5deg);
opacity: 1;
}
80% {
transform: perspective(1000px) rotate3d(0, 1, 0, -2deg);
}
to {
transform: perspective(1000px);
}
}
.flipInY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
animation-name: flipInY;
}
@keyframes flipOutX {
from {
transform: perspective(1000px);
}
30% {
transform: perspective(1000px) rotate3d(1, 0, 0, -15deg);
opacity: 1;
}
to {
transform: perspective(1000px) rotate3d(1, 0, 0, 60deg);
opacity: 0;
}
}
.flipOutX {
animation-name: flipOutX;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
}
@keyframes flipOutY {
from {
transform: perspective(1000px);
}
30% {
transform: perspective(1000px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
transform: perspective(1000px) rotate3d(0, 1, 0, 60deg);
opacity: 0;
}
}
.flipOutY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
animation-name: flipOutY;
}
@keyframes lightSpeedIn {
from {
transform: translate3d(100px, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
transform: skewX(20deg);
opacity: 1;
}
80% {
transform: skewX(-5deg);
opacity: 1;
}
to {
transform: none;
opacity: 1;
}
}
.lightSpeedIn {
animation-name: lightSpeedIn;
animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
from {
opacity: 1;
}
to {
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
.lightSpeedOut {
animation-name: lightSpeedOut;
animation-timing-function: ease-in;
}
@keyframes rotateIn {
from {
transform-origin: center;
transform: rotate3d(0, 0, 1, -180deg);
opacity: 0;
}
to {
transform-origin: center;
transform: none;
opacity: 1;
}
}
.rotateIn {
animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
from {
transform-origin: left bottom;
transform: rotate3d(0, 0, 1, -10deg);
opacity: 0;
}
to {
transform-origin: left bottom;
transform: none;
opacity: 1;
}
}
.rotateInDownLeft {
animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
from {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, 10deg);
opacity: 0;
}
to {
transform-origin: right bottom;
transform: none;
opacity: 1;
}
}
.rotateInDownRight {
animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
from {
transform-origin: left bottom;
transform: rotate3d(0, 0, 1, 10deg);
opacity: 0;
}
to {
transform-origin: left bottom;
transform: none;
opacity: 1;
}
}
.rotateInUpLeft {
animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
from {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, -10deg);
opacity: 0;
}
to {
transform-origin: right bottom;
transform: none;
opacity: 1;
}
}
.rotateInUpRight {
animation-name: rotateInUpRight;
}
@keyframes rotateOut {
from {
transform-origin: center;
opacity: 1;
}
to {
transform-origin: center;
transform: rotate3d(0, 0, 1, 180deg);
opacity: 0;
}
}
.rotateOut {
animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
from {
transform-origin: left bottom;
opacity: 1;
}
to {
transform-origin: left bottom;
transform: rotate3d(0, 0, 1, 10deg);
opacity: 0;
}
}
.rotateOutDownLeft {
animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
from {
transform-origin: right bottom;
opacity: 1;
}
to {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, -10deg);
opacity: 0;
}
}
.rotateOutDownRight {
animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
from {
transform-origin: left bottom;
opacity: 1;
}
to {
transform-origin: left bottom;
transform: rotate3d(0, 0, 1, -10deg);
opacity: 0;
}
}
.rotateOutUpLeft {
animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
from {
transform-origin: right bottom;
opacity: 1;
}
to {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, 10deg);
opacity: 0;
}
}
.rotateOutUpRight {
animation-name: rotateOutUpRight;
}
@keyframes hinge {
0% {
transform-origin: top left;
animation-timing-function: ease-in-out;
}
20%,
60% {
transform: rotate3d(0, 0, 1, 80deg);
transform-origin: top left;
animation-timing-function: ease-in-out;
}
40%,
80% {
transform: rotate3d(0, 0, 1, 60deg);
transform-origin: top left;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
.hinge {
animation-name: hinge;
}
@keyframes jackInTheBox {
from {
opacity: 0;
transform: scale(0.1) rotate(30deg);
transform-origin: center bottom;
}
50% {
transform: rotate(-10deg);
}
70% {
transform: rotate(3deg);
}
to {
opacity: 1;
transform: scale(1);
}
}
.jackInTheBox {
animation-name: jackInTheBox;
}
@keyframes rollIn {
from {
opacity: 0;
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
transform: none;
}
}
.rollIn {
animation-name: rollIn;
}
@keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
.rollOut {
animation-name: rollOut;
}
@keyframes zoomIn {
from {
opacity: 0;
transform: scale3d(0.8, 0.8, 0.8);
}
50% {
opacity: 1;
}
}
.zoomIn {
animation-name: zoomIn;
}
@keyframes zoomInDown {
from {
opacity: 0;
transform: scale3d(0.6, 0.6, 0.6) translate3d(0, -200px, 0);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
transform: scale3d(0.9, 0.9, 0.9) translate3d(0, 10px, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomInDown {
animation-name: zoomInDown;
}
@keyframes zoomInLeft {
from {
opacity: 0;
transform: scale3d(0.6, 0.6, 0.6) translate3d(-500px, 0, 0);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
transform: scale3d(0.9, 0.9, 0.9) translate3d(10px, 0, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomInLeft {
animation-name: zoomInLeft;
}
@keyframes zoomInRight {
from {
opacity: 0;
transform: scale3d(0.6, 0.6, 0.6) translate3d(500px, 0, 0);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
transform: scale3d(0.9, 0.9, 0.9) translate3d(-20px, 0, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomInRight {
animation-name: zoomInRight;
}
@keyframes zoomInUp {
from {
opacity: 0;
transform: scale3d(0.6, 0.6, 0.6) translate3d(0, 200px, 0);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
transform: scale3d(0.9, 0.9, 0.9) translate3d(0, -20px, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomInUp {
animation-name: zoomInUp;
}
@keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
transform: scale3d(0.8, 0.8, 0.8);
}
to {
opacity: 0;
}
}
.zoomOut {
animation-name: zoomOut;
}
@keyframes zoomOutDown {
40% {
opacity: 1;
transform: scale3d(0.9, 0.9, 0.9) translate3d(0, -20px, 0);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
to {
opacity: 0;
transform: scale3d(0.4, 0.4, 0.4) translate3d(0, 500px, 0);
transform-origin: center bottom;
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomOutDown {
animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
transform: scale3d(0.9, 0.9, 0.9) translate3d(30px, 0, 0);
}
to {
opacity: 0;
transform: scale(0.3) translate3d(-500px, 0, 0);
transform-origin: left center;
}
}
.zoomOutLeft {
animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
40% {
opacity: 1;
transform: scale3d(0.9, 0.9, 0.9) translate3d(-30px, 0, 0);
}
to {
opacity: 0;
transform: scale(0.3) translate3d(500px, 0, 0);
transform-origin: right center;
}
}
.zoomOutRight {
animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
40% {
opacity: 1;
transform: scale3d(0.9, 0.9, 0.9) translate3d(0, 30px, 0);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
to {
opacity: 0;
transform: scale3d(0.3, 0.3, 0.3) translate3d(0, -500px, 0);
transform-origin: center bottom;
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomOutUp {
animation-name: zoomOutUp;
}
@keyframes slideInDown {
from {
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
.slideInDown {
animation-name: slideInDown;
}
@keyframes slideInLeft {
from {
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
.slideInLeft {
animation-name: slideInLeft;
}
@keyframes slideInRight {
from {
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
.slideInRight {
animation-name: slideInRight;
}
@keyframes slideInUp {
from {
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
.slideInUp {
animation-name: slideInUp;
}
@keyframes slideOutDown {
from {
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
transform: translate3d(0, 100%, 0);
}
}
.slideOutDown {
animation-name: slideOutDown;
}
@keyframes slideOutLeft {
from {
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
transform: translate3d(-100%, 0, 0);
}
}
.slideOutLeft {
animation-name: slideOutLeft;
}
@keyframes slideOutRight {
from {
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
transform: translate3d(100%, 0, 0);
}
}
.slideOutRight {
animation-name: slideOutRight;
}
@keyframes slideOutUp {
from {
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
transform: translate3d(0, -100%, 0);
}
}
.slideOutUp {
animation-name: slideOutUp;
}
@keyframes fadeInUpShort {
from {
opacity: 0;
transform: translate3d(0, 20px, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInUpShort {
animation-name: fadeInUpShort;
}
@keyframes fadeInDownShort {
from {
opacity: 0;
transform: translate3d(0, -20px, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInDownShort {
animation-name: fadeInDownShort;
}
@keyframes fadeInLeftShort {
from {
opacity: 0;
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInLeftShort {
animation-name: fadeInLeftShort;
}
@keyframes fadeInRightShort {
from {
opacity: 0;
transform: translate3d(20px, 0, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInRightShort {
animation-name: fadeInRightShort;
}
@keyframes zoomInShort {
from {
opacity: 0;
transform: scale3d(0.97, 0.97, 0.97);
}
50% {
opacity: 1;
}
}
.zoomInShort {
animation-name: zoomInShort;
}
@keyframes bounceInShort {
20%,
40%,
60%,
80%,
from,
to {
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
transform: scale3d(0.97, 0.97, 0.97);
}
20% {
transform: scale3d(1.03, 1.03, 1.03);
}
40% {
transform: scale3d(0.98, 0.98, 0.98);
}
60% {
opacity: 1;
transform: scale3d(1.02, 1.02, 1.02);
}
80% {
transform: scale3d(0.99, 0.99, 0.99);
}
to {
opacity: 1;
transform: scale3d(1, 1, 1);
}
}
.bounceInShort {
animation-name: bounceInShort;
}
@keyframes bounceInDownShort {
60%,
75%,
90%,
from,
to {
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
transform: translate3d(0, -15px, 0);
}
60% {
opacity: 1;
transform: translate3d(0, 8px, 0);
}
75% {
transform: translate3d(0, -8px, 0);
}
90% {
transform: translate3d(0, 4px, 0);
}
to {
transform: none;
}
}
.bounceInDownShort {
animation-name: bounceInDownShort;
}
@keyframes bounceInLeftShort {
60%,
75%,
90%,
from,
to {
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
transform: translate3d(-15px, 0, 0);
}
60% {
opacity: 1;
transform: translate3d(8px, 0, 0);
}
75% {
transform: translate3d(-8px, 0, 0);
}
90% {
transform: translate3d(4px, 0, 0);
}
to {
transform: none;
}
}
.bounceInLeftShort {
animation-name: bounceInLeftShort;
}
@keyframes bounceInRightShort {
60%,
75%,
90%,
from,
to {
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
from {
opacity: 0;
transform: translate3d(15px, 0, 0);
}
60% {
opacity: 1;
transform: translate3d(-8px, 0, 0);
}
75% {
transform: translate3d(8px, 0, 0);
}
90% {
transform: translate3d(-4px, 0, 0);
}
to {
transform: none;
}
}
.bounceInRightShort {
animation-name: bounceInRightShort;
}
@keyframes bounceInUpShort {
60%,
75%,
90%,
from,
to {
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
from {
opacity: 0;
transform: translate3d(0, 15px, 0);
}
60% {
opacity: 1;
transform: translate3d(0, -8px, 0);
}
75% {
transform: translate3d(0, 8px, 0);
}
90% {
transform: translate3d(0, -4px, 0);
}
to {
transform: translate3d(0, 0, 0);
}
}
.bounceInUpShort {
animation-name: bounceInUpShort;
}
@keyframes flipInXShort {
from {
transform: perspective(2500px) rotate3d(10, 0, 0, 10deg);
animation-timing-function: ease-in;
opacity: 0;
}
40% {
transform: perspective(2500px) rotate3d(10, 0, 0, -7deg);
animation-timing-function: ease-in;
}
60% {
transform: perspective(2500px) rotate3d(10, 0, 0, 5deg);
opacity: 1;
}
80% {
transform: perspective(2500px) rotate3d(10, 0, 0, -2deg);
}
to {
transform: perspective(2500px);
}
}
.flipInXShort {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
animation-name: flipInXShort;
}
@keyframes flipInYShort {
from {
transform: perspective(2500px) rotate3d(0, 1, 0, 10deg);
animation-timing-function: ease-in;
opacity: 0;
}
40% {
transform: perspective(2500px) rotate3d(0, 1, 0, -7deg);
animation-timing-function: ease-in;
}
60% {
transform: perspective(2500px) rotate3d(0, 1, 0, 5deg);
opacity: 1;
}
80% {
transform: perspective(2500px) rotate3d(0, 1, 0, -2deg);
}
to {
transform: perspective(2500px);
}
}
.flipInYShort {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
animation-name: flipInYShort;
}
@keyframes jackInTheBoxShort {
from {
opacity: 0;
transform: scale(0.98) rotate(3deg);
transform-origin: center bottom;
}
50% {
transform: rotate(-2deg);
}
70% {
transform: rotate(1deg);
}
to {
opacity: 1;
transform: scale(1);
}
}
.jackInTheBoxShort {
animation-name: jackInTheBoxShort;
}
@keyframes rotateInShort {
from {
transform-origin: center;
transform: rotate3d(0, 0, 1, -2deg);
opacity: 0;
}
to {
transform-origin: center;
transform: none;
opacity: 1;
}
}
.rotateInShort {
animation-name: rotateInShort;
}
@keyframes rotateInDownLeftShort {
from {
transform-origin: left bottom;
transform: rotate3d(0, 0, 1, -2deg);
opacity: 0;
}
to {
transform-origin: left bottom;
transform: none;
opacity: 1;
}
}
.rotateInDownLeftShort {
animation-name: rotateInDownLeftShort;
}
@keyframes rotateInDownRightShort {
from {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, 2deg);
opacity: 0;
}
to {
transform-origin: right bottom;
transform: none;
opacity: 1;
}
}
.rotateInDownRightShort {
animation-name: rotateInDownRightShort;
}
@keyframes rotateInUpLeftShort {
from {
transform-origin: left bottom;
transform: rotate3d(0, 0, 1, 2deg);
opacity: 0;
}
to {
transform-origin: left bottom;
transform: none;
opacity: 1;
}
}
.rotateInUpLeftShort {
animation-name: rotateInUpLeftShort;
}
@keyframes rotateInUpRightShort {
from {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, -2deg);
opacity: 0;
}
to {
transform-origin: right bottom;
transform: none;
opacity: 1;
}
}
.rotateInUpRightShort {
animation-name: rotateInUpRightShort;
}
.animated {
-webkit-animation-duration: 1s;
-webkit-animation-fill-mode: both;
}
.animated.infinite {
-webkit-animation-iteration-count: infinite;
}
.animated.hinge {
-webkit-animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
-webkit-animation-duration: 0.75s;
}
@-webkit-keyframes bounce {
20%,
53%,
80%,
from,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
-webkit-transform: translate3d(0, 0, 0);
}
40%,
43% {
-webkit-animation-timing-function: cubic-bezier(
0.755,
0.05,
0.855,
0.06
);
-webkit-transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(
0.755,
0.05,
0.855,
0.06
);
-webkit-transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0, -4px, 0);
}
}
.bounce {
-webkit-animation-name: bounce;
-webkit-transform-origin: center bottom;
}
@-webkit-keyframes flash {
50%,
from,
to {
opacity: 1;
}
25%,
75% {
opacity: 0;
}
}
.flash {
-webkit-animation-name: flash;
}
@-webkit-keyframes pulse {
from {
-webkit-transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
}
to {
-webkit-transform: scale3d(1, 1, 1);
}
}
.pulse {
-webkit-animation-name: pulse;
}
@-webkit-keyframes rubberBand {
from {
-webkit-transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(0.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, 0.95, 1);
}
to {
-webkit-transform: scale3d(1, 1, 1);
}
}
.rubberBand {
-webkit-animation-name: rubberBand;
}
@-webkit-keyframes shake {
from,
to {
-webkit-transform: translate3d(0, 0, 0);
}
10%,
30%,
50%,
70%,
90% {
-webkit-transform: translate3d(-10px, 0, 0);
}
20%,
40%,
60%,
80% {
-webkit-transform: translate3d(10px, 0, 0);
}
}
.shake {
-webkit-animation-name: shake;
}
@-webkit-keyframes headShake {
0% {
-webkit-transform: translateX(0);
}
6.5% {
-webkit-transform: translateX(-6px) rotateY(-9deg);
}
18.5% {
-webkit-transform: translateX(5px) rotateY(7deg);
}
31.5% {
-webkit-transform: translateX(-3px) rotateY(-5deg);
}
43.5% {
-webkit-transform: translateX(2px) rotateY(3deg);
}
50% {
-webkit-transform: translateX(0);
}
}
.headShake {
-webkit-animation-timing-function: ease-in-out;
-webkit-animation-name: headShake;
}
@-webkit-keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
}
to {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
}
}
.swing {
-webkit-transform-origin: top center;
-webkit-animation-name: swing;
}
@-webkit-keyframes tada {
from {
-webkit-transform: scale3d(1, 1, 1);
}
10%,
20% {
-webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
}
30%,
50%,
70%,
90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%,
60%,
80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
-webkit-transform: scale3d(1, 1, 1);
}
}
.tada {
-webkit-animation-name: tada;
}
@-webkit-keyframes wobble {
from {
-webkit-transform: none;
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
-webkit-transform: none;
}
}
.wobble {
-webkit-animation-name: wobble;
}
@-webkit-keyframes jello {
11.1%,
from,
to {
-webkit-transform: none;
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
.jello {
-webkit-animation-name: jello;
-webkit-transform-origin: center;
}
@-webkit-keyframes bounceIn {
20%,
40%,
60%,
80%,
from,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(0.97, 0.97, 0.97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
}
}
.bounceIn {
-webkit-animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
60%,
75%,
90%,
from,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
}
to {
-webkit-transform: none;
}
}
.bounceInDown {
-webkit-animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
60%,
75%,
90%,
from,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
}
to {
-webkit-transform: none;
}
}
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
60%,
75%,
90%,
from,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
from {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
}
to {
-webkit-transform: none;
}
}
.bounceInRight {
-webkit-animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
60%,
75%,
90%,
from,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
}
}
.bounceInUp {
-webkit-animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
20% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
}
50%,
55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
}
}
.bounceOut {
-webkit-animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
}
40%,
45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
}
}
.bounceOutDown {
-webkit-animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
}
}
.bounceOutLeft {
-webkit-animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
}
}
.bounceOutRight {
-webkit-animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
}
40%,
45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
}
}
.bounceOutUp {
-webkit-animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fadeIn {
-webkit-animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -40px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -1000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
}
}
.fadeInDownBig {
-webkit-animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-40px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
}
}
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-1000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
}
}
.fadeInLeftBig {
-webkit-animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(60px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(1000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
}
}
.fadeInRightBig {
-webkit-animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 40px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
}
}
.fadeInUp {
-webkit-animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 1000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
}
}
.fadeInUpBig {
-webkit-animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
.fadeOut {
-webkit-animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 60px, 0);
}
}
.fadeOutDown {
-webkit-animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 1000px, 0);
}
}
.fadeOutDownBig {
-webkit-animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-60px, 0, 0);
}
}
.fadeOutLeft {
-webkit-animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-1000px, 0, 0);
}
}
.fadeOutLeftBig {
-webkit-animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(60px, 0, 0);
}
}
.fadeOutRight {
-webkit-animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(1000px, 0, 0);
}
}
.fadeOutRightBig {
-webkit-animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -60px, 0);
}
}
.fadeOutUp {
-webkit-animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -1000px, 0);
}
}
.fadeOutUpBig {
-webkit-animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px)
rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px)
rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
-webkit-animation-timing-function: ease-in;
}
to {
-webkit-transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
}
}
.animated.flip {
-webkit-backface-visibility: visible;
backface-visibility: visible;
-webkit-animation-name: flip;
}
@-webkit-keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
}
}
.flipInX {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInX;
}
@-webkit-keyframes flipInY {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
}
}
.flipInY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
from {
-webkit-transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
.flipOutX {
-webkit-animation-name: flipOutX;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
from {
-webkit-transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
.flipOutY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
from {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
opacity: 1;
}
to {
-webkit-transform: none;
opacity: 1;
}
}
.lightSpeedIn {
-webkit-animation-name: lightSpeedIn;
-webkit-animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
from {
opacity: 1;
}
to {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
.lightSpeedOut {
-webkit-animation-name: lightSpeedOut;
-webkit-animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
from {
-webkit-transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
-webkit-transform-origin: center;
-webkit-transform: none;
opacity: 1;
}
}
.rotateIn {
-webkit-animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
from {
-webkit-transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -10deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
-webkit-transform: none;
opacity: 1;
}
}
.rotateInDownLeft {
-webkit-animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
from {
-webkit-transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 10deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
-webkit-transform: none;
opacity: 1;
}
}
.rotateInDownRight {
-webkit-animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
from {
-webkit-transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 10deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
-webkit-transform: none;
opacity: 1;
}
}
.rotateInUpLeft {
-webkit-animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
from {
-webkit-transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -10deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
-webkit-transform: none;
opacity: 1;
}
}
.rotateInUpRight {
-webkit-animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
from {
-webkit-transform-origin: center;
opacity: 1;
}
to {
-webkit-transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
.rotateOut {
-webkit-animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
from {
-webkit-transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 10deg);
opacity: 0;
}
}
.rotateOutDownLeft {
-webkit-animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
from {
-webkit-transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -10deg);
opacity: 0;
}
}
.rotateOutDownRight {
-webkit-animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
from {
-webkit-transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -10deg);
opacity: 0;
}
}
.rotateOutUpLeft {
-webkit-animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
from {
-webkit-transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 10deg);
opacity: 0;
}
}
.rotateOutUpRight {
-webkit-animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
0% {
-webkit-transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
}
20%,
60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
}
40%,
80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
opacity: 1;
}
to {
-webkit-transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
.hinge {
-webkit-animation-name: hinge;
}
@-webkit-keyframes jackInTheBox {
from {
opacity: 0;
-webkit-transform: scale(0.1) rotate(30deg);
-webkit-transform-origin: center bottom;
}
50% {
-webkit-transform: rotate(-10deg);
}
70% {
-webkit-transform: rotate(3deg);
}
to {
opacity: 1;
-webkit-transform: scale(1);
}
}
.jackInTheBox {
-webkit-animation-name: jackInTheBox;
}
@-webkit-keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
-webkit-transform: none;
}
}
.rollIn {
-webkit-animation-name: rollIn;
}
@-webkit-keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
.rollOut {
-webkit-animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(0.8, 0.8, 0.8);
}
50% {
opacity: 1;
}
}
.zoomIn {
-webkit-animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(
0.55,
0.055,
0.675,
0.19
);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomInDown {
-webkit-animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(
0.55,
0.055,
0.675,
0.19
);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomInLeft {
-webkit-animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(
0.55,
0.055,
0.675,
0.19
);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomInRight {
-webkit-animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(
0.55,
0.055,
0.675,
0.19
);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomInUp {
-webkit-animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(0.8, 0.8, 0.8);
}
to {
opacity: 0;
}
}
.zoomOut {
-webkit-animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(
0.55,
0.055,
0.675,
0.19
);
}
to {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomOutDown {
-webkit-animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
}
}
.zoomOutLeft {
-webkit-animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
}
}
.zoomOutRight {
-webkit-animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(
0.55,
0.055,
0.675,
0.19
);
}
to {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomOutUp {
-webkit-animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
}
}
.slideInDown {
-webkit-animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
}
}
.slideInLeft {
-webkit-animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
}
}
.slideInRight {
-webkit-animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
}
}
.slideInUp {
-webkit-animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
}
}
.slideOutDown {
-webkit-animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
}
}
.slideOutLeft {
-webkit-animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
}
}
.slideOutRight {
-webkit-animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
}
}
.slideOutUp {
-webkit-animation-name: slideOutUp;
}
@-webkit-keyframes fadeInUpShort {
from {
opacity: 0;
-webkit-transform: translate3d(0, 20px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
}
}
.fadeInUpShort {
-webkit-animation-name: fadeInUpShort;
}
@-webkit-keyframes fadeInDownShort {
from {
opacity: 0;
-webkit-transform: translate3d(0, -20px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
}
}
.fadeInDownShort {
-webkit-animation-name: fadeInDownShort;
}
@-webkit-keyframes fadeInLeftShort {
from {
opacity: 0;
-webkit-transform: translate3d(-20px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
}
}
.fadeInLeftShort {
-webkit-animation-name: fadeInLeftShort;
}
@-webkit-keyframes fadeInRightShort {
from {
opacity: 0;
-webkit-transform: translate3d(20px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
}
}
.fadeInRightShort {
-webkit-animation-name: fadeInRightShort;
}
@-webkit-keyframes zoomInShort {
from {
opacity: 0;
-webkit-transform: scale3d(0.97, 0.97, 0.97);
}
50% {
opacity: 1;
}
}
.zoomInShort {
-webkit-animation-name: zoomInShort;
}
@-webkit-keyframes bounceInShort {
20%,
40%,
60%,
80%,
from,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: scale3d(0.97, 0.97, 0.97);
}
20% {
-webkit-transform: scale3d(1.03, 1.03, 1.03);
}
40% {
-webkit-transform: scale3d(0.98, 0.98, 0.98);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.02, 1.02, 1.02);
}
80% {
-webkit-transform: scale3d(0.99, 0.99, 0.99);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
}
}
.bounceInShort {
-webkit-animation-name: bounceInShort;
}
@-webkit-keyframes bounceInDownShort {
60%,
75%,
90%,
from,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -15px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 8px, 0);
}
75% {
-webkit-transform: translate3d(0, -8px, 0);
}
90% {
-webkit-transform: translate3d(0, 4px, 0);
}
to {
-webkit-transform: none;
}
}
.bounceInDownShort {
-webkit-animation-name: bounceInDownShort;
}
@-webkit-keyframes bounceInLeftShort {
60%,
75%,
90%,
from,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-15px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(8px, 0, 0);
}
75% {
-webkit-transform: translate3d(-8px, 0, 0);
}
90% {
-webkit-transform: translate3d(4px, 0, 0);
}
to {
-webkit-transform: none;
}
}
.bounceInLeftShort {
-webkit-animation-name: bounceInLeftShort;
}
@-webkit-keyframes bounceInRightShort {
60%,
75%,
90%,
from,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
from {
opacity: 0;
-webkit-transform: translate3d(15px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-8px, 0, 0);
}
75% {
-webkit-transform: translate3d(8px, 0, 0);
}
90% {
-webkit-transform: translate3d(-4px, 0, 0);
}
to {
-webkit-transform: none;
}
}
.bounceInRightShort {
-webkit-animation-name: bounceInRightShort;
}
@-webkit-keyframes bounceInUpShort {
60%,
75%,
90%,
from,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 15px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -8px, 0);
}
75% {
-webkit-transform: translate3d(0, 8px, 0);
}
90% {
-webkit-transform: translate3d(0, -4px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
}
}
.bounceInUpShort {
-webkit-animation-name: bounceInUpShort;
}
@-webkit-keyframes flipInXShort {
from {
-webkit-transform: perspective(2500px) rotate3d(10, 0, 0, 10deg);
-webkit-animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(2500px) rotate3d(10, 0, 0, -7deg);
-webkit-animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(2500px) rotate3d(10, 0, 0, 5deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(2500px) rotate3d(10, 0, 0, -2deg);
}
to {
-webkit-transform: perspective(2500px);
}
}
.flipInXShort {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInXShort;
}
@-webkit-keyframes flipInYShort {
from {
-webkit-transform: perspective(2500px) rotate3d(0, 1, 0, 10deg);
-webkit-animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(2500px) rotate3d(0, 1, 0, -7deg);
-webkit-animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(2500px) rotate3d(0, 1, 0, 5deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(2500px) rotate3d(0, 1, 0, -2deg);
}
to {
-webkit-transform: perspective(2500px);
}
}
.flipInYShort {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInYShort;
}
@-webkit-keyframes jackInTheBoxShort {
from {
opacity: 0;
-webkit-transform: scale(0.98) rotate(3deg);
-webkit-transform-origin: center bottom;
}
50% {
-webkit-transform: rotate(-2deg);
}
70% {
-webkit-transform: rotate(1deg);
}
to {
opacity: 1;
-webkit-transform: scale(1);
}
}
.jackInTheBoxShort {
-webkit-animation-name: jackInTheBoxShort;
}
@-webkit-keyframes rotateInShort {
from {
-webkit-transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -2deg);
opacity: 0;
}
to {
-webkit-transform-origin: center;
-webkit-transform: none;
opacity: 1;
}
}
.rotateInShort {
-webkit-animation-name: rotateInShort;
}
@-webkit-keyframes rotateInDownLeftShort {
from {
-webkit-transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -2deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
-webkit-transform: none;
opacity: 1;
}
}
.rotateInDownLeftShort {
-webkit-animation-name: rotateInDownLeftShort;
}
@-webkit-keyframes rotateInDownRightShort {
from {
-webkit-transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 2deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
-webkit-transform: none;
opacity: 1;
}
}
.rotateInDownRightShort {
-webkit-animation-name: rotateInDownRightShort;
}
@-webkit-keyframes rotateInUpLeftShort {
from {
-webkit-transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 2deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
-webkit-transform: none;
opacity: 1;
}
}
.rotateInUpLeftShort {
-webkit-animation-name: rotateInUpLeftShort;
}
@-webkit-keyframes rotateInUpRightShort {
from {
-webkit-transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -2deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
-webkit-transform: none;
opacity: 1;
}
}
.rotateInUpRightShort {
-webkit-animation-name: rotateInUpRightShort;
}.fancybox-wrap,.fancybox-skin,.fancybox-outer,.fancybox-inner,.fancybox-image,.fancybox-wrap iframe,.fancybox-wrap object,.fancybox-nav,.fancybox-nav span,.fancybox-tmp{padding:0;margin:0;border:0;outline:0;vertical-align:top}.fancybox-wrap{position:absolute;top:0;left:0;z-index:8020}.fancybox-skin{position:relative;background:#f9f9f9;color:#444;text-shadow:none;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.fancybox-opened{z-index:8030}.fancybox-opened .fancybox-skin{-webkit-box-shadow:0 10px 25px rgba(0,0,0,0.5);-moz-box-shadow:0 10px 25px rgba(0,0,0,0.5);box-shadow:0 10px 25px rgba(0,0,0,0.5)}.fancybox-outer,.fancybox-inner{position:relative}.fancybox-inner{overflow:hidden}.fancybox-type-iframe .fancybox-inner{-webkit-overflow-scrolling:touch}.fancybox-error{color:#444;font:14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;margin:0;padding:15px;white-space:nowrap}.fancybox-image,.fancybox-iframe{display:block;width:100%;height:100%}.fancybox-image{max-width:100%;max-height:100%}#fancybox-loading,.fancybox-close,.fancybox-prev span,.fancybox-next span{background-image:url(//www.systemweld.com/wp-content/plugins/ddpro/build/fancybox/fancybox_sprite.png)}#fancybox-loading{position:fixed;top:50%;left:50%;margin-top:-22px;margin-left:-22px;background-position:0 -108px;opacity:.8;cursor:pointer;z-index:8060}#fancybox-loading div{width:44px;height:44px;background:url(//www.systemweld.com/wp-content/plugins/ddpro/build/fancybox/fancybox_loading.gif) center center no-repeat}.fancybox-close{position:absolute;top:-18px;right:-18px;width:36px;height:36px;cursor:pointer;z-index:8040}.fancybox-nav{position:absolute;top:0;width:40%;height:100%;cursor:pointer;text-decoration:none;background:transparent url(//www.systemweld.com/wp-content/plugins/ddpro/build/fancybox/blank.gif);-webkit-tap-highlight-color:rgba(0,0,0,0);z-index:8040}.fancybox-prev{left:0}.fancybox-next{right:0}.fancybox-nav span{position:absolute;top:50%;width:36px;height:34px;margin-top:-18px;cursor:pointer;z-index:8040;visibility:hidden}.fancybox-prev span{left:10px;background-position:0 -36px}.fancybox-next span{right:10px;background-position:0 -72px}.fancybox-nav:hover span{visibility:visible}.fancybox-tmp{position:absolute;top:-99999px;left:-99999px;visibility:hidden;max-width:99999px;max-height:99999px;overflow:visible !important}.fancybox-lock{overflow:hidden !important;width:auto}.fancybox-lock body{overflow:hidden !important}.fancybox-lock-test{overflow-y:hidden !important}.fancybox-overlay{position:absolute;top:0;left:0;overflow:hidden;display:none;z-index:8010;background:url(//www.systemweld.com/wp-content/plugins/ddpro/build/fancybox/fancybox_overlay.png)}.fancybox-overlay-fixed{position:fixed;bottom:0;right:0}.fancybox-lock .fancybox-overlay{overflow:auto;overflow-y:scroll}.fancybox-title{visibility:hidden;font:normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;position:relative;text-shadow:none;z-index:8050}.fancybox-opened .fancybox-title{visibility:visible}.fancybox-title-float-wrap{position:absolute;bottom:0;right:50%;margin-bottom:-35px;z-index:8050;text-align:center}.fancybox-title-float-wrap .child{display:inline-block;margin-right:-100%;padding:2px 20px;background:transparent;background:rgba(0,0,0,0.8);-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;text-shadow:0 1px 2px #222;color:#FFF;font-weight:bold;line-height:24px;white-space:nowrap}.fancybox-title-outside-wrap{position:relative;margin-top:10px;color:#fff}.fancybox-title-inside-wrap{padding-top:10px}.fancybox-title-over-wrap{position:absolute;bottom:0;left:0;color:#fff;padding:10px;background:#000;background:rgba(0,0,0,.8)}.buttons .et_pb_button_module_wrapper{text-align:center !important}#page-container #main-content a.super_size_button:hover{background:#fff;color:#bdbdbd !important}#page-container #main-content a.super_size_button:after,#page-container #main-content a.super_size_button:before{content:'';display:block !important;position:absolute;top:0;right:0;height:2px;width:0;background:#bdbdbd;transition:.4s ease all;opacity:1 !important}.button_large_size:after,.button_large_size:before{content:"";margin:0;opacity:1 !important;display:block !important}#page-container #main-content a.super_size_button:after{right:inherit;top:inherit;left:0;bottom:0}#page-container #main-content a.super_size_button:hover:after,#page-container #main-content a.super_size_button:hover:before{width:100%;transition:.8s ease all !important}.button_large_size:before{position:absolute;top:1px;right:1px;background:#fff;transition:.4s ease all;left:1px;bottom:1px;z-index:-1}.button_large_size:after{top:0;right:0;background:#242d2e;left:0;bottom:0;z-index:-2}#page-container .button_large_size:after{-webkit-transition:all .3s ease-in-out !important;-moz-transition:all .3s ease-in-out !important;transition:all .3s !important}.button_base_size:after,.button_round:after,.button_round:before{-webkit-transition:all .3s;-moz-transition:all .3s;-o-transition:all .3s;position:absolute}body:not(.safari) .button_large_size:hover:after{transform:rotate(90deg)}body.safari .button_large_size:after{width:100% !important;margin:auto}body.safari .button_large_size:hover:after{width:40% !important;margin:auto !important}.button_base_size:after{height:100%;left:-35%;top:0;transform-origin:top left;width:0;background:#fff;content:'';z-index:-1;transform:skew(50deg)}#page-container .button_base_size:after{transition:all .3s !important}.button_base_size:hover:after{width:135%;opacity:1 !important;transform:none}@media only screen and (max-width:480px){#page-container .et_pb_button_module_wrapper .button_M.et_pb_button{padding:10px 20px !important}.button_base_size:hover:after{width:145%}.button_base_size:after{left:-43% !important}}.button_small_size:after{background:#eee;content:"";height:155px;left:-75px;opacity:.2;position:absolute;top:-50px;-webkit-transform:rotate(35deg);transform:rotate(35deg);-webkit-transition:all 550ms cubic-bezier(.19,1,.22,1);transition:all 550ms cubic-bezier(.19,1,.22,1);width:50px;z-index:-10}.botton_circle:after,.button_small_size:hover:after{-webkit-transition:all 550ms cubic-bezier(.19,1,.22,1)}.button_small_size:hover:after{left:120%;opacity:1 !important}#page-container .button_small_size:hover:after{transition:all 550ms cubic-bezier(.19,1,.22,1) !important}#page-container #main-content a.default_button_module:hover{background:#fff;color:#bdbdbd !important}#page-container #main-content a.default_button_module:after,#page-container #main-content a.default_button_module:before{content:'';display:block !important;position:absolute;top:0;right:0;height:2px;width:0;background:#bdbdbd;transition:.4s ease all;opacity:1 !important}#page-container #main-content a.default_button_module:after{right:inherit;top:inherit;left:0;bottom:0}#page-container #main-content a.default_button_module:hover:after,#page-container #main-content a.default_button_module:hover:before{width:100%;transition:.8s ease all !important}@media only screen and (max-width:1390px){#page-container #main-content a.default_button_module,#page-container #main-content a.super_size_button{letter-spacing:2.4px !important}}#page-container #main-content .button_round:hover{border-color:transparent !important;color:#512da8 !important}.button_round:after,.button_round:before{content:'';display:block !important;border-style:solid;z-index:5;border-radius:5px;box-sizing:content-box}#page-container .button_round:after{transition:all .3s !important}.button_round:after{width:100%;height:0;border-width:0;bottom:0;left:0;margin-left:0 !important;display:block !important;box-shadow:inset -1px 0 0 #512da8,inset 1px 0 0 #512da8}.button_round:before{width:0;height:100%;border-width:0;top:0;right:0;-webkit-transition-delay:50ms;transition-delay:50ms;box-shadow:inset 0 -1px 0 #512da8,inset 0 1px 0 #512da8}.button_round:hover:before{width:100%}.button_round:hover:after{height:100%}.button_round:hover:after,.button_round:hover:before{opacity:1 !important}.button_square:after{height:100%;right:0;top:0;transform:skew(50deg);transform-origin:top left;width:0;background:#fff;content:'';position:absolute;z-index:-1}#page-container .button_square:after{-webkit-transition:all .3s !important;-moz-transition:all .3s !important;-o-transition:all .3s !important;transition:all .3s !important}.button_square:hover:after{width:140%;opacity:1 !important;transform:none !important}@media only screen and (max-width:480px){#page-container .et_pb_button_module_wrapper .button_M.et_pb_button{padding:10px 20px !important}.button_square:hover:after{width:150%}}.botton_circle:after{background:#eee;display:block !important;content:"";height:155px;right:-75px;opacity:.2;position:absolute;top:-50px;-webkit-transform:rotate(35deg);transform:rotate(35deg);transition:all 550ms cubic-bezier(.19,1,.22,1);width:50px;z-index:-10}.botton_circle:hover:after{right:120%;opacity:1 !important}#page-container .botton_circle:hover:after{-webkit-transition:all 550ms cubic-bezier(.19,1,.22,1) !important;transition:all 550ms cubic-bezier(.19,1,.22,1) !important}.button_color:after,.button_gradient_bg:after{content:"";display:block !important;background-color:#fff !important;margin:0 !important}#page-container .button_color:after,#page-container .button_gradient_bg:after{-webkit-transition:all .3s !important;-moz-transition:all .3s !important;-o-transition:all .3s !important}.button_color:after{width:100%;height:100%;position:absolute;top:0;left:0;opacity:1 !important;transform:scale(0);transition:all .3s;z-index:-1}.button_gradient_bg:after,.button_gradient_border:after,.solid_unique_button:before{position:absolute;top:1px;right:1px;left:1px;bottom:1px;z-index:-1}.button_color:hover:after{transform:scale(1)}.button_gradient_bg:after{opacity:0 !important;transform:rotate(180deg) scale(2);transition:all .3s}.button_gradient_bg:hover:after{transform:none;opacity:1 !important}.button_gradient_border:after{content:"";display:block !important;background-color:#fff !important;opacity:1 !important;margin:0 !important}#page-container .button_gradient_border:after{-webkit-transition:all .3s !important;-moz-transition:all .3s !important;-o-transition:all .3s !important;transition:all .3s !important}.button_gradient_border:hover:after{transform:rotate(-180deg) scale(2);opacity:0 !important}.solid_unique_button:after,.solid_unique_button:before{content:"";display:block !important;opacity:1 !important;margin:0}.solid_unique_button:before{background:#fff;transition:.4s ease all}.solid_unique_button:after{top:0;right:0;background:#242d2e;left:0;bottom:0;z-index:-2}#page-container .solid_unique_button:after{-webkit-transition:all .3s ease-in-out !important;-moz-transition:all .3s ease-in-out !important;transition:all .3s !important}body:not(.safari) .solid_unique_button:hover:after{transform:rotate(90deg)}body.safari .solid_unique_button:after{width:100% !important;margin:auto}body.safari .solid_unique_button:hover:after{width:40% !important;margin:auto !important}.button_unique_wrapper{display:table;margin:0 auto;position:relative;z-index:8}.button_unique:after,.button_unique:before,.button_unique_wrapper:after,.button_unique_wrapper:before{content:"";display:block !important;position:absolute;opacity:1 !important;height:100%;margin:auto !important;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out}.button_unique_wrapper:before{border-top:1px solid #242d2e;top:0;right:0}.button_unique_wrapper:after{border-bottom:1px solid #242d2e;bottom:0;left:0}.button_unique_wrapper:after,.button_unique_wrapper:before{z-index:0;width:30%;transition:all .3s;-webkit-transition-delay:50ms;transition-delay:50ms}.button_unique_wrapper:hover:before{right:50%;transform:translate(50%,0)}.button_unique_wrapper:hover:after{left:50%;transform:translate(-50%,0)}.button_unique:before{border-left:1px solid #242d2e;border-top:1px solid #242d2e;top:0;left:0}.button_unique:after{border-right:1px solid #242d2e;border-bottom:1px solid #242d2e;bottom:0;right:0}.button_unique:after,.button_unique:before{z-index:-1;width:60%;transition:all .3s}#page-container .button_unique:after{transition:all .3s !important}.button_unique:hover:after,.button_unique:hover:before{width:0 !important;height:0 !important;opacity:0 !important}.button_unique{display:block !important}.unique_left_and_right_borders:after,.unique_left_and_right_borders:before,.unique_top_and_bottom_borders:after,.unique_top_and_bottom_borders:before,.unique_with_borders:after,.unique_with_borders:before{content:"";display:block !important;position:absolute;opacity:1 !important;z-index:-1;margin:auto !important}.unique_top_and_bottom_borders:before{box-shadow:inset 0 -1px 0 #242d2e,inset 0 1px 0 #242d2e}.unique_top_and_bottom_borders:after,.unique_top_and_bottom_borders:before{top:0;right:0;height:100%;width:100%;bottom:0;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;transition:all .3s}#page-container .unique_top_and_bottom_borders:after{-webkit-transition:all .3s ease-in-out !important;-moz-transition:all .3s ease-in-out !important;transition:all .3s !important}.unique_top_and_bottom_borders:hover:before{height:0 !important}#page-container .unique_top_and_bottom_borders:hover:after{height:100% !important;transition-delay:.3s !important}.unique_top_and_bottom_borders:after{height:0 !important;background-color:#242d2e}.unique_left_and_right_borders:before{box-shadow:inset -1px 0 0 #242d2e,inset 1px 0 0 #242d2e}.unique_left_and_right_borders:after,.unique_left_and_right_borders:before{top:0;right:0;width:100%;height:100%;left:0;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;transition:all .3s}#page-container .unique_left_and_right_borders:after{-webkit-transition:all .3s ease-in-out !important;-moz-transition:all .3s ease-in-out !important;transition:all .3s !important}.unique_left_and_right_borders:hover:before{width:0 !important}#page-container .unique_left_and_right_borders:hover:after{width:100% !important;transition-delay:.3s !important}.unique_left_and_right_borders:after{width:0 !important;background-color:#242d2e}.unique_with_borders:before{border-left:1px solid #242d2e;border-bottom:1px solid #242d2e;bottom:0;left:0}.unique_with_borders:after{border-right:1px solid #242d2e;border-top:1px solid #242d2e;top:0;right:0}.unique_with_borders:after,.unique_with_borders:before{width:50%;height:50%;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;transition:all .3s}#page-container .unique_with_borders:after{-webkit-transition:all .3s ease-in-out !important;-moz-transition:all .3s ease-in-out !important;transition:all .3s !important}.unique_with_borders:hover:after,.unique_with_borders:hover:before{width:100% !important;height:100% !important}@media only screen and (max-width:980px){#page-container .buttons .et_pb_button_module_wrapper .button_M.et_pb_button{padding:10px 18px !important}}@media only screen and (max-width:767px){#page-container #main-content a.unique_with_borders,#page-container #main-content a.unique_left_and_right_borders,#page-container #main-content a.unique_top_and_bottom_borders,#page-container #main-content a.button_unique,#page-container #main-content a.solid_unique_button,#page-container #main-content a.button_gradient_border,#page-container #main-content a.button_gradient_bg,#page-container #main-content a.button_color,#page-container #main-content a.botton_circle,#page-container #main-content a.button_square,#page-container #main-content a.button_round,#page-container #main-content a.default_button_module,#page-container #main-content a.button_small_size,#page-container #main-content a.button_base_size,#page-container #main-content a.button_large_size,#page-container #main-content a.super_size_button{padding:7px 15px !important}}@media only screen and (max-width:480px){#page-container .et_pb_button_module_wrapper .button_M.et_pb_button{padding:10px 20px !important}#page-container #main-content a.unique_with_borders,#page-container #main-content a.unique_left_and_right_borders,#page-container #main-content a.unique_top_and_bottom_borders,#page-container #main-content a.button_unique,#page-container #main-content a.solid_unique_button,#page-container #main-content a.button_gradient_border,#page-container #main-content a.button_gradient_bg,#page-container #main-content a.button_color,#page-container #main-content a.botton_circle,#page-container #main-content a.button_square,#page-container #main-content a.button_round,#page-container #main-content a.default_button_module,#page-container #main-content a.button_small_size,#page-container #main-content a.button_base_size,#page-container #main-content a.button_large_size,#page-container #main-content a.super_size_button{padding:10px 19px !important}}.header_2_f .et_pb_promo .et_pb_promo_description .et_pb_module_header:after{content:"";display:block}.header_2_f .lines .bottom_line{bottom:0}.header_2_f .lines .bottom_line_1{width:0;right:0}.header_2_f .lines .bottom_line_2{width:0;right:96%}.header_2_f .lines .top_line{width:0}.header_2_f .lines .right_line{right:0}.header_2_f .lines .left_line{bottom:0}.header_2_f .lines .left_line,.header_2_f .lines .right_line{height:0}.header_2_f .lines .line{position:absolute !important}.header_2_f.view_port .lines .line{-moz-transition:all .5s ease-out;-o-transition:all .5s ease-out;-webkit-transition:all .5s ease-out;transition:all .5s ease-out;-ms-transition:all .5s ease-out}.header_2_f.view_port .lines .bottom_line_2{transition-delay:0s;-moz-transition-delay:0s;-webkit-transition-delay:0s;-ms-transition-delay:0s}.header_2_f.view_port .lines .left_line{transition-delay:.5s;-moz-transition-delay:.5s;-webkit-transition-delay:.5s;-ms-transition-delay:.5s}.header_2_f.view_port .lines .top_line{transition-delay:1s;-moz-transition-delay:1s;-webkit-transition-delay:1s;-ms-transition-delay:1s}.header_2_f.view_port .lines .right_line{transition-delay:1.5s;-moz-transition-delay:1.5s;-webkit-transition-delay:1.5s;-ms-transition-delay:1.5s}.header_2_f .lines .bottom_line_1{animation:none !important;margin-bottom:0 !important}.header_2_f.view_port .lines .bottom_line_1{transition-delay:2s;-moz-transition-delay:2s;-webkit-transition-delay:2s;-ms-transition-delay:2s}.header_2_f.view_port .lines .left_line,.header_2_f.view_port .lines .right_line{height:100%}.header_2_f.view_port .lines .top_line{width:100%}.header_2_f.view_port .lines .bottom_line_2{width:4%}.header_2_f.view_port .lines .bottom_line_1{max-width:calc(100% - 610px);width:100%}@media only screen and (max-width:1390px){.header_2_f.view_port .lines .bottom_line_1{max-width:calc(100% - 590px)}}@media only screen and (max-width:980px){.header_2_f.view_port .lines .bottom_line_1{max-width:calc(100% - 540px)}}@media only screen and (max-width:767px){.header_2_f .et_pb_promo_description .et_pb_module_header{max-width:none !important}.header_2_f .et_pb_promo_description{text-align:center;margin-top:-17px !important}.header_2_f.view_port .lines .et_pb_column{height:200px}.header_2_f.view_port .lines .bottom_line_1{width:4%;max-width:none !important}}@media only screen and (max-width:480px){.header_2_f.view_port .lines .et_pb_column{height:150px}}.header_3_f .et_pb_promo_description .et_pb_module_header:before{content:"";opacity:1;height:2px;width:17px;display:inline-block;background-color:#0d80ff;vertical-align:middle;margin-right:11px}.header_3_f .lines .bottom_line{bottom:0}.header_3_f .lines .top_line{top:0}.header_3_f .lines .bottom_line,.header_3_f .lines .top_line{width:0;left:0}.header_3_f .lines .right_line_2{bottom:0}.header_3_f .lines .right_line_1{top:0}.header_3_f .lines .right_line{right:0}.header_3_f .lines .left_line{top:50%;transform:translate(0,-50%);left:0}.header_3_f .lines .left_line,.header_3_f .lines .right_line{height:0}.header_3_f .lines .line{position:absolute !important}.header_3_f.view_port .lines .line{-moz-transition:all .5s ease-out;-o-transition:all .5s ease-out;-webkit-transition:all .5s ease-out;transition:all .5s ease-out;-ms-transition:all .5s ease-out}.header_3_f.view_port .lines .left_line{transition-delay:0s;-moz-transition-delay:0s;-webkit-transition-delay:0s;-ms-transition-delay:0s}.header_3_f.view_port .lines .top_line,.header_3_f.view_port .lines .bottom_line{transition-delay:.5s;-moz-transition-delay:.5s;-webkit-transition-delay:.5s;-ms-transition-delay:.5s}.header_3_f.view_port .lines .right_line{transition-delay:1s;-moz-transition-delay:1s;-webkit-transition-delay:1s;-ms-transition-delay:1s}.header_3_f.view_port .lines .left_line{height:100%}.header_3_f.view_port .lines .right_line{height:15%}.header_3_f.view_port .lines .top_line{width:100%}.header_3_f.view_port .lines .bottom_line{width:100%}@media only screen and (max-width:1390px) and (min-width:981px){.header_3_f .et_pb_promo_description p{font-size:5vw}}@media only screen and (max-width:767px){.header_3_f .lines .et_pb_column{max-width:365px}}@media only screen and (max-width:480px){.header_3_f .lines{width:90% !important}.header_3_f .et_pb_promo_description .et_pb_module_header:before{display:none !important}}.header_4_f .et_pb_row .et_pb_column{margin:0 auto !important}.header_4_f .lines .top_line{top:0;width:0}.header_4_f .lines .top_line_right{right:0}.header_4_f .lines .right_line,.header_4_f .lines .left_line{top:0;height:0}.header_4_f .lines .right_line{right:0}.header_4_f .lines .line{position:absolute !important}.header_4_f.view_port .lines .line{-moz-transition:all .5s ease-out;-o-transition:all .5s ease-out;-webkit-transition:all .5s ease-out;transition:all .5s ease-out;-ms-transition:all .5s ease-out;transition-delay:.5s;-moz-transition-delay:.5s;-webkit-transition-delay:.5s;-ms-transition-delay:.5s}.header_4_f.view_port .lines .left_line,.header_4_f.view_port .lines .right_line{height:17px}.header_4_f.view_port .lines .top_line{width:17px}.header_4_f .et_pb_promo a.et_pb_promo_button:after{display:none !important}.header_4_f .et_pb_promo a.et_pb_promo_button:before{display:block;content:"";background-color:#fff !important;position:absolute;width:100%;height:100%;top:0;left:0;transform:scale(0);opacity:1;z-index:-1;transition:.3s;margin-left:0}.header_4_f .et_pb_promo a.et_pb_promo_button:hover:before{transform:scale(1)}.header_5_f .et_pb_slider .et_pb_slide .et_pb_slide_content{padding:19px 0 0 38px;max-width:621px}.header_5_f .et_pb_slider .et_pb_slide .et_pb_slide_description strong:before{content:"";opacity:1;height:2px;width:17px;display:inline-block;background-color:#0d80ff;vertical-align:middle;margin-right:11px}.header_5_f .et_pb_slider .et_pb_slide .et_pb_slide_description strong{text-transform:uppercase}.header_5_f .et_pb_slider .et_pb_slide .et_pb_slide_description p:last-child{padding-bottom:0 !important;letter-spacing:.2px}.header_5_f .et_pb_slider .et_pb_slide .et_pb_slide_description strong,.header_5_f .et_pb_slider .et_pb_slide .et_pb_slide_description p{font-weight:300 !important;font-size:16px;padding-bottom:20px;display:block}.header_5_f .et_pb_slider .et_pb_slide{box-shadow:none !important}.header_5_f .et_pb_container{height:auto !important}.header_5_f .et_pb_slider .et-pb-slider-arrows a:hover{color:#fff !important}.header_5_f .et_pb_slider .et-pb-slider-arrows a.et-pb-arrow-prev{left:2vw !important}.header_5_f .et_pb_slider .et-pb-slider-arrows a.et-pb-arrow-next{right:2vw !important}.header_5_f .et_pb_slider .et-pb-slider-arrows a.et-pb-arrow-prev:before{content:"#"}.header_5_f .et_pb_slider .et-pb-slider-arrows a.et-pb-arrow-next:before{content:"$"}.header_5_f .et_pb_slider .et_pb_slide .et_pb_slide_description{position:relative;margin:25vw 0 15vw;display:block;padding:0 !important}.header_5_f .et_pb_slider .et_pb_slide .et_pb_slide_description h2{border-left:4px solid}.header_5_f .et_pb_slider .et_pb_slide .et_pb_slide_description h2:before,.header_5_f .et_pb_slider .et_pb_slide .et_pb_slide_description h2:after{content:"";display:block;position:absolute;width:0;height:0;border-right:4px solid;left:-4px}.header_5_f .et_pb_slider .et_pb_slide .et_pb_slide_description h2:before{border-top:4px solid;top:0}.header_5_f .et_pb_slider .et_pb_slide .et_pb_slide_description h2:after{border-bottom:4px solid;bottom:0}.header_5_f.view_port .et_pb_slider .et_pb_slide .et_pb_slide_description h2:after,.header_5_f.view_port .et_pb_slider .et_pb_slide .et_pb_slide_description h2:before{-webkit-animation:lineAnimateS 5s infinite;animation:lineAnimateS 1s infinite;animation-iteration-count:1;-webkit-animation-delay:.8s;animation-delay:.8s}.header_5_f.view_port .et_pb_slider .et_pb_slide .et_pb_slide_description h2:after,.header_5_f.view_port .et_pb_slider .et_pb_slide .et_pb_slide_description h2:before{transition-delay:.8s;-moz-transition-delay:.8s;-webkit-transition-delay:.8s;-ms-transition-delay:.8s;width:135px;height:20px}@keyframes lineAnimateS{0%{width:0;height:0}80%{width:135px;height:0}100%{height:20px;width:135px}}@media only screen and (min-width:1930px){.header_3_f .et_pb_column_1_2:first-child{padding:130px 50px 40px !important}}@media only screen and (max-width:1390px) and (min-width:981px){.header_5_f .et_pb_slider .et_pb_slide{padding:0 10%}}@media only screen and (max-width:980px){.header_5_f .et_pb_slider .et_pb_slide .et_pb_slide_description{margin:100px 0 !important}.header_5_f .et_pb_slider .et_pb_slide{padding:0 13%}}@media only screen and (max-width:767px){.header_5_f .et_pb_slider .et-pb-slider-arrows a{display:none !important}.header_5_f .et_pb_slider .et_pb_slide{padding:0 6%}}@media only screen and (max-width:480px){.header_5_f .et_pb_slider .et_pb_slide .et_pb_slide_description p strong:before{display:none !important}.header_5_f .et_pb_slider .et_pb_slide .et_pb_slide_description{margin:80px 0 !important}.header_5_f .et_pb_slider .et_pb_slide .et_pb_slide_description h2{padding-left:15px}.header_5_f .et_pb_slider .et_pb_slide .et_pb_slide_content{padding:19px 0 0 18px}}.header_6_f .lines .line{height:0;right:0;left:0;margin:auto !important}.header_6_f.view_port .lines .line{height:100%;-moz-transition:all .5s ease-out;-o-transition:all .5s ease-out;-webkit-transition:all .5s ease-out;transition:all .5s ease-out;-ms-transition:all .5s ease-out;transition-delay:.7s;-moz-transition-delay:.7s;-webkit-transition-delay:.7s;-ms-transition-delay:.7s}#page-container #main-content .header_6_f a.et_pb_button:hover:before,#page-container #main-content .header_6_f a.et_pb_button:hover:after{width:100%;transition:800ms ease all}@media only screen and (max-width:480px){.header_6_f .et_pb_row a.et_pb_button{padding:14px 30px !important}}.header_7_f .et_pb_promo_description .et_pb_module_header:before,.header_7_f .et_pb_promo_description .et_pb_module_header:after{content:"";display:block;position:absolute;right:0;left:0;margin:auto;border-right:4px solid;border-left:4px solid;height:30px;width:100%;max-width:calc(100% - 8px)}.header_7_f .et_pb_promo_description .et_pb_module_header:before{border-top:4px solid;top:0}.header_7_f .et_pb_promo_description .et_pb_module_header:after{border-bottom:4px solid;bottom:0}.header_7_f.view_port .et_pb_promo_description .et_pb_module_header:after,.header_7_f.view_port .et_pb_promo_description .et_pb_module_header:before{-webkit-animation:lineAnimate 1.3s infinite;animation:lineAnimate 1.3s infinite;animation-iteration-count:1}@keyframes lineAnimate{0%{width:0;height:0}80%{max-width:calc(100% - 8px);width:100%;height:0}100%{height:30px;max-width:calc(100% - 8px);width:100%}}.header_7_f a.et_pb_button:after{content:'';display:block !important;position:absolute;right:inherit;top:inherit;left:0;bottom:0;height:2px;width:0;background:#fff;transition:400ms ease all;opacity:1 !important;margin:0}.header_7_f a.et_pb_button:before{content:'';display:block !important;position:absolute;top:0;right:0;height:2px;width:0;background:#fff;transition:400ms ease all;opacity:1 !important}.header_7_f a.et_pb_button:hover:after,.header_7_f a.et_pb_button:hover:before{width:100%;transition:800ms ease all}body.safari .header_7_f .et_pb_button_wrapper .et_pb_button{display:table !important;margin-left:auto !important;margin-right:auto !important}@media only screen and (max-width:767px){.header_7_f .et_pb_promo .et_pb_promo_description .et_pb_module_header{padding:19px 20px !important}}.header_8_f .et_pb_promo_description .et_pb_module_header:before,.header_8_f .et_pb_promo_description .et_pb_module_header:after{content:"";display:block;position:absolute;right:0;left:0;margin:auto;border-right:4px solid;border-left:4px solid;height:20px;width:133px}.header_8_f .et_pb_promo_description .et_pb_module_header:before{border-top:4px solid;top:0}.header_8_f .et_pb_promo_description .et_pb_module_header:after{border-bottom:4px solid;bottom:0}.header_8_f.view_port .et_pb_promo_description .et_pb_module_header:after,.header_8_f.view_port .et_pb_promo_description .et_pb_module_header:before{-webkit-animation:lineAnimate8 1.3s infinite;animation:lineAnimate8 1.3s infinite;animation-iteration-count:1}@keyframes lineAnimate8{0%{width:0;height:0}80%{width:133px;height:0}100%{height:20px;width:133px}}@media only screen and (max-width:980px){.header_8_f .et_pb_promo_description{padding-bottom:0 !important}}.person_1_f .et_pb_team_member:hover p.et_pb_member_position{transition-delay:.5s}.person_1_f .et_pb_team_member:hover .et_pb_member_social_links{transition-delay:.7s}.person_1_f p.et_pb_member_position,.person_1_f .et_pb_member_social_links{transform:translate(0,150px);transition:all .3s ease-out}.person_1_f .et_pb_team_member:hover p.et_pb_member_position,.person_1_f .et_pb_team_member:hover .et_pb_member_social_links{transform:translate(0,0)}.person_1_f .et_pb_team_member:hover .et_pb_team_member_description{transition-delay:.2s;transform:translate(0,0)}.person_1_f .et_pb_team_member:hover:before{opacity:.8}.person_1_f .et_pb_team_member_image{max-width:100% !important}.person_1_f .et_pb_team_member_image img{display:block !important;width:100% !important}.person_1_f .et_pb_member_social_links a:hover{opacity:.5}.person_1_f .et_pb_member_social_links a{font-size:16px}.person_1_f .et_pb_row>.et_pb_column_1_4{width:43.6% !important}.person_1_f .et_pb_row>.et_pb_column_3_4{width:56.4% !important}.person_1_f .et_pb_row .et_pb_column_1_3:nth-child(3n+3){margin-right:0 !important}.person_1_f .et_pb_row .et_pb_column_1_3{width:31% !important;margin-right:3.5% !important}.person_2_f .et_pb_team_member:last-child{margin-bottom:0 !important}.person_2_f .et_pb_team_member{margin-bottom:42px !important;overflow:hidden !important}.person_2_f .et_pb_team_member .et_pb_team_member_image{margin-bottom:0 !important;width:100%;max-width:100% !important}.person_2_f .et_pb_team_member .et_pb_team_member_image img{transition:.3s !important;transform:translate(0,0) scale(1);display:block;width:100%}.person_2_f .et_pb_team_member:hover .et_pb_team_member_image img{transform:translate(0,-37px) scale(1.02)}.person_2_f .et_pb_team_member .et_pb_team_member_description .et_pb_member_position:after{content:"";display:block;border-top:4px solid #0080ff;width:0;transition:.3s;margin:20px 0 9px}.person_2_f .et_pb_team_member:hover .et_pb_team_member_description .et_pb_member_position:after{transition-delay:.8s !important;width:97px}.person_2_f .et_pb_team_member .et_pb_team_member_description p:not(.et_pb_member_position){transform:translate(0,90px);opacity:0;transition:.3s}.person_2_f .et_pb_team_member:hover .et_pb_team_member_description{transform:translate(0,0)}.person_2_f .et_pb_team_member:hover .et_pb_team_member_description h4{transition-delay:.3s !important}.person_2_f .et_pb_team_member:hover .et_pb_team_member_description p.et_pb_member_position{transition-delay:.5s !important}.person_2_f .et_pb_team_member:hover .et_pb_team_member_description p:not(.et_pb_member_position){transition-delay:.7s !important}.person_2_f .et_pb_team_member:hover .et_pb_team_member_description h4,.person_2_f .et_pb_team_member:hover .et_pb_team_member_description p.et_pb_member_position,.person_2_f .et_pb_team_member:hover .et_pb_team_member_description p:not(.et_pb_member_position){transform:translate(0,0);opacity:1}.person_2_f .et_pb_team_member:hover:before{transition-delay:.8s !important;width:100%}.person_3_f .et_pb_team_member{overflow:hidden !important;clear:none}.person_3_f .et_pb_team_member_image img{width:100% !important}.person_3_f .et_pb_team_member_image{width:100% !important;max-width:100% !important}.person_3_f .et_pb_team_member_image,.person_3_f .et_pb_team_member{transition:.3s !important}.person_3_f .et_pb_team_member:hover .et_pb_team_member_image{transform:translate(0,-40px)}.person_3_f .et_pb_team_member:hover{transform:scale(1.1);z-index:99}.person_3_f .et_pb_team_member:hover .et_pb_team_member_description .et_pb_member_position{transition-delay:.2s}.person_3_f .et_pb_team_member:hover .et_pb_team_member_description h4{transition-delay:.4s}.person_3_f .et_pb_team_member:hover .et_pb_team_member_description .et_pb_member_position,.person_3_f .et_pb_team_member:hover .et_pb_team_member_description h4{transform:translate(0,0) !important;opacity:1}.person_3_f .et_pb_team_member .et_pb_team_member_description p:not(.et_pb_member_position){display:none !important}.person_3_f .et_pb_team_member:hover .et_pb_team_member_description{transform:translate(0,0) !important}.person_3_f .et_pb_team_member:hover .et_pb_team_member_description:before{transition-delay:.5s !important;height:97px}.person_3_f .et_pb_team_member .et_pb_team_member_description:before{content:"";display:block;position:absolute;border-left:4px solid;height:0;right:2.5vw;top:-52px;transition:.3s}.person_4_f .et_pb_team_member .et_pb_team_member_image{margin-bottom:0 !important;overflow:hidden;max-width:100% !important}.person_4_f .et_pb_team_member .et_pb_team_member_image img{transition:.3s !important;transform:translate(0,-20px) scale(1.02);display:block;width:100%}.person_4_f .et_pb_team_member:hover .et_pb_team_member_image img{transform:translate(0,0) scale(1)}.person_4_f .et_pb_team_member .et_pb_team_member_description:before{content:"";display:block;position:absolute;width:100%;height:100%;top:0;left:0;background-color:#fff;transition:.3s}.person_4_f .et_pb_team_member:hover .et_pb_team_member_description:before{transform:translate(0,105%)}.person_4_f .et_pb_team_member:hover .et_pb_team_member_description h4,.person_4_f .et_pb_team_member:hover .et_pb_team_member_description p.et_pb_member_position{color:#fff !important}.person_4_f .et_pb_team_member:hover:after,.person_4_f .et_pb_team_member:hover:before{transition-delay:.3s !important;width:100%}.person_4_f .et_pb_team_member .et_pb_team_member_description p:not(.et_pb_member_position){display:none !important}@media only screen and (min-width:1930px){.person_1_f .et_pb_row{padding:50px !important}.person_1_f .et_pb_team_member .et_pb_team_member_description{padding-bottom:50px !important}.person_1_f .et_pb_team_member .et_pb_member_position{padding-bottom:25px !important}.person_2_f .et_pb_team_member .et_pb_team_member_description{padding:55px !important}.person_3_f .et_pb_team_member .et_pb_team_member_description{padding:70px !important}.person_3_f .et_pb_team_member .et_pb_team_member_description:before{right:70px !important}}@media only screen and (max-width:1390px){#page-container .person_1_f .et_pb_space{margin-top:0 !important}#page-container .person_1_f .et_pb_team_member_description .et_pb_member_position{font-size:16px}#page-container .person_1_f .et_pb_member_social_links{margin-top:3px !important}#page-container .person_1_f .et_pb_team_member_description h4{font-size:18px !important}#page-container .person_1_f .et_pb_team_member_description{padding:0 15px 2vw !important}#page-container .person_1_f .et_pb_promo_description h2{font-size:30px !important;padding-bottom:20px}.person_1_f .et_pb_team_member p.et_pb_member_position{padding-bottom:0 !important}.person_3_f .et_pb_team_member .et_pb_team_member_description h4{font-size:18px !important}.person_3_f .et_pb_team_member .et_pb_team_member_description:before{right:20px !important}.person_3_f .et_pb_team_member .et_pb_team_member_description{padding:20px !important}.person_3_f .et_pb_team_member .et_pb_team_member_description:before{top:-80px}}@media only screen and (max-width:980px){#page-container .person_1_f .et_pb_row{width:90% !important;padding:20px}.person_1_f .et_pb_row .et_pb_column_1_3{margin-bottom:0 !important}.person_1_f .et_pb_row .et_pb_promo_description{padding-bottom:0 !important;text-align:center !important}.person_1_f .et_pb_team_member p.et_pb_member_position{padding-bottom:0 !important}.person_2_f .et_pb_team_member:last-child{margin-right:0 !important}.person_2_f .et_pb_team_member{margin-bottom:30px !important;width:47%;margin-right:6% !important;float:left}}@media only screen and (max-width:767px){.person_1_f .et_pb_row .et_pb_column_1_3:last-child .et_pb_team_member{margin-bottom:0 !important}.person_1_f .et_pb_row .et_pb_column_1_3 .et_pb_team_member:last-child{margin-right:0 !important}.person_1_f .et_pb_row .et_pb_column_1_3 .et_pb_team_member{width:49% !important;margin-right:2% !important;margin-bottom:2% !important;float:left}.person_1_f .et_pb_row .et_pb_column_1_3{width:100% !important;margin-right:0 !important}.person_2_f .et_pb_team_member{width:100%;margin-right:0 !important}.person_4_f .et_pb_team_member .et_pb_team_member_description{padding:20px 5px !important}.person_2_f .et_pb_team_member .et_pb_team_member_description{padding:40px !important}.person_3_f .et_pb_team_member_image{margin-bottom:0 !important}}@media only screen and (max-width:767px) and (min-width:481px){.person_2_f .et_pb_row{max-width:480px !important}.person_3_f .et_pb_column_4_4{text-align:center !important}.person_3_f .et_pb_team_member{width:32% !important;float:none !important;display:inline-block}}@media only screen and (max-width:480px){.person_1_f .et_pb_row .et_pb_column_1_3:last-child .et_pb_team_member:not(:last-child){margin-bottom:20px !important}.person_1_f .et_pb_row .et_pb_column_1_3 .et_pb_team_member{width:100% !important;margin-right:0 !important;margin-bottom:20px !important}.person_4_f .et_pb_team_member .et_pb_team_member_description,.person_2_f .et_pb_team_member .et_pb_team_member_description{padding:20px !important}.person_3_f .et_pb_team_member_image{margin-bottom:0 !important}.person_3_f .et_pb_team_member{width:100% !important}.person_3_f .et_pb_team_member{text-align:right !important}}.et_pb_team_member_image{max-width:100% !important}.person1_M .et_pb_team_member_image img{-webkit-transition:all .5s ease-in-out;-moz-transition:all .5s ease-in-out;-o-transition:all .5s ease-in-out;-ms-transition:all .5s ease-in-out;transition:all .5s ease-in-out;cursor:pointer !important;display:block;width:100%}.person1_M,.person2_M .et_pb_team_member,.person4_M .et_pb_team_member:hover,.person5_M .et_pb_team_member{cursor:pointer}.person1_M .et_pb_team_member_image{-webkit-mask-image:-webkit-radial-gradient(white,#000)}body.unknown .person1_M .et_pb_team_member:hover .et_pb_team_member_image img{transform:rotate(-5deg);-webkit-transform:rotate(-5deg)}.person1_M .et_pb_team_member:hover .et_pb_team_member_image img{transform:rotate(-5deg) scale(1.1);-webkit-transform:rotate(-5deg) scale(1.1)}.person1_M .person_link{display:none !important}.person1_M .et_pb_team_member_description p.et_pb_member_position:after{content:"";display:block;width:0;height:3px;margin:10px 0 0;background-color:#512da8;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.person1_M .et_pb_team_member:hover .et_pb_team_member_description p.et_pb_member_position:after{width:20%}.person1_M .et_pb_team_member:hover .et_pb_team_member_description{-webkit-animation:fadeIn 5s infinite;animation:fadeIn 1s infinite;animation-iteration-count:1}@media only screen and (max-width:1390px) and (min-width:981px){#page-container .person1_M .et_pb_team_member{display:block}#page-container .person1_M .et_pb_team_member_description{padding-left:5%;display:inline-block;padding-top:10px;width:56%}#page-container .person1_M .et_pb_team_member_image{width:43%;vertical-align:middle;display:inline-block;border-radius:50%;overflow:hidden}}@media only screen and (max-width:980px) and (min-width:768px){#page-container .person1_M .et_pb_team_member_image{float:none !important}}@media only screen and (max-width:980px){#page-container .person1_M .et_pb_team_member_description{padding-left:4%}#page-container .person1_M .et_pb_row:last-child .et_pb_column:last-child .et_pb_team_member{border-bottom:0 !important;padding-bottom:0 !important}#page-container .person1_M .et_pb_team_member{border-bottom:1px solid #ebebeb;padding-bottom:30px}#page-container .person1_M .et_pb_team_member_image{margin-right:0 !important}.person1_M .et_pb_row{border:none !important}}@media only screen and (max-width:480px){#page-container .person1_M .et_pb_team_member{display:block !important}#page-container .person1_M .et_pb_team_member_image{display:block;margin:0 auto 10px !important;width:50%}#page-container .person1_M .et_pb_team_member_description{padding-left:0;text-align:center}.person1_M .et_pb_team_member_description p.et_pb_member_position:after{margin:10px auto 0}}.person2_M .et_pb_team_member_image img{display:block;width:100%}.person2_M .et_pb_row:nth-child(2):after,body.et-fb .person2_M .et_pb_row:nth-child(3):after{display:block;content:"";width:79%;height:1px;background:#d9dddd;visibility:visible;margin:0 auto;clear:both}.person2_M .et_pb_team_member_image{border-radius:50%;overflow:hidden}.person2_M .et_pb_team_member_description h4,.person2_M .et_pb_team_member_image,.person2_M .et_pb_team_member_image img{-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.person2_M .et_pb_column_1_3 .et_pb_team_member:hover .et_pb_team_member_image{transform:translate(0,15px)}.person2_M .et_pb_column_1_4 .et_pb_team_member:hover .et_pb_team_member_image{transform:translate(0,-15px)}.person2_M .et_pb_team_member:hover .et_pb_team_member_description h4{transform:translate(0,-13px);-webkit-transition-duration:.3s;-webkit-transition-delay:.3s;transition-duration:.3s;transition-delay:.3s}body.unknown .person2_M .et_pb_team_member:hover .et_pb_team_member_image img{transform:scale(1)}.person2_M .et_pb_team_member:hover .et_pb_team_member_image img{transform:scale(1.1);-webkit-transition-duration:.6s;-webkit-transition-delay:.3s;transition-duration:.6s;transition-delay:.3s}.person2_M .et_pb_team_member:hover .et_pb_team_member_description h4:after{width:120px;-webkit-transition-duration:.6s;-webkit-transition-delay:.3s;transition-duration:.6s;transition-delay:.3s}.person2_M .et_pb_team_member .et_pb_team_member_description h4:after{content:"";display:block;width:0;margin:13px auto -13px;background:#d9dddd;height:1px}.person2_M .et_pb_team_member:hover .et_pb_team_member_description{-webkit-animation:fadeIn 5s infinite;animation:fadeIn 1s infinite;animation-iteration-count:1}body.et-fb .person2_M .et_pb_column_1_3 .et_pb_team_member_description{top:-75px}body.et-fb .person2_M .et_pb_column_1_3 .et_pb_team_member:before{bottom:-75px}body.et-fb .person2_M .et_pb_column_1_3{padding-bottom:60px !important}body.et-fb .person2_M .et_pb_column_1_4 .et_pb_team_member_image{top:60px}body.et-fb .person2_M .et_pb_column_1_4 .et_pb_team_member_description{top:50px}body.et-fb .person2_M .et_pb_column_1_4{padding-top:0 !important}@media only screen and (max-width:980px){.person2_M .et_pb_row{overflow:visible}.person2_M .et_pb_column_1_3{margin-bottom:0 !important}.person2_M .et_pb_column_1_4 .et_pb_team_member .et_pb_team_member_image{max-width:280px;display:block;margin:0 auto 20px !important;float:none !important}.person2_M .et_pb_column_1_3 .et_pb_team_member .et_pb_team_member_image{margin:74px auto 0 !important;float:none !important;max-width:280px}.person2_M .et_pb_team_member_image{width:100% !important;margin-top:0 !important}.person2_M .et_pb_row:nth-child(2):after{width:55%}}@media only screen and (max-width:767px){#page-container .person2_M .et_pb_promo .et_pb_promo_description h2{margin-bottom:-10px}}@media only screen and (max-width:479px){.person2_M .et_pb_row:nth-child(2) .et_pb_team_member:after{display:none !important}}.person3_M .et_pb_column_1_2 .et_pb_image,.person3_M .et_pb_column_1_2 .et_pb_image img{height:auto !important}.person3_M .et_pb_column_1_2 .et_pb_team_member img{max-width:none;transform:translate(-50%,0);-ms-transform:translate(-50%,0);-webkit-transform:translate(-50%,0);left:50%;position:relative}body.ie .person3_M .et_pb_column_1_2 .et_pb_team_member img{position:absolute}body.ie .person3_M .et_pb_column_1_2 .et_pb_team_member{min-height:900px !important}.person3_M .et_pb_column_1_2 .et_pb_team_member{width:33%;float:right;overflow:hidden;cursor:pointer;position:relative}.person3_M .et_pb_column_1_2 .et_pb_promo_description p{line-height:176%}.person3_M .et_pb_team_member:hover .et_pb_team_member_description{opacity:1}.person3_M .et_pb_team_member .et_pb_team_member_description{opacity:0;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.person3_M .et_pb_team_member .et_pb_team_member_description h4,.person3_M .et_pb_team_member .et_pb_team_member_description p{opacity:0;transform:translate(-50px,0)}.person3_M .et_pb_team_member .et_pb_member_social_links{position:absolute;top:2.4vw;right:2vw;margin:0;opacity:0;transform:translate(50px,0)}.person3_M .et_pb_team_member:hover .et_pb_member_social_links{opacity:1;-webkit-transition-duration:.6s;-webkit-transition-delay:.3s;transition-duration:.6s;transition-delay:.3s;transform:translate(0,0)}.person3_M .et_pb_team_member:hover .et_pb_team_member_description p{-webkit-transition-duration:.6s;-webkit-transition-delay:.3s;transition-duration:.6s;transition-delay:.3s}.person3_M .et_pb_team_member:hover .et_pb_team_member_description h4{-webkit-transition-duration:.9s;-webkit-transition-delay:.3s;transition-duration:.9s;transition-delay:.3s}.person3_M .et_pb_team_member:hover .et_pb_team_member_description h4,.person3_M .et_pb_team_member:hover .et_pb_team_member_description p{opacity:1;transform:translate(0,0)}.person3_M .et_pb_team_member .et_pb_member_social_links a.et_pb_font_icon{transition:.3s}.person3_M .et_pb_team_member .et_pb_member_social_links a.et_pb_font_icon:hover{opacity:.6}.person3_M .et_pb_team_member .et_pb_member_social_links a.et_pb_font_icon:before{border:2px solid #363636;padding:10.5px 0;font-size:15px;width:36px;color:#363636 !important;display:inline-block}.person3_M .et_pb_column_1_2 .et_pb_team_member{-webkit-transition:all .5s ease-in-out;-moz-transition:all .5s ease-in-out;transition:all .5s ease-in-out}body.et-fb .person3_M .et_pb_column_1_2 .et_pb_team_member{clear:none}body.et-fb .et_pb_team_member .et_pb_team_member_description{width:90% !important}.person3_M .et_pb_column_1_2:hover .et_pb_team_member.noHover.hover{width:91% !important}.person3_M .et_pb_column_1_2:hover .et_pb_team_member.noHover.hover{overflow:hidden !important}.person3_M .et_pb_column_1_2:hover .et_pb_team_member.noHover{width:3.5%}@media only screen and (min-width:1921px){.person3_M .et_pb_column_1_2:last-child{padding-left:260px !important}}@media only screen and (max-width:1390px) and (min-width:981px){.person3_M .et_pb_team_member .et_pb_member_social_links{padding-top:11px;position:static}}@media only screen and (max-width:980px){.person3_M .et_pb_column_1_2 .et_pb_team_member .et_pb_team_member_image{width:100% !important}.person3_M .et_pb_column_1_2 .et_pb_promo .et_pb_promo_description{padding-bottom:0 !important}.person3_M .et_pb_column_1_2:first-child{margin-bottom:40px !important}.person3_M .et_pb_column_1_2 .et_pb_promo:first-of-type:after{padding:0 10% !important}.person3_M .et_pb_column_1_2 .et_pb_promo{margin-top:0 !important;width:100%;float:right;min-width:0;padding:0 10% !important;margin-right:0 !important}.person3_M .et_pb_column_1_2 .et_pb_text:before{left:-297px}.person3_M .et_pb_column_1_2 .et_pb_team_member{max-height:600px;width:33.333%}body.ie .person3_M .et_pb_column_1_2 .et_pb_team_member{min-height:600px !important}.person3_M .et_pb_column_1_2:hover .et_pb_team_member.noHover.hover{width:92%}.person3_M .et_pb_column_1_2:hover .et_pb_team_member.noHover{width:4%}}@media only screen and (max-width:767px){.person3_M .et_pb_team_member .et_pb_team_member_description{text-align:center !important}.person3_M .et_pb_team_member .et_pb_member_social_links{padding-top:11px;position:static}.person3_M .et_pb_column_1_2 .et_pb_team_member{max-height:500px}body.ie .person3_M .et_pb_column_1_2 .et_pb_team_member{min-height:500px !important}.person3_M .et_pb_column_1_2:hover .et_pb_team_member.noHover.hover{width:84%}.person3_M .et_pb_column_1_2:hover .et_pb_team_member.noHover{width:8%}.person3_M .et_pb_team_member .et_pb_member_social_links li:last-child{margin-right:0}.person3_M .et_pb_team_member .et_pb_member_social_links li{margin-right:8px}}.person4_M .et_pb_column_4_4 .et_pb_promo_description div{font-weight:300;padding-left:10.5vw}.person4_M .et_pb_team_member_image img{display:block;width:100%}.person4_M .et_pb_team_member,.person4_M .et_pb_team_member .et_pb_member_social_links,.person4_M .et_pb_team_member .et_pb_team_member_description h4,.person4_M .et_pb_team_member .et_pb_team_member_description p,.person4_M .et_pb_team_member_description{-webkit-transition:all .4s ease-in-out;-moz-transition:all .4s ease-in-out;transition:all .4s ease-in-out}.person4_M .et_pb_team_member_description{position:absolute;top:50%;transform:translate(-50%,-50%);opacity:0;text-align:center;width:83%;left:50%;background-color:rgba(255,255,255,.8);padding:12% 0;height:85%}.person4_M .et_pb_team_member:hover .et_pb_team_member_description{opacity:1}.person4_M .et_pb_team_member:hover{position:relative;z-index:9 !important;-webkit-box-shadow:0 0 20px 1px rgba(0,0,0,.2);-moz-box-shadow:0 0 20px 1px rgba(0,0,0,.2);box-shadow:0 0 20px 1px rgba(0,0,0,.2)}.person4_M .et_pb_column_1_3{z-index:auto}.person4_M .et_pb_team_member .et_pb_member_social_links{transform:translate(0,70px);opacity:0}.person4_M .et_pb_team_member .et_pb_team_member_description h4,.person4_M .et_pb_team_member .et_pb_team_member_description p{transform:translate(0,-70px);opacity:0}.person4_M .et_pb_team_member:hover .et_pb_member_social_links,.person4_M .et_pb_team_member:hover .et_pb_team_member_description h4,.person4_M .et_pb_team_member:hover .et_pb_team_member_description p{transform:translate(0,0);opacity:1;-webkit-transition-duration:.3s;-webkit-transition-delay:.3s;transition-duration:.3s;transition-delay:.3s}.person4_M .et_pb_team_member .et_pb_member_social_links li:last-child{margin-right:0}.person4_M .et_pb_team_member .et_pb_member_social_links li{margin-right:4px}.person4_M .et_pb_team_member .et_pb_member_social_links a.et_pb_font_icon:hover{color:#747474 !important}.person4_M .et_pb_team_member .et_pb_member_social_links a.et_pb_font_icon:before{border:2px solid;padding:10.5px 0;font-size:15px;width:36px;display:inline-block}body.et-fb .person4_M .et-last-child-2{z-index:100}body.gecko .person4_M .et_pb_team_member .et_pb_member_social_links,body.gecko .person4_M .et_pb_team_member .et_pb_team_member_description h4,body.gecko .person4_M .et_pb_team_member .et_pb_team_member_description p{transform:translate(0,0)}@media only screen and (max-width:1390px){.person4_M .et_pb_team_member .et_pb_member_social_links{margin-top:72% !important}}@media only screen and (max-width:980px){.person4_M .et_pb_column_1_3 .et_pb_team_member .et_pb_team_member_image{width:100% !important;margin-right:0 !important}.person4_M .et_pb_column_1_3 .et_pb_team_member{max-width:none !important}.person4_M .et_pb_column_1_3:last-child{margin-right:0 !important}.person4_M .et_pb_column_1_3{width:30% !important;margin-right:5% !important}.person4_M .et_pb_team_member .et_pb_member_social_links a.et_pb_font_icon:before{border:1px solid;padding:6px 0;width:27px}.person4_M .et_pb_team_member .et_pb_member_social_links{margin-top:64% !important}.person4_M .et_pb_team_member .et_pb_team_member_description h4{font-size:16px !important}.person4_M .et_pb_promo .et_pb_promo_description h2{margin-bottom:-20px !important}}@media only screen and (max-width:767px){.person4_M .et_pb_row{transform:translate(0,0) !important}.person4_M .et_pb_column_1_3 .et_pb_team_member{transform:translate(0,0) !important;max-width:300px !important;margin:0 auto}.person4_M .et_pb_column_1_3{width:100% !important;margin-right:0 !important}.person4_M .et_pb_team_member .et_pb_member_social_links{margin-top:80% !important}}.person5_M .et_pb_column_4_4 .et_pb_promo_description p{letter-spacing:.5px}.person5_M .et_pb_team_member .et_pb_member_social_links li:last-child{margin-right:0}.person5_M .et_pb_team_member .et_pb_member_social_links li{margin-right:4px}.person5_M .et_pb_team_member .et_pb_member_social_links a.et_pb_font_icon{transition:.3s}.person5_M .et_pb_team_member .et_pb_member_social_links a.et_pb_font_icon:hover{opacity:.6}.person5_M .et_pb_team_member .et_pb_member_social_links a.et_pb_font_icon:before{border:2px solid #e1e1e1;padding:10.5px 0;font-size:15px;width:36px;color:#fff !important;display:inline-block}.person5_M .et_pb_team_member .et_pb_team_member_image img{display:block;width:100%}.person5_M .et_pb_team_member .et_pb_team_member_description:before{content:"";display:block;width:100%;height:100%;border:1px solid #ebebeb;position:absolute;bottom:-2px;left:-2px;padding-top:47px}.person5_M .et_pb_team_member:hover .et_pb_team_member_description:before{padding-top:117px}.person5_M .et_pb_team_member:hover .et_pb_team_member_description h4{font-weight:900;transform:translate(0,-6px)}.person5_M .et_pb_team_member .et_pb_member_social_links,.person5_M .et_pb_team_member .et_pb_team_member_description h4,.person5_M .et_pb_team_member .et_pb_team_member_description:before{-webkit-transition:all .4s ease-in-out;-moz-transition:all .4s ease-in-out;transition:all .4s ease-in-out}.person5_M .et_pb_team_member:hover .et_pb_member_social_links{transform:translate(0,-77px);opacity:1}.person5_M .et_pb_team_member .et_pb_member_social_links{opacity:0}.person5_M .et_pb_team_member:hover .et_pb_team_member_description{-webkit-animation:fadeIn 5s infinite;animation:fadeIn 1s infinite;animation-iteration-count:1}@-webkit-keyframes fadeIn{from{opacity:.5}to{opacity:1}}@keyframes fadeIn{from{opacity:.5}to{opacity:1}}.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@media only screen and (max-width:1390px){.person5_M .et_pb_column_1_3 .et_pb_team_member_description{max-width:90% !important}}@media only screen and (max-width:980px){.person5_M .et_pb_column_1_3:last-child{margin-right:0 !important}.person5_M .et_pb_column_1_3{width:32% !important;margin-right:2% !important}.person5_M .et_pb_column_1_3 .et_pb_team_member_description{display:block !important}.person5_M .et_pb_column_1_3 .et_pb_team_member_image{width:100% !important;margin-right:0 !important;float:none !important}.person5_M .et_pb_team_member .et_pb_member_social_links a.et_pb_font_icon:before{border:1px solid;padding:6px 0;width:27px}}@media only screen and (max-width:767px){.person5_M .et_pb_column_1_3 .et_pb_team_member{max-width:300px !important;margin:0 auto}.person5_M .et_pb_column_1_3{width:100% !important;margin-right:0 !important}}.person1-venus .et_pb_column_1_2:first-child{width:49.6% !important;margin-right:8.4% !important}.person1-venus .et_pb_column_1_2:last-child,.person1-venus .et_pb_column_1_2.et-last-child{width:42% !important}.person1-venus .person_content{padding:47px 20px 35px !important;background-color:inherit;border-radius:5px}.person1-venus .et_pb_team_member{transition:.3s}.person1-venus .et_pb_team_member.main_module{z-index:99}.person1-venus .et_pb_team_member:before{transition-delay:.1s !important}.person1-venus .et_pb_team_member:after{transition-delay:.2s !important}.person1-venus .et_pb_team_member.no_hover_module.main_module:before{transform:translate(-50%,-50%) scale(1.07)}.person1-venus .et_pb_team_member.no_hover_module.main_module:after{transform:translate(-50%,-50%) scale(1.15)}.person1-venus .et_pb_team_member.no_hover_module.main_module{transform:scale(1.1)}.person1-venus .et_pb_team_member.no_hover_module{transform:scale(0.9)}body #page-container #main-content .person1-venus .et_pb_promo .et_pb_button{padding:12px 34px 10px 38px !important}.person2-venus .et_pb_member_social_links:before{content:"";display:block;width:100%;height:1px;margin:-2px auto 21px;background-color:#d0d7dd}.person2-venus .et_pb_team_member .et_pb_team_member_image img{display:block !important;width:100% !important;border-radius:10px 10px 10px 10px}.person2-venus .et_pb_team_member:hover:before,.person2-venus .et_pb_team_member:hover:after{transform:rotate(45deg) translate(0,0)}.person3-venus .et_pb_team_member .et_pb_team_member_image img{display:block !important;width:100% !important}.person3-venus .et_pb_team_member .et_pb_team_member_image{display:block !important;width:100% !important;max-width:100% !important}.person3-venus .et_pb_column:hover .et_pb_image.hover_image1{transition-delay:0s}.person3-venus .et_pb_column:hover .et_pb_image.hover_image2{transition-delay:.3s}.person3-venus .et_pb_column:hover .et_pb_image.hover_image3{transition-delay:.2s}.person3-venus .et_pb_column{transition:.3s}.person3-venus .et_pb_column:hover{box-shadow:0 20px 40px 0 rgba(0,0,0,0.1)}.person3-venus .et_pb_column:hover .et_pb_image{transform:translate(0,0)}@media only screen and (max-width:1390px){.person3-venus .et_pb_row,.person2-venus .et_pb_row,.person1-venus .et_pb_row{width:90% !important}.person1-venus .et_pb_team_member:first-child{left:180px}.person1-venus .et_pb_team_member:last-child{left:auto;right:20px}body .person2-venus .et_pb_team_member .et_pb_team_member_description{margin-left:0 !important;max-width:100% !important}body .person3-venus .et_pb_team_member{padding:30px !important}body .person3-venus .et_pb_team_member .et_pb_team_member_description{width:52%}}@media only screen and (max-width:980px){.person1-venus .et_pb_team_member .et_pb_team_member_description{display:block !important}.person1-venus .et_pb_team_member .et_pb_team_member_image{display:block !important;float:none !important}.person1-venus .et_pb_team_member:first-child{left:50px}.person1-venus .et_pb_team_member:last-child{left:auto;right:0}.person2-venus .et_pb_column .et_pb_team_member .et_pb_team_member_image{margin-bottom:20px !important}.person2-venus .et_pb_column_1_3{width:32% !important;margin-right:2% !important}.person3-venus .et_pb_column_1_2{width:49% !important;margin-right:2% !important}body .person3-venus .et_pb_team_member .et_pb_team_member_image{float:none;margin:auto;min-width:100px}body .person3-venus .et_pb_team_member .et_pb_team_member_description h4,body .person3-venus .et_pb_team_member .et_pb_team_member_description{width:100%;text-align:center}}@media only screen and (max-width:767px){.person1-venus .et_pb_column_1_2.et-last-child,.person1-venus .et_pb_column_1_2:first-child{width:100% !important;margin-right:0 !important}.person1-venus{background-size:contain !important}.person1-venus .et_pb_team_member:first-child{left:50%;transform:translate(-50%,0)}.person1-venus .et_pb_team_member:first-child.no_hover_module.main_module{transform:translate(-50%,0) scale(1.1)}.person1-venus .et_pb_team_member:nth-child(2){left:10px}.person1-venus .et_pb_team_member:last-child{right:10px}body .person3-venus .et_pb_team_member{padding:30px 20px !important}.person2-venus .et_pb_column_1_3{width:100% !important;margin-right:0 !important}.person2-venus .et_pb_column_1_3 .et_pb_team_member{max-width:400px !important;margin:0 auto !important}}@media only screen and (max-width:480px){#page-container .person1-venus .et_pb_team_member.no_hover_module.main_module{transform:translate(0,0) scale(1.1) !important}#page-container .person1-venus .et_pb_team_member:last-child{margin-bottom:0 !important}#page-container .person1-venus .et_pb_team_member{left:0 !important;right:0 !important;margin:0 auto 30px !important;transform:translate(0,0) !important}.person1-venus .et_pb_team_member.no_hover_module.main_module:after{transform:translate(-50%,-50%) scale(1.09)}.person1-venus .et_pb_team_member.no_hover_module.main_module:before{transform:translate(-50%,-50%) scale(1.04)}.person3-venus .et_pb_column_1_2{width:100% !important;margin-right:0 !important}}@media only screen and (max-width:980px){.tina_trusted_by_logo .et_pb_column_1_5{margin-bottom:0 !important}}@media only screen and (max-width:767px){.tina_trusted_by_logo .et_pb_column_1_5:last-child{margin-right:0 !important}.tina_trusted_by_logo .et_pb_column_1_5{width:16% !important;margin-right:5% !important}}@media only screen and (max-width:480px){.tina_trusted_by_logo .et_pb_column_1_5 .et_pb_image img{max-width:140px}.tina_trusted_by_logo .et_pb_column_1_5 .et_pb_image{text-align:center !important}.tina_trusted_by_logo .et_pb_column_1_5:last-child{margin-bottom:0 !important}.tina_trusted_by_logo .et_pb_column_1_5{width:100% !important;margin-right:0 !important;margin-bottom:30px !important}}.rs-p-wp-fix { display: none !important; margin: 0 !important; height: 0px !important; } .wp-block-themepunch-revslider { position: relative }   rs-modal { position: fixed !important; z-index: 9999999 !important; pointer-events: none !important;}
rs-modal.rs-modal-auto { top: auto;bottom: auto;left: auto; right:auto; }
rs-modal.rs-modal-fullwidth,
rs-modal.rs-modal-fullscreen { top: 0px; left: 0px; width: 100%; height: 100%; }
rs-modal rs-fullwidth-wrap { position: absolute; top: 0px; left: 0px; height: 100%;}
rs-module-wrap.rs-modal { display:none; max-height: 100% !important; overflow: auto !important;  pointer-events: auto !important;}
rs-module-wrap.hideallscrollbars.rs-modal { overflow: hidden !important; max-width: 100% !important}
rs-modal-cover { width: 100%; height: 100%; z-index: 0; background: transparent; position: absolute;top: 0px;left: 0px; cursor: pointer; pointer-events: auto}
body>rs-modal-cover { position: fixed; z-index: 9999995 !important; }
rs-sbg-px { pointer-events: none }
.rs-forceuntouchable,
.rs-forceuntouchable * { pointer-events: none !important; }
.rs-forcehidden * { visibility: hidden !important; } .rs_splitted_lines { display: block; white-space: nowrap !important}
.rs-go-fullscreen {
position:fixed !important;
width:100% !important;
height:100% !important;
top:0px !important;
left:0px !important;
z-index:9999999 !important;
background:#ffffff;
}
.rtl {	direction: rtl;}
@font-face {
font-family: 'revicons';
src: url(//www.systemweld.com/wp-content/plugins/revslider/public/assets/fonts/revicons/revicons.eot?5510888);
src: url(//www.systemweld.com/wp-content/plugins/revslider/public/assets/fonts/revicons/revicons.eot?5510888#iefix) format('embedded-opentype'),
url(//www.systemweld.com/wp-content/plugins/revslider/public/assets/fonts/revicons/revicons.woff?5510888) format('woff'),
url(//www.systemweld.com/wp-content/plugins/revslider/public/assets/fonts/revicons/revicons.ttf?5510888) format('truetype'),
url(//www.systemweld.com/wp-content/plugins/revslider/public/assets/fonts/revicons/revicons.svg?5510888#revicons) format('svg');
font-weight: normal;
font-style: normal;
font-display: swap;
}
[class^="revicon-"]:before, [class*=" revicon-"]:before {
font-family: "revicons";
font-style: normal;
font-weight: normal;
speak: never;
speak-as: spell-out;
display: inline-block;
text-decoration: inherit;
width: 1em;
margin-right: .2em;
text-align: center; font-variant: normal;
text-transform: none; line-height: 1em;  margin-left: .2em;    }
rs-module i[class^="fa-"],
rs-module i[class*=" fa-"],
.rb-modal-wrapper i[class^="fa-"],
.rb-modal-wrapper i[class*=" fa-"],
#waitaminute i[class^="fa-"],
#waitaminute i[class*=" fa-"],
#objectlibrary i[class^="fa-"],
#objectlibrary i[class*=" fa-"],
#rs_overview i[class^="fa-"],
#rs_overview i[class*=" fa-"],
#rs_overview_menu i[class^="fa-"],
#rs_overview_menu i[class*=" fa-"],
#builderView i[class^="fa-"],
#builderView i[class*=" fa-"]
{
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
rs-module [class^="fa-"]:before,
rs-module [class*=" fa-"]:before,
.rb-modal-wrapper [class^="fa-"]:before,
.rb-modal-wrapper [class*=" fa-"]:before,
#rs_overview [class^="fa-"]:before,
#rs_overview [class*=" fa-"]:before,
#objectlibrary [class^="fa-"]:before,
#objectlibrary [class*=" fa-"]:before,
#waitaminute [class^="fa-"]:before,
#waitaminute [class*=" fa-"]:before,
#rs_overview_menu [class^="fa-"]:before,
#rs_overview_menu [class*=" fa-"]:before,
#builderView [class^="fa-"]:before,
#builderView [class*=" fa-"]:before
{
font-family: FontAwesome;
font-style: normal;
font-weight: 400;
speak: never;
speak-as: spell-out;
display: inline-block;
text-decoration: inherit;
width: auto;
margin-right: 0;
text-align: center;
font-variant: normal;
text-transform: none;
line-height: inherit;
margin-left: 0;
}
rs-module .sr-only,
#objectlibrary .sr-only,
#waitaminute .sr-only,
#rs_overview .sr-only,
#rs_overview_menu .sr-only,
.rb-modal-wrapper .sr-only,
#builderView .sr-only
{
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
}
rs-module .sr-only-focusable:active,
rs-module .sr-only-focusable:focus,
#waitaminute .sr-only-focusable:active,
#waitaminute .sr-only-focusable:focus,
#objectlibrary .sr-only-focusable:active,
#objectlibrary .sr-only-focusable:focus,
#rs_overview .sr-only-focusable:active,
#rs_overview .sr-only-focusable:focus,
#rs_overview_menu .sr-only-focusable:active,
#rs_overview_menu .sr-only-focusable:focus,
.rb-modal-wrapper .sr-only-focusable:active,
.rb-modal-wrapper .sr-only-focusable:focus,
#builderView .sr-only-focusable:active,
#builderView .sr-only-focusable:focus
{
position: static;
width: auto;
height: auto;
margin: 0;
overflow: visible;
clip: auto;
}
.revicon-search-1:before { content: '\e802'; } .revicon-pencil-1:before { content: '\e831'; } .revicon-picture-1:before { content: '\e803'; } .revicon-cancel:before { content: '\e80a'; } .revicon-info-circled:before { content: '\e80f'; } .revicon-trash:before { content: '\e801'; } .revicon-left-dir:before { content: '\e817'; } .revicon-right-dir:before { content: '\e818'; } .revicon-down-open:before { content: '\e83b'; } .revicon-left-open:before { content: '\e819'; } .revicon-right-open:before { content: '\e81a'; } .revicon-angle-left:before { content: '\e820'; } .revicon-angle-right:before { content: '\e81d'; } .revicon-left-big:before { content: '\e81f'; } .revicon-right-big:before { content: '\e81e'; } .revicon-magic:before { content: '\e807'; } .revicon-picture:before { content: '\e800'; } .revicon-export:before { content: '\e80b'; } .revicon-cog:before { content: '\e832'; } .revicon-login:before { content: '\e833'; } .revicon-logout:before { content: '\e834'; } .revicon-video:before { content: '\e805'; } .revicon-arrow-combo:before { content: '\e827'; } .revicon-left-open-1:before { content: '\e82a'; } .revicon-right-open-1:before { content: '\e82b'; } .revicon-left-open-mini:before { content: '\e822'; } .revicon-right-open-mini:before { content: '\e823'; } .revicon-left-open-big:before { content: '\e824'; } .revicon-right-open-big:before { content: '\e825'; } .revicon-left:before { content: '\e836'; } .revicon-right:before { content: '\e826'; } .revicon-ccw:before { content: '\e808'; } .revicon-arrows-ccw:before { content: '\e806'; } .revicon-palette:before { content: '\e829'; } .revicon-list-add:before { content: '\e80c'; } .revicon-doc:before { content: '\e809'; } .revicon-left-open-outline:before { content: '\e82e'; } .revicon-left-open-2:before { content: '\e82c'; } .revicon-right-open-outline:before { content: '\e82f'; } .revicon-right-open-2:before { content: '\e82d'; } .revicon-equalizer:before { content: '\e83a'; } .revicon-layers-alt:before { content: '\e804'; } .revicon-popup:before { content: '\e828'; }  .tp-fullwidth-forcer { z-index: 0; pointer-events: none}
rs-module-wrap { visibility: hidden }
rs-module-wrap,
rs-module-wrap * { box-sizing: border-box; -webkit-tap-highlight-color: rgba(0,0,0,0);}
rs-module-wrap {position:relative;z-index: 1;width:100%; display: block;}
.rs-fixedscrollon rs-module-wrap { position: fixed !important; top: 0px !important; z-index: 1000; left: 0 !important;}
.rs-stickyscrollon rs-module-wrap {  position: sticky !important; top:0px; z-index: 1000; }
.rs-stickyscrollon { overflow: visible !important; }
rs-fw-forcer { display:block;width:100%;pointer-events: none;}
rs-module { position:relative;overflow:hidden;display: block; }
rs-module.disableVerticalScroll { -ms-touch-action: pan-x; touch-action: pan-x; }
rs-pzimg-wrap,
rs-sbg-effectwrap,
rs-sbg { display: block; pointer-events: none  }
rs-sbg-effectwrap {
position:absolute;top:0px;left:0px;width:100%;height:100%
}
rs-carousel-wrap rs-column rs-layer img { width: 0px; height: 0px; }
rs-sbg-px,
rs-sbg-wrap {position:absolute; top:0px; left:0px; z-index:0;width:100%;height:100%;display: block;}
a.rs-layer,
a.rs-layer:-webkit-any-link { text-decoration: none }
a[x-apple-data-detectors] { color: inherit !important;   text-decoration: none !important;   font-size: inherit !important;   font-family: inherit !important;   font-weight: inherit !important;   line-height: inherit !important; }
.entry-content rs-module a, rs-module a { box-shadow: none; }
.rs-ov-hidden 		{ 	overflow:hidden !important;}
.rs-forceoverflow,
.rs-forceoverflow rs-module-wrap,
.rs-forceoverflow rs-module,
.rs-forceoverflow rs-slides,
.rs-forceoverflow rs-slide { overflow:visible !important}
.rs-parallax-hidden-of rs-slide { overflow:hidden !important}
.tp-simpleresponsive img,
rs-module img{
max-width:none !important;
transition: none;
margin:0px;
padding:0px;
border:none;
}
rs-module .no-slides-text{font-weight:bold;text-align:center;padding-top:80px;}
rs-slides, rs-slide, rs-slide:before {	 position:absolute;text-indent: 0em;top:0px;left:0px;}
rs-slide,rs-slide:before {  display:block; visibility:hidden; }
.rs-layer .rs-untoggled-content { display:block;}
.rs-layer .rs-toggled-content { display:none;}
.rs-tc-active.rs-layer > .rs-toggled-content { display:block;}
.rs-tc-active.rs-layer > .rs-untoggled-content { display:none;}
.rs-layer-video { overflow: hidden }
.rs_html5vidbasicstyles { position:relative;top:0px;left:0px;width:100%;height:100%; overflow:hidden; }
rs-module rs-layer,
rs-module .rs-layer {
opacity: 0;
position:relative;
visibility: hidden; display: block;
-webkit-font-smoothing: antialiased !important;
-webkit-tap-highlight-color:rgba(0, 0, 0, 0);
-moz-osx-font-smoothing: grayscale;
z-index:1;
font-display: swap;
}
rs-layer-wrap,
rs-mask,
rs-module-wrap,
rs-module .rs-layer,
rs-module img {
user-select: none;	
}
rs-module rs-mask-wrap .rs-layer,
rs-module rs-mask-wrap *:last-child,
.wpb_text_column rs-module rs-mask-wrap .rs-layer,
.wpb_text_column rs-module rs-mask-wrap *:last-child{
margin-bottom:0;
}
.rs-svg svg {	width:100%; height:100%;position: relative;vertical-align: top}
rs-layer:not(.rs-wtbindex),
.rs-layer:not(.rs-wtbindex),
rs-alyer *:not(.rs-wtbindex),
.rs-layer *:not(.rs-wtbindex) { outline: none !important; } rs-carousel-wrap {
cursor:url(//www.systemweld.com/wp-content/plugins/revslider/public/assets/css/openhand.cur), move;
}
rs-carousel-wrap.dragged {
cursor:url(//www.systemweld.com/wp-content/plugins/revslider/public/assets/css/closedhand.cur), move;
}
rs-carousel-wrap.noswipe {
cursor: default;
}
rs-carousel-wrap { position: absolute; overflow: hidden;  width:100%;height:100%;top:0px;left:0px;}
rs-carousel-space { clear:both;display:block;width:100%;height:0px;position:relative;} .tp_inner_padding {
box-sizing:border-box;
max-height:none !important;
}
.rs-layer.rs-selectable {
user-select: text;	
}
rs-px-mask {
overflow: hidden;
display: block;
width: 100%;
height: 100%;
position: relative;
}
rs-module embed,
rs-module iframe,
rs-module object,
rs-module audio,
rs-module video {
max-width: none !important;
border: none;
}
rs-bg-elem 	{	position:absolute; top:0px;left:0px; width:100%;height:100%;z-index:0; display: block; pointer-events: none; }
.tp-blockmask,
.tp-blockmask_in,
.tp-blockmask_out { position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; background: #fff; z-index: 1000; transform: scaleX(0) scaleY(0);} rs-zone			{	position:absolute; width:100%;left:0px; box-sizing: border-box;min-height:50px; font-size:0px;pointer-events: none}
rs-row-wrap,
rs-column,
rs-cbg-mask-wrap {	display:block; visibility: hidden}
rs-layer-wrap,
rs-parallax-wrap,
rs-loop-wrap,
rs-mask-wrap { display: block; }
rs-column-wrap>rs-loop-wrap { z-index: 1 }
rs-layer-wrap,
rs-mask-wrap,
rs-cbg-mask-wrap
{ transform-style:flat;} @media screen and (min-color-index:0) and(-webkit-min-device-pixel-ratio:0) 
{ 
rs-carousel-wrap rs-layer-wrap, rs-carousel-wrap rs-loop-wrap {backface-visibility: hidden;transform-style: preserve-3d;}
}
.safarifix rs-layer-wrap {
perspective: 1000000;
}
@-moz-document url-prefix() {
rs-layer-wrap,
rs-mask-wrap,
rs-cbg-mask-wrap { perspective: none; }
}
rs-mask-wrap { overflow: hidden }
rs-fullwidth-wrap { position:relative;width:100%;height:auto;display: block; overflow:visible;max-width:none !important;}
.rev_row_zone_top 				{	top:0px;}
.rev_row_zone_bottom 			{	bottom:0px;}
.rev_row_zone_middle			{ top: 0px;}
rs-column-wrap .rs-parallax-wrap  { vertical-align: top }
.rs-layer img,
rs-layer img { vertical-align: top }
rs-row,
rs-row.rs-layer 	{
display:table;
position:relative;
width:100% !important;
table-layout: fixed;
box-sizing: border-box;
vertical-align: top;
height:auto;
font-size:0px;
}
.rs-layer.rs-waction.iospermaccwait.permanenthidden { display:none !important; visibility:hidden !important; pointer-events: none !important;}
rs-column-wrap {
display: table-cell;
position: relative;
vertical-align: top;
height: auto;
box-sizing: border-box;
font-size:0px;
}
rs-column {
box-sizing: border-box;
display: block;
position: relative;
width:100% !important;
height:auto !important;
white-space: normal !important;
}
rs-cbg-mask-wrap {
position: absolute;
z-index: 0;
box-sizing: border-box;
}
rs-column-wrap rs-cbg-mask-wrap { top: 0px; left: 0px; bottom: 0px; right: 0px; }
rs-column-bg {
position: absolute;
z-index: 0;
box-sizing: border-box;
width: 100%;
height: 100%;
}
.rs-pelock * { pointer-events: none !important;}
rs-column .rs-parallax-wrap,
rs-column rs-loop-wrap,
rs-column rs-mask-wrap 			{	text-align: inherit; }
rs-column rs-mask-wrap 			{	display: inline-block;}
rs-column .rs-parallax-wrap rs-loop-wrap,
rs-column .rs-parallax-wrap rs-mask-wrap,
rs-column .rs-parallax-wrap { position: relative !important; left:auto !important; top:auto !important; line-height: 0px;}
rs-column .rs-parallax-wrap rs-loop-wrap,
rs-column .rs-parallax-wrap rs-mask-wrap,
rs-column .rs-parallax-wrap,
rs-column .rev_layer_in_column { vertical-align: top; }
.rev_break_columns { display: block !important }
.rev_break_columns rs-column-wrap.rs-parallax-wrap  { display:block !important; width:100% !important; }
.rev_break_columns rs-column-wrap.rs-parallax-wrap.rs-layer-hidden,
.tp-forcenotvisible,
.tp-hide-revslider,
rs-row-wrap.rs-layer-hidden,
rs-column-wrap.rs-layer-hidden,
.rs-layer.rs-layer-hidden,
.rs-layer-audio.rs-layer-hidden,
.rs-parallax-wrap.rs-layer-hidden {
visibility:hidden !important;
display:none !important
}  a.rs-layer.rs-nointeraction >.div,
rs-layer.rs-nointeraction:not(a),
.rs-layer.rs-nointeraction:not(a) {
pointer-events: none !important
}
rs-static-layers	{position:absolute; z-index:101; top:0px;left:0px; display: block; width: 100%;height: 100%; pointer-events: none; overflow: hidden} rs-static-layers.rs-stl-back {
z-index:0;
}
.rs-stl-visible{
overflow: visible !important;
}
.rs-layer rs-fcr 	{ width: 0; height: 0; border-left: 40px solid transparent; border-right: 0px solid transparent; border-bottom-width: 0 !important; border-top: 40px solid #00A8FF; position: absolute; right: 100%; top: 0px; }
.rs-layer rs-fcrt 	{ width: 0; height: 0; border-left: 40px solid transparent; border-right: 0px solid transparent; border-top-width: 0 !important; border-bottom: 40px solid #00A8FF; position: absolute; right: 100%; top: 0px; }
.rs-layer rs-bcr 	{ width: 0; height: 0; border-left: 0px solid transparent; border-right: 40px solid transparent; border-bottom: 40px solid #00A8FF; border-top-width: 0 !important; position: absolute; left: 100%; top: 0px; }
.rs-layer rs-bcrt 	{ width: 0; height: 0; border-left: 0px solid transparent; border-right: 40px solid transparent; border-top: 40px solid #00A8FF; border-bottom-width: 0 !important; position: absolute; left: 100%; top: 0px; }
.tp-layer-inner-rotation {
position: relative !important;
} img.tp-slider-alternative-image	{
width:100%; height:auto;
} .noFilterClass {
filter:none !important;
} rs-bgvideo 			{	position: absolute;top:0px;left:0px; width:100%;height:100%;z-index: 0; display: block}
.rs-layer.rs-fsv	{	top:0px;left:0px;  position:absolute;width:100%;height:100%}
.rs-layer.rs-fsv audio,
.rs-layer.rs-fsv video,
.rs-layer.rs-fsv iframe,
.rs-layer.rs-fsv iframe audio,
.rs-layer.rs-fsv iframe video	{ width:100%; height:100% ; }
.rs-fsv video				{	background: #000}
.fullcoveredvideo rs-poster		{	background-position: center center;background-size: cover;width:100%;height:100%;top:0px;left:0px}
.videoisplaying .html5vid rs-poster	{	display: none}
.tp-video-play-button					{
background:#000;
background:rgba(0,0,0,0.3);
border-radius:5px;
position: absolute;
top: 50%;
left: 50%;
color: #FFF;
z-index: 3;
margin-top: -25px;
margin-left: -25px;
line-height: 50px !important;
text-align: center;
cursor: pointer;
width: 50px;
height:50px;
box-sizing: border-box;
display: inline-block;
vertical-align: top;
z-index: 4;
opacity: 0;
transition:opacity 300ms ease-out !important;
}
.rs-ISM .tp-video-play-button{
opacity: 1;
transition: none !important;
z-index: 6;
}
.rs-audio .tp-video-play-button { display:none !important;}
.rs-layer .html5vid					{	width:100% !important; height:100% !important;}
.tp-video-play-button i 				{	width:50px;height:50px; display:inline-block; text-align: center !important; vertical-align: top; line-height: 50px !important; font-size: 30px !important;}
.rs-layer:hover .tp-video-play-button	{	opacity: 1; display:block; z-index: 6;}
.rs-layer .tp-revstop					{	display:none;width: 15px; border-right: 5px solid #fff !important; border-left:5px solid #fff !important; transform: translateX(50%) translateY(50%);height: 20px;margin-left: 11px !important;margin-top: 5px !important;}
.videoisplaying .revicon-right-dir		{	display:none}
.videoisplaying .tp-revstop				{	display:block}
.videoisplaying  .tp-video-play-button			{	display:none}
.fullcoveredvideo .tp-video-play-button			{	display:none !important}
.rs-fsv .rs-fsv audio 		{	object-fit:contain !important;}
.rs-fsv .rs-fsv video 		{	object-fit:contain !important;}
.rs-layer-video .html5vid.hidefullscreen video::-webkit-media-controls-fullscreen-button  { display: none; }
@supports not (-ms-high-contrast:none) { .rs-fsv .fullcoveredvideo audio 		{	object-fit:cover !important;}
.rs-fsv .fullcoveredvideo video 		{	object-fit:cover !important;}
}
.rs-fullvideo-cover					{	width:100%;height:100%;top:0px;left:0px;position: absolute; background:transparent;z-index:5;}
.rs-nolc .tp-video-play-button,
rs-bgvideo video::-webkit-media-controls-start-playback-button,
rs-bgvideo video::-webkit-media-controls,
rs-bgvideo audio::-webkit-media-controls { display:none !important;}
.rs-audio .tp-video-controls {	opacity: 1 !important; visibility: visible !important}
rs-module h1.rs-layer,
rs-module h2.rs-layer,
rs-module h3.rs-layer,
rs-module h4.rs-layer,
rs-module h5.rs-layer,
rs-module h6.rs-layer,
rs-module div.rs-layer,
rs-module span.rs-layer,
rs-module p.rs-layer 	{	margin:0; padding:0; margin-block-start: 0; margin-block-end: 0; margin-inline-start: 0; margin-inline-end: 0;}
rs-module h1.rs-layer:before,
rs-module h2.rs-layer:before,
rs-module h3.rs-layer:before,
rs-module h4.rs-layer:before,
rs-module h5.rs-layer:before,
rs-module h6.rs-layer:before { content: none; } rs-dotted						{	background-repeat:repeat;width:100%;height:100%;position:absolute;top:0px;left:0px;z-index:3;display:block;pointer-events: none}
rs-sbg-wrap rs-dotted 			{ z-index: 31 }
rs-dotted.twoxtwo				{	background:url(//www.systemweld.com/wp-content/plugins/revslider/public/assets/assets/gridtile.png)}
rs-dotted.twoxtwowhite			{	background:url(//www.systemweld.com/wp-content/plugins/revslider/public/assets/assets/gridtile_white.png)}
rs-dotted.threexthree			{	background:url(//www.systemweld.com/wp-content/plugins/revslider/public/assets/assets/gridtile_3x3.png)}
rs-dotted.threexthreewhite		{	background:url(//www.systemweld.com/wp-content/plugins/revslider/public/assets/assets/gridtile_3x3_white.png)} .tp-shadowcover	{	width:100%;height:100%;top:0px;left:0px;background: #fff;position: absolute; z-index: -1;}
.tp-shadow1 	{	box-shadow: 0 10px 6px -6px rgba(0,0,0,0.8);}
.tp-shadow2:before, .tp-shadow2:after,
.tp-shadow3:before, .tp-shadow4:after
{
z-index: -2;
position: absolute;
content: "";
bottom: 10px;
left: 10px;
width: 50%;
top: 85%;
max-width:300px;
background: transparent;
box-shadow: 0 15px 10px rgba(0,0,0,0.8);
transform: rotate(-3deg);
}
.tp-shadow2:after,
.tp-shadow4:after
{
transform: rotate(3deg);
right: 10px;
left: auto;
}
.tp-shadow5
{
position:relative;
box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}
.tp-shadow5:before, .tp-shadow5:after
{
content:"";
position:absolute;
z-index:-2;
box-shadow:0 0 25px 0px  rgba(0,0,0,0.6);
top:30%;
bottom:0;
left:20px;
right:20px;
border-radius:100px / 20px;
} .rev-btn,
.rev-btn:visited						{ 	outline:none !important; box-shadow:none; text-decoration: none !important;  box-sizing:border-box;  cursor: pointer;}
.rev-btn.rev-uppercase,
.rev-btn.rev-uppercase:visited			{ 	text-transform: uppercase;  }
.rev-btn  i								{ 	font-size: inherit; font-weight: normal; position: relative; top: 0px; transition: opacity 0.2s ease-out, margin 0.2s ease-out;  margin-left:0px; line-height: inherit}
.rev-btn.rev-hiddenicon i				{ 	font-size: inherit; font-weight: normal; position: relative; top: 0px; transition: opacity 0.2s ease-out, margin 0.2s ease-out; opacity: 0; margin-left:0px !important; width:0px !important;  }
.rev-btn.rev-hiddenicon:hover i			{   opacity: 1 !important; margin-left:10px !important; width:auto !important;} .rev-burger {
position: relative;
box-sizing: border-box;
padding: 22px 14px 22px 14px;
border-radius: 50%;
border: 1px solid rgba(51,51,51,0.25);
-webkit-tap-highlight-color: rgba(0,0,0,0);
-webkit-tap-highlight-color: transparent;
cursor: pointer;
}
.rev-burger span {
display: block;
width: 30px;
height: 3px;
background: #333;
transition: .7s;
pointer-events: none;
transform-style: flat !important;
}
.rev-burger span:nth-child(2) {
margin: 3px 0;
}
.quick_style_example_wrap .rev-burger:hover :first-child,
#dialog_addbutton .rev-burger:hover :first-child,
.open .rev-burger :first-child,
.open.rev-burger :first-child {
transform: translateY(6px) rotate(-45deg);
}
.quick_style_example_wrap .rev-burger:hover :nth-child(2),
#dialog_addbutton .rev-burger:hover :nth-child(2),
.open .rev-burger :nth-child(2),
.open.rev-burger :nth-child(2) {
transform: rotate(-45deg);
opacity: 0;
}
.quick_style_example_wrap .rev-burger:hover :last-child,
#dialog_addbutton .rev-burger:hover :last-child,
.open .rev-burger :last-child,
.open.rev-burger :last-child {
transform: translateY(-6px) rotate(-135deg);
}
.rev-burger.revb-white {
border: 2px solid rgba(255,255,255,0.2);
}
.rev-b-span-light span,
.rev-burger.revb-white span {
background: #fff;
}
.rev-burger.revb-whitenoborder {
border: 0;
}
.rev-burger.revb-whitenoborder span {
background: #fff;
}
.rev-burger.revb-darknoborder {
border: 0;
}
.rev-b-span-dark span,
.rev-burger.revb-darknoborder span {
background: #333;
}
.rev-burger.revb-whitefull {
background: #fff;
border:none;
}
.rev-burger.revb-whitefull span {
background:#333;
}
.rev-burger.revb-darkfull {
background: #333;
border:none;
}
.rev-burger.revb-darkfull span {
background:#fff;
} @keyframes rev-ani-mouse {
0% {opacity: 1;top: 29%;}
15% {opacity: 1;top: 70%;}
50% {opacity: 0;top: 70%;}
100% {opacity: 0;top: 29%;}
}
.rev-scroll-btn {
display: inline-block;
position: relative;
left: 0;
right: 0;
text-align: center;
cursor: pointer;
width:35px;
height:55px;
box-sizing: border-box;
border: 3px solid white;
border-radius: 23px;
}
.rev-scroll-btn > * {
display: inline-block;
line-height: 18px;
font-size: 13px;
font-weight: normal;
color: #7f8c8d;
color: #ffffff;
font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
letter-spacing: 2px;
}
.rev-scroll-btn > *:hover,
.rev-scroll-btn > *:focus,
.rev-scroll-btn > *.active {
color: #ffffff;
}
.rev-scroll-btn > *:hover,
.rev-scroll-btn > *:focus,
.rev-scroll-btn > *:active,
.rev-scroll-btn > *.active {
opacity: 0.8;
}
.rev-scroll-btn.revs-fullwhite  {
background:#fff;
}
.rev-scroll-btn.revs-fullwhite span {
background: #333;
}
.rev-scroll-btn.revs-fulldark  {
background:#333;
border:none;
}
.rev-scroll-btn.revs-fulldark  span {
background: #fff;
}
.rev-scroll-btn span {
position: absolute;
display: block;
top: 29%;
left: 50%;
width: 8px;
height: 8px;
margin: -4px 0 0 -4px;
border-radius: 50%;
animation: rev-ani-mouse 2.5s linear infinite;
background: #fff;
}
.rev-scroll-btn.rev-b-span-dark {
border-color:#333;
}
.rev-scroll-btn.rev-b-span-dark span,
.rev-scroll-btn.revs-dark span {
background: #333;
}
.rev-control-btn {
position: relative;
display: inline-block;
z-index: 5;
color: #FFF;
font-size: 20px;
line-height: 60px;
font-weight: 400;
font-style: normal;
font-family: Raleway;
text-decoration: none;
text-align: center;
background-color: #000;
border-radius: 50px;
text-shadow: none;
background-color: rgba(0, 0, 0, 0.50);
width:60px;
height:60px;
box-sizing: border-box;
cursor: pointer;
}
.rev-cbutton-dark-sr	{
border-radius: 3px;
}
.rev-cbutton-light	{
color: #333;
background-color: rgba(255,255,255, 0.75);
}
.rev-cbutton-light-sr	{
color: #333;
border-radius: 3px;
background-color: rgba(255,255,255, 0.75);
}
.rev-sbutton {
line-height: 37px;
width:37px;
height:37px;
}
.rev-sbutton-blue	{
background-color: #3B5998
}
.rev-sbutton-lightblue	{
background-color: #00A0D1;
}
.rev-sbutton-red	{
background-color: #DD4B39;
} rs-progress						{	visibility: hidden; position:absolute; z-index:200;width:100%;height:100%;}
rs-progress-bar,
.rs-progress-bar				{ 	display:block;z-index: 20;box-sizing: border-box;background-clip: content-box;position: absolute;line-height:0px;width:100%;height:100%;}
rs-progress-bgs 				{ 	display:block;z-index: 15;box-sizing: border-box; width: 100%; position: absolute; height: 100%; top: 0px; left: 0px; }
rs-progress-bg					{	display:block;background-clip: content-box; position: absolute;width:100%;height:100%;}
rs-progress-gap					{	display:block;background-clip: content-box; position: absolute;width:100%;height:100%;}
rs-progress-vis 				{ 	display:block;width: 100%;height: 100%; position: absolute;top: 0px;left: 0px } .rs-layer img {
background: transparent;
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)";
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF); } .rs-layer.slidelink { cursor:pointer;width:100%;height:100%; }
.rs-layer.slidelink a {	width:100%;height:100%;display:block}
.rs-layer.slidelink a div {	width:3000px; height:1500px;  background:url(//www.systemweld.com/wp-content/plugins/revslider/public/assets/assets/coloredbg.png) repeat}
.rs-layer.slidelink a span{	background:url(//www.systemweld.com/wp-content/plugins/revslider/public/assets/assets/coloredbg.png) repeat; width:100%;height:100%;display:block}  .rs-layer .rs-starring				{	display: inline-block}
.rs-layer .rs-starring .star-rating {
float: none;
display: inline-block;
vertical-align: top;
color: #FFC321 !important;
}
.rs-layer .rs-starring .star-rating,
.rs-layer .rs-starring-page .star-rating {
position: relative;
height: 1em;
width: 5.4em;
font-family: star;
font-size: 1em !important;
}
.rs-layer  .rs-starring .star-rating:before,
.rs-layer  .rs-starring-page .star-rating:before {
content: "\73\73\73\73\73";
color: #E0DADF;
float: left;
top: 0;
left: 0;
position: absolute;
}
.rs-layer .rs-starring .star-rating span {
overflow: hidden;
float: left;
top: 0;
left: 0;
position: absolute;
padding-top: 1.5em;
font-size: 1em !important;
}
.rs-layer .rs-starring .star-rating span:before,
.rs-layer .rs-starring .star-rating span:before {
content: "\53\53\53\53\53";
top: 0;
position: absolute;
left: 0;
} rs-loader 	{
top:50%; left:50%;
z-index:10000;
position:absolute;
}
rs-loader.off {
display: none !important;
}
rs-loader.spinner0 {
width: 40px;
height: 40px;
background-color: #fff;
background-image:url(//www.systemweld.com/wp-content/plugins/revslider/public/assets/assets/loader.gif);
background-repeat:no-repeat;
background-position: center center;
box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
margin-top:-20px;
margin-left:-20px;
animation: tp-rotateplane 1.2s infinite ease-in-out;
border-radius: 3px;
}
rs-loader.spinner1 {
width: 40px;
height: 40px;
background-color: #fff;
box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
margin-top:-20px;
margin-left:-20px;
animation: tp-rotateplane 1.2s infinite ease-in-out;
border-radius: 3px;
}
rs-loader.spinner5 	{
background-image:url(//www.systemweld.com/wp-content/plugins/revslider/public/assets/assets/loader.gif);
background-repeat:no-repeat;
background-position:10px 10px;
background-color:#fff;
margin:-22px -22px;
width:44px;height:44px;
border-radius: 3px;
}
@keyframes tp-rotateplane {
0% { transform: perspective(120px) rotateX(0deg) rotateY(0deg);}
50% { transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);}
100% { transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);}
}
rs-loader.spinner2 {
width: 40px;
height: 40px;
margin-top:-20px;margin-left:-20px;
background-color: #ff0000;
box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
border-radius: 100%;
animation: tp-scaleout 1.0s infinite ease-in-out;
}
@keyframes tp-scaleout {
0% {transform: scale(0.0);}
100% {transform: scale(1.0);opacity: 0;}
}
rs-loader.spinner3 {
margin: -9px 0px 0px -35px;
width: 70px;
text-align: center;
}
rs-loader.spinner3 .bounce1,
rs-loader.spinner3 .bounce2,
rs-loader.spinner3 .bounce3 {
width: 18px;
height: 18px;
background-color: #fff;
box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
border-radius: 100%;
display: inline-block;
animation: tp-bouncedelay 1.4s infinite ease-in-out; animation-fill-mode: both;
}
rs-loader.spinner3 .bounce1 {
animation-delay: -0.32s;
}
rs-loader.spinner3 .bounce2 {
animation-delay: -0.16s;
}
@keyframes tp-bouncedelay {
0%, 80%, 100% {transform: scale(0.0);}
40% {transform: scale(1.0);}
}
rs-loader.spinner4 {
margin: -20px 0px 0px -20px;
width: 40px;
height: 40px;
text-align: center;
animation: tp-rotate 2.0s infinite linear;
}
rs-loader.spinner4 .dot1,
rs-loader.spinner4 .dot2 {
width: 60%;
height: 60%;
display: inline-block;
position: absolute;
top: 0;
background-color: #fff;
border-radius: 100%;
animation: tp-bounce 2.0s infinite ease-in-out;
box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
}
rs-loader.spinner4 .dot2 {
top: auto;
bottom: 0px;
animation-delay: -1.0s;
}
@keyframes tp-rotate { 100% { transform: rotate(360deg);}}
@keyframes tp-bounce {
0%, 100% {transform: scale(0.0);}
50% { transform: scale(1.0);}
}
rs-layer iframe { visibility:hidden;}
rs-layer.rs-ii-o iframe { visibility: visible; }
rs-layer input[type="text"],
rs-layer input[type="email"],
rs-layer input[type="url"],
rs-layer input[type="password"],
rs-layer input[type="search"],
rs-layer input[type="number"],
rs-layer input[type="tel"],
rs-layer input[type="range"],
rs-layer input[type="date"],
rs-layer input[type="month"],
rs-layer input[type="week"],
rs-layer input[type="time"],
rs-layer input[type="datetime"],
rs-layer input[type="datetime-local"] { display: inline-block }
rs-layer input::placeholder { vertical-align: middle; line-height: inherit !important}
a.rs-layer { transition: none } rs-thumbs-wrap,
rs-tabs-wrap,
rs-thumbs,
rs-thumb,
rs-tab,
rs-bullet,
rs-bullets,
rs-navmask,
rs-tabs,
rs-arrow 					{	display:block; pointer-events: all;} .tp-thumbs.navbar,
.tp-bullets.navbar,
.tp-tabs.navbar					{	border:none; min-height: 0; margin:0; border-radius: 0; }
.tp-tabs,
.tp-thumbs,
.tp-bullets						{	position:absolute; display:block; z-index:1000; top:0px; left:0px;}
.tp-tab,
.tp-thumb 						{	cursor: pointer; position:absolute;opacity:0.5;  box-sizing: border-box;}
.tp-arr-imgholder,
rs-poster,
.tp-thumb-image,
.tp-tab-image					{	background-position: center center; background-size:cover;width:100%;height:100%; display:block; position:absolute;top:0px;left:0px;}
rs-poster 						 { cursor:pointer; z-index:3; }
.tp-tab.rs-touchhover,
.tp-tab.selected,
.tp-thumb.rs-touchhover,
.tp-thumb.selected				{	opacity:1;}
.tp-tab-mask,
.tp-thumb-mask 					{	box-sizing:border-box !important; }
.tp-tabs,
.tp-thumbs						{	box-sizing:content-box !important; }
.tp-bullet 						{	width:15px;height:15px; position:absolute; background:#fff; background:rgba(255,255,255,0.3); cursor: pointer;}
.tp-bullet.selected,
.tp-bullet.rs-touchhover				{	background:#fff;}
.tparrows						{	cursor:pointer; background:#000; background:rgba(0,0,0,0.5); width:40px;height:40px;position:absolute; display:block; z-index:1000; }
.tparrows.rs-touchhover 				{	background:#000;}
.tparrows:before				{	font-family: "revicons"; font-size:15px; color:#fff; display:block; line-height: 40px; text-align: center;}
.tparrows.tp-leftarrow:before	{	content: '\e824'; }
.tparrows.tp-rightarrow:before	{	content: '\e825'; }  .rs-layer [class^="pe-7s-"]:before,
.rs-layer [class*=" pe-7s-"]:before,
.rs-layer [class^="pe-7s-"],
.rs-layer [class*=" pe-7s-"] {
width: auto;
margin: 0;
line-height: inherit;
box-sizing: inherit;
} rs-pzimg-wrap { display: block; }
body.rtl .rs-pzimg {left: 0 !important} .rs_fake_cube {transform-style:preserve-3d}
.rs_fake_cube,
.rs_fake_cube_wall { position:absolute; -webkit-backface-visibility:hidden; backface-visibility:hidden; left:0px; top:0px; z-index: 0 }
.rs-builder-mode rs-sbg-wrap canvas,
rs-sbg canvas { overflow: hidden; z-index: 5; -webkit-backface-visibility:hidden; backface-visibility:hidden;} .dddwrappershadow { box-shadow:0 45px 100px rgba(0, 0, 0, 0.4);}
.dddwrapper { transform-style: flat;perspective: 10000px; } .rs_error_message_box { background: #111;width:800px;margin: 40px auto;padding: 40px 20px;text-align: center;font-family: "Open Sans",sans-serif}
.rs_error_message_oops {margin: 0px 0px 20px;line-height: 60px;font-size: 34px;color: #FFF;}
.rs_error_message_content {margin: 0px 0px 20px;line-height: 25px;font-size: 17px;color: #FFF;}
.rs_error_message_button {color: #fff !important;background: #333;display: inline-block;padding: 10px 15px;text-align: right;border-radius: 5px;cursor: pointer;text-decoration: none !important}
.rs_error_message_button:hover {  background:#5e35b1}
.hglayerinfo				   {position: fixed;bottom: 0px;left: 0px;color: #FFF;font-size: 12px;line-height: 20px;font-weight: 600;background: rgba(0, 0, 0, 0.75);padding: 5px 10px;z-index: 2000;white-space: normal;}
.hginfo 					   {position:absolute;top:-2px;left:-2px;color:#e74c3c;font-size:12px;font-weight:600; background:#000;padding:2px 5px;}
.indebugmode .rs-layer:hover {border:1px dashed #c0392b !important;}
.helpgrid 					   {border:2px dashed #c0392b;position:absolute;top:0px;left:0px;z-index:0 }
#revsliderlogloglog				{padding:15px;color:#fff;position:fixed; top:0px;left:0px;width:200px;height:150px;background:rgba(0,0,0,0.7); z-index:100000; font-size:10px; overflow:scroll;} .aden{filter:hue-rotate(-20deg) contrast(.9) saturate(.85) brightness(1.2)}.aden::after{background:linear-gradient(to right,rgba(66,10,14,.2),transparent);mix-blend-mode:darken}.perpetua::after,.reyes::after{mix-blend-mode:soft-light;opacity:.5}.inkwell{filter:sepia(.3) contrast(1.1) brightness(1.1) grayscale(1)}.perpetua::after{background:linear-gradient(to bottom,#005b9a,#e6c13d)}.reyes{filter:sepia(.22) brightness(1.1) contrast(.85) saturate(.75)}.reyes::after{background:#efcdad}.gingham{filter:brightness(1.05) hue-rotate(-10deg)}.gingham::after{background:linear-gradient(to right,rgba(66,10,14,.2),transparent);mix-blend-mode:darken}.toaster{filter:contrast(1.5) brightness(.9)}.toaster::after{background:radial-gradient(circle,#804e0f,#3b003b);mix-blend-mode:screen}.walden{filter:brightness(1.1) hue-rotate(-10deg) sepia(.3) saturate(1.6)}.walden::after{background:#04c;mix-blend-mode:screen;opacity:.3}.hudson{filter:brightness(1.2) contrast(.9) saturate(1.1)}.hudson::after{background:radial-gradient(circle,#a6b1ff 50%,#342134);mix-blend-mode:multiply;opacity:.5}.earlybird{filter:contrast(.9) sepia(.2)}.earlybird::after{background:radial-gradient(circle,#d0ba8e 20%,#360309 85%,#1d0210 100%);mix-blend-mode:overlay}.mayfair{filter:contrast(1.1) saturate(1.1)}.mayfair::after{background:radial-gradient(circle at 40% 40%,rgba(255,255,255,.8),rgba(255,200,200,.6),#111 60%);mix-blend-mode:overlay;opacity:.4}.lofi{filter:saturate(1.1) contrast(1.5)}.lofi::after{background:radial-gradient(circle,transparent 70%,#222 150%);mix-blend-mode:multiply}._1977{filter:contrast(1.1) brightness(1.1) saturate(1.3)}._1977:after{background:rgba(243,106,188,.3);mix-blend-mode:screen}.brooklyn{filter:contrast(.9) brightness(1.1)}.brooklyn::after{background:radial-gradient(circle,rgba(168,223,193,.4) 70%,#c4b7c8);mix-blend-mode:overlay}.xpro2{filter:sepia(.3)}.xpro2::after{background:radial-gradient(circle,#e6e7e0 40%,rgba(43,42,161,.6) 110%);mix-blend-mode:color-burn}.nashville{filter:sepia(.2) contrast(1.2) brightness(1.05) saturate(1.2)}.nashville::after{background:rgba(0,70,150,.4);mix-blend-mode:lighten}.nashville::before{background:rgba(247,176,153,.56);mix-blend-mode:darken}.lark{filter:contrast(.9)}.lark::after{background:rgba(242,242,242,.8);mix-blend-mode:darken}.lark::before{background:#22253f;mix-blend-mode:color-dodge}.moon{filter:grayscale(1) contrast(1.1) brightness(1.1)}.moon::before{background:#a0a0a0;mix-blend-mode:soft-light}.moon::after{background:#383838;mix-blend-mode:lighten}.clarendon{filter:contrast(1.2) saturate(1.35)}.clarendon:before{background:rgba(127,187,227,.2);mix-blend-mode:overlay}.willow{filter:grayscale(.5) contrast(.95) brightness(.9)}.willow::before{background-image:radial-gradient(circle,40%, #d4a9af 55%,#000 150%);mix-blend-mode:overlay}.rise{filter:brightness(1.05) sepia(.2) contrast(.9) saturate(.9)}.rise::after{background:radial-gradient(circle,rgba(232,197,152,.8),transparent 90%);mix-blend-mode:overlay;opacity:.6}.rise::before{background:radial-gradient(circle,rgba(236,205,169,.15) 55%,rgba(50,30,7,.4));mix-blend-mode:multiply}._1977:after,._1977:before,rs-pzimg-wrap.aden:after,.aden:before,.brooklyn:after,.brooklyn:before,.clarendon:after,.clarendon:before,.earlybird:after,.earlybird:before,.gingham:after,.gingham:before,.hudson:after,.hudson:before,.inkwell:after,.inkwell:before,.lark:after,.lark:before,.lofi:after,.lofi:before,.mayfair:after,.mayfair:before,.moon:after,.moon:before,.nashville:after,.nashville:before,.perpetua:after,.perpetua:before,.reyes:after,.reyes:before,.rise:after,.rise:before,.slumber:after,.slumber:before,.toaster:after,.toaster:before,.walden:after,.walden:before,.willow:after,.willow:before,.xpro2:after,.xpro2:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}._1977,.aden,.brooklyn,.clarendon,.earlybird,.gingham,.hudson,.inkwell,.lark,.lofi,.mayfair,.moon,.nashville,.perpetua,.reyes,.rise,.slumber,.toaster,.walden,.willow,.xpro2{position:absolute;}._1977:before,.aden:before,.brooklyn:before,.clarendon:before,.earlybird:before,.gingham:before,.hudson:before,.inkwell:before,.lark:before,.lofi:before,.mayfair:before,.moon:before,.nashville:before,.perpetua:before,.reyes:before,.rise:before,.slumber:before,.toaster:before,.walden:before,.willow:before,.xpro2:before{z-index:30}._1977:after,.aden:after,.brooklyn:after,.clarendon:after,.earlybird:after,.gingham:after,.hudson:after,.inkwell:after,.lark:after,.lofi:after,.mayfair:after,.moon:after,.nashville:after,.perpetua:after,.reyes:after,.rise:after,.slumber:after,.toaster:after,.walden:after,.willow:after,.xpro2:after{z-index:40}.slumber{filter:saturate(.66) brightness(1.05)}.slumber::after{background:rgba(125,105,24,.5);mix-blend-mode:soft-light}.slumber::before{background:rgba(69,41,12,.4);mix-blend-mode:lighten}
.willow::after{background-color:#d8cdcb;mix-blend-mode:color} @media not all and (min-resolution:.001dpcm) {
@supports (-webkit-appearance:none) {
.willow{filter:grayscale(1) contrast(.95) brightness(.9)}
.willow::after{background-color:transparent;}
}}
rs-pzimg-wrap.perpetua:before,rs-pzimg-wrap.perpetua:after,rs-pzimg-wrap.nashville:before,rs-pzimg-wrap.nashville:after,rs-pzimg-wrap.xpro2:before,rs-pzimg-wrap.xpro2:after,rs-pzimg-wrap._1977:after,rs-pzimg-wrap._1977:before,rs-pzimg-wrap.aden:after,rs-pzimg-wrap.aden:before,rs-pzimg-wrap.brooklyn:after,rs-pzimg-wrap.brooklyn:before,rs-pzimg-wrap.clarendon:after,rs-pzimg-wrap.clarendon:before,rs-pzimg-wrap.earlybird:after,rs-pzimg-wrap.earlybird:before,rs-pzimg-wrap.gingham:after,rs-pzimg-wrap.gingham:before,rs-pzimg-wrap.hudson:after,rs-pzimg-wrap.hudson:before,rs-pzimg-wrap.inkwell:after,rs-pzimg-wrap.inkwell:before,rs-pzimg-wrap.lark:after,rs-pzimg-wrap.lark:before,rs-pzimg-wrap.lofi:after,rs-pzimg-wrap.lofi:before,rs-pzimg-wrap.mayfair:after,rs-pzimg-wrap.mayfair:before,rs-pzimg-wrap.moon:after,rs-pzimg-wrap.moon:before,rs-pzimg-wrap.reyes:after,rs-pzimg-wrap.reyes:before,rs-pzimg-wrap.rise:after,rs-pzimg-wrap.rise:before,rs-pzimg-wrap.slumber:after,rs-pzimg-wrap.slumber:before,rs-pzimg-wrap.toaster:after,rs-pzimg-wrap.toaster:before,rs-pzimg-wrap.walden:after,rs-pzimg-wrap.walden:before,rs-pzimg-wrap.willow:after,rs-pzimg-wrap.willow:before,rs-pzimg-wrap:before,rs-pzimg-wrap:after {height:500%;width:500%} rs-loader.spinner6{width:40px;height:40px;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}rs-loader.spinner6 .rs-spinner-inner{width:100%;height:100%;display:inline-block;-webkit-animation:rs-revealer-6 1.4s linear infinite;animation:rs-revealer-6 1.4s linear infinite}rs-loader.spinner6 .rs-spinner-inner span{position:absolute;vertical-align:top;border-radius:100%;display:inline-block;width:8px;height:8px;margin-left:16px;transform-origin:center 20px;-webkit-transform-origin:center 20px}rs-loader.spinner6 .rs-spinner-inner span:nth-child(2){transform:rotate(36deg);-webkit-transform:rotate(36deg);opacity:.1}rs-loader.spinner6 .rs-spinner-inner span:nth-child(3){transform:rotate(72deg);-webkit-transform:rotate(72deg);opacity:.2}rs-loader.spinner6 .rs-spinner-inner span:nth-child(4){transform:rotate(108deg);-webkit-transform:rotate(108deg);opacity:.3}rs-loader.spinner6 .rs-spinner-inner span:nth-child(5){transform:rotate(144deg);-webkit-transform:rotate(144deg);opacity:.4}rs-loader.spinner6 .rs-spinner-inner span:nth-child(6){transform:rotate(180deg);-webkit-transform:rotate(180deg);opacity:.5}rs-loader.spinner6 .rs-spinner-inner span:nth-child(7){transform:rotate(216deg);-webkit-transform:rotate(216deg);opacity:.6}rs-loader.spinner6 .rs-spinner-inner span:nth-child(8){transform:rotate(252deg);-webkit-transform:rotate(252deg);opacity:.7}rs-loader.spinner6 .rs-spinner-inner span:nth-child(9){transform:rotate(288deg);-webkit-transform:rotate(288deg);opacity:.8}rs-loader.spinner6 .rs-spinner-inner span:nth-child(10){transform:rotate(324deg);-webkit-transform:rotate(324deg);opacity:.9}@keyframes rs-revealer-6{from{transform:rotate(0)}to{transform:rotate(360deg)}}@-webkit-keyframes rs-revealer-6{from{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(360deg)}}rs-loader.spinner7{width:35px;height:35px;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}rs-loader.spinner7 .rs-spinner-inner{width:100%;height:100%;display:inline-block;padding:0;border-radius:100%;border:2px solid;-webkit-animation:rs-revealer-7 .8s linear infinite;animation:rs-revealer-7 .8s linear infinite}@keyframes rs-revealer-7{from{transform:rotate(0)}to{transform:rotate(360deg)}}@-webkit-keyframes rs-revealer-7{from{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(360deg)}}rs-loader.spinner8{width:50px;height:50px;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}rs-loader.spinner8 .rs-spinner-inner{width:100%;height:100%;display:inline-block;padding:0;text-align:left}rs-loader.spinner8 .rs-spinner-inner span{position:absolute;display:inline-block;width:100%;height:100%;border-radius:100%;-webkit-animation:rs-revealer-8 1.6s linear infinite;animation:rs-revealer-8 1.6s linear infinite}rs-loader.spinner8 .rs-spinner-inner span:last-child{animation-delay:-.8s;-webkit-animation-delay:-.8s}@keyframes rs-revealer-8{0%{transform:scale(0,0);opacity:.5}100%{transform:scale(1,1);opacity:0}}@-webkit-keyframes rs-revealer-8{0%{-webkit-transform:scale(0,0);opacity:.5}100%{-webkit-transform:scale(1,1);opacity:0}}rs-loader.spinner9{width:40px;height:40px;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}rs-loader.spinner9 .rs-spinner-inner span{display:block;width:100%;height:100%;border-radius:50%;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:rs-revealer-9 2s infinite ease-in-out;animation:rs-revealer-9 2s infinite ease-in-out}rs-loader.spinner9 .rs-spinner-inner span:last-child{-webkit-animation-delay:-1s;animation-delay:-1s}@-webkit-keyframes rs-revealer-9{0%,100%{-webkit-transform:scale(0)}50%{-webkit-transform:scale(1)}}@keyframes rs-revealer-9{0%,100%{transform:scale(0);-webkit-transform:scale(0)}50%{transform:scale(1);-webkit-transform:scale(1)}}rs-loader.spinner10{width:54px;height:40px;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}rs-loader.spinner10 .rs-spinner-inner{width:100%;height:100%;text-align:center;font-size:10px}rs-loader.spinner10 .rs-spinner-inner span{display:block;height:100%;width:6px;display:inline-block;-webkit-animation:rs-revealer-10 1.2s infinite ease-in-out;animation:rs-revealer-10 1.2s infinite ease-in-out}rs-loader.spinner10 .rs-spinner-inner span:nth-child(2){-webkit-animation-delay:-1.1s;animation-delay:-1.1s}rs-loader.spinner10 .rs-spinner-inner span:nth-child(3){-webkit-animation-delay:-1s;animation-delay:-1s}rs-loader.spinner10 .rs-spinner-inner span:nth-child(4){-webkit-animation-delay:-.9s;animation-delay:-.9s}rs-loader.spinner10 .rs-spinner-inner span:nth-child(5){-webkit-animation-delay:-.8s;animation-delay:-.8s}@-webkit-keyframes rs-revealer-10{0%,100%,40%{-webkit-transform:scaleY(.4)}20%{-webkit-transform:scaleY(1)}}@keyframes rs-revealer-10{0%,100%,40%{transform:scaleY(.4);-webkit-transform:scaleY(.4)}20%{transform:scaleY(1);-webkit-transform:scaleY(1)}}rs-loader.spinner11{width:40px;height:40px;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}rs-loader.spinner11 .rs-spinner-inner{width:100%;height:100%}rs-loader.spinner11 .rs-spinner-inner span{display:block;width:33%;height:33%;background-color:#333;float:left;-webkit-animation:rs-revealer-11 1.3s infinite ease-in-out;animation:rs-revealer-11 1.3s infinite ease-in-out}rs-loader.spinner11 .rs-spinner-inner span:nth-child(1){-webkit-animation-delay:.2s;animation-delay:.2s}rs-loader.spinner11 .rs-spinner-inner span:nth-child(2){-webkit-animation-delay:.3s;animation-delay:.3s}rs-loader.spinner11 .rs-spinner-inner span:nth-child(3){-webkit-animation-delay:.4s;animation-delay:.4s}rs-loader.spinner11 .rs-spinner-inner span:nth-child(4){-webkit-animation-delay:.1s;animation-delay:.1s}rs-loader.spinner11 .rs-spinner-inner span:nth-child(5){-webkit-animation-delay:.2s;animation-delay:.2s}rs-loader.spinner11 .rs-spinner-inner span:nth-child(6){-webkit-animation-delay:.3s;animation-delay:.3s}rs-loader.spinner11 .rs-spinner-inner span:nth-child(7){-webkit-animation-delay:0s;animation-delay:0s}rs-loader.spinner11 .rs-spinner-inner span:nth-child(8){-webkit-animation-delay:.1s;animation-delay:.1s}rs-loader.spinner11 .rs-spinner-inner span:nth-child(9){-webkit-animation-delay:.2s;animation-delay:.2s}@-webkit-keyframes rs-revealer-11{0%,100%,70%{-webkit-transform:scale3D(1,1,1);transform:scale3D(1,1,1)}35%{-webkit-transform:scale3D(0,0,1);transform:scale3D(0,0,1)}}@keyframes rs-revealer-11{0%,100%,70%{-webkit-transform:scale3D(1,1,1);transform:scale3D(1,1,1)}35%{-webkit-transform:scale3D(0,0,1);transform:scale3D(0,0,1)}}rs-loader.spinner12{width:35px;height:35px;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}rs-loader.spinner12 .rs-spinner-inner{width:100%;height:100%;-webkit-animation:rs-revealer-12 1s infinite linear;animation:rs-revealer-12 1s infinite linear}@-webkit-keyframes rs-revealer-12{0%{-webkit-transform:rotate(0)}100%{-webkit-transform:rotate(360deg)}}@keyframes rs-revealer-12{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}rs-loader.spinner13{width:40px;height:40px;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}rs-loader.spinner13 .rs-spinner-inner{width:100%;height:100%}rs-loader.spinner13 .rs-spinner-inner span{display:block;width:40%;height:40%;position:absolute;border-radius:50%;-webkit-animation:rs-revealer-13 2s ease infinite;animation:rs-revealer-13 2s ease infinite}rs-loader.spinner13 .rs-spinner-inner span:nth-child(1){animation-delay:-1.5s;-webkit-animation-delay:-1.5s}rs-loader.spinner13 .rs-spinner-inner span:nth-child(2){animation-delay:-1s;-webkit-animation-delay:-1s}rs-loader.spinner13 .rs-spinner-inner span:nth-child(3){animation-delay:-.5s;-webkit-animation-delay:-.5s}@keyframes rs-revealer-13{0%,100%{transform:translate(0)}25%{transform:translate(160%)}50%{transform:translate(160%,160%)}75%{transform:translate(0,160%)}}@-webkit-keyframes rs-revealer-13{0%,100%{-webkit-transform:translate(0)}25%{-webkit-transform:translate(160%)}50%{-webkit-transform:translate(160%,160%)}75%{-webkit-transform:translate(0,160%)}}rs-loader.spinner14{width:40px;height:40px;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}rs-loader.spinner14 .rs-spinner-inner{width:100%;height:100%;animation:rs-revealer-14 1s infinite linear}rs-loader.spinner14 .rs-spinner-inner span{display:block;position:absolute;top:50%;left:50%;width:16px;height:16px;border-radius:50%;margin:-8px}rs-loader.spinner14 .rs-spinner-inner span:nth-child(1){-webkit-animation:rs-revealer-14-1 2s infinite;animation:rs-revealer-14-1 2s infinite}rs-loader.spinner14 .rs-spinner-inner span:nth-child(2){-webkit-animation:rs-revealer-14-2 2s infinite;animation:rs-revealer-14-2 2s infinite}rs-loader.spinner14 .rs-spinner-inner span:nth-child(3){-webkit-animation:rs-revealer-14-3 2s infinite;animation:rs-revealer-14-3 2s infinite}rs-loader.spinner14 .rs-spinner-inner span:nth-child(4){-webkit-animation:rs-revealer-14-4 2s infinite;animation:rs-revealer-14-4 2s infinite}@-webkit-keyframes rs-revealer-14-1{0%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}20%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(80%,80%,0)}80%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(80%,80%,0)}100%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}}@-webkit-keyframes rs-revealer-14-2{0%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}20%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(80%,-80%,0)}80%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(80%,-80%,0)}100%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}}@-webkit-keyframes rs-revealer-14-3{0%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}20%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(-80%,-80%,0)}80%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(-80%,-80%,0)}100%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}}@-webkit-keyframes rs-revealer-14-4{0%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}20%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(-80%,80%,0)}80%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(-80%,80%,0)}100%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}}@keyframes rs-revealer-14-1{0%{transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}20%{transform:rotate3d(0,0,1,0deg) translate3d(80%,80%,0)}80%{transform:rotate3d(0,0,1,360deg) translate3d(80%,80%,0)}100%{transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}}@keyframes rs-revealer-14-2{0%{transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}20%{transform:rotate3d(0,0,1,0deg) translate3d(80%,-80%,0)}80%{transform:rotate3d(0,0,1,360deg) translate3d(80%,-80%,0)}100%{transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}}@keyframes rs-revealer-14-3{0%{transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}20%{transform:rotate3d(0,0,1,0deg) translate3d(-80%,-80%,0)}80%{transform:rotate3d(0,0,1,360deg) translate3d(-80%,-80%,0)}100%{transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}}@keyframes rs-revealer-14-4{0%{transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}20%{transform:rotate3d(0,0,1,0deg) translate3d(-80%,80%,0)}80%{transform:rotate3d(0,0,1,360deg) translate3d(-80%,80%,0)}100%{transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}}rs-loader.spinner15{width:40px;height:40px;margin-top:-4px;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}rs-loader.spinner15 .rs-spinner-inner{width:100%;height:100%}rs-loader.spinner15 .rs-spinner-inner span{display:block;width:20px;height:20px;position:absolute;top:0;left:0;-webkit-animation:rs-revealer-15 1.8s infinite ease-in-out;animation:rs-revealer-15 1.8s infinite ease-in-out}rs-loader.spinner15 .rs-spinner-inner:last-child{-webkit-animation-delay:-.9s;animation-delay:-.9s}@-webkit-keyframes rs-revealer-15{25%{-webkit-transform:translateX(30px) rotate(-90deg) scale(.5)}50%{-webkit-transform:translateX(30px) translateY(30px) rotate(-180deg)}75%{-webkit-transform:translateX(0) translateY(30px) rotate(-270deg) scale(.5)}100%{-webkit-transform:rotate(-360deg)}}@keyframes rs-revealer-15{25%{transform:translateX(30px) rotate(-90deg) scale(.5);-webkit-transform:translateX(30px) rotate(-90deg) scale(.5)}50%{transform:translateX(30px) translateY(30px) rotate(-179deg);-webkit-transform:translateX(30px) translateY(30px) rotate(-179deg)}50.1%{transform:translateX(30px) translateY(30px) rotate(-180deg);-webkit-transform:translateX(30px) translateY(30px) rotate(-180deg)}75%{transform:translateX(0) translateY(30px) rotate(-270deg) scale(.5);-webkit-transform:translateX(0) translateY(30px) rotate(-270deg) scale(.5)}100%{transform:rotate(-360deg);-webkit-transform:rotate(-360deg)}} .bgcanvas { display: none; position: absolute; overflow: hidden; } .RSscrollbar-measure {
width: 100px;
height: 100px;
overflow: scroll;
position: absolute;
top: -9999px;
} .avada-has-rev-slider-styles .rev_slider_wrapper {
transform:none;
}