@charset "UTF-8";
@charset "UTF-8";

 .animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.animated.infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.animated.hinge {
-webkit-animation-duration: 2s;
animation-duration: 2s;
}
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
-webkit-animation-duration: .75s;
animation-duration: .75s;
}
@-webkit-keyframes bounce {
from, 20%, 53%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
40%, 43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0);
}
}
@keyframes bounce {
from, 20%, 53%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
40%, 43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0);
}
}
.bounce {
-webkit-animation-name: bounce;
animation-name: bounce;
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
}
@-webkit-keyframes flash {
from, 50%, to {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
@keyframes flash {
from, 50%, to {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
.flash {
-webkit-animation-name: flash;
animation-name: flash;
} @-webkit-keyframes pulse {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes pulse {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.pulse {
-webkit-animation-name: pulse;
animation-name: pulse;
}
@-webkit-keyframes rubberBand {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes rubberBand {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.rubberBand {
-webkit-animation-name: rubberBand;
animation-name: rubberBand;
}
@-webkit-keyframes shake {
from, to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
@keyframes shake {
from, to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
.shake {
-webkit-animation-name: shake;
animation-name: shake;
}
@-webkit-keyframes headShake {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
6.5% {
-webkit-transform: translateX(-6px) rotateY(-9deg);
transform: translateX(-6px) rotateY(-9deg);
}
18.5% {
-webkit-transform: translateX(5px) rotateY(7deg);
transform: translateX(5px) rotateY(7deg);
}
31.5% {
-webkit-transform: translateX(-3px) rotateY(-5deg);
transform: translateX(-3px) rotateY(-5deg);
}
43.5% {
-webkit-transform: translateX(2px) rotateY(3deg);
transform: translateX(2px) rotateY(3deg);
}
50% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes headShake {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
6.5% {
-webkit-transform: translateX(-6px) rotateY(-9deg);
transform: translateX(-6px) rotateY(-9deg);
}
18.5% {
-webkit-transform: translateX(5px) rotateY(7deg);
transform: translateX(5px) rotateY(7deg);
}
31.5% {
-webkit-transform: translateX(-3px) rotateY(-5deg);
transform: translateX(-3px) rotateY(-5deg);
}
43.5% {
-webkit-transform: translateX(2px) rotateY(3deg);
transform: translateX(2px) rotateY(3deg);
}
50% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
.headShake {
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
-webkit-animation-name: headShake;
animation-name: headShake;
}
@-webkit-keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
to {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
@keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
to {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
.swing {
-webkit-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing;
}
@-webkit-keyframes tada {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%, 20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes tada {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%, 20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.tada {
-webkit-animation-name: tada;
animation-name: tada;
} @-webkit-keyframes wobble {
from {
-webkit-transform: none;
transform: none;
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes wobble {
from {
-webkit-transform: none;
transform: none;
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
-webkit-transform: none;
transform: none;
}
}
.wobble {
-webkit-animation-name: wobble;
animation-name: wobble;
}
@-webkit-keyframes jello {
from, 11.1%, to {
-webkit-transform: none;
transform: none;
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
@keyframes jello {
from, 11.1%, to {
-webkit-transform: none;
transform: none;
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
.jello {
-webkit-animation-name: jello;
animation-name: jello;
-webkit-transform-origin: center;
transform-origin: center;
}
@-webkit-keyframes bounceIn {
from, 20%, 40%, 60%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes bounceIn {
from, 20%, 40%, 60%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.bounceIn {
-webkit-animation-name: bounceIn;
animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInDown {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInDown {
-webkit-animation-name: bounceInDown;
animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInLeft {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInRight {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInRight {
-webkit-animation-name: bounceInRight;
animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInUp {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.bounceInUp {
-webkit-animation-name: bounceInUp;
animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
}
@keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
}
.bounceOut {
-webkit-animation-name: bounceOut;
animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.bounceOutDown {
-webkit-animation-name: bounceOutDown;
animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.bounceOutLeft {
-webkit-animation-name: bounceOutLeft;
animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.bounceOutRight {
-webkit-animation-name: bounceOutRight;
animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.bounceOutUp {
-webkit-animation-name: bounceOutUp;
animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDownBig {
-webkit-animation-name: fadeInDownBig;
animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeftBig {
-webkit-animation-name: fadeInLeftBig;
animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRightBig {
-webkit-animation-name: fadeInRightBig;
animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUpBig {
-webkit-animation-name: fadeInUpBig;
animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
.fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.fadeOutDown {
-webkit-animation-name: fadeOutDown;
animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.fadeOutDownBig {
-webkit-animation-name: fadeOutDownBig;
animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.fadeOutLeft {
-webkit-animation-name: fadeOutLeft;
animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.fadeOutLeftBig {
-webkit-animation-name: fadeOutLeftBig;
animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.fadeOutRight {
-webkit-animation-name: fadeOutRight;
animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.fadeOutRightBig {
-webkit-animation-name: fadeOutRightBig;
animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.fadeOutUp {
-webkit-animation-name: fadeOutUp;
animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.fadeOutUpBig {
-webkit-animation-name: fadeOutUpBig;
animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
transform: perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
@keyframes flip {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
transform: perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
.animated.flip {
-webkit-backface-visibility: visible;
backface-visibility: visible;
-webkit-animation-name: flip;
animation-name: flip;
}
@-webkit-keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInX {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInX;
animation-name: flipInX;
}
@-webkit-keyframes flipInY {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInY {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInY;
animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutX {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
.flipOutX {
-webkit-animation-name: flipOutX;
animation-name: flipOutX;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutY {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
.flipOutY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipOutY;
animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
from {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1;
}
to {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes lightSpeedIn {
from {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1;
}
to {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.lightSpeedIn {
-webkit-animation-name: lightSpeedIn;
animation-name: lightSpeedIn;
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
from {
opacity: 1;
}
to {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
@keyframes lightSpeedOut {
from {
opacity: 1;
}
to {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
.lightSpeedOut {
-webkit-animation-name: lightSpeedOut;
animation-name: lightSpeedOut;
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
from {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateIn {
from {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateIn {
-webkit-animation-name: rotateIn;
animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInDownLeft {
-webkit-animation-name: rotateInDownLeft;
animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInDownRight {
-webkit-animation-name: rotateInDownRight;
animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInUpLeft {
-webkit-animation-name: rotateInUpLeft;
animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInUpRight {
-webkit-animation-name: rotateInUpRight;
animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
from {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
@keyframes rotateOut {
from {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
.rotateOut {
-webkit-animation-name: rotateOut;
animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
@keyframes rotateOutDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
.rotateOutDownLeft {
-webkit-animation-name: rotateOutDownLeft;
animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutDownRight {
-webkit-animation-name: rotateOutDownRight;
animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutUpLeft {
-webkit-animation-name: rotateOutUpLeft;
animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
@keyframes rotateOutUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
.rotateOutUpRight {
-webkit-animation-name: rotateOutUpRight;
animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%, 80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
@keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%, 80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
.hinge {
-webkit-animation-name: hinge;
animation-name: hinge;
} @-webkit-keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.rollIn {
-webkit-animation-name: rollIn;
animation-name: rollIn;
} @-webkit-keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
@keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
.rollOut {
-webkit-animation-name: rollOut;
animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
@keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
.zoomIn {
-webkit-animation-name: zoomIn;
animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInDown {
-webkit-animation-name: zoomInDown;
animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInLeft {
-webkit-animation-name: zoomInLeft;
animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInRight {
-webkit-animation-name: zoomInRight;
animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInUp {
-webkit-animation-name: zoomInUp;
animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
to {
opacity: 0;
}
}
@keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
to {
opacity: 0;
}
}
.zoomOut {
-webkit-animation-name: zoomOut;
animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutDown {
-webkit-animation-name: zoomOutDown;
animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
.zoomOutLeft {
-webkit-animation-name: zoomOutLeft;
animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
@keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
.zoomOutRight {
-webkit-animation-name: zoomOutRight;
animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutUp {
-webkit-animation-name: zoomOutUp;
animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInDown {
-webkit-animation-name: slideInDown;
animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInLeft {
-webkit-animation-name: slideInLeft;
animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInRight {
-webkit-animation-name: slideInRight;
animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInUp {
-webkit-animation-name: slideInUp;
animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.slideOutDown {
-webkit-animation-name: slideOutDown;
animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.slideOutLeft {
-webkit-animation-name: slideOutLeft;
animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.slideOutRight {
-webkit-animation-name: slideOutRight;
animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.slideOutUp {
-webkit-animation-name: slideOutUp;
animation-name: slideOutUp;
}.lvca-container, .lvca-grid-container {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.lvca-container *, .lvca-container *::after, .lvca-container *::before, .lvca-grid-container *, .lvca-grid-container *::after, .lvca-grid-container *::before {
-webkit-box-sizing: inherit;
box-sizing: inherit; }
.lvca-container ol, .lvca-container ul, .lvca-container ol > li, .lvca-container ul > li, .lvca-container ol:hover, .lvca-container ul:hover, .lvca-container ul > li:hover, .lvca-container ol > li:hover, .lvca-container ol > li > a, .lvca-container ul > li > a, .lvca-container ol > li > a:hover, .lvca-container ul > li > a:hover, .lvca-container img, .lvca-grid-container ol, .lvca-grid-container ul, .lvca-grid-container ol > li, .lvca-grid-container ul > li, .lvca-grid-container ol:hover, .lvca-grid-container ul:hover, .lvca-grid-container ul > li:hover, .lvca-grid-container ol > li:hover, .lvca-grid-container ol > li > a, .lvca-grid-container ul > li > a, .lvca-grid-container ol > li > a:hover, .lvca-grid-container ul > li > a:hover, .lvca-grid-container img {
padding: 0;
margin: 0;
border: none;
-webkit-box-shadow: none;
box-shadow: none;
list-style: none;
background: none; }
.lvca-container ol:before, .lvca-container ol:after, .lvca-container ul:before, .lvca-container ul:after, .lvca-container ol > li:before, .lvca-container ol > li:after, .lvca-container ul > li:before, .lvca-container ul > li:after, .lvca-container ol:hover:before, .lvca-container ol:hover:after, .lvca-container ul:hover:before, .lvca-container ul:hover:after, .lvca-container ul > li:hover:before, .lvca-container ul > li:hover:after, .lvca-container ol > li:hover:before, .lvca-container ol > li:hover:after, .lvca-container ol > li > a:before, .lvca-container ol > li > a:after, .lvca-container ul > li > a:before, .lvca-container ul > li > a:after, .lvca-container ol > li > a:hover:before, .lvca-container ol > li > a:hover:after, .lvca-container ul > li > a:hover:before, .lvca-container ul > li > a:hover:after, .lvca-container img:before, .lvca-container img:after, .lvca-grid-container ol:before, .lvca-grid-container ol:after, .lvca-grid-container ul:before, .lvca-grid-container ul:after, .lvca-grid-container ol > li:before, .lvca-grid-container ol > li:after, .lvca-grid-container ul > li:before, .lvca-grid-container ul > li:after, .lvca-grid-container ol:hover:before, .lvca-grid-container ol:hover:after, .lvca-grid-container ul:hover:before, .lvca-grid-container ul:hover:after, .lvca-grid-container ul > li:hover:before, .lvca-grid-container ul > li:hover:after, .lvca-grid-container ol > li:hover:before, .lvca-grid-container ol > li:hover:after, .lvca-grid-container ol > li > a:before, .lvca-grid-container ol > li > a:after, .lvca-grid-container ul > li > a:before, .lvca-grid-container ul > li > a:after, .lvca-grid-container ol > li > a:hover:before, .lvca-grid-container ol > li > a:hover:after, .lvca-grid-container ul > li > a:hover:before, .lvca-grid-container ul > li > a:hover:after, .lvca-grid-container img:before, .lvca-grid-container img:after {
display: none; }
.lvca-container a, .lvca-grid-container a {
text-decoration: initial; }
.lvca-container img, .lvca-grid-container img {
max-width: 100%;
width: auto;
height: auto; } .lvca-container {
margin-left: auto;
margin-right: auto; }
.lvca-container::after {
clear: both;
content: "";
display: block; }
.panel-grid .widget {
border: 0; }
.lvca-center {
text-align: center; }
.lvca-grid-container {
margin-left: -20px;
margin-right: -20px;
width: calc(100% + 40px); }
.lvca-grid-container::after {
clear: both;
content: "";
display: block; }
.lvca-grid-container .lvca-grid-item {
min-height: 1px; }
@media (max-width: 479px) {
.lvca-grid-container.lvca-grid-mobile-2 .lvca-grid-item:nth-child(2n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-mobile-3 .lvca-grid-item:nth-child(3n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-mobile-4 .lvca-grid-item:nth-child(4n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-mobile-5 .lvca-grid-item:nth-child(5n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-mobile-6 .lvca-grid-item:nth-child(6n+1) {
clear: left; } }
@media (min-width: 480px) and (max-width: 800px) {
.lvca-grid-container.lvca-grid-tablet-2 .lvca-grid-item:nth-child(2n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-tablet-3 .lvca-grid-item:nth-child(3n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-tablet-4 .lvca-grid-item:nth-child(4n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-tablet-5 .lvca-grid-item:nth-child(5n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-tablet-6 .lvca-grid-item:nth-child(6n+1) {
clear: left; } }
@media only screen and (min-width: 801px) {
.lvca-grid-container.lvca-grid-desktop-2 .lvca-grid-item:nth-child(2n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-desktop-3 .lvca-grid-item:nth-child(3n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-desktop-4 .lvca-grid-item:nth-child(4n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-desktop-5 .lvca-grid-item:nth-child(5n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-desktop-6 .lvca-grid-item:nth-child(6n+1) {
clear: left; } }
.lvca-grid-container.lvca-grid-mobile-1 .lvca-grid-item {
width: calc(100% - 40px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-mobile-2 .lvca-grid-item {
width: calc(50% - 30px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-mobile-3 .lvca-grid-item {
width: calc(33.33333% - 26.66667px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-mobile-4 .lvca-grid-item {
width: calc(25% - 25px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-mobile-5 .lvca-grid-item {
width: calc(20% - 24px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-mobile-6 .lvca-grid-item {
width: calc(16.66667% - 23.33333px);
float: left;
margin-left: 20px; }
@media only screen and (min-width: 480px) {
.lvca-grid-container.lvca-grid-tablet-1 .lvca-grid-item {
width: calc(100% - 40px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-tablet-2 .lvca-grid-item {
width: calc(50% - 30px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-tablet-3 .lvca-grid-item {
width: calc(33.33333% - 26.66667px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-tablet-4 .lvca-grid-item {
width: calc(25% - 25px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-tablet-5 .lvca-grid-item {
width: calc(20% - 24px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-tablet-6 .lvca-grid-item {
width: calc(16.66667% - 23.33333px);
float: left;
margin-left: 20px; } }
@media only screen and (min-width: 801px) {
.lvca-grid-container.lvca-grid-desktop-1 .lvca-grid-item {
width: calc(100% - 40px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-desktop-2 .lvca-grid-item {
width: calc(50% - 30px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-desktop-3 .lvca-grid-item {
width: calc(33.33333% - 26.66667px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-desktop-4 .lvca-grid-item {
width: calc(25% - 25px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-desktop-5 .lvca-grid-item {
width: calc(20% - 24px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-desktop-6 .lvca-grid-item {
width: calc(16.66667% - 23.33333px);
float: left;
margin-left: 20px; } } .lvca-gapless-grid .lvca-grid-container {
margin-left: 0;
margin-right: 0;
width: auto; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-mobile-1 .lvca-grid-item {
width: calc(100%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-mobile-2 .lvca-grid-item {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-mobile-3 .lvca-grid-item {
width: calc(33.33333%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-mobile-4 .lvca-grid-item {
width: calc(25%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-mobile-5 .lvca-grid-item {
width: calc(20%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-mobile-6 .lvca-grid-item {
width: calc(16.66667%);
float: left;
margin-left: 0px; }
@media only screen and (min-width: 480px) {
.lvca-gapless-grid .lvca-grid-container.lvca-grid-tablet-1 .lvca-grid-item {
width: calc(100%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-tablet-2 .lvca-grid-item {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-tablet-3 .lvca-grid-item {
width: calc(33.33333%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-tablet-4 .lvca-grid-item {
width: calc(25%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-tablet-5 .lvca-grid-item {
width: calc(20%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-tablet-6 .lvca-grid-item {
width: calc(16.66667%);
float: left;
margin-left: 0px; } }
@media only screen and (min-width: 801px) {
.lvca-gapless-grid .lvca-grid-container.lvca-grid-desktop-1 .lvca-grid-item {
width: calc(100%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-desktop-2 .lvca-grid-item {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-desktop-3 .lvca-grid-item {
width: calc(33.33333%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-desktop-4 .lvca-grid-item {
width: calc(25%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-desktop-5 .lvca-grid-item {
width: calc(20%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-desktop-6 .lvca-grid-item {
width: calc(16.66667%);
float: left;
margin-left: 0px; } } .lvca-gapless-grid .lvca-masonry { }
.lvca-gapless-grid .lvca-masonry .lvca-grid-item {
clear: none !important; }
.lvca-gapless-grid .lvca-masonry .lvca-grid-sizer {
width: calc(8.33333%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-mobile-1 .lvca-grid-item.lvca-wide {
width: calc(100%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-mobile-2 .lvca-grid-item.lvca-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-mobile-3 .lvca-grid-item.lvca-wide {
width: calc(66.66667%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-mobile-4 .lvca-grid-item.lvca-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-mobile-5 .lvca-grid-item.lvca-wide {
width: calc(40%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-mobile-6 .lvca-grid-item.lvca-wide {
width: calc(33.33333%);
float: left;
margin-left: 0px; }
@media only screen and (min-width: 480px) {
.lvca-gapless-grid .lvca-masonry.lvca-grid-tablet-1 .lvca-grid-item.lvca-wide {
width: calc(100%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-tablet-2 .lvca-grid-item.lvca-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-tablet-3 .lvca-grid-item.lvca-wide {
width: calc(66.66667%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-tablet-4 .lvca-grid-item.lvca-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-tablet-5 .lvca-grid-item.lvca-wide {
width: calc(40%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-tablet-6 .lvca-grid-item.lvca-wide {
width: calc(33.33333%);
float: left;
margin-left: 0px; } }
@media only screen and (min-width: 801px) {
.lvca-gapless-grid .lvca-masonry.lvca-grid-desktop-1 .lvca-grid-item.lvca-wide {
width: calc(100%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-desktop-2 .lvca-grid-item.lvca-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-desktop-3 .lvca-grid-item.lvca-wide {
width: calc(66.66667%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-desktop-4 .lvca-grid-item.lvca-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-desktop-5 .lvca-grid-item.lvca-wide {
width: calc(40%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-desktop-6 .lvca-grid-item.lvca-wide {
width: calc(33.33333%);
float: left;
margin-left: 0px; } } .lvca-container .lvca-thumbnailslider.lvca-flexslider {
margin-top: 15px; }
.lvca-container .lvca-thumbnailslider.lvca-flexslider .lvca-slide {
margin: 0 5px 0 0; }
.lvca-container .lvca-thumbnailslider.lvca-flexslider .lvca-slide img {
display: block;
opacity: .5;
cursor: pointer; }
.lvca-container .lvca-thumbnailslider.lvca-flexslider .lvca-slide img:hover {
opacity: 1; }
.lvca-container .lvca-thumbnailslider.lvca-flexslider .lvca-slide.lvca-flex-active-slide img {
opacity: 1;
cursor: default; }
.lvca-container .lvca-flex-direction-nav {
padding: 0 !important;
margin: 0 !important; }
.lvca-container .lvca-flex-direction-nav li {
position: initial; }
.lvca-container .lvca-flex-direction-nav a, .lvca-container .lvca-flex-direction-nav a:hover {
opacity: 1;
text-shadow: none;
background: none;
color: #888;
font-family: 'lvca-icomoon' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 24px;
width: 28px;
height: 28px;
margin: -14px 0 0;
bottom: initial;
left: initial;
right: initial;
top: 50%;
text-indent: 0;
text-align: center;
color: #aaa;
-webkit-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
outline: none; }
.lvca-container .lvca-flex-direction-nav a:before, .lvca-container .lvca-flex-direction-nav a:hover:before, .lvca-container .lvca-flex-direction-nav a:hover:before, .lvca-container .lvca-flex-direction-nav a:hover:hover:before {
margin: 2px;
vertical-align: middle;
display: inline;
font-family: inherit !important;
opacity: 1; }
.lvca-container .lvca-flex-direction-nav a:hover, .lvca-container .lvca-flex-direction-nav a:hover:hover {
color: #888; }
.lvca-dark-bg .lvca-container .lvca-flex-direction-nav a, .lvca-dark-bg .lvca-container .lvca-flex-direction-nav a:hover {
color: #888; }
.lvca-dark-bg .lvca-container .lvca-flex-direction-nav a:hover, .lvca-dark-bg .lvca-container .lvca-flex-direction-nav a:hover:hover {
color: #aaa; }
@media only screen and (max-width: 960px) {
.lvca-container .lvca-flex-direction-nav a, .lvca-container .lvca-flex-direction-nav a:hover {
display: none; } }
.lvca-container .lvca-flex-direction-nav a.lvca-flex-prev {
left: -30px; }
.lvca-container .lvca-flex-direction-nav a.lvca-flex-prev:before {
content: "\e900"; }
.lvca-container .lvca-flex-direction-nav a.lvca-flex-next {
right: -30px; }
.lvca-container .lvca-flex-direction-nav a.lvca-flex-next:before {
content: "\e901"; }
.lvca-container .lvca-flex-control-nav {
width: 100%;
position: absolute;
bottom: -40px;
text-align: center;
padding: 0 !important;
margin: 0 !important; }
.lvca-container .lvca-flex-control-nav li, .lvca-container .lvca-flex-control-nav li:hover {
margin: 0 8px 0 0;
padding: 0;
border: none;
-webkit-box-shadow: none;
box-shadow: none; }
.lvca-container .lvca-flex-control-nav li a, .lvca-container .lvca-flex-control-nav li a:hover {
background: #aaa;
border: 1px solid #aaa;
border-radius: 50%;
width: 12px;
height: 12px;
-webkit-box-shadow: none;
box-shadow: none;
-webkit-transition: all 0.2s ease-in 0s;
transition: all 0.2s ease-in 0s;
display: inline-block;
vertical-align: middle;
outline: none; }
.lvca-dark-bg .lvca-container .lvca-flex-control-nav li a, .lvca-dark-bg .lvca-container .lvca-flex-control-nav li a:hover {
background: #ccc;
border-color: #ccc; }
.lvca-container .lvca-flex-control-nav li a.lvca-flex-active, .lvca-container .lvca-flex-control-nav li a:hover.lvca-flex-active, .lvca-container .lvca-flex-control-nav li a:hover {
background: none; }
.lvca-container .lvca-flex-control-nav li a.lvca-flex-active, .lvca-container .lvca-flex-control-nav li a:hover.lvca-flex-active {
width: 14px;
height: 14px; }
.lvca-container .lvca-flex-control-thumbs {
bottom: -120px; }
@media only screen and (max-width: 600px) {
.lvca-container .lvca-flex-control-thumbs {
bottom: -80px; } }
.lvca-container .lvca-flex-control-thumbs li {
width: auto;
float: none; }
.lvca-container .lvca-flex-control-thumbs li img {
max-width: 100%;
width: 150px; }
@media only screen and (max-width: 600px) {
.lvca-container .lvca-flex-control-thumbs li img {
width: 100px; } } .slick-loading .slick-list {
background: #fff url(https://edutechbusiness.com/wp-content/plugins/addons-for-visual-composer/assets/css/ajax-loader.gif) center center no-repeat; }
.lvca-container button.slick-prev, .lvca-container button.slick-next {
position: absolute;
bottom: initial;
left: initial;
right: initial;
top: 50%;
width: 28px;
height: 28px;
margin: -14px 0 0; }
.lvca-container button.slick-prev, .lvca-container button.slick-prev:before, .lvca-container button.slick-prev:after, .lvca-container button.slick-next, .lvca-container button.slick-next:before, .lvca-container button.slick-next:after {
text-shadow: none;
background: none !important;
border: none;
padding: 0;
opacity: 1;
font-family: 'lvca-icomoon' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 24px;
color: #aaa !important;
overflow: hidden;
-webkit-box-shadow: none;
box-shadow: none;
outline: none;
text-indent: 0;
text-align: center;
-webkit-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s; }
.lvca-container button.slick-prev:before, .lvca-container button.slick-next:before {
margin: 2px;
vertical-align: middle; }
.lvca-container button.slick-prev:hover:before, .lvca-container button.slick-prev:hover:after, .lvca-container button.slick-next:hover:before, .lvca-container button.slick-next:hover:after {
color: #888 !important; }
.lvca-dark-bg .lvca-container button.slick-prev:before, .lvca-dark-bg .lvca-container button.slick-prev:after, .lvca-dark-bg .lvca-container button.slick-next:before, .lvca-dark-bg .lvca-container button.slick-next:after {
color: #888 !important; }
.lvca-dark-bg .lvca-container button.slick-prev:hover:before, .lvca-dark-bg .lvca-container button.slick-prev:hover:after, .lvca-dark-bg .lvca-container button.slick-next:hover:before, .lvca-dark-bg .lvca-container button.slick-next:hover:after {
color: #aaa !important;
background: none !important; }
@media only screen and (max-width: 1024px) {
.lvca-container button.slick-prev, .lvca-container button.slick-next {
display: none !important; } }
.lvca-container button.slick-prev {
left: -40px; }
.lvca-container button.slick-prev:before {
content: "\e900"; }
.lvca-container button.slick-next {
right: -40px; }
.lvca-container button.slick-next:before {
content: "\e901"; }
.lvca-container ul.slick-dots {
width: 100%;
position: absolute;
bottom: -30px;
text-align: center;
padding: 0 !important;
margin: 0 !important; }
.lvca-container ul.slick-dots li {
margin: 0 8px 0 0 !important;
padding: 0 !important;
display: inline-block;
font-size: 0; }
.lvca-container ul.slick-dots li button {
padding: 0;
background: #aaa;
border: 1px solid #aaa;
border-radius: 50%;
width: 12px;
height: 12px;
-webkit-box-shadow: none;
box-shadow: none;
-webkit-transition: background 0.3s ease-in-out 0s;
transition: background 0.3s ease-in-out 0s;
font-size: 0;
outline: none; }
.lvca-dark-bg .lvca-container ul.slick-dots li button {
background: #888 !important;
border-color: #888 !important; }
.lvca-container ul.slick-dots li button:hover, .lvca-container ul.slick-dots li.slick-active button {
background: none !important;
border-color: #aaa !important; }
.lvca-container ul.slick-dots li.slick-active button {
width: 14px;
height: 14px; } .lvca-widget-heading {
font-size: 18px;
line-height: 26px;
letter-spacing: 1px;
font-weight: bold;
color: #333;
text-transform: uppercase;
clear: none;
margin-top: 0;
margin-bottom: 10px;
font-size: 40px;
line-height: 52px;
text-align: center; }
@media only screen and (max-width: 767px) {
.lvca-widget-heading {
font-size: 32px;
line-height: 44px; } } .lvca-spacer {
clear: both; } input.lvca-button, button.lvca-button, a.lvca-button, .lvca-button:active, .lvca-button:visited {
display: inline-block;
text-align: center;
line-height: 1;
cursor: pointer;
-webkit-appearance: none;
vertical-align: middle;
border: 1px solid transparent;
border-radius: 3px;
padding: 16px 40px;
margin: 0;
font-size: 12px;
font-weight: normal;
text-transform: uppercase;
letter-spacing: 2px;
background-color: #f94213;
color: #fefefe;
outline: none;
-webkit-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s; }
input.lvca-button.lvca-rounded, button.lvca-button.lvca-rounded, a.lvca-button.lvca-rounded, .lvca-button:active.lvca-rounded, .lvca-button:visited.lvca-rounded {
border-radius: 999px; }
input.lvca-button.lvca-large, button.lvca-button.lvca-large, a.lvca-button.lvca-large, .lvca-button:active.lvca-large, .lvca-button:visited.lvca-large {
padding: 20px 60px; }
input.lvca-button.lvca-small, button.lvca-button.lvca-small, a.lvca-button.lvca-small, .lvca-button:active.lvca-small, .lvca-button:visited.lvca-small {
padding: 12px 25px;
font-size: 11px; }
input.lvca-button:hover, button.lvca-button:hover, a.lvca-button:hover, .lvca-button:active:hover, .lvca-button:visited:hover {
background-color: #f9633e;
color: #fefefe; }
input.lvca-button img, input.lvca-button span.lvca-icon, button.lvca-button img, button.lvca-button span.lvca-icon, a.lvca-button img, a.lvca-button span.lvca-icon, .lvca-button:active img, .lvca-button:active span.lvca-icon, .lvca-button:visited img, .lvca-button:visited span.lvca-icon {
margin-right: 10px; }
.lvca-button.lvca-black {
background-color: #363636; }
.lvca-button.lvca-black:hover {
background-color: #434343; }
.lvca-button.lvca-blue {
background-color: #46a5d5; }
.lvca-button.lvca-blue:hover {
background-color: #5bafda; }
.lvca-button.lvca-cyan {
background-color: #57c0dc; }
.lvca-button.lvca-cyan:hover {
background-color: #6cc8e0; }
.lvca-button.lvca-green {
background-color: #00a57d; }
.lvca-button.lvca-green:hover {
background-color: #00bf90; }
.lvca-button.lvca-orange {
background-color: #e87151; }
.lvca-button.lvca-orange:hover {
background-color: #eb8368; }
.lvca-button.lvca-pink {
background-color: #dd5679; }
.lvca-button.lvca-pink:hover {
background-color: #e16b8a; }
.lvca-button.lvca-red {
background-color: #da4f49; }
.lvca-button.lvca-red:hover {
background-color: #de635e; }
.lvca-button.lvca-teal {
background-color: #28c2ba; }
.lvca-button.lvca-teal:hover {
background-color: #2fd4cc; }
.lvca-button.lvca-trans {
color: #333;
background-color: transparent; background-color: rgba(0, 0, 0, 0);
border: 2px solid #a5a5a5; }
.lvca-button.lvca-trans:hover {
background-color: #fff;
color: #333 !important;
border-color: #fff; }
.lvca-button.lvca-semitrans {
color: #fff;
background-color: transparent; background-color: rgba(125, 125, 125, 0.5); }
.lvca-button.lvca-semitrans:hover {
background-color: #fff;
color: #333 !important; }@font-face {
font-family: 'lvca-icomoon';
src:    url(//edutechbusiness.com/wp-content/plugins/addons-for-visual-composer/assets/css/fonts/icomoon/icomoon.eot?bh4obs);
src:    url(//edutechbusiness.com/wp-content/plugins/addons-for-visual-composer/assets/css/fonts/icomoon/icomoon.eot?bh4obs#iefix) format('embedded-opentype'),
url(//edutechbusiness.com/wp-content/plugins/addons-for-visual-composer/assets/css/fonts/icomoon/icomoon.ttf?bh4obs) format('truetype'),
url(//edutechbusiness.com/wp-content/plugins/addons-for-visual-composer/assets/css/fonts/icomoon/icomoon.woff?bh4obs) format('woff'),
url(//edutechbusiness.com/wp-content/plugins/addons-for-visual-composer/assets/css/fonts/icomoon/icomoon.svg?bh4obs#icomoon) format('svg');
font-weight: normal;
font-style: normal;
}
[class^="lvca-icon-"], [class*=" lvca-icon-"] { font-family: 'lvca-icomoon' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.lvca-icon-fit-to:before {
content: "\e916";
}
.lvca-icon-full-screen:before {
content: "\e917";
}
.lvca-icon-arrow-left2:before {
content: "\e918";
}
.lvca-icon-arrow-left3:before {
content: "\e919";
}
.lvca-icon-arrow-right2:before {
content: "\e91a";
}
.lvca-icon-arrow-right3:before {
content: "\e91b";
}
.lvca-icon-start:before {
content: "\e91c";
}
.lvca-icon-close:before {
content: "\e911";
}
.lvca-icon-menu:before {
content: "\e914";
}
.lvca-icon-menu-2:before {
content: "\e915";
}
.lvca-icon-email:before {
content: "\e910";
}
.lvca-icon-plus:before {
content: "\e912";
}
.lvca-icon-arrow-right-toggle:before {
content: "\e913";
}
.lvca-icon-arrow-left:before {
content: "\e900";
}
.lvca-icon-arrow-right:before {
content: "\e901";
}
.lvca-icon-aim:before {
content: "\e902";
}
.lvca-icon-behance:before {
content: "\e903";
}
.lvca-icon-dribbble:before {
content: "\e904";
}
.lvca-icon-facebook:before {
content: "\e905";
}
.lvca-icon-flickr:before {
content: "\e906";
}
.lvca-icon-googleplus:before {
content: "\e907";
}
.lvca-icon-linkedin:before {
content: "\e908";
}
.lvca-icon-pinterest:before {
content: "\e909";
}
.lvca-icon-skype:before {
content: "\e90a";
}
.lvca-icon-twitter:before {
content: "\e90b";
}
.lvca-icon-vimeo:before {
content: "\e90c";
}
.lvca-icon-zerply:before {
content: "\e90d";
}
.lvca-icon-quote:before {
content: "\e90e";
}
.lvca-icon-video-play:before {
content: "\e90f";
}
.lvca-icon-instagram:before {
content: "\ea92";
}div.wpcf7 {
margin: 0;
padding: 0;
}
div.wpcf7 .screen-reader-response {
position: absolute;
overflow: hidden;
clip: rect(1px, 1px, 1px, 1px);
height: 1px;
width: 1px;
margin: 0;
padding: 0;
border: 0;
}
div.wpcf7-response-output {
margin: 2em 0.5em 1em;
padding: 0.2em 1em;
border: 2px solid #ff0000;
}
div.wpcf7-mail-sent-ok {
border: 2px solid #398f14;
}
div.wpcf7-mail-sent-ng,
div.wpcf7-aborted {
border: 2px solid #ff0000;
}
div.wpcf7-spam-blocked {
border: 2px solid #ffa500;
}
div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
border: 2px solid #f7e700;
}
.wpcf7-form-control-wrap {
position: relative;
}
span.wpcf7-not-valid-tip {
color: #f00;
font-size: 1em;
font-weight: normal;
display: block;
}
.use-floating-validation-tip span.wpcf7-not-valid-tip {
position: absolute;
top: 20%;
left: 20%;
z-index: 100;
border: 1px solid #ff0000;
background: #fff;
padding: .2em .8em;
}
span.wpcf7-list-item {
display: inline-block;
margin: 0 0 0 1em;
}
span.wpcf7-list-item-label::before,
span.wpcf7-list-item-label::after {
content: " ";
}
.wpcf7-display-none {
display: none;
}
div.wpcf7 .ajax-loader {
visibility: hidden;
display: inline-block;
background-image: url(//edutechbusiness.com/wp-content/plugins/contact-form-7/images/ajax-loader.gif);
width: 16px;
height: 16px;
border: none;
padding: 0;
margin: 0 0 0 4px;
vertical-align: middle;
}
div.wpcf7 .ajax-loader.is-active {
visibility: visible;
}
div.wpcf7 div.ajax-error {
display: none;
}
div.wpcf7 .placeheld {
color: #888;
}
div.wpcf7 .wpcf7-recaptcha iframe {
margin-bottom: 0;
}
div.wpcf7 input[type="file"] {
cursor: pointer;
}
div.wpcf7 input[type="file"]:disabled {
cursor: default;
}
div.wpcf7 .wpcf7-submit:disabled {
cursor: not-allowed;
}@font-face {
font-family: "Flaticon";
src: url(https://edutechbusiness.com/wp-content/uploads/cws-flaticons/font/Flaticon.eot);
src: url(https://edutechbusiness.com/wp-content/uploads/cws-flaticons/font/Flaticon.eot?#iefix) format("embedded-opentype"),
url(https://edutechbusiness.com/wp-content/uploads/cws-flaticons/font/Flaticon.woff) format("woff"),
url(https://edutechbusiness.com/wp-content/uploads/cws-flaticons/font/Flaticon.ttf) format("truetype"),
url(https://edutechbusiness.com/wp-content/uploads/cws-flaticons/font/Flaticon.svg#Flaticon) format("svg");
font-weight: normal;
font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
font-family: "Flaticon";
src: url(https://edutechbusiness.com/wp-content/uploads/cws-flaticons/font/Flaticon.svg#Flaticon) format("svg");
}
}
[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {font-family: Flaticon;font-style: normal;}
.flaticon-renewable-energy:before { content: "\f100"; }
.flaticon-innovation-7:before { content: "\f101"; }
.flaticon-idea-1:before { content: "\f102"; }
.flaticon-creativity:before { content: "\f103"; }
.flaticon-innovation-2:before { content: "\f104"; }
.flaticon-accounting:before { content: "\f105"; }
.flaticon-calculator-1:before { content: "\f106"; }
.flaticon-accounts-folders:before { content: "\f107"; }
.flaticon-payment:before { content: "\f108"; }
.flaticon-controls-2:before { content: "\f109"; }
.flaticon-controls:before { content: "\f10a"; }
.flaticon-network-4:before { content: "\f10b"; }
.flaticon-network-3:before { content: "\f10c"; }
.flaticon-collaboration-2:before { content: "\f10d"; }
.flaticon-group-1:before { content: "\f10e"; }
.flaticon-collaboration-1:before { content: "\f10f"; }
.flaticon-group:before { content: "\f110"; }
.flaticon-network-2:before { content: "\f111"; }
.flaticon-presentation-4:before { content: "\f112"; }
.flaticon-presentation-1:before { content: "\f113"; }
.flaticon-classroom:before { content: "\f114"; }
.flaticon-settings-gears:before { content: "\f115"; }
.flaticon-files-and-folders:before { content: "\f116"; }
.flaticon-multitask:before { content: "\f117"; }
.flaticon-workflow-1:before { content: "\f118"; }
.flaticon-hierarchical-structure:before { content: "\f119"; }
.flaticon-ui:before { content: "\f11a"; }
.flaticon-business-and-finance:before { content: "\f11b"; }
.flaticon-tasks-4:before { content: "\f11c"; }
.flaticon-tasks-3:before { content: "\f11d"; }
.flaticon-tasks-2:before { content: "\f11e"; }
.flaticon-analytics-1:before { content: "\f11f"; }
.flaticon-tasks-1:before { content: "\f120"; }
.flaticon-folder-7:before { content: "\f121"; }
.flaticon-analytics:before { content: "\f122"; }
.flaticon-tasks:before { content: "\f123"; }
.flaticon-time-management:before { content: "\f124"; }
.flaticon-settings-2:before { content: "\f125"; }
.flaticon-time-3:before { content: "\f126"; }
.flaticon-smartphone-4:before { content: "\f127"; }
.flaticon-presentation:before { content: "\f128"; }
.flaticon-folder-6:before { content: "\f129"; }
.flaticon-network-1:before { content: "\f12a"; }
.flaticon-direction:before { content: "\f12b"; }
.flaticon-clipboard-2:before { content: "\f12c"; }
.flaticon-folder-5:before { content: "\f12d"; }
.flaticon-clipboard-1:before { content: "\f12e"; }
.flaticon-clipboard:before { content: "\f12f"; }
.flaticon-checklist:before { content: "\f130"; }
.flaticon-goal:before { content: "\f131"; }
.flaticon-workflow:before { content: "\f132"; }
.flaticon-bar-chart:before { content: "\f133"; }
.flaticon-file-2:before { content: "\f134"; }
.flaticon-folder-4:before { content: "\f135"; }
.flaticon-folder-3:before { content: "\f136"; }
.flaticon-folder-2:before { content: "\f137"; }
.flaticon-folder-1:before { content: "\f138"; }
.flaticon-notes-2:before { content: "\f139"; }
.flaticon-notes-1:before { content: "\f13a"; }
.flaticon-notes:before { content: "\f13b"; }
.flaticon-file-1:before { content: "\f13c"; }
.flaticon-file:before { content: "\f13d"; }
.flaticon-network:before { content: "\f13e"; }
.flaticon-time-2:before { content: "\f13f"; }
.flaticon-avatar-3:before { content: "\f140"; }
.flaticon-share-1:before { content: "\f141"; }
.flaticon-avatar-2:before { content: "\f142"; }
.flaticon-gps-1:before { content: "\f143"; }
.flaticon-house-1:before { content: "\f144"; }
.flaticon-photo-1:before { content: "\f145"; }
.flaticon-gps:before { content: "\f146"; }
.flaticon-smartphone-3:before { content: "\f147"; }
.flaticon-idea:before { content: "\f148"; }
.flaticon-photograph:before { content: "\f149"; }
.flaticon-internet:before { content: "\f14a"; }
.flaticon-pin-1:before { content: "\f14b"; }
.flaticon-smartphone-2:before { content: "\f14c"; }
.flaticon-pin:before { content: "\f14d"; }
.flaticon-search:before { content: "\f14e"; }
.flaticon-time-1:before { content: "\f14f"; }
.flaticon-notebook:before { content: "\f150"; }
.flaticon-sound:before { content: "\f151"; }
.flaticon-gear-1:before { content: "\f152"; }
.flaticon-wifi:before { content: "\f153"; }
.flaticon-time:before { content: "\f154"; }
.flaticon-bookmark:before { content: "\f155"; }
.flaticon-map:before { content: "\f156"; }
.flaticon-bell:before { content: "\f157"; }
.flaticon-server:before { content: "\f158"; }
.flaticon-menu:before { content: "\f159"; }
.flaticon-news:before { content: "\f15a"; }
.flaticon-cinema:before { content: "\f15b"; }
.flaticon-photo:before { content: "\f15c"; }
.flaticon-global:before { content: "\f15d"; }
.flaticon-gear:before { content: "\f15e"; }
.flaticon-download-1:before { content: "\f15f"; }
.flaticon-speaker:before { content: "\f160"; }
.flaticon-dislike:before { content: "\f161"; }
.flaticon-tag:before { content: "\f162"; }
.flaticon-folder:before { content: "\f163"; }
.flaticon-shuffle:before { content: "\f164"; }
.flaticon-paper-plane:before { content: "\f165"; }
.flaticon-vector:before { content: "\f166"; }
.flaticon-glasses:before { content: "\f167"; }
.flaticon-hand:before { content: "\f168"; }
.flaticon-upload-1:before { content: "\f169"; }
.flaticon-book:before { content: "\f16a"; }
.flaticon-photo-camera:before { content: "\f16b"; }
.flaticon-settings-1:before { content: "\f16c"; }
.flaticon-copy:before { content: "\f16d"; }
.flaticon-upload:before { content: "\f16e"; }
.flaticon-link:before { content: "\f16f"; }
.flaticon-headphones:before { content: "\f170"; }
.flaticon-garbage:before { content: "\f171"; }
.flaticon-logout:before { content: "\f172"; }
.flaticon-piggy-bank:before { content: "\f173"; }
.flaticon-padlock:before { content: "\f174"; }
.flaticon-monitor:before { content: "\f175"; }
.flaticon-pie-chart:before { content: "\f176"; }
.flaticon-printer:before { content: "\f177"; }
.flaticon-chat-2:before { content: "\f178"; }
.flaticon-avatar-1:before { content: "\f179"; }
.flaticon-chat-1:before { content: "\f17a"; }
.flaticon-cancel:before { content: "\f17b"; }
.flaticon-shopping-bag:before { content: "\f17c"; }
.flaticon-reload:before { content: "\f17d"; }
.flaticon-house:before { content: "\f17e"; }
.flaticon-shopping-cart:before { content: "\f17f"; }
.flaticon-heart:before { content: "\f180"; }
.flaticon-share:before { content: "\f181"; }
.flaticon-chat:before { content: "\f182"; }
.flaticon-edit:before { content: "\f183"; }
.flaticon-star:before { content: "\f184"; }
.flaticon-download:before { content: "\f185"; }
.flaticon-next-1:before { content: "\f186"; }
.flaticon-musical-note:before { content: "\f187"; }
.flaticon-placeholder:before { content: "\f188"; }
.flaticon-like:before { content: "\f189"; }
.flaticon-back:before { content: "\f18a"; }
.flaticon-magnifying-glass:before { content: "\f18b"; }
.flaticon-next:before { content: "\f18c"; }
.flaticon-settings:before { content: "\f18d"; }
.flaticon-avatar:before { content: "\f18e"; }
.flaticon-envelope:before { content: "\f18f"; }
.flaticon-phone-call:before { content: "\f190"; }.mejs-offscreen{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal}.mejs-container{background:#000;font-family:Helvetica,Arial,serif;position:relative;text-align:left;text-indent:0;vertical-align:top}.mejs-container,.mejs-container *{box-sizing:border-box}.mejs-container video::-webkit-media-controls,.mejs-container video::-webkit-media-controls-panel,.mejs-container video::-webkit-media-controls-panel-container,.mejs-container video::-webkit-media-controls-start-playback-button{-webkit-appearance:none;display:none!important}.mejs-fill-container,.mejs-fill-container .mejs-container{height:100%;width:100%}.mejs-fill-container{background:transparent;margin:0 auto;overflow:hidden;position:relative}.mejs-container:focus{outline:none}.mejs-iframe-overlay{height:100%;position:absolute;width:100%}.mejs-embed,.mejs-embed body{background:#000;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.mejs-fullscreen{overflow:hidden!important}.mejs-container-fullscreen{bottom:0;left:0;overflow:hidden;position:fixed;right:0;top:0;z-index:1000}.mejs-container-fullscreen .mejs-mediaelement,.mejs-container-fullscreen video{height:100%!important;width:100%!important}.mejs-background,.mejs-mediaelement{left:0;position:absolute;top:0}.mejs-mediaelement{height:100%;width:100%;z-index:0}.mejs-poster{background-position:50% 50%;background-repeat:no-repeat;background-size:cover;left:0;position:absolute;top:0;z-index:1}:root .mejs-poster-img{display:none}.mejs-poster-img{border:0;padding:0}.mejs-overlay{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;left:0;position:absolute;top:0}.mejs-layer{z-index:1}.mejs-overlay-play{cursor:pointer}.mejs-overlay-button{background:url(//edutechbusiness.com/wp-includes/js/mediaelement/mejs-controls.svg) no-repeat;background-position:0 -39px;height:80px;width:80px}.mejs-overlay:hover>.mejs-overlay-button{background-position:-80px -39px}.mejs-overlay-loading{height:80px;width:80px}.mejs-overlay-loading-bg-img{-webkit-animation:a 1s linear infinite;animation:a 1s linear infinite;background:transparent url(//edutechbusiness.com/wp-includes/js/mediaelement/mejs-controls.svg) -160px -40px no-repeat;display:block;height:80px;width:80px;z-index:1}@-webkit-keyframes a{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes a{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.mejs-controls{bottom:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:40px;left:0;list-style-type:none;margin:0;padding:0 10px;position:absolute;width:100%;z-index:3}.mejs-controls:not([style*="display: none"]){background:rgba(255,0,0,.7);background:-webkit-linear-gradient(transparent,rgba(0,0,0,.35));background:linear-gradient(transparent,rgba(0,0,0,.35))}.mejs-button,.mejs-time,.mejs-time-rail{font-size:10px;height:40px;line-height:10px;margin:0;width:32px}.mejs-button>button{background:transparent url(//edutechbusiness.com/wp-includes/js/mediaelement/mejs-controls.svg);border:0;cursor:pointer;display:block;font-size:0;height:20px;line-height:0;margin:10px 6px;overflow:hidden;padding:0;position:absolute;text-decoration:none;width:20px}.mejs-button>button:focus{outline:1px dotted #999}.mejs-container-keyboard-inactive [role=slider],.mejs-container-keyboard-inactive [role=slider]:focus,.mejs-container-keyboard-inactive a,.mejs-container-keyboard-inactive a:focus,.mejs-container-keyboard-inactive button,.mejs-container-keyboard-inactive button:focus{outline:0}.mejs-time{box-sizing:content-box;color:#fff;font-size:11px;font-weight:700;height:24px;overflow:hidden;padding:16px 6px 0;text-align:center;width:auto}.mejs-play>button{background-position:0 0}.mejs-pause>button{background-position:-20px 0}.mejs-replay>button{background-position:-160px 0}.mejs-time-rail{direction:ltr;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;height:40px;margin:0 10px;padding-top:10px;position:relative}.mejs-time-buffering,.mejs-time-current,.mejs-time-float,.mejs-time-float-corner,.mejs-time-float-current,.mejs-time-hovered,.mejs-time-loaded,.mejs-time-marker,.mejs-time-total{border-radius:2px;cursor:pointer;display:block;height:10px;position:absolute}.mejs-time-total{background:hsla(0,0%,100%,.3);margin:5px 0 0;width:100%}.mejs-time-buffering{-webkit-animation:b 2s linear infinite;animation:b 2s linear infinite;background:-webkit-linear-gradient(135deg,hsla(0,0%,100%,.4) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.4) 0,hsla(0,0%,100%,.4) 75%,transparent 0,transparent);background:linear-gradient(-45deg,hsla(0,0%,100%,.4) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.4) 0,hsla(0,0%,100%,.4) 75%,transparent 0,transparent);background-size:15px 15px;width:100%}@-webkit-keyframes b{0%{background-position:0 0}to{background-position:30px 0}}@keyframes b{0%{background-position:0 0}to{background-position:30px 0}}.mejs-time-loaded{background:hsla(0,0%,100%,.3)}.mejs-time-current,.mejs-time-handle-content{background:hsla(0,0%,100%,.9)}.mejs-time-hovered{background:hsla(0,0%,100%,.5);z-index:10}.mejs-time-hovered.negative{background:rgba(0,0,0,.2)}.mejs-time-buffering,.mejs-time-current,.mejs-time-hovered,.mejs-time-loaded{left:0;-webkit-transform:scaleX(0);-ms-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;-webkit-transition:all .15s ease-in;transition:all .15s ease-in;width:100%}.mejs-time-buffering{-webkit-transform:scaleX(1);-ms-transform:scaleX(1);transform:scaleX(1)}.mejs-time-hovered{-webkit-transition:height .1s cubic-bezier(.44,0,1,1);transition:height .1s cubic-bezier(.44,0,1,1)}.mejs-time-hovered.no-hover{-webkit-transform:scaleX(0)!important;-ms-transform:scaleX(0)!important;transform:scaleX(0)!important}.mejs-time-handle,.mejs-time-handle-content{border:4px solid transparent;cursor:pointer;left:0;position:absolute;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);z-index:11}.mejs-time-handle-content{border:4px solid hsla(0,0%,100%,.9);border-radius:50%;height:10px;left:-7px;top:-4px;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);width:10px}.mejs-time-rail .mejs-time-handle-content:active,.mejs-time-rail .mejs-time-handle-content:focus,.mejs-time-rail:hover .mejs-time-handle-content{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.mejs-time-float{background:#eee;border:1px solid #333;bottom:100%;color:#111;display:none;height:17px;margin-bottom:9px;position:absolute;text-align:center;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:36px}.mejs-time-float-current{display:block;left:0;margin:2px;text-align:center;width:30px}.mejs-time-float-corner{border:5px solid #eee;border-color:#eee transparent transparent;border-radius:0;display:block;height:0;left:50%;line-height:0;position:absolute;top:100%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:0}.mejs-long-video .mejs-time-float{margin-left:-23px;width:64px}.mejs-long-video .mejs-time-float-current{width:60px}.mejs-broadcast{color:#fff;height:10px;position:absolute;top:15px;width:100%}.mejs-fullscreen-button>button{background-position:-80px 0}.mejs-unfullscreen>button{background-position:-100px 0}.mejs-mute>button{background-position:-60px 0}.mejs-unmute>button{background-position:-40px 0}.mejs-volume-button{position:relative}.mejs-volume-button>.mejs-volume-slider{-webkit-backface-visibility:hidden;background:rgba(50,50,50,.7);border-radius:0;bottom:100%;display:none;height:115px;left:50%;margin:0;position:absolute;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:25px;z-index:1}.mejs-volume-button:hover{border-radius:0 0 4px 4px}.mejs-volume-total{background:hsla(0,0%,100%,.5);height:100px;left:50%;margin:0;position:absolute;top:8px;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:2px}.mejs-volume-current{left:0;margin:0;width:100%}.mejs-volume-current,.mejs-volume-handle{background:hsla(0,0%,100%,.9);position:absolute}.mejs-volume-handle{border-radius:1px;cursor:ns-resize;height:6px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:16px}.mejs-horizontal-volume-slider{display:block;height:36px;position:relative;vertical-align:middle;width:56px}.mejs-horizontal-volume-total{background:rgba(50,50,50,.8);height:8px;top:16px;width:50px}.mejs-horizontal-volume-current,.mejs-horizontal-volume-total{border-radius:2px;font-size:1px;left:0;margin:0;padding:0;position:absolute}.mejs-horizontal-volume-current{background:hsla(0,0%,100%,.8);height:100%;top:0;width:100%}.mejs-horizontal-volume-handle{display:none}.mejs-captions-button,.mejs-chapters-button{position:relative}.mejs-captions-button>button{background-position:-140px 0}.mejs-chapters-button>button{background-position:-180px 0}.mejs-captions-button>.mejs-captions-selector,.mejs-chapters-button>.mejs-chapters-selector{background:rgba(50,50,50,.7);border:1px solid transparent;border-radius:0;bottom:100%;margin-right:-43px;overflow:hidden;padding:0;position:absolute;right:50%;visibility:visible;width:86px}.mejs-chapters-button>.mejs-chapters-selector{margin-right:-55px;width:110px}.mejs-captions-selector-list,.mejs-chapters-selector-list{list-style-type:none!important;margin:0;overflow:hidden;padding:0}.mejs-captions-selector-list-item,.mejs-chapters-selector-list-item{color:#fff;cursor:pointer;display:block;list-style-type:none!important;margin:0 0 6px;overflow:hidden;padding:0 10px}.mejs-captions-selector-list-item:hover,.mejs-chapters-selector-list-item:hover{background-color:#c8c8c8!important;background-color:hsla(0,0%,100%,.4)!important}.mejs-captions-selector-input,.mejs-chapters-selector-input{clear:both;float:left;left:-1000px;margin:3px 3px 0 5px;position:absolute}.mejs-captions-selector-label,.mejs-chapters-selector-label{cursor:pointer;float:left;font-size:10px;line-height:15px;padding:4px 0 0}.mejs-captions-selected,.mejs-chapters-selected{color:#21f8f8}.mejs-captions-translations{font-size:10px;margin:0 0 5px}.mejs-captions-layer{bottom:0;color:#fff;font-size:16px;left:0;line-height:20px;position:absolute;text-align:center}.mejs-captions-layer a{color:#fff;text-decoration:underline}.mejs-captions-layer[lang=ar]{font-size:20px;font-weight:400}.mejs-captions-position{bottom:15px;left:0;position:absolute;width:100%}.mejs-captions-position-hover{bottom:35px}.mejs-captions-text,.mejs-captions-text *{background:hsla(0,0%,8%,.5);box-shadow:5px 0 0 hsla(0,0%,8%,.5),-5px 0 0 hsla(0,0%,8%,.5);padding:0;white-space:pre-wrap}.mejs-container.mejs-hide-cues video::-webkit-media-text-track-container{display:none}.mejs-overlay-error{position:relative}.mejs-overlay-error>img{left:0;position:absolute;top:0;z-index:-1}.mejs-cannotplay,.mejs-cannotplay a{color:#fff;font-size:.8em}.mejs-cannotplay{position:relative}.mejs-cannotplay a,.mejs-cannotplay p{display:inline-block;padding:0 15px;width:100%}.wp-playlist-caption,.wp-playlist-current-item .wp-playlist-item-artist,.wp-playlist-current-item .wp-playlist-item-title,.wp-playlist-item-album{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.mejs-container{clear:both;max-width:100%}.mejs-container *{font-family:Helvetica,Arial}.mejs-container,.mejs-container .mejs-controls,.mejs-embed,.mejs-embed body{background:#222}.mejs-time{font-weight:400;word-wrap:normal}.mejs-controls a.mejs-horizontal-volume-slider{display:table}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.mejs-controls .mejs-time-rail .mejs-time-loaded{background:#fff}.mejs-controls .mejs-time-rail .mejs-time-current{background:#0073aa}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,.mejs-controls .mejs-time-rail .mejs-time-total{background:rgba(255,255,255,.33)}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,.mejs-controls .mejs-time-rail span{border-radius:0}.mejs-overlay-loading{background:0 0}.mejs-controls button:hover{border:none;-webkit-box-shadow:none;box-shadow:none}.me-cannotplay{width:auto!important}.media-embed-details .wp-audio-shortcode{display:inline-block;max-width:400px}.audio-details .embed-media-settings{overflow:visible}.media-embed-details .embed-media-settings .setting span{max-width:400px;width:auto}.media-embed-details .embed-media-settings .checkbox-setting span{display:inline-block}.media-embed-details .embed-media-settings{padding-top:0;top:28px}.media-embed-details .instructions{padding:16px 0;max-width:600px}.media-embed-details .setting .remove-setting,.media-embed-details .setting p{color:#a00;font-size:10px;text-transform:uppercase}.media-embed-details .setting .remove-setting{padding:0}.media-embed-details .setting a:hover{color:#dc3232}.media-embed-details .embed-media-settings .checkbox-setting{float:none;margin:0 0 10px}.wp-video{max-width:100%;height:auto}.wp_attachment_holder .wp-audio-shortcode,.wp_attachment_holder .wp-video{margin-top:18px}.wp-video-shortcode video,video.wp-video-shortcode{max-width:100%;display:inline-block}.video-details .wp-video-holder{width:100%;max-width:640px}.wp-playlist{border:1px solid #ccc;padding:10px;margin:12px 0 18px;font-size:14px;line-height:1.5}.wp-admin .wp-playlist{margin:0 0 18px}.wp-playlist video{display:inline-block;max-width:100%}.wp-playlist audio{display:none;max-width:100%;width:400px}.wp-playlist-caption,.wp-playlist-item-meta{display:block;font-size:14px;line-height:1.5}.wp-playlist .mejs-container{margin:0;max-width:100%}.wp-playlist .mejs-controls .mejs-button button{outline:0}.wp-playlist-light{background:#fff;color:#000}.wp-playlist-dark{color:#fff;background:#000}.wp-playlist-caption{max-width:88%}.wp-playlist-item .wp-playlist-caption{text-decoration:none;color:#000;max-width:-webkit-calc(100% - 40px);max-width:calc(100% - 40px)}.wp-playlist-item-title{font-size:14px;line-height:1.5}.wp-playlist-item-album{font-style:italic}.wp-playlist-item-artist{font-size:12px;text-transform:uppercase}.wp-playlist-item-length{position:absolute;right:3px;top:0;font-size:14px;line-height:1.5}.rtl .wp-playlist-item-length{left:3px;right:auto}.wp-playlist-tracks{margin-top:10px}.wp-playlist-item{position:relative;cursor:pointer;padding:0 3px;border-bottom:1px solid #ccc}.wp-playlist-item:last-child{border-bottom:0}.wp-playlist-light .wp-playlist-caption{color:#333}.wp-playlist-dark .wp-playlist-caption{color:#ddd}.wp-playlist-playing{font-weight:700;background:#f7f7f7}.wp-playlist-light .wp-playlist-playing{background:#fff;color:#000}.wp-playlist-dark .wp-playlist-playing{background:#000;color:#fff}.wp-playlist-current-item{overflow:hidden;margin-bottom:10px;height:60px}.wp-playlist .wp-playlist-current-item img{float:left;max-width:60px;height:auto;margin-right:10px;padding:0;border:0}.rtl .wp-playlist .wp-playlist-current-item img{float:right;margin-left:10px;margin-right:0}.wp-audio-playlist .me-cannotplay span{padding:5px 15px}.select2-container {
margin: 0;
position: relative;
display: inline-block; zoom: 1;
*display: inline;
vertical-align: middle;
}
.select2-container,
.select2-drop,
.select2-search,
.select2-search input { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
.select2-container .select2-choice {
display: block;
height: 26px;
padding: 0 0 0 8px;
overflow: hidden;
position: relative;
border: 1px solid #aaa;
white-space: nowrap;
line-height: 26px;
color: #444;
text-decoration: none;
border-radius: 8px;
background-clip: padding-box;
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-color: #fff;
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.5, #fff));
background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%);
background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
background-image: linear-gradient(to top, #eee 0%, #fff 50%);
}
.select2-container.select2-drop-above .select2-choice {
border-bottom-color: #aaa;
border-radius: 0 0 4px 4px;
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.9, #fff));
background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 90%);
background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
background-image: linear-gradient(to bottom, #eee 0%, #fff 90%);
}
.select2-container.select2-allowclear .select2-choice .select2-chosen {
margin-right: 42px;
}
.select2-container .select2-choice > .select2-chosen {
margin-right: 26px;
display: block;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
float: none;
width: auto;
}
html[dir="rtl"] .select2-container .select2-choice > .select2-chosen {
margin-left: 26px;
margin-right: 0;
}
.select2-container .select2-choice abbr {
display: none;
width: 12px;
height: 12px;
position: absolute;
right: 24px;
top: 8px;
font-size: 1px;
text-decoration: none;
border: 0;
background: url(//edutechbusiness.com/wp-content/themes/prospect/css/select2.png) right top no-repeat;
cursor: pointer;
outline: 0;
}
.select2-container.select2-allowclear .select2-choice abbr {
display: inline-block;
}
.select2-container .select2-choice abbr:hover {
background-position: right -11px;
cursor: pointer;
}
.select2-drop-mask {
border: 0;
margin: 0;
padding: 0;
position: fixed;
left: 0;
top: 0;
min-height: 100%;
min-width: 100%;
height: auto;
width: auto;
opacity: 0;
z-index: 9998; background-color: #fff;
filter: alpha(opacity=0);
}
.select2-drop {
width: 100%;
margin-top: -1px;
position: absolute;
z-index: 9999;
top: 100%;
background: #fff;
color: #000;
border: 1px solid #aaa;
border-top: 0;
border-radius: 0 0 4px 4px;
-webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
}
.select2-drop.select2-drop-above {
margin-top: 1px;
border-top: 1px solid #aaa;
border-bottom: 0;
border-radius: 4px 4px 0 0;
-webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
}
.select2-drop-active {
border: 1px solid #5897fb;
border-top: none;
}
.select2-drop.select2-drop-above.select2-drop-active {
border-top: 1px solid #5897fb;
}
.select2-drop-auto-width {
border-top: 1px solid #aaa;
width: auto;
}
.select2-drop-auto-width .select2-search {
padding-top: 4px;
}
.select2-container .select2-choice .select2-arrow {
display: inline-block;
width: 18px;
height: 100%;
position: absolute;
right: 0;
top: 0;
border-left: 1px solid #aaa;
border-radius: 0 4px 4px 0;
background-clip: padding-box;
background: #ccc;
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee));
background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#eeeeee', endColorstr = '#cccccc', GradientType = 0);
background-image: linear-gradient(to top, #ccc 0%, #eee 60%);
}
html[dir="rtl"] .select2-container .select2-choice .select2-arrow {
left: 0;
right: auto;
}
.select2-container .select2-choice .select2-arrow b {
display: block;
width: 100%;
height: 100%;
background: url(//edutechbusiness.com/wp-content/themes/prospect/css/select2.png) no-repeat 0 1px;
}
html[dir="rtl"] .select2-container .select2-choice .select2-arrow b {
background-position: 2px 1px;
}
.select2-search {
display: inline-block;
width: 100%;
min-height: 26px;
margin: 0;
padding-left: 4px;
padding-right: 4px;
position: relative;
z-index: 10000;
white-space: nowrap;
}
.select2-search input {
width: 100%;
height: auto !important;
min-height: 26px;
padding: 4px 20px 4px 5px;
margin: 0;
outline: 0;
font-family: sans-serif;
font-size: 1em;
border: 1px solid #aaa;
border-radius: 0;
-webkit-box-shadow: none;
box-shadow: none;
background: #fff url(//edutechbusiness.com/wp-content/themes/prospect/css/select2.png) no-repeat 100% -22px;
background: url(//edutechbusiness.com/wp-content/themes/prospect/css/select2.png) no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
background: url(//edutechbusiness.com/wp-content/themes/prospect/css/select2.png) no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
background: url(//edutechbusiness.com/wp-content/themes/prospect/css/select2.png) no-repeat 100% -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
background: url(//edutechbusiness.com/wp-content/themes/prospect/css/select2.png) no-repeat 100% -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}
html[dir="rtl"] .select2-search input {
padding: 4px 5px 4px 20px;
background: #fff url(//edutechbusiness.com/wp-content/themes/prospect/css/select2.png) no-repeat -37px -22px;
background: url(//edutechbusiness.com/wp-content/themes/prospect/css/select2.png) no-repeat -37px -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
background: url(//edutechbusiness.com/wp-content/themes/prospect/css/select2.png) no-repeat -37px -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
background: url(//edutechbusiness.com/wp-content/themes/prospect/css/select2.png) no-repeat -37px -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
background: url(//edutechbusiness.com/wp-content/themes/prospect/css/select2.png) no-repeat -37px -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}
.select2-drop.select2-drop-above .select2-search input {
margin-top: 4px;
}
.select2-search input.select2-active {
background: #fff url(//edutechbusiness.com/wp-content/themes/prospect/css/select2-spinner.gif) no-repeat 100%;
background: url(//edutechbusiness.com/wp-content/themes/prospect/css/select2-spinner.gif) no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
background: url(//edutechbusiness.com/wp-content/themes/prospect/css/select2-spinner.gif) no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
background: url(//edutechbusiness.com/wp-content/themes/prospect/css/select2-spinner.gif) no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
background: url(//edutechbusiness.com/wp-content/themes/prospect/css/select2-spinner.gif) no-repeat 100%, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}
.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
border: 1px solid #5897fb;
outline: none;
-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}
.select2-dropdown-open .select2-choice {
border-bottom-color: transparent;
-webkit-box-shadow: 0 1px 0 #fff inset;
box-shadow: 0 1px 0 #fff inset;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
background-color: #eee;
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(0.5, #eee));
background-image: -webkit-linear-gradient(center bottom, #fff 0%, #eee 50%);
background-image: -moz-linear-gradient(center bottom, #fff 0%, #eee 50%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
background-image: linear-gradient(to top, #fff 0%, #eee 50%);
}
.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
border: 1px solid #5897fb;
border-top-color: transparent;
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(0.5, #eee));
background-image: -webkit-linear-gradient(center top, #fff 0%, #eee 50%);
background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
}
.select2-dropdown-open .select2-choice .select2-arrow {
background: transparent;
border-left: none;
filter: none;
}
html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow {
border-right: none;
}
.select2-dropdown-open .select2-choice .select2-arrow b {
background-position: -18px 1px;
}
html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow b {
background-position: -16px 1px;
}
.select2-hidden-accessible {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
} .select2-results {
max-height: 200px;
padding: 0 0 0 4px;
margin: 4px 4px 4px 0;
position: relative;
overflow-x: hidden;
overflow-y: auto;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html[dir="rtl"] .select2-results {
padding: 0 4px 0 0;
margin: 4px 0 4px 4px;
}
.select2-results ul.select2-result-sub {
margin: 0;
padding-left: 0;
}
.select2-results li {
list-style: none;
display: list-item;
background-image: none;
}
.select2-results li.select2-result-with-children > .select2-result-label {
font-weight: bold;
}
.select2-results .select2-result-label {
padding: 3px 7px 4px;
margin: 0;
cursor: pointer;
min-height: 1em;
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.select2-results-dept-1 .select2-result-label { padding-left: 20px }
.select2-results-dept-2 .select2-result-label { padding-left: 40px }
.select2-results-dept-3 .select2-result-label { padding-left: 60px }
.select2-results-dept-4 .select2-result-label { padding-left: 80px }
.select2-results-dept-5 .select2-result-label { padding-left: 100px }
.select2-results-dept-6 .select2-result-label { padding-left: 110px }
.select2-results-dept-7 .select2-result-label { padding-left: 120px }
.select2-results .select2-highlighted {
background: #3875d7;
color: #fff;
}
.select2-results li em {
background: #feffde;
font-style: normal;
}
.select2-results .select2-highlighted em {
background: transparent;
}
.select2-results .select2-highlighted ul {
background: #fff;
color: #000;
}
.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-ajax-error,
.select2-results .select2-selection-limit {
background: #f4f4f4;
display: list-item;
padding-left: 5px;
} .select2-results .select2-disabled.select2-highlighted {
color: #666;
background: #f4f4f4;
display: list-item;
cursor: default;
}
.select2-results .select2-disabled {
background: #f4f4f4;
display: list-item;
cursor: default;
}
.select2-results .select2-selected {
display: none;
}
.select2-more-results.select2-active {
background: #f4f4f4 url(//edutechbusiness.com/wp-content/themes/prospect/css/select2-spinner.gif) no-repeat 100%;
}
.select2-results .select2-ajax-error {
background: rgba(255, 50, 50, .2);
}
.select2-more-results {
background: #f4f4f4;
display: list-item;
} .select2-container.select2-container-disabled .select2-choice {
background-color: #f4f4f4;
background-image: none;
border: 1px solid #ddd;
cursor: default;
}
.select2-container.select2-container-disabled .select2-choice .select2-arrow {
background-color: #f4f4f4;
background-image: none;
border-left: 0;
}
.select2-container.select2-container-disabled .select2-choice abbr {
display: none;
} .select2-container-multi .select2-choices {
height: auto !important;
height: 1%;
margin: 0;
padding: 0 5px 0 0;
position: relative;
border: 1px solid #aaa;
cursor: text;
overflow: hidden;
background-color: #fff;
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eee), color-stop(15%, #fff));
background-image: -webkit-linear-gradient(top, #eee 1%, #fff 15%);
background-image: -moz-linear-gradient(top, #eee 1%, #fff 15%);
background-image: linear-gradient(to bottom, #eee 1%, #fff 15%);
}
html[dir="rtl"] .select2-container-multi .select2-choices {
padding: 0 0 0 5px;
}
.select2-locked {
padding: 3px 5px 3px 5px !important;
}
.select2-container-multi .select2-choices {
min-height: 26px;
}
.select2-container-multi.select2-container-active .select2-choices {
border: 1px solid #5897fb;
outline: none;
-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}
.select2-container-multi .select2-choices li {
float: left;
list-style: none;
}
html[dir="rtl"] .select2-container-multi .select2-choices li
{
float: right;
}
.select2-container-multi .select2-choices .select2-search-field {
margin: 0;
padding: 0;
white-space: nowrap;
}
.select2-container-multi .select2-choices .select2-search-field input {
padding: 5px;
margin: 1px 0;
font-family: sans-serif;
font-size: 100%;
color: #666;
outline: 0;
border: 0;
-webkit-box-shadow: none;
box-shadow: none;
background: transparent !important;
}
.select2-container-multi .select2-choices .select2-search-field input.select2-active {
background: #fff url(//edutechbusiness.com/wp-content/themes/prospect/css/select2-spinner.gif) no-repeat 100% !important;
}
.select2-default {
color: #999 !important;
}
.select2-container-multi .select2-choices .select2-search-choice {
padding: 3px 5px 3px 18px;
margin: 3px 0 3px 5px;
position: relative;
line-height: 13px;
color: #333;
cursor: default;
border: 1px solid #aaaaaa;
border-radius: 3px;
-webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
background-clip: padding-box;
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-color: #e4e4e4;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
background-image: linear-gradient(to top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
}
html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice
{
margin: 3px 5px 3px 0;
padding: 3px 18px 3px 5px;
}
.select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
cursor: default;
}
.select2-container-multi .select2-choices .select2-search-choice-focus {
background: #d4d4d4;
}
.select2-search-choice-close {
display: block;
width: 12px;
height: 13px;
position: absolute;
right: 3px;
top: 4px;
font-size: 1px;
outline: none;
background: url(//edutechbusiness.com/wp-content/themes/prospect/css/select2.png) right top no-repeat;
}
html[dir="rtl"] .select2-search-choice-close {
right: auto;
left: 3px;
}
.select2-container-multi .select2-search-choice-close {
left: 3px;
}
html[dir="rtl"] .select2-container-multi .select2-search-choice-close {
left: auto;
right: 2px;
}
.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
background-position: right -11px;
}
.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
background-position: right -11px;
} .select2-container-multi.select2-container-disabled .select2-choices {
background-color: #f4f4f4;
background-image: none;
border: 1px solid #ddd;
cursor: default;
}
.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
padding: 3px 5px 3px 5px;
border: 1px solid #ddd;
background-image: none;
background-color: #f4f4f4;
}
.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {    display: none;
background: none;
} .select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match {
text-decoration: underline;
}
.select2-offscreen, .select2-offscreen:focus {
clip: rect(0 0 0 0) !important;
width: 1px !important;
height: 1px !important;
border: 0 !important;
margin: 0 !important;
padding: 0 !important;
overflow: hidden !important;
position: absolute !important;
outline: 0 !important;
left: 0px !important;
top: 0px !important;
}
.select2-display-none {
display: none;
}
.select2-measure-scrollbar {
position: absolute;
top: -10000px;
left: -10000px;
width: 100px;
height: 100px;
overflow: scroll;
} @media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 2dppx)  {
.select2-search input,
.select2-search-choice-close,
.select2-container .select2-choice abbr,
.select2-container .select2-choice .select2-arrow b {
background-image: url(//edutechbusiness.com/wp-content/themes/prospect/css/select2x2.png) !important;
background-repeat: no-repeat !important;
background-size: 60px 40px !important;
}
.select2-search input {
background-position: 100% -21px !important;
}
}
 .animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.animated.infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.animated.hinge {
-webkit-animation-duration: 2s;
animation-duration: 2s;
}
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
-webkit-animation-duration: .75s;
animation-duration: .75s;
}
@-webkit-keyframes bounce {
from, 20%, 53%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
40%, 43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0);
}
}
@keyframes bounce {
from, 20%, 53%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
40%, 43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0);
}
}
.bounce {
-webkit-animation-name: bounce;
animation-name: bounce;
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
}
@-webkit-keyframes flash {
from, 50%, to {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
@keyframes flash {
from, 50%, to {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
.flash {
-webkit-animation-name: flash;
animation-name: flash;
} @-webkit-keyframes pulse {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes pulse {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.pulse {
-webkit-animation-name: pulse;
animation-name: pulse;
}
@-webkit-keyframes rubberBand {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes rubberBand {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.rubberBand {
-webkit-animation-name: rubberBand;
animation-name: rubberBand;
}
@-webkit-keyframes shake {
from, to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
@keyframes shake {
from, to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
.shake {
-webkit-animation-name: shake;
animation-name: shake;
}
@-webkit-keyframes headShake {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
6.5% {
-webkit-transform: translateX(-6px) rotateY(-9deg);
transform: translateX(-6px) rotateY(-9deg);
}
18.5% {
-webkit-transform: translateX(5px) rotateY(7deg);
transform: translateX(5px) rotateY(7deg);
}
31.5% {
-webkit-transform: translateX(-3px) rotateY(-5deg);
transform: translateX(-3px) rotateY(-5deg);
}
43.5% {
-webkit-transform: translateX(2px) rotateY(3deg);
transform: translateX(2px) rotateY(3deg);
}
50% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes headShake {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
6.5% {
-webkit-transform: translateX(-6px) rotateY(-9deg);
transform: translateX(-6px) rotateY(-9deg);
}
18.5% {
-webkit-transform: translateX(5px) rotateY(7deg);
transform: translateX(5px) rotateY(7deg);
}
31.5% {
-webkit-transform: translateX(-3px) rotateY(-5deg);
transform: translateX(-3px) rotateY(-5deg);
}
43.5% {
-webkit-transform: translateX(2px) rotateY(3deg);
transform: translateX(2px) rotateY(3deg);
}
50% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
.headShake {
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
-webkit-animation-name: headShake;
animation-name: headShake;
}
@-webkit-keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
to {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
@keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
to {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
.swing {
-webkit-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing;
}
@-webkit-keyframes tada {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%, 20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes tada {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%, 20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.tada {
-webkit-animation-name: tada;
animation-name: tada;
} @-webkit-keyframes wobble {
from {
-webkit-transform: none;
transform: none;
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes wobble {
from {
-webkit-transform: none;
transform: none;
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
-webkit-transform: none;
transform: none;
}
}
.wobble {
-webkit-animation-name: wobble;
animation-name: wobble;
}
@-webkit-keyframes jello {
from, 11.1%, to {
-webkit-transform: none;
transform: none;
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
@keyframes jello {
from, 11.1%, to {
-webkit-transform: none;
transform: none;
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
.jello {
-webkit-animation-name: jello;
animation-name: jello;
-webkit-transform-origin: center;
transform-origin: center;
}
@-webkit-keyframes bounceIn {
from, 20%, 40%, 60%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes bounceIn {
from, 20%, 40%, 60%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.bounceIn {
-webkit-animation-name: bounceIn;
animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInDown {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInDown {
-webkit-animation-name: bounceInDown;
animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInLeft {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInRight {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInRight {
-webkit-animation-name: bounceInRight;
animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInUp {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.bounceInUp {
-webkit-animation-name: bounceInUp;
animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
}
@keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
}
.bounceOut {
-webkit-animation-name: bounceOut;
animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.bounceOutDown {
-webkit-animation-name: bounceOutDown;
animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.bounceOutLeft {
-webkit-animation-name: bounceOutLeft;
animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.bounceOutRight {
-webkit-animation-name: bounceOutRight;
animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.bounceOutUp {
-webkit-animation-name: bounceOutUp;
animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDownBig {
-webkit-animation-name: fadeInDownBig;
animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeftBig {
-webkit-animation-name: fadeInLeftBig;
animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRightBig {
-webkit-animation-name: fadeInRightBig;
animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUpBig {
-webkit-animation-name: fadeInUpBig;
animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
.fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.fadeOutDown {
-webkit-animation-name: fadeOutDown;
animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.fadeOutDownBig {
-webkit-animation-name: fadeOutDownBig;
animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.fadeOutLeft {
-webkit-animation-name: fadeOutLeft;
animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.fadeOutLeftBig {
-webkit-animation-name: fadeOutLeftBig;
animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.fadeOutRight {
-webkit-animation-name: fadeOutRight;
animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.fadeOutRightBig {
-webkit-animation-name: fadeOutRightBig;
animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.fadeOutUp {
-webkit-animation-name: fadeOutUp;
animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.fadeOutUpBig {
-webkit-animation-name: fadeOutUpBig;
animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
transform: perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
@keyframes flip {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
transform: perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
.animated.flip {
-webkit-backface-visibility: visible;
backface-visibility: visible;
-webkit-animation-name: flip;
animation-name: flip;
}
@-webkit-keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInX {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInX;
animation-name: flipInX;
}
@-webkit-keyframes flipInY {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInY {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInY;
animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutX {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
.flipOutX {
-webkit-animation-name: flipOutX;
animation-name: flipOutX;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutY {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
.flipOutY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipOutY;
animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
from {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1;
}
to {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes lightSpeedIn {
from {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1;
}
to {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.lightSpeedIn {
-webkit-animation-name: lightSpeedIn;
animation-name: lightSpeedIn;
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
from {
opacity: 1;
}
to {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
@keyframes lightSpeedOut {
from {
opacity: 1;
}
to {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
.lightSpeedOut {
-webkit-animation-name: lightSpeedOut;
animation-name: lightSpeedOut;
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
from {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateIn {
from {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateIn {
-webkit-animation-name: rotateIn;
animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInDownLeft {
-webkit-animation-name: rotateInDownLeft;
animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInDownRight {
-webkit-animation-name: rotateInDownRight;
animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInUpLeft {
-webkit-animation-name: rotateInUpLeft;
animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInUpRight {
-webkit-animation-name: rotateInUpRight;
animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
from {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
@keyframes rotateOut {
from {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
.rotateOut {
-webkit-animation-name: rotateOut;
animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
@keyframes rotateOutDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
.rotateOutDownLeft {
-webkit-animation-name: rotateOutDownLeft;
animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutDownRight {
-webkit-animation-name: rotateOutDownRight;
animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutUpLeft {
-webkit-animation-name: rotateOutUpLeft;
animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
@keyframes rotateOutUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
.rotateOutUpRight {
-webkit-animation-name: rotateOutUpRight;
animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%, 80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
@keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%, 80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
.hinge {
-webkit-animation-name: hinge;
animation-name: hinge;
} @-webkit-keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.rollIn {
-webkit-animation-name: rollIn;
animation-name: rollIn;
} @-webkit-keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
@keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
.rollOut {
-webkit-animation-name: rollOut;
animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
@keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
.zoomIn {
-webkit-animation-name: zoomIn;
animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInDown {
-webkit-animation-name: zoomInDown;
animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInLeft {
-webkit-animation-name: zoomInLeft;
animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInRight {
-webkit-animation-name: zoomInRight;
animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInUp {
-webkit-animation-name: zoomInUp;
animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
to {
opacity: 0;
}
}
@keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
to {
opacity: 0;
}
}
.zoomOut {
-webkit-animation-name: zoomOut;
animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutDown {
-webkit-animation-name: zoomOutDown;
animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
.zoomOutLeft {
-webkit-animation-name: zoomOutLeft;
animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
@keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
.zoomOutRight {
-webkit-animation-name: zoomOutRight;
animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutUp {
-webkit-animation-name: zoomOutUp;
animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInDown {
-webkit-animation-name: slideInDown;
animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInLeft {
-webkit-animation-name: slideInLeft;
animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInRight {
-webkit-animation-name: slideInRight;
animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInUp {
-webkit-animation-name: slideInUp;
animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.slideOutDown {
-webkit-animation-name: slideOutDown;
animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.slideOutLeft {
-webkit-animation-name: slideOutLeft;
animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.slideOutRight {
-webkit-animation-name: slideOutRight;
animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.slideOutUp {
-webkit-animation-name: slideOutUp;
animation-name: slideOutUp;
}#document{
overflow: hidden;
}
#document.boxed{
max-width: 1250px;
margin: 0 auto;
-webkit-box-shadow: 0px 0px 8px 1px rgba(0,0,0,0.2);
-moz-box-shadow: 0px 0px 8px 1px rgba(0,0,0,0.2);
box-shadow: 0px 0px 8px 1px rgba(0,0,0,0.2);
}
#document > * + *{
margin-top: 40px;
}
#document > #main_slider_section,
#document > #page_title_section,
#document > #footer_widgets + #site_footer,
#scroll_to_top{
margin-top: auto;
}
#document > #site_header,
#sticky,
#document > #mobile_header{
margin-top: auto;
}
.prospect_layout_container{
position: relative;
width: 1170px;
margin: 0 auto;
}
#top_panel,
#site_header{
position: relative;
}
#top_panel{
z-index: 3;
}
.site_header{
z-index: 2;
}
#fs_video_slider > .fs_video_bg{
z-index: 1;
}
#page{
padding-top: 40px;
padding-bottom: 40px;
} #page_content{
width: 100%;
}
#page.single_sidebar #page_content{
width:870px;
}
#page.double_sidebar #page_content{
width:570px;
}
.sidebar{
width:270px;
}
#left_sidebar{
margin-right:30px;
}
#right_sidebar{
margin-left:30px;
}  #page > .prospect_layout_container{
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
}
#left_sidebar{
-webkit-box-ordinal-group: 2;
-moz-box-ordinal-group: 2;
-webkit-order: 1;
-ms-flex-order: 1;
order: 1;
}
#right_sidebar{
-webkit-box-ordinal-group: 4;
-moz-box-ordinal-group: 4;
-webkit-order: 3;
-ms-flex-order: 3;
order: 3;	
}
#page.single_sidebar #page_content,
#page.double_sidebar #page_content{
-webkit-box-ordinal-group: 3;
-moz-box-ordinal-group: 3;
-webkit-order: 2;
-ms-flex-order: 2;
order: 2;	
}  #page > .prospect_layout_container,
#page > .prospect_layout_container > *{
display: block\9;
}
#left_sidebar,
#page_content{
float: left\9;
}
#right_sidebar{
float: right\9;
}
#page.single_sidebar > .prospect_layout_container:after,
#page.double_sidebar > .prospect_layout_container:after{
display: none;
}
#page.single_sidebar > .prospect_layout_container:after,
#page.double_sidebar > .prospect_layout_container:after{
content: "";
display: block\9;
clear: both\9;
}  @media screen and ( max-width: 1190px ){
#document.boxed{
max-width: 1000px;		
}
.prospect_layout_container{
width: 940px;		
}
#page.single_sidebar #page_content{
width:700px;
}
#page.double_sidebar #page_content{
width:460px;
}
.sidebar{
width:220px;
}
#page > .prospect_layout_container > .sidebar#left_sidebar{
margin-right:20px;
}
#page > .prospect_layout_container > .sidebar#right_sidebar{
margin-left:20px;
}	
}
@media screen and ( max-width: 980px ){
#document.boxed{
max-width: 788px;	
}
.prospect_layout_container{
width: 738px;	
}
#page.single_sidebar #page_content,
#page.double_sidebar #page_content,
.sidebar{
width: 100%;
}
#page > .prospect_layout_container > .sidebar#left_sidebar{
margin-right: auto;
}
#page > .prospect_layout_container > .sidebar#right_sidebar{
margin-left: auto;
}
#page > .prospect_layout_container > *{
margin-top: 40px;
}
#page > .prospect_layout_container{
margin-top: -40px;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
#page.single_sidebar #page_content,
#page.double_sidebar #page_content,
#page #page_content{
-webkit-box-ordinal-group: 2;
-moz-box-ordinal-group: 2;
-webkit-order: 1;
-ms-flex-order: 1;
order: 1;
}
#page .sidebar#left_sidebar{
-webkit-box-ordinal-group: 3;
-moz-box-ordinal-group: 3;
-webkit-order: 2;
-ms-flex-order: 2;
order: 2;
}
#page .sidebar#right_sidebar{
-webkit-box-ordinal-group: 4;
-moz-box-ordinal-group: 4;
-webkit-order: 3;
-ms-flex-order: 3;
order: 3;	
}
#page_content,
.sidebar#left_sidebar,
.sidebar#right_sidebar{
float: none\9;
}
#page > .prospect_layout_container:after{
display: none\9;
}
}
@media screen and ( max-width: 767px ){
.prospect_layout_container{
width: auto;
margin-left: 20px;
margin-right: 20px;			
}
}.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: none;
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(//edutechbusiness.com/wp-content/themes/prospect/css/fancybox_sprite.png);
}
#fancybox-loading {
position: fixed;
top: 50%;
left: 50%;
margin-top: -22px;
margin-left: -22px;
background-position: 0 -108px;
opacity: 0.8;
cursor: pointer;
z-index: 8060;
}
#fancybox-loading div {
width: 44px;
height: 44px;
background: url(//edutechbusiness.com/wp-content/themes/prospect/css/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(//edutechbusiness.com/wp-content/themes/prospect/css/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(//edutechbusiness.com/wp-content/themes/prospect/css/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);
} @media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min--moz-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5){
#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
background-image: url(//edutechbusiness.com/wp-content/themes/prospect/css/fancybox_sprite@2x.png);
background-size: 44px 152px; }
#fancybox-loading div {
background-image: url(//edutechbusiness.com/wp-content/themes/prospect/css/fancybox_loading@2x.gif);
background-size: 24px 24px; }
}.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
display: -moz-inline-box;
-moz-box-orient: vertical;
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
position: relative;
}
.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
*display: inline;
}
.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-default .odometer-digit {
display: -moz-inline-box;
-moz-box-orient: vertical;
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
position: relative;
}
.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-default .odometer-digit {
*display: inline;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer, .odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
display: -moz-inline-box;
-moz-box-orient: vertical;
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
visibility: hidden;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer, .odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
*display: inline;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner, .odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
text-align: left;
display: block;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon, .odometer.odometer-theme-default .odometer-digit .odometer-ribbon {
display: block;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner, .odometer.odometer-theme-default .odometer-digit .odometer-ribbon-inner {
display: block;
-webkit-backface-visibility: hidden;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-value, .odometer.odometer-theme-default .odometer-digit .odometer-value {
display: block;
-webkit-transform: translateZ(0);
}
.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value, .odometer.odometer-theme-default .odometer-digit .odometer-value.odometer-last-value {
position: absolute;
}
.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-up .odometer-ribbon-inner {
-webkit-transition: -webkit-transform 2s;
-moz-transition: -moz-transform 2s;
-ms-transition: -ms-transform 2s;
-o-transition: -o-transform 2s;
transition: transform 2s;
}
.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-up.odometer-animating .odometer-ribbon-inner {
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%);
}
.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-down .odometer-ribbon-inner {
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%);
}
.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
-webkit-transition: -webkit-transform 2s;
-moz-transition: -moz-transform 2s;
-ms-transition: -ms-transform 2s;
-o-transition: -o-transform 2s;
transition: transform 2s;
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0);
}
.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
font-family: "Helvetica Neue", sans-serif;
line-height: 1.1em;
}
.odometer.odometer-auto-theme .odometer-value, .odometer.odometer-theme-default .odometer-value {
text-align: center;
}ul{
font-weight: 300;
}
li{
list-style-type: none;
}
img:not([src]){
content: "";
}
a{
cursor: pointer;
display: inline;
text-decoration: none;
}
a:hover{
text-decoration: none;
}
img,
iframe,
.wp-caption,
select{
max-width: 100%;
}
embed{
max-width: 100%;
}
img{
height: auto;
-webkit-transform: translate3d(0,0,0);
-ms-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
a,
input[type='submit'],
button,
.main_menu .menu-item > a,
.main_menu .menu-item > span:first-child,
#wp-calendar td#prev a:before,
#wp-calendar td#next a:before,
.widget .searchform .screen-reader-text,
.widget .menu .menu-item,
.widget .menu .menu-item .depth,
.widget_header .carousel_nav > *,
.prospect_sc_carousel_header .carousel_nav > *,
.pic .hover-effect,
a[rel^="attachment"]:before,
a[rel^="attachment"]:after,
.gallery .gallery-item a:before,
.gallery .gallery-item a:after,
.pic > img,
.pic.link_post > a > img,
a[rel^="attachment"] img,
.gallery .gallery-item img,
.cws_portfolio_posts_grid.posts_grid_2 hr.posts_grid_divider,
.cws_portfolio_posts_grid.posts_grid_3 hr.posts_grid_divider,
.cws_portfolio_posts_grid.posts_grid_4 hr.posts_grid_divider,
.cws_staff_post.posts_grid_post > .prospect_wrapper,
#scroll_to_top,
.prospect_icon.hovered,
.vc_toggle .vc_toggle_title > h4,
.vc_toggle .vc_toggle_icon,
.prospect_services_icon .icon,
.prospect_pricing_plan,
.thumb .hover-effect,
.vc_images_carousel .vc_carousel-control .icon-next,
.vc_images_carousel .vc_carousel-control .icon-prev,
.select2-results .select2-result,
.gallery .gallery-icon-link,
#footer_widgets .widget_social .social_icon i,
.latest_post_list_more span,
.prospect_sc_carousel .carousel_nav > .prev,
.prospect_sc_carousel .carousel_nav > .next{
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
}
[class^="flaticon-"]:before, 
[class*=" flaticon-"]:before, 
[class^="flaticon-"]:after, 
[class*=" flaticon-"]:after {
font-size: inherit;
margin-left: 0;
}
.a-left{
text-align: left;
}
.a-right{
text-align: right;
}
.a-center{
text-align: center;
}
.index-2{
z-index: 2;
}
body{
overflow-x: hidden;
font-weight: 400;
background-color: #fafafa;
position: relative;
z-index: 1;
}
.error404{
background: #2d3339;
}
img[class*="wp-image"],
.prospect_button,
input[type='submit'],
button,
.more-link,
.prospect_msg_box,
input,
textarea,
.widget .searchform .screen-reader-text,
.pic .links,
.pic.link_post .link,
#commentform > *,
.posts_grid .item,
.widget_header,
.vc_tta.vc_tta-tabs .vc_tta-tab > a,
.vc_toggle .vc_toggle_icon,
.widget_post_list.widget_carousel .item,
.prospect_sc_carousel li.item{
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;	
box-sizing: border-box;
}
.prospect_button,
input[type='submit'],
button,
.more-link{
border-radius: 8px;
}
input[type="search"]{
-webkit-appearance: none;
}
.clearfix:after,
#top_panel .prospect_layout_container:after,
.latest_tweets.carousel:after,
#commentform .form-submit:after,
.prospect_grid:after{
content: "";
display: block;
clear: both;
}
iframe{
border-radius: 4px;
-webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
-webkit-transform: rotate(0.000001deg);
}
.select2-results{
color: inherit;
}
.select2-results li{
padding-left: 0;
}
.select2-results li + li{
margin-top: auto;
}
.select2-results li:before{
display: none;
}
.v_sep{
border-left: 1px solid #e7e7e7;
padding-left: 15px;
margin-left: 15px;
}
.v_sep:first-child{
margin-left: auto;
}
.v_sep:last-child{
padding-left: 0;
}
.prospect_wrapper,
.cws_wrapper{
position: relative;
overflow: hidden;
}
.prospect_overlay,
.cws_overlay{
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
}
.prospect_flex_column_sb{
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;	
}
.text_alignleft{
text-align: left;
}
.text_alignright{
text-align: right;
}
.text_aligncenter{
text-align: center;
}
.widgettitle{
font-weight: 400;
}
.thumb{
position: relative;
overflow: hidden;
}
.thumb .hover-effect{
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(255,255,255,0.25);
opacity: 0;
}
.thumb:hover .hover-effect{
opacity: 1;
}
.thumb .link,
.thumb .link > a{
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.thumb > img{
z-index: 0;
}
.thumb .hover-effect{
z-index: 1;
}
.thumb .link{
z-index: 2;
}
.a_left_flex{
-webkit-justify-content: flex-start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.a_right_flex{
-webkit-justify-content: flex-end;
-ms-flex-pack: end;
justify-content: flex-end;
}
.a_center_flex{
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
.children_height_stretchedByFlex{
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-align: stretch;
-webkit-align-items: stretch;
-ms-flex-align: stretch;
align-items: stretch;
}
.opacity1 .figure_wrap svg{
opacity: 1;
}
.top_triangle:before{
content: '';
position: absolute;
z-index: 4;
top: -10px;
left: 50%;
width: 20px;
height: 20px;
background: #fafafa;
transform: translateX(-50%) rotate(45deg);
}
.bottom_triangle:before{
content: '';
position: absolute;
z-index: 1;
bottom: -10px;
left: 50%;
width: 20px;
height: 20px;
background: #fafafa;
transform: translateX(-50%) rotate(45deg);
}
#benefits{
background-image: -webkit-linear-gradient(top, rgba(31, 40, 48,0) 0%, rgba(31, 40, 48,1) 170px), -webkit-linear-gradient(top, rgba(31, 40, 48,0) 0%, rgba(31, 40, 48,1) 170px);
background-image: -moz-linear-gradient(top, rgba(31, 40, 48,0) 0%, rgba(31, 40, 48,1) 170px), -moz-linear-gradient(top, rgba(31, 40, 48,0) 0%, rgba(31, 40, 48,1) 170px);
background-image: -o-linear-gradient(top, rgba(31, 40, 48,0) 0%, rgba(31, 40, 48,1) 170px), -o-linear-gradient(top, rgba(31, 40, 48,0) 0%, rgba(31, 40, 48,1) 170px);
background-image: -ms-linear-gradient(top, rgba(31, 40, 48,0) 0%, rgba(31, 40, 48,1) 170px), -ms-linear-gradient(top, rgba(31, 40, 48,0) 0%, rgba(31, 40, 48,1) 170px);
background-image: linear-gradient(to bottom, rgba(31, 40, 48,0) 0%, rgba(31, 40, 48,1) 170px), linear-gradient(to bottom, rgba(31, 40, 48,0) 0%, rgba(31, 40, 48,1) 170px);
}  .wp-caption-text,
.sticky,
.gallery-caption,
.bypostauthor{}
img[class*="wp-image"]{
border-radius: 8px;	
}
img[class*="wp-image"].noborder{
padding: 0;
border-style: none;
}
a[rel^="attachment"]{
display: inline-block;
}
.gallery .gallery-item a{
display: block;
}
a[rel^="attachment"],
.gallery .gallery-item a{
position: relative;
overflow: hidden;
}
a[rel^="attachment"] img,
.gallery .gallery-item img{ display: inline-block;
vertical-align: middle;
border-style: none;
-webkit-transform: scale(1) translate3d(0,0,0);
-ms-transform: scale(1) translate3d(0,0,0);
transform: scale(1) translate3d(0,0,0);
z-index: 0; }
a[rel^="attachment"] img{
padding: 0;
}
.gallery{
margin-left: -15px !important;
margin-right: -15px !important;
}
.gallery .gallery-item{
box-sizing: border-box;
padding-left: 15px;
padding-right: 15px;
margin-top: auto !important;
margin-bottom: 30px !important;
}
.widget .gallery{
margin-left: -6px !important;
margin-right: -6px !important;	
}
.widget .gallery .gallery-item{
padding-left: 6px;
padding-right: 6px;
margin-bottom: 12px !important;	
}
.prospect_sc_carousel .gallery .gallery-item{
margin-bottom: auto !important;	
}
.gallery .gallery-item img{
border-style: none !important;	
}
a[rel^="attachment"] .gallery-icon-link:after,
.gallery .gallery-item a .gallery-icon-link:after{
font-family: FontAwesome;
content: "\f064";
display: block;
position: absolute;
top: 50%;
left: 50%;
margin-left: -24px;
margin-top: -24px;
width: 50px;
height: 50px;
border-radius: 8px;
font-size: 22px;
line-height: 50px;
color: #fff;
vertical-align: middle;
text-align: center;
text-decoration: none;
-webkit-transform: scale(0.5);
-ms-transform: scale(0.5);
transform: scale(0.5);
opacity: 0;
z-index: 2;
}
a[rel^="attachment"]:hover .gallery-icon-link:after,
.gallery .gallery-item a:hover .gallery-icon-link:after{
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
opacity: 1;	
}
a[rel^="attachment"][href*=".jpg"]:after,
a[rel^="attachment"][href*=".jpeg"]:after,
a[rel^="attachment"][href*=".png"]:after,
a[rel^="attachment"][href*=".gif"]:after,
.gallery .gallery-item a[href*=".jpg"]:after,
.gallery .gallery-item a[href*=".jpeg"]:after,
.gallery .gallery-item a[href*=".png"]:after,
.gallery .gallery-item a[href*=".gif"]:after{ }
.gallery .gallery-icon-link{
width: 44px;
height: 48px;
position: absolute;
z-index: 1;
opacity: 0;
margin-top: -4px;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%,-50%) scale(0.5);
-ms-transform: translate(-50%,-50%) scale(0.5);
transform: translate(-50%,-50%) scale(0.5);
}
.gallery .gallery-icon{
position: relative;
border-radius: 8px;
overflow: hidden;
-webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
-webkit-transform: rotate(0.000001deg);
}
a[rel^="attachment"]:hover .gallery-icon-link,
.gallery .gallery-item a:hover .gallery-icon-link{
opacity: 0.9;
-webkit-transform: translate(-50%,-50%) scale(1);
-ms-transform: translate(-50%,-50%) scale(1);
transform: translate(-50%,-50%) scale(1);
}
.wp-playlist-light{
border-style: none;
}
.wp-playlist-light .wp-playlist,
.wp-playlist-light .wp-playlist-caption,
.wp-playlist-light .wp-playlist-item-meta,
.wp-playlist-light .wp-playlist-item-title,
.wp-playlist-light .wp-playlist-item-artist{
font-size: inherit;
line-height: inherit;
color: inherit;
}
.wp-playlist-light .wp-playlist-current-item{
position: relative;
padding: 12px 10px 12px 60px;
border-radius: 10px 0 0 0;
color: #fff;
height: auto;
margin-bottom: 0;
}
.wp-playlist-light .wp-playlist-current-item .wp-playlist-caption{
color: #fff;
}
.wp-playlist-light .wp-playlist-current-item img{
display: none;
}
.wp-playlist-light .wp-playlist-current-item:before{
font-family: FontAwesome;
content: "\f001";
display: block;
position: absolute;
top: 3px;
left: 3px;
width: 44px;
height: 44px;
line-height: 44px;
font-size: 20px;
background-color: #fff;
text-align: center;
border-radius: 8px;
}
.wp-playlist-light .wp-playlist-item{
padding: 5px 0;
}
.wp-playlist-light .wp-playlist-item:not(:last-child){
border-bottom-style: solid;
border-bottom-width: 1px;
}
.wp-playlist-light .wp-playlist-current-item .wp-playlist-item-title{
font-weight: 500;
}
.wp-playlist-light .wp-playlist-tracks .wp-playlist-playing{
font-weight: 500;
background-color: transparent;
}
.wp-playlist-light .wp-playlist-tracks{
margin-top: auto;
padding: 25px 30px;
background-color: #e5e5e5;
}
.wp-playlist-light .wp-playlist-current-item .wp-playlist-item-meta{
font-size: inherit;
}
.prospect_sc_carousel .owl-item > .gallery-item{
width: 100% !important;
}
.prospect_sc_carousel .owl-pagination{
padding-left: 15px;
padding-right: 15px;
}  address:not(:last-child),
p:not(:last-child),
ul:not(:last-child),
ol:not(:last-child),
blockquote:not(:last-child),
table:not(:last-child),
dl:not(:last-child)  {
margin-bottom: 1em;
}
ul ul, ol ol, ul ol, ol ul{
margin-bottom: 0;
}
strong{
font-weight: 700;
}
small{
font-size: smaller;
}
em{
font-style: italic;
}
address{
font-style: italic;
}
abbr{
border-bottom-style: dotted;
border-bottom-width: 1px;
cursor: help;
}
cite{
font-style: italic;
}
code{
padding: 2px 5px;
border: 1px solid #e6e6e6;
border-radius: 2px;
}
sub, sup{
font-size: 0.85em;
}
sub{
vertical-align: sub;
}
sup{
vertical-align: super;
}
ins{
background: #f2f2f2;	
}
main p{ text-indent: 0;
font-weight: 300;
}
main p[style*="text-align: center;"],
main p[style*="text-align:center;"]{
text-indent: 0;
}
*{
text-indent: 0;
}
hr{
-webkit-appearance: none;
position: relative;
height: 1px;
margin: 30px auto;
background: #d8e8ec;
border-style: none;
outline-style: none;
}
hr.simple:before,
hr.thin:before,
hr.short_simple:before,
hr.short_thin:before{
display: none;
}
hr.thin,
hr.short_thin{
height: 1px;
}
hr.short,
hr.short_simple,
hr.short_thin{
width: 30px;
}
hr.short{
overflow: hidden;
margin: 0 auto;
height: 2px;
margin-bottom: 20px;
}
hr.short:before{
border-left-width: 50px;
border-right-width: 50px;
}
del{
text-decoration: line-through;
}
mark{
-webkit-appearance: none;
color: #fff;
padding: 2px 6px;
} h1, h2, h3, h4, h5, h6{
line-height: 1.2;
font-weight: 400;
}
h1              		{ font-size: 3em; font-weight: 400; }
h1:not(:last-child)		{ margin-bottom: 0.67em; }
h1:not(:first-child)	{ margin-top: 0.67em; }
h2              		{ font-size: 2.64em; }
h2:not(:last-child)		{ margin-bottom: 0.83em; }
h2:not(:first-child)	{ margin-top: 0.83em; }
h3              		{ font-size: 2.214em; }
h3:not(:last-child)		{ margin-bottom: 1em; }
h3:not(:first-child)	{ margin-top: 1em; }
h4              		{ font-size: 1.64em; }
h4:not(:last-child)		{ margin-bottom: 1.33em; }
h4:not(:first-child)	{ margin-top: 1.33em; }
h5              		{ font-size: 1.357em; }
h5:not(:last-child)		{ margin-bottom: 1.67em; }
h5:not(:first-child)	{ margin-top: 1.67em; }
h6              		{ font-size: 1.14em; }
h6:not(:last-child)		{ margin-bottom: 2.33em; }
h6:not(:first-child)	{ margin-top: 2.33em; }  ul > li{
position: relative;
padding-left: 1.3em;
}
ul li + li,
ol li + li,
li > ul > li:first-child,
li > ol > li:first-child{
margin-top: 15px;
}
ul > li:before,
ul.custom_icon_style .list_list{
position: absolute;
top: 0;
left: 0;
font-family: FontAwesome;
content: "\f111";
font-size: 0.5em;
}
ul.custom_icon_style .list_list{
font-size: inherit;
line-height: inherit;
}
ol{
padding-left: 1.3em;
}
ol > li{
list-style-type: decimal;	
}
ul.checkmarks_style li:before{
font-size: 1em;
content: "\f00c";
}
ul.custom_icon_style li:before{
display: none;
}
#querylist ul li:before{
display: none;
}  blockquote{
display: block;
position: relative;
padding: 20px 30px 25px 30px;
border: 1px solid #e6e6e6;
}
q{
position: relative;
z-index: 1;
font-style: italic;
font-size: 1.26em;
display: block;
padding-left: 35px;
font-weight: 300;
}
q:before{
display: inline-block;
font-size: 40px;
font-family: FontAwesome;
vertical-align: middle;
content: '\f10d';
margin-right: 8px;
color: #d8e8ec;
}  table{
border-collapse: separate;
border: 1px solid #d8e8ec;
border-radius: 8px;
background: #fff;
}
table th,
table td{
padding: 14px;
}
table thead tr:first-child{
background: #27323e;
color: #fff;
}
table tr th:first-child{
border-top-left-radius: 8px;
}
table tr th:last-child{
border-top-right-radius: 8px;
}
table thead th,
table thead td{
border-color: #18bb7c;
}
table thead th,
table thead td,
table tfoot th,
table tfoot td{
text-align: left;
}  dl dt:not(:first-child){
margin-top: 0.8em;
}
dl dd{
padding-left: 1.3em;
font-style: italic;
} .dropcap{
font-size: 2.133333em;
display: block;
float: left;
margin-right: 0.5ex;
text-align: center;
color: #fff;
border-radius: 6px 0;	
}  input,
textarea{
background-color: #fff;
font-size: 0.933333em;
padding: 12px 10px;
border: 2px solid #7796ab;
max-width: 100%;
margin: auto; border-radius: 8px;
}
input:not([type="checkbox"]):not([type="radio"]),
textarea{
-webkit-appearance: none;
}
.vc_row-has-fill input,
.vc_row-has-fill textarea{
background-color: #fff;
}
input[type='submit']{
cursor: pointer;
}
input::-webkit-input-placeholder {color: #8f96a2;}
input::-moz-placeholder     {color: #8f96a2;} 
input:-moz-placeholder      {color: #8f96a2;} 
input:-ms-input-placeholder {color: #8f96a2;}
textarea::-webkit-input-placeholder {color: #8f96a2;}
textarea::-moz-placeholder     {color: #8f96a2;} 
textarea:-moz-placeholder      {color: #8f96a2;} 
textarea:-ms-input-placeholder {color: #8f96a2;}
.wpcf7-form p{
text-indent: 0;
}
span.wpcf7-form-control-wrap:first-of-type:last-of-type:first-child:not(:only-child) input{
line-height: 1.142858em;
height: 1.142858em; padding-top: 11px;
padding-bottom: 11px;
padding-left: 18px;
padding-right: 18px;
border-radius: 8px;
-webkit-box-sizing: content-box; -ms-box-sizing: content-box; box-sizing: content-box; max-width: 50%;
}
span.wpcf7-form-control-wrap input,
span.wpcf7-form-control-wrap textarea{
border-radius: 8px;	
}
span.wpcf7-form-control-wrap textarea{
line-height: 1.6923; 
}
span.wpcf7-form-control-wrap:first-of-type:last-of-type:first-child + input[type="submit"]{
position: relative;
margin-left: -1px;
border-radius: 4px;
min-width: 0;
background-color: #18bb7c;
border-color: #18bb7c;
color: #fff;
}
span.wpcf7-form-control-wrap:first-of-type:last-of-type:first-child + input[type="submit"]:hover{
color: rgba(255,255,255,0.8);
}
span.wpcf7-form-control-wrap:first-of-type:last-of-type:first-child input.wpcf7-not-valid{
border-color: #e95f58;
}
span.wpcf7-form-control-wrap:first-of-type:last-of-type:first-child input.wpcf7-validates-as-required.wpcf7-not-valid + .wpcf7-not-valid-tip{
display: block;
position: absolute;
top: 0;
right: 0;
height: 100%;
font-size: 0;
}
span.wpcf7-form-control-wrap:first-of-type:last-of-type:first-child input.wpcf7-validates-as-required.wpcf7-not-valid + .wpcf7-not-valid-tip:after{
content: "*";
display: inline-block;
font-family: Arial;
font-size: 24px;
padding: 0 10px;
color: #e95f58;
}
span.wpcf7-form-control-wrap:first-of-type:last-of-type:first-child input.wpcf7-validates-as-required.wpcf7-not-valid{
padding-right: 30px;
}
div.wpcf7-response-output{
margin-left: auto;
margin-right: auto;
}
.cws_signup form.wpcf7-form{
display:table;
margin-left:auto;
margin-right: auto;
}
.cws_signup .wpcf7-response-output{
display: block !important;
min-height: 24px;
border-width: 2px;
border-style: solid;
}
.cws_signup .wpcf7-response-output:not([role]){
border-color: transparent;
}
.cws_signup .wpcf7-response-output:not([role]):before{
content: "\00A0";
}
.cws_signup .wpcf7-form-control-wrap.your-email{
white-space: nowrap;
}
.cws_signup div.wpcf7 img.ajax-loader{
margin-left: -16px;
-webkit-transform: translateX(20px);
-ms-transform: translateX(20px);
transform: translateX(20px);
}
@media screen and ( max-width: 767px ){
.cws_signup .wpcf7-form-control-wrap.your-email{
white-space: normal;
}
.cws_signup span.wpcf7-form-control-wrap:first-of-type:last-of-type:first-child + input[type="submit"]{
margin-top: 10px;
border-radius: 4px;
}   
.cws_signup span.wpcf7-form-control-wrap:first-of-type:last-of-type:first-child:not(:only-child) input{
width: 100%;
border-radius: 4px;    
}
}  input[type='submit']{
font-size: inherit;
}
.prospect_button_wrapper{
display: inline-block;
}
.prospect_button_wrapper > .prospect_button{
display: block;
margin: auto;
}
.prospect_button,
.more-link{
text-decoration: none;
}
.prospect_button,
input[type='submit'],
button,
.more-link{
display: inline-block;
padding: 18px 20px;
min-width: 170px;
border-style: solid;
border-width: 2px;
border-color: #e95f58;
line-height: 1.066667em;
color: #fff;
font-weight: 600;
text-align: center;
white-space: nowrap;
font-size: 12px;
text-transform: uppercase;
border-radius: 8px;
}
.prospect_button:hover,
.more-link:hover,
button:hover{
}
input[type='submit']:hover{
color: #27323e;
background-color: transparent !important;
}
.prospect_button.without_fill{
background: transparent !important;
border-color: transparent !important;
padding: 0 !important;
}
.prospect_button.without_fill:hover{
color: inherit !important;
}
.prospect_button.alt{
background-color: #e95f58;
color: #fff;
}
.prospect_button.alt:hover{
background-color: transparent;
}
.prospect_button.button_color_2{
border-color: #f9cb8f;
}
.prospect_button.button_color_2:hover,
.prospect_button.alt.button_color_2{
background-color: #f9cb8f;
}
.prospect_button.alt.button_color_2:hover{
background-color: transparent;	
}
.prospect_button.button_color_3{
border-color: #18bb7c;
}
.prospect_button.button_color_3:hover,
.prospect_button.alt.button_color_3{
background-color: #18bb7c;
}
.prospect_button.alt.button_color_3:hover{
background-color: transparent;
}
button{
background-color: transparent;
cursor: pointer;
}  .prospect_msg_box{
position: relative;
padding: 40px;
border-radius: 8px;
color: #fff;
min-height: 50px;
background-color: #18bb7c;
}
.prospect_msg_box.with-icon{
padding-left: 84px;
}
.prospect_msg_box h1,
.prospect_msg_box h2,
.prospect_msg_box h3,
.prospect_msg_box h4,
.prospect_msg_box h5,
.prospect_msg_box h6,
.prospect_msg_box a{
color: #fff;
}
.prospect_msg_box .icon_part{
position: absolute;
top: 50%;
left: 20px;
width: 44px;
height: 44px;
background-color: #fff;
border-radius: 8px; 
margin-top: -22px;
}
.prospect_msg_box .msg_icon{
font-size: 20px;
font-family: FontAwesome;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%,-50%);
-ms-transform: translate(-50%,-50%);
transform: translate(-50%,-50%);
text-align: center;
color: #18bb7c;
}
.prospect_msg_box .msg_icon:not(.fa):before{
content: "\f00c";	
}
.prospect_msg_box .content_part{
line-height: 1.2;
}
.prospect_msg_box .title{
font-size: 1.15em;
font-weight: 500;
margin-bottom: 10px;
}
.prospect_msg_box .close_button{
display: block;
position: absolute;
top: 0;
right: 0;
width: 36px;
height: 36px;
opacity: 0.5;
}
.prospect_msg_box .close_button:hover{
opacity: 1;
}
.prospect_msg_box .close_button:before,
.prospect_msg_box .close_button:after{
display: block;
content: "";
position: absolute;
top: 50%;
left: 50%;
background-color: #fff;
}
.prospect_msg_box .close_button:before{
width: 16px;
height: 2px;
margin-left: -8px;
margin-top: -1px;
-webkit-transform: rotate( 45deg );
-ms-transform: rotate( 45deg );
-moz-transform: rotate( 45deg );
transform: rotate( 45deg );
}
.prospect_msg_box .close_button:after{
width: 2px;
height: 16px;
margin-left: -1px;
margin-top: -8px;
-webkit-transform: rotate( 225deg );
-ms-transform: rotate( 225deg );
-moz-transform: rotate( 225deg );
transform: rotate( 225deg );
}
.prospect_msg_box.warn{
background-color: #f9cb8f;
}
.prospect_msg_box.warn .msg_icon{
color: #f9cb8f;
}
.prospect_msg_box.warn .msg_icon:not(.fa):before{
content: "\f12a";
}
.prospect_msg_box.error{
background-color: #e95f58;
}
.prospect_msg_box.error .msg_icon{
color: #e95f58;
}
.prospect_msg_box.error .msg_icon:not(.fa):before{
content: "\f00d";
}
.prospect_msg_box.info{
background-color: #4bbcd7;
}
.prospect_msg_box.info .msg_icon{
color: #4bbcd7;
}
.prospect_msg_box.info .msg_icon:not(.fa):before{
content: "\f129";
}
.prospect_msg_box.notice{
background-color: #808c95;
}
.prospect_msg_box.notice .msg_icon{
color: #808c95;
}
.prospect_msg_box.notice .msg_icon:not(.fa):before{
content: "\f129";
}
.prospect_msg_box.usefull{
background-color: #27323e;
}
.prospect_msg_box.usefull .msg_icon{
color: #27323e;
}
.prospect_msg_box.usefull .msg_icon:not(.fa):before{
content: "\f129";
}
.testimonial .author{
float: left;
text-align: center;
margin-right: 30px;
}
.testimonial .author_info{
font-weight: 600;
display: block;
line-height: 1.3;
font-size: 12px;
color: #324251;
position: relative;
z-index: 1;
}
.testimonial .author_name.author_info:before{
content: '';
position: absolute;
z-index: 1;
left: -10px;
top: 6px;
width: 8px;
height: 2px;
background: #324251;
}
.testimonial .author .thumb + figcaption{
padding-top: 3px;
}
.testimonial:not(.hexagon) .author{
max-width: none;
float: right;
text-align: left;
margin-right: auto;
white-space: nowrap;
padding-left: 10px;
padding-top: 5px;
}
.testimonial:not(.hexagon) .author_info{
position: relative;
display: inline-block;
vertical-align: middle;
}
.testimonial:not(.hexagon) .author_info + .author_info:before{
display: inline-block;
font-family: Arial;
content: "\00A0\002F\00A0";
}
.testimonial .author + .quote{
margin-left: auto;
}
.testimonial .thumb{
display: block;
}
.testimonial .thumb > img{
display: block;
}
.testimonial .thumb,
.testimonial .thumb > img{
border-radius: 8px;
}
.testimonial .quote_link a{
font-family: FontAwesome;
font-size: 1.6em;
text-decoration: none;
}
.testimonial .quote_link a:before{
content: "\f178";
}
.testimonial.prospect_module.hexagon .author{
float: none;
margin: auto;
}
.testimonial.prospect_module.hexagon .author .thumb{
width: 200px;
margin: auto;
}
.testimonial.prospect_module.hexagon .author_name{
font-size: 16px;
}
.testimonial.prospect_module.without_image.hexagon .author_name{
font-size: 12px;
}
.testimonial.prospect_module.with_image .testimonial_img_container,
.testimonial.prospect_module.with_image .testimonial_img_container:before{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
overflow: hidden;
}
.testimonial.prospect_module.with_image .testimonial_img_container:before{
content: '';
background: #fff;
opacity: 0.9;
}
.testimonial.prospect_module.with_image .testimonial_img_container img{
display: block;
width: 100%;
position: absolute;
z-index: 0;
min-height: 100%;
}
.testimonial.prospect_module.with_image{
position: relative;
z-index: 1;
}
.testimonial.prospect_module.with_image{
border-radius: 8px;
overflow: hidden;
}
.post_post_media .testimonial.prospect_module.with_image{
padding: 0;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.floated_media .post_post_media .testimonial.prospect_module.with_image{
border-radius: 8px;
}
.testimonial.prospect_module.with_image .testimonial_container {
padding: 35px 40px 30px;
}
.testimonial.prospect_module .author_status{
font-size: 12px;
font-weight: 400;
}
.testimonial.prospect_module.hexagon .author_status{
margin-top: 5px;
}
.testimonial.prospect_module.hexagon figcaption{
padding-bottom: 15px;
margin-bottom: 15px;
position: relative;
z-index: 1;
}
.testimonial.prospect_module.hexagon figcaption:before{
content: '';
position: absolute;
z-index: 1;
bottom: 0;
left: 50%;
width: 30px;
height: 2px;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
}
.testimonial.prospect_module.hexagon .author .thumb + figcaption{
padding-top: 20px;
}
.testimonial.prospect_module figcaption span:before{
display: none;
}
.testimonial.prospect_module.hexagon .quote q{
font-style: normal;
font-size: 1em;
text-align: center;
padding-left: 15%;
padding-right: 15%;
}
.testimonial.prospect_module.hexagon:not(.without_image) .quote q:before{
display: none;
}
.post_single_post_content .testimonial.prospect_module.hexagon .quote q{
text-align: left;
font-size: 22px;
font-style: italic;
line-height: 1.6;
}
.testimonial.prospect_module .quote q{
font-size: 16px;
text-align: left;
padding-left: 0;
padding-right: 0;
font-style: italic;
}
.prospect_icon_wrapper{
display: inline-block;
margin: 5px;
}
.prospect_icon{
display: inline-block;
text-decoration: none;
text-align: center;
width: 2em;
height: 2.1em;
line-height: 2.2em;
color: #fff;
position: relative;
z-index: 1;
}
.prospect_icon.fa-2x,
.prospect_icon.fa-3x,
.prospect_icon.fa-4x,
.prospect_icon.fa-5x,
.prospect_icon.fa-lg{
line-height: 2.2em;
}
.prospect_icon.fa-fw_icon{
width: 100%;
font-size: 6em;
line-height: initial;
height: initial;
padding-bottom: 110%;
}
.prospect_icon.fa-fw_icon:before{
position: absolute;
z-index: 1;
left: 50%;
top: 50%;
transform: translate3d(-50%,-50%,0);
}
.prospect_icon_wrapper > .prospect_icon{
display: block;
margin: auto;
}
.prospect_icon.simple.hovered:hover{
opacity: 0.8;
}
.prospect_icon.hovered:hover,
.prospect_icon.icon_alt{
color: #fff;
}
.prospect_icon.figure .figure_wrap svg,
.prospect_icon.icon_alt.hovered:hover .figure_wrap svg{
fill: transparent;
}
.prospect_icon.icon_alt.hovered:hover{
background-color: transparent;
}
.prospect_button.alt,
.prospect_button:hover{
color: #fff;
}
.prospect_button.alt:hover{
background-color: transparent;
}
.prospect_button.fw{
display: block;
width: 100%;
}
.prospect_button.mini{
padding: 11px 15px;
min-width: 170px;	
}
.prospect_button.extra-small{
padding: 13px 15px;
min-width: 170px;
}
.prospect_button.small{
padding: 16px 15px;
min-width: 170px;
}
.prospect_button.large{
padding: 20px 20px;
min-width: 170px;
}
.prospect_button.extra-large{
padding: 22px 20px;
min-width: 170px;
}
.banner_link{
display: block;
}
.prospect_banner{
display: block;
padding: 20px 30px;
font-size: 40px;
line-height: 1;
color: #fff;
border-radius: 8px;
}
.banner_wrapper{
display: block;
position: relative;
}
.prospect_banner .banner_wrapper > *{
display: block;
float: right;
}
.banner_icon{
margin-left: 30px;
}
.prospect_banner .banner_title{
float: left;
}
.prospect_banner.icon_left .banner_wrapper > *{
float: left;
}
.prospect_banner.icon_left .banner_icon{
margin-left: auto;
margin-right: 30px;
}
.prospect_banner.icon_left .banner_title{
float: right;
}
.banner_title{
padding: 9px 0;
}
.banner_offer{
float: right;
font-size: 100px;
line-height: 80px;
}
.banner_icon{
font-size: 55px;
line-height: 98px;
width: 98px;
border-radius: 50%;
background-color: #fff;
text-align: center;
}
.banner_offer > *,
.banner_title > *{
vertical-align: middle;
}
.vc_tta.vc_tta-tabs.vc_general .vc_tta-panel-body{
border-style: none;
padding: 40px 20px;
color: #808c95;
font-weight: 300;
}
.vc_tta.vc_tta-accordion.vc_general .vc_tta-panel-body{
padding: 40px 20px;
}
.vc_tta.vc_tta-accordion.vc_general.accordion_alternative .vc_tta-panel-body{
background: #fff;
}
.vc_tta.vc_general.vc_tta-accordion .vc_tta-panel-heading{
border-style: none;
margin-bottom: -1px;
}
.vc_tta.vc_general.vc_tta-accordion .vc_tta-panel-title{
font-family: inherit;
line-height: inherit;
font-size: 1em;
}
.vc_tta.vc_general.vc_tta-accordion .vc_tta-panel-title > a{
position: relative;
font-weight: 500;
color: #afb1bc;
margin: -1px -1px auto -1px;
}
.vc_tta.vc_general.vc_tta-accordion .vc_tta-icon{
font-size: 1em;
line-height: inherit;
}
.vc_tta.vc_general.vc_tta-accordion .vc_tta-panel-title.vc_tta-controls-icon-position-left > a{
padding: 10px 20px 10px 0;
}
.vc_tta.vc_general.vc_tta-accordion .vc_tta-panel-title.vc_tta-controls-icon-position-right > a{
padding: 10px 0 10px 20px;
}
.vc_tta.vc_general.vc_tta-accordion .vc_tta-controls-icon-position-left.vc_tta-panel-title > a{
padding-left: 40px;
}
.vc_tta.vc_general.vc_tta-accordion .vc_tta-controls-icon-position-right.vc_tta-panel-title > a{
padding-right: 40px;
}
.vc_tta.vc_general.vc_tta-accordion .vc_tta-controls-icon-position-left .vc_tta-controls-icon{
left: 20px;
right: initial;
}
.vc_tta.vc_general.vc_tta-accordion .vc_tta-controls-icon-position-right .vc_tta-controls-icon{
left: initial;
right: 20px;
}
.vc_tta.vc_general.vc_tta-accordion .vc_tta-panel + .vc_tta-panel{
margin-top: 10px;
}
.vc_tta.vc_general.vc_tta-accordion.accordion_alternative .vc_tta-panel + .vc_tta-panel{
margin-top: 2px;
}
.vc_tta.vc_general.vc_tta-accordion .vc_tta-panel{
background-color: transparent;
border-bottom: 1px solid #d8e8ec;
overflow: hidden;
}
.vc_tta.vc_general.vc_tta-accordion.accordion_alternative .vc_tta-panel{
border-bottom: 0;
}
.vc_tta.vc_general.vc_tta-accordion.accordion_alternative .vc_tta-panel:first-child .vc_tta-panel-title{
border-top-left-radius: 8px;
border-top-right-radius: 8px;
}
.vc_tta.vc_general.vc_tta-accordion .vc_tta-panel-title{
position: relative;
z-index: 1;
}
.vc_tta.vc_general.vc_tta-accordion.accordion_alternative .vc_tta-panel-title{
background: #eff5f7;
}
.vc_tta.vc_general.vc_tta-accordion.accordion_alternative .vc_active .vc_tta-panel-title{
background: #27323e;
}
.vc_tta.vc_general.vc_tta-accordion .vc_tta-panel-title:before{
content: '';
position: absolute;
z-index: 1;
top: 50%;
width: 10px;
height: 10px;
border-radius: 50%;
background: #afb1bc;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
.vc_tta.vc_general.vc_tta-accordion.vc_tta-controls-align-left .vc_tta-panel-title:before{
right: 20px;
}
.vc_tta.vc_general.vc_tta-accordion.vc_tta-controls-align-right .vc_tta-panel-title:before{
left: 20px;
}
.vc_tta.vc_general.vc_tta-accordion .vc_tta-panel-title.vc_tta-controls-icon-position-right:before,
.vc_tta.vc_general.vc_tta-accordion .vc_tta-panel-title.vc_tta-controls-icon-position-left:before{
display: none;
}
.vc_tta.vc_general.vc_tta-tabs .vc_tta-panel-body{
border-bottom: 1px solid #eff5f7;
}
.vc_tta.vc_general.vc_tta-tabs .vc_tta-tab{
background-color: transparent;
}
.vc_tta.vc_general.vc_tta-tabs .vc_tta-tabs-container{
z-index: 1;
}
.vc_tta.vc_general.vc_tta-tabs.tabs_alternative .vc_tta-tabs-container{
background: #eff5f7;
border-top-right-radius: 8px;
border-top-left-radius: 8px;
}
.vc_tta.vc_general.vc_tta-tabs.vc_tta-tabs-position-top.tabs_alternative .vc_tta-tab.vc_active{
border-bottom-color: transparent;
background: #27323e;
}
.vc_tta.vc_general.vc_tta-tabs.vc_tta-tabs-position-top.tabs_alternative .vc_tta-tab.vc_active a{
color: #fff;
}
.vc_tta.vc_general.vc_tta-tabs.vc_tta-tabs-position-top.tabs_alternative .vc_tta-tab:first-child{
border-top-left-radius: 8px;
}
.vc_tta.vc_general.vc_tta-tabs.vc_tta-tabs-position-top.tabs_alternative .vc_tta-tabs-list{
border-bottom: 0;
}
.vc_tta.vc_general.vc_tta-tabs.vc_tta-tabs-position-top.tabs_alternative .vc_tta-tab{
margin-bottom: 0;
border-bottom: 0;
}
.vc_tta.vc_general.vc_tta-tabs.vc_tta-tabs-position-top .vc_tta-tabs-list,
.vc_tta.vc_general.vc_tta-tabs.vc_tta-tabs-position-top .vc_tta-tabs-container,
.vc_tta.vc_general.vc_tta-tabs.vc_tta-tabs-position-bottom .vc_tta-tabs-container,
.vc_tta.vc_general.vc_tta-tabs.vc_tta-tabs-position-bottom .vc_tta-tabs-list{
overflow: visible;
}
.vc_tta.vc_general.vc_tta-tabs.vc_tta-tabs-position-top .vc_tta-tabs-list{
border-bottom: 2px solid #d8e8ec;
}
.vc_tta.vc_general.vc_tta-tabs .vc_tta-tab{
text-align: center;
}
.vc_tta.vc_general.vc_tta-tabs.vc_tta-tabs-position-top .vc_tta-tab{
border-bottom: 2px solid transparent;
margin-bottom: -2px;
}
.vc_tta.vc_general.vc_tta-tabs.vc_tta-tabs-position-bottom .vc_tta-tab{
border-bottom-width: 2px;
margin-top: -1px;
}
.vc_tta.vc_general.vc_tta-tabs .vc_tta-tab > a{
min-width: 112px;
padding: 13px 20px;
border-style: none;
font-weight: 500;
color: #afb1bc;
}
.vc_tta.vc_general.vc_tta-tabs .vc_tta-tab:before{
display: none;
}
.vc_tta.vc_general.vc_tta-tabs .vc_tta-tab.vc_active>a{
color: #1c3545;
font-weight: 600;
}
.vc_tta.vc_general.vc_tta-tabs.vc_tta-tabs-position-top .vc_tta-tab.vc_active{
border-bottom-color: #fff;
}
.vc_tta.vc_general.vc_tta-tabs.vc_tta-tabs-position-bottom .vc_tta-tab.vc_active{
border-top-color: #fff;
}
.vc_tta.vc_general.vc_tta-tabs.vc_tta-tabs-position-top.tabs_alternative .vc_tta-panel-heading{
background: #eff5f7;
border: 0 !important;
border-bottom: 2px solid #d8e8ec !important;
}
.vc_tta.vc_general.vc_tta-tabs.vc_tta-tabs-position-top .vc_tta-panel-heading .vc_tta-panel-title{
font-size: 1em;
}
.vc_tta.vc_general.vc_tta-tabs.vc_tta-tabs-position-top.tabs_alternative .vc_tta-panel-heading .vc_tta-panel-title > a{
color: #afb1bc;
}
.vc_tta.vc_general.vc_tta-tabs.vc_tta-tabs-position-top.tabs_alternative .vc_tta-panel.vc_active .vc_tta-panel-heading{
background: #27323e;
}
.vc_tta.vc_general.vc_tta-tabs.vc_tta-tabs-position-top.tabs_alternative .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title > a{
color: #fff !important;
}
.vc_tta.vc_general.vc_tta-tabs.vc_tta-tabs-position-top.tabs_alternative .vc_tta-panel:first-child .vc_tta-panel-heading{
border-top-left-radius: 8px;
border-top-right-radius: 8px;
}
.vc_toggle,
.vc_toggle_content{
margin-bottom: auto;
}
.vc_toggle_title{
position: relative;
padding-top: 3px;
padding-bottom: 3px;
}
.vc_toggle_title>h4{
display: inline-block;
margin-bottom: auto;
line-height: 30px;
font-family: inherit;
color: inherit;
font-weight: 500;
}
.vc_toggle .vc_toggle_icon{
display: block;
position: absolute;
top: 0;
left: 0;
margin-right: 10px;
width: 30px;
height: 30px;
line-height: 30px;
font-family: FontAwesome;
text-align: center;
}
.vc_toggle_title> *:first-child{
padding-left: 30px;
padding-right: 30px;
}
.vc_toggle_title> *:first-child:before{
content: '';
position: absolute;
z-index: 1;
top: 10px;
right: 20px;
width: 10px;
height: 10px;
border-radius: 50%;
background: #afb1bc;
}
.vc_toggle .vc_toggle_icon:before{
content: "\f067";
}
.vc_toggle.vc_toggle_active .vc_toggle_icon:before{
content: "\f068";
}
.vc_toggle_title,
.vc_toggle_content{
padding-left: 40px;
color: #1c3545;
border-bottom: 2px solid #d8e8ec;
padding-bottom: 10px !important;
}
.vc_toggle_title + .vc_toggle_content{
padding: 14px 20px;
margin: 0;	
color: #808c95;
}
.vc_toggle + .vc_toggle{
margin-top: 10px;
}
.prospect_pb_bar{
display: block;
position: relative;
height: 8px;
border-radius: 8px;
background-color: #e1e1e1;
}
.prospect_pb .prospect_pb_title{
margin-bottom: 8px;
font-family: inherit;
font-size: inherit;
line-height: 1;
color: inherit;
font-weight: 500;
}
.prospect_pb_progress{
display: block;
position: absolute;
top: 0;
left: 0;
height: 100%;
border-radius: 8px;
}
.prospect_milestone{
position: relative;
z-index: 1;
text-align: center;
color: #fff;
max-width: 270px;
margin-left: auto;
margin-right: auto;
}
.prospect_milestone_background .figure_wrap{
position: relative;
}
.prospect_milestone .prospect_milestone_background .figure_wrap svg{
fill: transparent;
}
.prospect_milestone.milestone-alt .prospect_milestone_background .figure_wrap svg{
stroke: transparent;
}
.prospect_milestone .prospect_milestone_background .figure_wrap svg{
stroke: #7d9baf;
}
.prospect_milestone_content{
position: absolute;
z-index: 1;
top: 50%;
left: 0;
width: 100%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
.prospect_milestone_content{
color: #7d9baf;
}
.prospect_milestone.milestone-alt .prospect_milestone_content{
color: #fff;
}
.prospect_milestone_icon{
font-size: 55px;
line-height: 0.9;
}
.prospect_milestone_title{
font-size: 1.64em;
line-height: inherit;
color: inherit;
margin-top: auto;
font-weight: 600;
}
.prospect_milestone_icon + .prospect_milestone_number{
margin-top: 10px;
}
.prospect_milestone_number + .prospect_milestone_title{
margin-top: 5px;
padding: 0 10px;
}
.prospect_milestone_number .odometer-inside{
font-size: 44px;
color: inherit;
}
.prospect_milestone_number.odometer.odometer-auto-theme,
.prospect_milestone_number.odometer.odometer-theme-default{
font-family: inherit;
line-height: 1;
}
.prospect_services_column{
text-align: center;
}
.prospect_services_title{
font-family: inherit;
text-transform: uppercase;
font-weight: 500;
font-size: 1.2em;
line-height: 1.4;
}
.prospect_services_icon{
margin-bottom: 10px;
}
.prospect_services_icon .icon{
display: inline-block;
font-size: 30px;
width: 70px;
height: 80px;
line-height: 78px;
text-align: center;
color: #fff;
position: relative;
z-index: 1;
}
.prospect_services_desc p span{
display: block;
}
.prospect_services_column .prospect_services_desc{
overflow: hidden;
}
.prospect_services_column.icon_center .prospect_services_icon{
text-align: center;
}
.prospect_services_column.icon_center .prospect_services_desc .widgettitle{
margin-bottom: 10px;
padding-bottom: 5px;
position: relative;
z-index: 1;
}
.prospect_services_column.icon_center .prospect_services_desc .widgettitle:before{
content: '';
position: absolute;
z-index: 1;
bottom: 0;
left: 50%;
width: 30px;
height: 2px;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
}
.prospect_services_column.icon_center .prospect_services_desc p{
margin-bottom: 0;
}
.prospect_services_column.icon_left .prospect_services_icon{
float: left;
margin-right: 30px;
}
.prospect_services_column.icon_right .prospect_services_icon{
float: right;
margin-left: 30px;
}
.prospect_services_column.icon_left .prospect_services_desc{
text-align: left;
}
.prospect_services_column.icon_right .prospect_services_desc{
text-align: right;
}
.prospect_services_column.small .prospect_services_icon .icon{
font-size: 25px;
width: 50px;
height: 60px;
line-height: 56px;
}
.prospect_services_column.medium .prospect_services_icon .icon{
font-size: 30px;
width: 70px;
height: 80px;
line-height: 78px;
}
.prospect_services_column.large .prospect_services_icon .icon{
font-size: 35px;
width: 90px;
height: 100px;
line-height: 98px;
}
.prospect_services_column.icon_alt .prospect_services_icon .icon,
.prospect_services_column.hovered:hover .prospect_services_icon .icon{
color: #fff;
}
.prospect_services_column .prospect_services_icon svg,
.prospect_services_column.icon_alt.hovered:hover .prospect_services_icon svg{
fill: transparent;
}
.prospect_services_button:not(:first-child){
margin-top: 25px;
}
.cws_sc_processes_wrap{
margin-left: -50px;
margin-right: -50px;
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.cws_sc_processes_wrap.simple{
margin-left: -15px;
margin-right: -15px;
}
.prospect_process_column{
width: calc(25% - 100px);
position: relative;
z-index: 1;
float: left;
margin-left: 50px;
margin-right: 50px;
text-align: center;
min-width: 140px;
}
.cws_sc_processes_wrap.simple .prospect_process_column{
width: calc(25% - 30px);
margin-left: 15px;
margin-right: 15px;
}
.cws_sc_processes_wrap.simple .prospect_process_column.process_col_2{
width: calc(50% - 30px);
}
.cws_sc_processes_wrap.simple .prospect_process_column.process_col_1{
width: calc(100% - 30px);
}
.prospect_process_column:nth-child(even){
margin-top: 60px;
}
.cws_sc_processes_wrap.simple .prospect_process_column{
margin-top: 0;
}
.prospect_process_column_line{
position: absolute;
z-index: 1;
top: 75px;
right: -85px;
}
.prospect_process_column:nth-child(even) .prospect_process_column_line{
transform: matrix(-1, 0, 0, 1, 0, 0);
top: 20px;
}
.prospect_process_column:last-child .prospect_process_column_line{
display: none;
}
.prospect_process_column:nth-child(4n+4) .prospect_process_column_line{
display: none;
}
.cws_sc_processes_wrap.simple .prospect_process_column_line{
display: none;
}
.prospect_process_icon_wrap{
position: relative;
z-index: 1;
padding-bottom: 110%;
transition: 0.6s;
}
.prospect_process_item{
max-width: 220px;
margin: auto;
}
.prospect_process_item:hover .prospect_process_icon_wrap{
animation-name: pulse;
-webkit-animation-name: pulse; 
animation-duration: 1s; 
-webkit-animation-duration: 1s;
animation-timing-function: ease-in-out; 
-webkit-animation-timing-function: ease-in-out;  
}
@keyframes pulse {
0% {
transform: scale(1);      
}
50% {
transform: scale(1.05);
}   
100% {
transform: scale(1);  
}           
}
@-webkit-keyframes pulse {
0% {
-webkit-transform: scale(1);      
}
50% {
-webkit-transform: scale(1.05);
}   
100% {
-webkit-transform: scale(1);  
}           
}
.prospect_process_icon{
position: absolute;
z-index: 1;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%,-50%);
-ms-transform: translate(-50%,-50%);
transform: translate(-50%,-50%);	
font-size: 4.5em;
}
.process_number_wrap{
position: absolute;
z-index: 1;
min-width: 17%;
height: 15.45%;
border-radius: 50%;
color: #fff;
font-size: 1em;
top: 5%;
left: 15%;
display: flex;
justify-content: center;
align-items: center;
}
.prospect_process_title{
font-size: 19px;
margin-top: 25px;
margin-bottom: 20px;
color: #fff;
font-weight: 600;
}
.prospect_pricing_plan{
background-color: #fff;
border: 1px solid #efefef;
border-radius: 8px;
overflow: hidden;
-webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
}
.prospect_pricing_plan.highlighted{
-webkit-transform: scale(1.05);
-ms-transform: scale(1.05);
transform: scale(1.05);
-webkit-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.07);
-moz-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.07);
box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.07);
}
.prospect_pricing_plan:hover{
-webkit-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.07);
-moz-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.07);
box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.07);
}
.pricing_plan_title{
padding: 35px 15px;
text-align: center;
margin: -1px -1px 0 -1px;
font-size: 1.64em;
line-height: 1.090909em;
color: #fff;
}
.prospect_pricing_plan .pricing_plan_title{
margin-bottom: auto;
}
.pricing_plan_price{
padding: 31px 12px;
text-align: center;
font-size: 44px;
line-height: 1.1;
font-weight: 700;
color: #1c3545;
border-bottom: 1px solid #d8e8ec;
}
.pricing_plan_price .currency{
font-size: 0.7em;
line-height: 1;
vertical-align: middle;
}
.pricing_plan_price .fract_price_part{
font-size: 0.5em;
vertical-align: top;
line-height: 1;
}
.pricing_plan_price .price_desc{
font-size: 0.25em;
line-height: 1.388889em;
color: #afb1bc;
margin-left: -23px;
}
.pricing_plan_content{
padding: 25px 12px 0 12px;
}
.pricing_plan_content ul{
margin-left: -12px;
margin-right: -12px;
color: #afb1bc;
}
.pricing_plan_content ul li{
padding: 4px 12px 4px 40px;
}
.pricing_plan_content ul li.icon_none{
padding: 4px 12px;
}
.pricing_plan_content ul li + li,
.pricing_plan_content ul li:first-child{
margin-top: auto;
}
.pricing_plan_content ul li:before{
font-size: 0.866667em;
top: 8px;
left: 20px;
content: "√";
}
.pricing_plan_button{
padding: 0 12px 30px 12px;
text-align: center;
}
.prospect_sc_carousel > .prospect_wrapper > p{
display: none;
}
.prospect_sc_carousel li.item{
padding-left: 0;
}
.prospect_sc_carousel li.item:before{
display: none;
}
.cws_twitter{
text-align: center;
}
.cws_twitter .cws_twitter_icon{
padding: 0 15px;
margin-bottom: 15px;
}
.cws_twitter .cws_twitter_icon i{
width: 70px;
height: 70px;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
border: 3px solid #e95f58;
border-radius: 8px;
line-height: 64px;
font-size: 40px;
color: #e95f58;
text-align: center;
}
.cws_twitter_divider{
margin-top: 26px;
margin-bottom: 14px;
}
.cws_tweets_group{
padding-left: 0;
}
.cws_tweets_group:before{
display: none;
}
.cws_tweets .tweet{
padding: 0 15px;
font-size: 1.2em;
line-height: 1.388889em;
font-weight: 300;
}
.cws_tweets .tweet:before{
display: none;
}
.prospect_cta{
position: relative;
border-radius: 8px;
overflow: hidden;
-webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
padding: 20px 45px;
font-weight: 300;
background-color: #f2f2f2;
}
.cta_button .prospect_button{
font-weight: 300;
}
.prospect_cta > *{
position: relative;
z-index: 1;	
}
.cta_bg_layer{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
}
.cta_holder{
display: table;
width: 100%;
}
.cta_holder > *{
display: table-cell;
vertical-align: middle;
}
.cta_holder > .cta_icon{
vertical-align: top;
}
.cta_holder > * + *{
padding-left: 30px;
}
.cta_content{
width: 100%;
}
.cta_icon{
display: block;
border-style: solid;
border-width: 2px;
width: 96px;
font-weight: normal;
font-size: 50px;
line-height: 96px;
text-align: center;
border-radius: 50%;
border-color: #e95f58;
color: #e95f58;	
}
.cta_icon:before{
vertical-align: middle;
}
.cta_title{
font-size: 2.6em;
line-height: 1.2;
font-family: inherit;
color: inherit;
}
.cta_title,
.cta_title:not(:last-child){
margin-bottom: auto;
}
.cta_text{
font-size: 1.45em;
line-height: 1.4;
}
.cta_content > * + *{
margin-top: 8px;
}  #top_panel.transparent{
background-color: transparent;
}
#top_panel address{
width: 100%;
font-style: normal;
}
#top_panel address > p:only-child{ display: inline-block;
}
#top_panel .prospect_layout_container > *,
.bar_item{
display: table-cell;
}
#top_panel .prospect_layout_container > #top_panel_bar:only-child{
display: block;
float: right;
}
#top_panel .prospect_layout_container > *{
vertical-align: middle;
}
.bar_item{
position: relative;
vertical-align: top;
}
.bar_item_content{
position: absolute;
z-index: 5;
top: 0;
right: 0;
margin-right: 100%;
}
.searchform{
overflow: hidden;
}
#search_bar_item{
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
opacity: 1;	
}
#search_bar_item.hidden{
opacity: 0;
}
.searchform{
position: relative;
white-space: nowrap;
}
.searchform .search-field,
.searchform .search-submit{
position: relative;		
}
.searchform .screen-reader-text{
z-index: 3;
}
.searchform .search-field{
z-index: 1;
}
.searchform .search-submit{
z-index: 2;
}
#search_bar_item .search-field{
width: 230px;
border-style: none;
-webkit-transform: translate3d(100%,0,0);
-ms-transform: translate3d(100%,0,0);
transform: translate3d(100%,0,0);
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
color: #fff;
}
.search-submit{
padding: 0;
min-width: 0;
border-style: none;	
font-weight: inherit;
border-radius: 0;
}
.searchform .search-field,
.search-submit{
display: inline-block;
vertical-align: top;
}
.searchform .screen-reader-text{
position: absolute;
top: 0;
right: 0;
cursor: pointer;
}
.searchform .screen-reader-text:before{
font-family: FontAwesome;
content: "\f002";
}
.search-submit,
#search_bar_item .search-field,
.searchform .screen-reader-text{
height: 40px;
}
.bar_element,
.search-submit,
#top_panel_social .social_icon,
.searchform .screen-reader-text{
text-align: center;
text-decoration: none;
}
.bar_element,
#top_panel_social .social_icon,
.searchform .screen-reader-text:before{
display: block;
font-size: 19px;
}
.bar_element,
.search-submit,
.searchform .screen-reader-text{
color: #fff;
}
#search_bar_item.active .search-field{
-webkit-transform: translate3d(0,0,0);
-ms-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);	
}
#top_panel_social{
display: none;
}
#social_bar_item.active #top_panel_social{
display: block;
}
.bar_item_content#top_panel_social{
margin-right: auto;
}
#top_panel_social .social_icon{
position: absolute;
top: 0;
right: 0;
-webkit-transition: none;
transition: none;
}
#top_panel_social .social_icon i{
background-color: transparent;
color: inherit;
}
#top_panel_icl_el{
background-color: #4bbcd7;
}
#top_panel_bar #top_panel_icl{
top: 100%;
margin-right: auto;
box-shadow: 0 0 5px #e1e1e1;
}
#top_panel_icl{
background-color: #fff;
min-width: 120px;
padding: 13px; 
border-radius: 8px;
margin-top: 10px;
-webkit-transform: translate3d(0,10px,0);
-moz-transform: translate3d(0,10px,0);
-ms-transform: translate3d(0,10px,0);
transform: translate3d(0,10px,0);
-webkit-transition: top 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, visibility 0.3s step-end;
transition: top 0.3s ease-in-out, opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0.3s step-end;
visibility: hidden;
opacity: 0;
}
#icl_bar_item:hover #top_panel_icl{
-webkit-transform: translate3d(0,0,0);
-moz-transform: translate3d(0,0,0);
-ms-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
-webkit-transition: top 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, visibility 0.3s step-start;
transition: top 0.3s ease-in-out, opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0.3s step-start;
visibility: visible;
opacity: 1;
}
#top_panel_icl:before{
content: "";
display: block;
position: absolute;
top: 0;
right: 0;
width: 100%;
height: 10px;
margin-top: -10px;
}
#top_panel address{
white-space: pre;
}
#top_panel a,
#top_panel i{
display: inline-block;
vertical-align: middle;
}
#top_panel a{
color: inherit;
text-decoration: none;
}
#top_panel i{
width: 1.2857em;
line-height: 1.2857em;
border-radius: 3px;
text-align: center;
background-color: #e95f58;
color: #272b31;
}
.menu_wrapper{
display: flex;
}
#woo_minicart_bar_item{
display: flex;
align-items: center;
margin-left: 10px;
}
#woo_minicart_bar_item > a{
margin-top: -4px;
position: relative;
z-index: 1;
color: #1c3545;
}  #site_header,
#sticky_box,
#mobile_header{
position: relative;
}
#site_header,
#mobile_header,
#mobile_menu_wrapper{
background-color: #fff;
z-index: 4;
}
#sticky_box{
background-color: rgba( 255, 255, 255, 0.952941 );
}
.site_header .prospect_layout_container{
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-align-items: stretch;
-ms-flex-align: stretch;
align-items: stretch;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
.site_header:not(.menu_boxed) .prospect_layout_container{
width: calc(100% - 80px);
margin: 0 40px;
}
.site_header .prospect_layout_container.a_right_flex{
-webkit-justify-content: flex-end;
-ms-flex-pack: end;
justify-content: flex-end;	
}
.header_covers_slider #site_header{
position: absolute;
width: 100%;
top: 0;
left: 0;
right: 0;
} .header_divider{
margin: auto;
height: 1px;
background-color: rgba(255,255,255,0.2);
position: relative;
z-index: 1;
}
#document > .header_divider{
margin-top: auto;
}
.header_divider:before{
display: none;
}
.site_header .header_logo{
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-justify-content: space-around;
-ms-flex-pack: distribute;
justify-content: space-around;	
}
#site_header .header_logo,
#sticky .header_logo{ -webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto; }
.site_header.logo_center .prospect_layout_container{
display: block;
}
.site_header.logo_center .header_logo_img{
margin: 0 auto;
}
.site_header.logo_right .header_logo:only-child{
position: relative;
left: 100%;
-webkit-transform: translateX(-100%);
-ms-transform: translateX(-100%);
transform: translateX(-100%);
}
.header_logo a,
.header_logo_img{
display: block;
}  .main_menu,
.main_menu .sub-menu{
overflow: visible;
}
.main_menu:only-child{
width: 100%;
}
.main_menu .menu-item > a,
.main_menu .menu-item > span{
display: block;
color: inherit;
text-decoration: none;
}
.main_menu,
.main_menu > .menu-item,
.main_menu.sandwich .sandwich_switcher,
#mobile_header .sandwich_switcher{
display: -ms-flexbox;
display: -webkit-flex;
display: flex;	
-webkit-align-items: stretch;
-ms-flex-align: stretch;
align-items: stretch;
}
.main_menu > .menu-item > a,
.main_menu > .menu-item > span,
.main_menu .sandwich_switcher > .switcher,
#mobile_header .sandwich_switcher > .switcher{
display: -ms-flexbox;
display: -webkit-flex;
display: flex;	
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;	
}
#main_menu,
#sticky_menu{
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
ul.main_menu:not(:last-child){
margin-bottom: 0;
}
.main_menu .menu-item{
padding-left: 0;
text-align: left;
white-space: nowrap;
font-weight: 500;
}
.main_menu .menu-item + .menu-item,
.main_menu .sub-menu > .menu-item:first-child{
margin-top: 0;
}
.main_menu .menu-item:before{
display: none;
}
.main_menu > .menu-item{
position: relative;
}
.main_menu .menu-item > .pointer{
display: none;
}
.main_menu > .menu-item > a,
.main_menu > .menu-item > span{
padding: 35px 20px;	
}
#sticky .main_menu > .menu-item > a, 
#sticky .main_menu > .menu-item > span {
padding: 18px 20px;
}
.main_menu > .menu-item.menu-item-has-children:after,
.main_menu > .menu-item.menu-item-object-megamenu_item:after{
content: "\f107";
font-family: FontAwesome;
position: absolute;
z-index: 1;
right: 5px;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
.main_menu > .menu-item.menu-item-object-megamenu_item > .sub-menu:before{
display: none;
}
.main_menu > .menu-item.menu-item-object-megamenu_item .cws_megamenu_item .vc_row{
max-width: 1170px;
margin: auto;
} .main_menu:not(#mobile_menu) .menu-item-object-megamenu_item.disable_fw.direction_right > .sub-menu{
left: 0;
}
.main_menu:not(#mobile_menu) .menu-item-object-megamenu_item.disable_fw.direction_left > .sub-menu{
left: initial;
right: 0;
}
.main_menu:not(#mobile_menu) .menu-item-object-megamenu_item > span:first-child{
position: relative;
z-index: 1;
overflow: hidden;
}
.main_menu:not(#mobile_menu) .menu-item-object-megamenu_item > span:before{
content: '';
position: absolute;
z-index: 1;
top: initial;
bottom: -10px;
left: 50%;
width: 20px;
height: 20px !important;
background: #fff;
opacity: 0;
box-shadow: 1px 2px 10px -1px rgba(0, 0, 0, 0.2);
transform: translateX(-50%) rotate(45deg);
display: block !important;
transition: all 0.15s;
transition-delay: 0.20s;
}
.main_menu:not(#mobile_menu) .menu-item-object-megamenu_item:hover > span:before{
opacity: 1;
transition: all 0.15s;
transition-delay: 0.25s;
}
.main_menu:not(#mobile_menu) .sub-menu{
position: absolute;
top: 100%;
left: 0;
background-color: #fff;
-webkit-box-shadow: 1px 2px 10px -1px rgba(0,0,0,0.2);
-moz-box-shadow: 1px 2px 10px -1px rgba(0,0,0,0.2);
box-shadow: 1px 2px 10px -1px rgba(0,0,0,0.2);
border-radius: 8px;
padding: 10px 0;
max-height: 0;
opacity: 0; 
position: absolute;
transform: scale(0.4);
transform-origin: 10% top;
transition: 0s max-height 0.15s linear,0.1s opacity cubic-bezier(0.39, 0.575, 0.565, 1),0.15s transform cubic-bezier(0.1, 1.26, 0.83, 1);
}
.main_menu:not(#mobile_menu) .menu-item.right .sub-menu{
transform-origin: 90% top;
}
.main_menu:not(#mobile_menu) .menu-item-object-megamenu_item.direction_center > .sub-menu{
transform-origin: 50% top;
}
.main_menu:not(#mobile_menu) .menu-item-object-megamenu_item.direction_left > .sub-menu{
transform-origin: 90% top;
}
.main_menu:not(#mobile_menu) .menu-item-object-megamenu_item.direction_right > .sub-menu{
transform-origin: 10% top;
}
.main_menu .sub-menu .sub-menu{
padding: 0;
}
.main_menu.alt .sub-menu{
background-color: rgba(0,0,0,0.8);
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.main_menu > .menu-item > .sub-menu:before{
content: '';
position: absolute;
z-index: 1;
top: -10px;
left: 25%;
width: 20px;
height: 20px;
background: #fff;
box-shadow: -2px -2px 4px -2px rgba(0, 0, 0, 0.2);
transform: translateX(-50%) rotate(45deg);
}
.main_menu > .menu-item.right > .sub-menu:before{
left: 75%;
}
.main_menu.alt > .menu-item > .sub-menu{
border-top-style: none;
}
.main_menu .sub-menu .sub-menu{
top: 0;
left: 100%;
margin-left: 2px;
}
.main_menu:not(#mobile_menu) .menu-item.right .sub-menu{
left: auto;
right: 0;
}
.main_menu:not(#mobile_menu) .menu-item.right .sub-menu .sub-menu{
top: 0;
right: 100%;
margin-right: 2px;
}
.main_menu:not(#mobile_menu) .menu-item.right .sub-menu .sub-menu:before{
right: auto;
left: 100%;
}
.main_menu .sub-menu .menu-item > a{
padding: 0 15px;
margin: 0 20px;
position: relative;
z-index: 1;
display: inline !important;
}
.main_menu .cws_megamenu_item .widget.widget_nav_menu .menu .menu-item > a{
padding: 0;
}
.main_menu .cws_megamenu_item .widget.widget_nav_menu .menu .menu-item > a:after{
width: 100%;
margin: 0;
}
.main_menu .sub-menu .menu-item > a:after{
background-color: white;
content: "";
height: 1px;
left: 0;
opacity: 0;
pointer-events: none;
position: absolute;
z-index: 1;
bottom: -5px;
-webkit-transform: translateY(1px);
transform: translateY(1px);
-webkit-transition: 0.15s all cubic-bezier(0.39, 0.575, 0.565, 1);
transition: 0.15s all cubic-bezier(0.39, 0.575, 0.565, 1);
-webkit-transition-property: opacity, -webkit-transform;
transition-property: opacity, -webkit-transform;
transition-property: opacity, transform;
transition-property: opacity, transform, -webkit-transform;
width: calc(100% - 30px);
margin: 0 15px;
}
#mobile_menu.main_menu .sub-menu .menu-item > a:after{
width: 100%;
margin: 0;
}
.main_menu .sub-menu .menu-item > a:hover:after{
opacity: 1;
-webkit-transform: translateY(-5px) translateZ(0);
transform: translateY(-5px) translateZ(0);
}
.main_menu .sub-menu .menu-item:last-child > a{
border: 0;
}
.main_menu .sub-menu .menu-item > span{
position: absolute;
z-index: 1;
top: 0;
right: 0;
}
.main_menu .menu-item.right .sub-menu .menu-item > span{
right: initial;
left: 0;
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg);
}
.main_menu .sub-menu .menu-item > span.pointer{
padding: 0;
}
.main_menu .sub-menu .menu-item.menu-item-has-children{
width: 100%;
display: table;
}
.main_menu .sub-menu .widget.widget_nav_menu .menu-item.menu-item-has-children{
width: auto;
display: block;
}
.main_menu .sub-menu .menu-item.menu-item-has-children > *{
display: block;
}
.main_menu .sub-menu .menu-item.menu-item-has-children > .sub-menu{
display: block;
}
.main_menu .menu-item > .depth,
.main_menu .sub-menu .menu-item > .depth{
display: none;
}
.main_menu .pointer{
width: 25px;
min-width: 25px;
text-align: center;
}
.main_menu .pointer:before{
font-family: FontAwesome;
content: "\f105";
}
#site_header .main_menu .menu-item > .sub-menu,
#sticky .main_menu .menu-item > .sub-menu{
pointer-events: none;
opacity: 0;
}
#site_header .main_menu .menu-item.avail > .sub-menu,
#sticky .main_menu .menu-item.avail > .sub-menu{
pointer-events: auto;
}
#site_header .main_menu .menu-item-object-megamenu_item > .sub-menu,
#sticky .main_menu .menu-item-object-megamenu_item > .sub-menu{
-webkit-transition-delay: 0.2s;
transition-delay: 0.2s;
}
#site_header .main_menu .menu-item.visible > .sub-menu,
#sticky .main_menu .menu-item.visible > .sub-menu{
max-height: 2000px;
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
-webkit-transition-delay: 0.2s;
transition-delay: 0.2s;
-webkit-transition-duration: 0s, 0.2s, 0.2s !important;
transition-duration: 0s, 0.2s, 0.2s !important;
} .lavalamp-object:before{
content: '';
position: absolute;
z-index: 1;
width: 25px;
height: 2px;
bottom: 35px;
left: 21px;
}
.main_menu.lavalamp.sandwich .lavalamp-object{
display: none;
}
.main_menu.lavalamp.sandwich.sandwich_active .lavalamp-object{
display: flex;
}
.main_menu > .wpml-ls-slot-main-menu:before{
display: block !important;
content: '';
position: absolute;
z-index: 1;
top: 50%;
left: 0;
transform: translateY(-55%);
height: 20px;
border-right: 2px solid #3d454b;
}
.menu_search_wrap {
top: 0px;
right: 0px;
width: 100%;
height: 100% ;
position: fixed;
z-index: 10000;
overflow: visible;
display: none;
background: rgba(39,50,62,0.96);
}
.menu_search_wrap .container{
max-width: 1170px;
width: 100%;
display: block;
top: 50%;
transform: translateY(-50%);
height: auto;
position: relative;
z-index: 1;
margin: auto;
}
.menu_search_wrap .screen-reader-text,
.menu_search_wrap .search-submit{
display: none;
}
.menu_search_wrap .search-field{
width: 100%;
background: transparent;
border: 0;
border-bottom: 2px solid #e0e6ea;
border-radius: 0;
color: #e0e6ea;
font-size: 18px;
padding-left: 0;
padding-right: 0;
}
.search_back_button{
display: block;
position: absolute;
z-index: 2;
top: 0;
right: 0;
width: 18px;
height: 36px;
cursor: pointer;
}
.search_back_button:before,
.search_back_button:after{
display: block;
content: "";
position: absolute;
top: 50%;
left: 50%;
background-color: #e0e6ea;
}
.search_back_button:before{
width: 16px;
height: 2px;
margin-left: -8px;
margin-top: -1px;
-webkit-transform: rotate( 45deg );
-ms-transform: rotate( 45deg );
-moz-transform: rotate( 45deg );
transform: rotate( 45deg );
}
.search_back_button:after{
width: 2px;
height: 16px;
margin-left: -1px;
margin-top: -8px;
-webkit-transform: rotate( 225deg );
-ms-transform: rotate( 225deg );
-moz-transform: rotate( 225deg );
transform: rotate( 225deg );
}
.menu_search_button{
display: flex;
align-items: center;
margin-top: -4px;
position: relative;
z-index: 1;
color: #1c3545;;
cursor: pointer;
margin-left: 10px;
padding-left: 10px;
}
.menu_search_button:before{
content: "\f118";
font-family: cwsicon;
}
.menu_search_wrap .search-field::-webkit-input-placeholder{
color: #e0e6ea;	
}
.menu_search_wrap .search-field::-moz-placeholder{
color: #e0e6ea;	
}
.menu_search_wrap .search-field:-moz-placeholder{
color: #e0e6ea;	
}
.menu_search_wrap .search-field:-ms-input-placeholder{
color: #e0e6ea;
}
.main_menu .wpml-ls-menu-item > a{
padding-left: 25px;
margin-right: 10px;
}
.main_menu .wpml-ls-menu-item .sub-menu{
margin-left: 5px;
padding: 0;
margin-top: -20px;
}
.main_menu .wpml-ls-menu-item .sub-menu:before{
display: none;
}
.main_menu .wpml-ls-menu-item .sub-menu a{
padding: 0;
}  .sandwich_switcher{
display: none;
min-height: 44px;
width: 44px;
}
.sandwich_switcher .ham{
display: inline-block;
width: 23px;
height: 2px;
position: relative;
vertical-align: bottom;
}
.sandwich .sandwich_switcher .ham{
-webkit-transition: all ease 0.3s;
transition: all ease 0.3s;
}
.sandwich.sandwich_active .sandwich_switcher .ham{
-webkit-transition: none;
transition: none;
}
.sandwich_active  .sandwich_switcher .ham,
.main_menu.sandwich.sandwich_active  .sandwich_switcher .ham,
#main_menu.sandwich.sandwich_active  .sandwich_switcher .ham,
#mobile_header.sandwich_active  .sandwich_switcher .ham{
background-color: transparent;
}
.sandwich_switcher .ham:after,
.sandwich_switcher .ham:before {
position: absolute;
content: '';
display: inline-block;
width: 23px;
height: 2px;
-webkit-transition: all ease .3s;
-moz-transition: all ease .3s;
-o-transition: all ease .3s;
transition: all ease .3s;
outline: 1px solid transparent;
left: 0;
-webkit-transform: translate3d(0,0,0) rotate(0deg);
-moz-transform: translate3d(0,0,0) rotate(0deg);
-ms-transform: translate3d(0,0,0) rotate(0deg);
-o-transform: translate3d(0,0,0) rotate(0deg);
transform: translate3d(0,0,0) rotate(0deg);
}
.sandwich_switcher .ham:before {
top: -8px;
}
.sandwich_switcher .ham:after {
top: 8px;
}
.sandwich_active .sandwich_switcher .ham:before {
-webkit-transform: translate3d(0,8px,0) rotate(-45deg);
-moz-transform: translate3d(0,8px,0) rotate(-45deg);
-ms-transform: translate3d(0,8px,0) rotate(-45deg);
-o-transform: translate3d(0,8px,0) rotate(-45deg);
transform: translate3d(0,8px,0) rotate(-45deg);
}
.sandwich_active .sandwich_switcher .ham:after {
-webkit-transform: translate3d(0,-8px,0) rotate(45deg);
-moz-transform: translate3d(0,-8px,0) rotate(45deg);
-ms-transform: translate3d(0,-8px,0) rotate(45deg);
-o-transform: translate3d(0,-8px,0) rotate(45deg);
transform: translate3d(0,-8px,0) rotate(45deg);
}
.sandwich_switcher{
-webkit-justify-content: space-around;
-ms-flex-pack: distribute;
justify-content: space-around;
}
.main_menu.sandwich > .menu-item > a{
pointer-events: none;
}
.main_menu.sandwich.sandwich_active > .menu-item > a{
pointer-events: auto;
}
.main_menu.sandwich > .menu-item{
opacity: 0;
}
.main_menu.sandwich.sandwich_active > .menu-item{
opacity: 1;
}
.main_menu.a_left_flex.sandwich > .sandwich_switcher{
-webkit-order: 1;
-ms-flex-order: 1;
order: 1;
-webkit-flex: 0 1 auto;
-ms-flex: 0 1 auto;
flex: 0 1 auto;
-webkit-align-self: auto;
-ms-flex-item-align: auto;
align-self: auto;
}
.main_menu.a_left_flex.sandwich > .menu-item{
-webkit-order: 2;
-ms-flex-order: 2;
order: 2;
-webkit-flex: 0 1 auto;
-ms-flex: 0 1 auto;
flex: 0 1 auto;
-webkit-align-self: auto;
-ms-flex-item-align: auto;
align-self: auto;	
}  #sticky{
position: fixed;
z-index: 3;
top: 0;
left: 0;
width: 100%;
-webkit-transform: translateY(-100%);
-ms-transform: translateY(-100%);
transform: translateY(-100%);
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
padding-bottom: 9px;
}
body.admin-bar #sticky{
margin-top: 32px;
}
#sticky_box{
-webkit-box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.24);
-moz-box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.24);
box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.24);
}
#sticky.stick{
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);	
}
#sticky .header_logo{
padding-top: 5px;
padding-bottom: 5px;
}   #main_slider > hr{
margin: auto;
}
#main_slider_video{
position: relative;
}
#main_slider_video > .video_bg{
z-index: 0;
}
#main_slider_video > *:not(.video_bg){
z-index: 1;
}
.video_bg{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
.video_bg>video,
.video_bg>iframe{
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate3d(-50%,-50%,0);
-moz-transform: translate3d(-50%,-50%,0);
-ms-transform: translate3d(-50%,-50%,0);
transform: translate3d(-50%,-50%,0);
z-index: 1;
max-width: none;
}
.video_bg:before{
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 2;	
}
.video_bg .bg_layer{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-repeat: repeat;
z-index: 2;
}
.video_bg>iframe{
border-radius: 0;
-webkit-mask-image: none;
}
#main_slider_img > img{
display: block;
position: relative;
min-width: 100%;
min-height: 100%;
}  #page_title_section{
text-align: center;
}
#header_wrapper,
#page_title_section{
background-size: cover;
background-position: center center;
}
#header_wrapper{
margin-top: 0 !important;
}
#page_title,
#page_title_section .bread-crumbs{
display: table;
margin-left: auto;
margin-right: auto;
}
#page_title{
font-size: 42px;
font-weight: 300;
margin-bottom: auto;
color: #fff;
text-transform: uppercase;
}
.page_title_content{
position: relative;
z-index: 2;
padding-top: 110px;
padding-bottom: 110px;
}
.bread-crumbs{
font-size: 14px;
position: absolute;
z-index: 1;
bottom: 0;
left: 0;
background: #fff;
padding: 28px;
width: calc(100% - 56px);
transform: translateY(50%);
color: #4e9bdd;
border-radius: 8px;
box-shadow: 1px 0px 5px 3px rgba(0, 0, 0, 0.2);
text-align: left;
}
.bread-crumbs:before{
content: '';
position: absolute;
z-index: 1;
bottom: -10px;
left: 50%;
width: 20px;
height: 20px;
background: #fff;
box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.2);
transform: translateX(-50%) rotate(45deg);
}
.bread-crumbs .delimiter{
padding: 0 10px;
color: #38cfae;
}
.bread-crumbs .current{
color: #808c95;
}
#page_title_section .bread-crumbs a{
color: inherit;
text-decoration: none;
}  .sidebar{
overflow: visible;
}
.sidebar .widget:not(.widget_search){
margin-bottom: auto;
border: 1px solid #e0e6ea;
background: #fff;
border-radius: 8px;
padding: 30px;
}
.widget .widgettitle,
.widget .widgettitle:not(:first-child){
margin-top: auto;
}
.widget .widgettitle{
line-height: 1;
}
.widget .widgettitle > span,
.widget .widgettitle > a{
font-size: 0.857em;
}
.widget .widgettitle > span{
display: block;
font-weight: 600;
}
.widget_icon{
display: block;
float: left;
font-size: 0.892857143em;
line-height: 1;
margin-right: 10px;
}
.widget.custom_color input[type='submit']{
color: #fff;
}
ul li.widget{
padding-left: 0;
}
ul li.widget:before{
display: none;
}
.sidebar .widget + .widget{
margin-top: 30px;
}
.widget .widgettitle,
.widget .widget_header{
margin-bottom: 0;
position: relative;
z-index: 1;
}
.widget .widgettitle:after{
content: '';
z-index: 1;
bottom: 0;
left: 0;
width: 30px;
height: 2px;
display: inline-block;
vertical-align: super;
}
.widget .widget_header .widgettitle{
padding-bottom: 0;
border-bottom-style: none;
margin-bottom: auto;
}
.widget .widgettitle + ul,
.widget .widget_header + ul,
.widget .widgettitle + #calendar_wrap,
.widget .widget_header + ul,
.widget .widget_header + ul,
.widget .widget_header + #calendar_wrap,
.widget .widgettitle + #lang_sel > ul{
margin-top: -20px;
}
.widget_header,
.prospect_sc_carousel_header{
display: table;
width: 100%;
margin-bottom: 20px;
}
.widget_header > *,
.prospect_sc_carousel_header > *{
display: table-cell;
}
.widget_header .widgettitle,
.prospect_sc_carousel_header > h2{
width: 100%;
}
.widget_header .carousel_nav{
vertical-align: top;
text-align: right;
white-space: nowrap;
}
.widget_header .carousel_nav:only-child{
width: 100%;
}
.widget_header .carousel_nav > *{
display: inline-block;
vertical-align: middle;
width: 20px;
height: 20px;
line-height: 20px;
text-align: center;
border: 1px solid #b0b0b0;
color: #b0b0b0;
cursor: pointer;
}
.widget_header .carousel_nav .prev{
border-radius: 5px;
}
.widget_header .carousel_nav .next{
border-radius: 5px;
}
.widget_header .carousel_nav > * + *{
margin-left: 2px;
}
.widget_header .carousel_nav > .prev:before,
.widget_header .carousel_nav > .next:before,
.prospect_sc_carousel .carousel_nav > .prev:before,
.prospect_sc_carousel .carousel_nav > .next:before{
font-family: cwsicon;
}
.widget_header .carousel_nav > .prev:before,
.prospect_sc_carousel .carousel_nav > .prev:before{
content: "\f102";
}
.widget_header .carousel_nav > .next:before,
.prospect_sc_carousel .carousel_nav > .next:before{
content: "\f11c";
}
.prospect_sc_carousel .carousel_nav > .prev,
.prospect_sc_carousel .carousel_nav > .next{
position: absolute;
z-index: 1;
top: 23%;
font-size: 30px;
color: #d3dbdd;
cursor: pointer;
}
.prospect_sc_carousel .carousel_nav > .prev{
left: 5%;
}
.prospect_sc_carousel .carousel_nav > .next{
right: 5%;
}
.widget .select2-container{
display: block;
}
.widget li + li,
.widget li > ul,
.widget li > ol{
margin-top: auto;
}
.widget li ul li:first-of-type{
margin-top: 0px;
}
.widget li ul li:last-of-type{
padding-bottom: 0;
}
.widget ul>li{
border-bottom:0;
padding-top: 15px;
padding-bottom:0;
}
.widget.widget_categories ul>li{
padding-top: 8px;
}
.widget ul{
color: inherit;
}
.widget ul.children,
.widget ul.sub-menu{
margin-top:0px;
}
.widget ul.children li:last-child,
.widget ul.sub-menu li:last-child{
padding-bottom:0;
}
.widget ul>li>ul{
padding-left:20px;
}
.widget ul ul>li:last-child{
border-bottom-style:none;
}
.widget ul>li:before{
padding-top: inherit;
padding-bottom: inherit;
font-size: 10px;
content: "\f114";
color: #c2c4cc;
}
.widget ul>li.recentcomments{
padding-left: 2em;
}
.widget ul>li.recentcomments:before,
.widget ul>li.recentcomments:after{
line-height: 25px;
}
.widget ul>li.recentcomments:before{
font-family: Arial;
content: "\201c";
color: #fff;
padding-top: 0;
padding-bottom: 0;
font-size: 48px;
margin-top: 13px;
text-align: center;
-webkit-transform: translateY(50%);
-ms-transform: translateY(50%);
transform: translateY(50%);
z-index: 2;
}
.widget ul>li.recentcomments:after{
content: "";
display: block;
position: absolute;
top: 0;
left: 0;
margin-top: 13px;
border-radius: 6px;
z-index: 1;
}
.widget ul li a{
text-decoration: none;
font-weight: 400;
}
[id*="prospect_text_widget_"] > a{
margin-top: 10px;
margin-bottom: 20px;
display: block;
font-weight: 600;
font-size: 12px;
}
#recentcomments{
overflow: visible;
}
#wp-calendar{
width: 100%;
border-collapse: collapse;
}
#wp-calendar caption{
padding: 15px 0;
}
#wp-calendar th,
#wp-calendar td{
border: 1px solid #ececec;
text-align: center;
padding: 5px;
border-radius: 0;
}
#wp-calendar a{
display: inline-block;
text-decoration: none;
}
#wp-calendar td:not(#prev):not(#next) a{
position: relative;
display: block;
margin: 0 -8px;
color: #fff;
text-align: center;
}
#wp-calendar td:not(#prev):not(#next) a:before,
#wp-calendar td:not(#prev):not(#next) a:after{
content: "";
position: absolute;
left: 0;
right: 0;
height: 8px;
}
#wp-calendar td:not(#prev):not(#next) a:before{
top: 0;
margin-top: -8px;
}
#wp-calendar td:not(#prev):not(#next) a:after{
top: 100%;
}
#wp-calendar td#prev,
#wp-calendar td#next{
font-size: 0;
}
#wp-calendar td#prev a,
#wp-calendar td#next a{
color: inherit;
}
#wp-calendar td#prev a:before,
#wp-calendar td#next a:before{
vertical-align: middle;
font-family: FontAwesome;
}
#wp-calendar td#prev a:before{
content: "\f100";
}
#wp-calendar td#next a:before{
content: "\f101";
}
.widget .tagcloud a{
font-size: 1em !important;
text-decoration: none;
font-weight: 600;
text-transform: uppercase;
}
.widget .tagcloud a:after{
content: "\2C";
}
.widget .tagcloud a:hover{
text-decoration: underline;
}
.widget .searchform > div{
position: relative;
}
.widget .searchform input{
display: block;
width: 100%;
padding-left: 50px;
border-radius: 8px;
border: 1px solid #e0e6ea;
}
.widget .searchform .search-submit,
.widget .searchform .screen-reader-text{
position: absolute;
top: 0;
left: 0;
width: 50px;
height: 100%;
}
.widget .searchform .search-submit{
min-width: 0;
padding: 0;
border-radius: 0;
opacity: 0;
z-index: 2;
}
.widget .searchform .screen-reader-text{
font-size: 0;
text-align: center;
border-style: solid;
color: #d1d6d9;
z-index: 3;
}
.widget .searchform .screen-reader-text:before{
display: block;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%,-50%);
-ms-transform: translate(-50%,-50%);
transform: translate(-50%,-50%);
content: "\f118";
font-family: cwsicon;
}
.widget .searchform .search-submit:hover{
background-color: transparent;
}
.widget .menu .menu-item,
.widget .menu .sub-menu{
padding-left: 0;
}
.widget .menu .menu-item{
padding: 13px 40px 13px 13px;
}
.widget .menu .menu-item:before{
display: none;
}
.widget .menu .sub-menu{
margin-top: auto;
margin-left: -13px;
margin-right: -40px;
}
.widget .menu{
border: 1px solid #e1e1e1;
border-radius: 8px;
overflow: hidden;
-webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
-webkit-transform: rotate(0.000001deg);
}
.widget .menu > .menu-item:last-child{
border-bottom-style: none;
}
.widget .menu .pointer{
display: block;
position: absolute;
top: 13px;
right: 13px;
width: 14px;
cursor: pointer;
}
.widget .menu .pointer:before,
.widget .menu .pointer:after{
content: "";
display: block;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%,-50%);
-ms-transform: translate(-50%,-50%);
transform: translate(-50%,-50%);
background-color: #000;
}
.widget .menu .pointer:before{
height: 14px;
width: 2px;
opacity: 1;
}
.widget .menu .menu-item.active > .pointer:before{
opacity: 0;
}
.widget .menu .pointer:after{
height: 2px;
width: 14px;
}
.widget .menu .menu-item.active .depth,
.widget .menu .menu-item:hover .depth,
.widget .menu .menu-item.active a,
.widget .menu .menu-item:hover a,
.widget .menu .menu-item.active > span,
.widget .menu .menu-item:hover > span{
color: #fff;
}
.widget .menu .menu-item.active .pointer:before,
.widget .menu .menu-item.active .pointer:after,
.widget .menu .menu-item:hover .pointer:before,
.widget .menu .menu-item:hover .pointer:after{
background-color: #fff;
}
.widget .menu .sub-menu{
display: none;
}
.widget.widget_pages ul>li>ul{
padding-left: 0;
}
.widget .page_item{
padding-left: 2em;
cursor: pointer;
}
.widget .page_item.page_item_has_children:before{
font-size: 1.4em;
font-family: Arial;
content: "\002B";
-webkit-font-smoothing: subpixel-antialiased;
}
.widget .page_item.page_item_has_children.active:before{
content: "\2212";
}
.widget .page_item .children{
margin-top: auto;
display: none;
}
.widget_social{
margin-top: -5px;
margin-left: -7px;
}
.widget_social .social_icon{
position: relative;
z-index: 1;
display: inline-block;
font-size: 20px;
width: 44px;
height: 50px;
line-height: 52px;
text-align: center;
margin-top: 5px;
margin-left: 7px;
border-radius: 8px;
color: #fff;
}
.widget_social .social_icon:hover .figure_wrap svg{
fill: transparent !important;
}
.widget ul.latest_tweets li:not( .tweet ){
padding-left: 0;
}
.widget ul.latest_tweets li:not( .tweet ):before{
display: none;
}
.widget ul.latest_tweets  li ul li.tweet:first-of-type{
margin-top: auto;
}
.widget ul.latest_tweets ul>li.tweet:first-child{
border-top-style: none;
}
.latest_tweets .tweet{
padding-left: 25px;
min-height: 60px;
padding-right: 10px;
font-size: 13px;
color: #232b33;
font-weight: 500;
}
.latest_tweets .tweet:before{
font-family: FontAwesome;
content: "\f099";
padding: 0;
margin-top: 13px;
text-align: center;
font-size: 20px;
color: #afb1bc;
}
.latest_tweets.widget_carousel.owl-carousel{
margin-right: 0;
}
.latest_tweets.widget_carousel.owl-carousel .owl-item > *{
margin-right: 30px;
}
.widget .widgettitle + .latest_tweets,
.widget .widget_header + .latest_tweets.widget_carousel{
margin-top: auto;
}
.widgettitle + .latest_tweets .tweet:first-child,
.widget_header + .latest_tweets.widget_carousel .owl-item > ul > li:first-child{
padding-top: 0;
}
.widgettitle + .latest_tweets .tweet:first-child:before,
.widget_header + .latest_tweets.widget_carousel .owl-item > ul > li:first-child:before{
margin-top: 0;
}
.latest_tweets.widget_carousel .owl-item > ul > li:last-child{
border-bottom: 1px solid #e1e1e1;
}
.widget_post_list .widget_post{
padding-bottom: 0;
border-bottom: 0;
}
.widget_post_list .widget_post:not(:first-child){
padding-top: 20px;
}
.widget_post_list.widget_carousel .item{
padding: 0 15px;
}
.widget_post_list.widget_carousel{
margin: auto -15px;
}
.widget_post{
line-height: 1.466667em;
}
.widget_post_media{
float: left;
margin-right: 10px;
}
.widget_post_media a{
display: block;
}
.widget_post_media img{
display: block;
border-radius: 5px;
}
.widget_post_title{
font-family: inherit;
font-size: inherit;
font-weight: 500;
margin-bottom: auto !important;
}
.widget_post_terms a{
text-decoration: none;
}
.widget_post_data > * + *{
margin-top: 7px;
}
.widget-prospect-cws-staff ul li{
padding-left: 0;
}
.widget-prospect-cws-staff ul li:before{
display: none;
}  #footer_widgets .widget{
margin-bottom: auto;
}
#footer_widgets{
padding: 80px 0;
font-size: 0.933333em;
background-position: center;
}
#footer_widgets_container{
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin: -40px -15px 0;
color: inherit;
overflow: visible;	
}
#footer_widgets .widget{
width: 100%;
-webkit-flex: 1 1 auto;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
margin-top: 40px;
padding: 0 15px;
}
#footer_widgets .widget:nth-child(1):nth-last-child(5),
#footer_widgets .widget:nth-child(2):nth-last-child(4),
#footer_widgets .widget:nth-child(3):nth-last-child(3),
#footer_widgets .widget:nth-child(4):nth-last-child(2),
#footer_widgets .widget:nth-child(5):nth-last-child(1)	{
width: 210px;
}
#footer_widgets .widget:nth-child(1):nth-last-child(4),
#footer_widgets .widget:nth-child(2):nth-last-child(3),
#footer_widgets .widget:nth-child(3):nth-last-child(2),
#footer_widgets .widget:nth-child(4):nth-last-child(1){
width: 262px;
}
#footer_widgets .widget:nth-child(1):nth-last-child(3),
#footer_widgets .widget:nth-child(2):nth-last-child(2),
#footer_widgets .widget:nth-child(3):nth-last-child(1){
width: 350px;
}
#footer_widgets .widget:nth-child(1):nth-last-child(2),
#footer_widgets .widget:nth-child(2):nth-last-child(1){
width: 525px;
}
#footer_widgets .widgettitle,
#footer_widgets .widget_header{
line-height: 0.892857em;
padding: 0px 15px 13px 0px;
border-radius: 8px;
text-transform: uppercase;
}
#footer_widgets .widgettitle{
font-weight: 700;
}
#footer_widgets .widgettitle > span{
font-size: 0.642857em;
line-height: 1;
}
#footer_widgets .widget_header .widgettitle{
padding: 0;
border-radius: 0;
font-size: inherit;
line-height: inherit;
background-color: transparent !important;
}
#footer_widgets .widget_icon{
line-height: 0.8;
}
#footer_widgets .widget_social{
text-align: center;
}
#footer_widgets .widget_social .social_icon{
margin-left: 15px;
margin-right: 15px;
width: 70px;
height: 78px;
line-height: 80px;
font-size: 22px;
}
#footer_widgets .widget_social .social_icon i{
color: #495d6a;
}
#footer_widgets .widget_social .social_icon:hover i{
color: #4e9bdd;
}
#footer_widgets .widget_social .social_icon svg{
fill: transparent;
stroke: #495d6a;
}
#footer_widgets .widget_social .social_icon:hover svg{
stroke: #7796ab;
}
#footer_widgets .widget ul>li,
#footer_widgets .widget_post_list .widget_post,
#footer_widgets .widget ul ul>li:first-child,
#footer_widgets .widget .menu{
border-color: #555a5f;
}
#footer_widgets .widget .menu .menu-item.active,
#footer_widgets .widget .menu .menu-item.active ul li{
border-color: #fff;
}
#footer_widgets .widget ul>li{
padding-top: 15px;
padding-bottom: 15px;
}
#footer_widgets .widget ul.children li:last-child,
#footer_widgets .widget ul.sub-menu li:last-child{
padding-bottom: 0;	
}
#footer_widgets .widgettitle + .latest_tweets .tweet:first-child,
#footer_widgets .widget_header + .latest_tweets.widget_carousel .owl-item > ul > li:first-child{
padding-top: 0;
}
#footer_widgets .widget_post_list .widget_post{
padding-bottom: 15px;
}
#footer_widgets .widget_post_list .widget_post:not(:first-child){
padding-top: 15px;
}
#footer_widgets .widget_post_list .widget_post:last-child{
border-bottom-style: none;
padding-bottom: 0;
}
#footer_widgets input,
#footer_widgets textarea{
background-color: rgba(0,0,0,0.051);
border-color: #575c61;
}
#footer_widgets input[type='submit']{
background-color: transparent;
}
#footer_widgets input::-webkit-input-placeholder{
color: #575c61;	
}
#footer_widgets input::-moz-placeholder{
color: #575c61;	
}
#footer_widgets input:-moz-placeholder{
color: #575c61;	
}
#footer_widgets input:-ms-input-placeholder{
color: #575c61;
}
#footer_widgets textarea::-webkit-input-placeholder{
color: #575c61;
}
#footer_widgets textarea::-moz-placeholder{
color: #575c61;	
}
#footer_widgets textarea:-moz-placeholder{
color: #575c61;	
}
#footer_widgets textarea:-ms-input-placeholder{
color: #575c61;
}
#footer_icl a{
text-decoration: none;
}
#lang_sel_footer{
display: none;
}  #site_footer{
padding: 20px 0;
font-size: 0.866667em;
line-height: 1.53846em;
}
#site_footer > div{
line-height: 25px;
}
#site_footer .wpml_language_switch{
float: right;
margin-left: 50px;
}
#site_footer > div:after{
display: none;
}
#footer_social,
#footer_icl{
float: right;
margin-left: 25px;
}
#footer_social .social_icon{
display: inline-block;
margin: 7px;
}
#footer_social{
margin: -7px;
}
#footer_social .social_icon > i{
font-size: 1.53846em;
line-height: 1em;
width: 1em;
height: 1em;
vertical-align: middle;
text-align: center;	
}  .owl-wrapper-outer{
overflow: hidden;
cursor: move;
}
.owl-item{
float: left;
}
.owl-wrapper:after{
content: "";
display: block;
clear: both;
}
.owl-item > *{
width: 100%;
}
.widget_carousel .owl-item > ul > li:first-child{
border-top-style: none;
}
.owl-pagination{
text-align: center;
margin-top: 20px;
}
.owl-pagination .owl-page{
display: inline-block;
margin: 3px;
margin-left: 6px;
margin-right: 6px;
width: 8px;
height: 8px;
border-style: solid;
border-width: 1px;
border-radius: 50%;
background: transparent;
}
.wpb_text_column .owl-pagination .owl-page:last-child{ margin-bottom: 3px;
}
.prospect_sc_carousel .owl-carousel{
margin-left: -15px;
margin-right: -15px;
}
.prospect_sc_carousel .owl-item{
padding-left: 15px;
padding-right: 15px;
box-sizing: border-box;
}
.prospect_sc_carousel .gallery.owl-carousel .gallery-item,
.prospect_sc_carousel ul.products.owl-carousel li.product{
padding-left: 0;
padding-right: 0;
}  .cws-content{
position: relative;
}
.cws-content > div.vc_row{
background-repeat: inherit !important;
background-size: inherit !important;
background-position: inherit !important;
background-attachment: inherit !important;
}
.cws-content .cws-overlay-bg{
position: absolute;
left: 0;
top:0;
width: 100%;
height: 100%;
display: block;
z-index: 2;
}
.vc_column_container{
z-index: 3;
}
.cws-content .vc_parallax>*{
z-index: 3;
}
.vc_row{
position: relative;
z-index: 1;
}
.vc_row.over_section{
z-index: 2;
display: flex;
overflow: visible !important;
}
.vc_row-has-fill.vc_row.over_section{
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
.vc_col-has-fill>.vc_column-inner,
.vc_row-has-fill+.vc_row-full-width+.vc_row>.vc_column_container>.vc_column-inner,
.vc_row-has-fill+.vc_row>.vc_column_container>.vc_column-inner,
.vc_row-has-fill+.vc_vc_row>.vc_row>.vc_vc_column>.vc_column_container>.vc_column-inner,
.vc_row-has-fill+.vc_vc_row_inner>.vc_row>.vc_vc_column_inner>.vc_column_container>.vc_column-inner,
.vc_row-has-fill>.vc_column_container>.vc_column-inner,
.vc_row-has-fill>.vc_row>.vc_vc_column>.vc_column_container>.vc_column-inner,
.vc_row-has-fill>.vc_vc_column_inner>.vc_column_container>.vc_column-inner{
padding-top: 30px;
}
.wpb_content_element,
.vc_icon_element,
.vc_toggle,
.vc_tta-container{
margin-bottom: 30px;
}
.cws-content + .cws-content,
.vc_row-full-width + .vc_row{
margin-top: 40px;
}
.vc_row-full-width + .vc_row[data-vc-full-width="true"]{
margin-top: auto;
}
.vc_images_carousel{
position: relative;
border-radius: 4px;
overflow: hidden;
-webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
-webkit-transform: rotate(0.000001deg);
}
.vc_images_carousel .vc_carousel-control .icon-next,
.vc_images_carousel .vc_carousel-control .icon-prev{
display: block !important;
width: 32px !important;
height: 32px !important;
line-height: 32px;
border: 2px solid #fff;
border-radius: 6px 0;
background: transparent;
font-family: FontAwesome !important;
text-align: center;
color: #fff;
font-size: 20px !important;
text-shadow: none;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
-webkit-transition: all 0.3s;
transition: all 0.3s;	
}
.vc_images_carousel .vc_carousel-control .icon-prev:before{
content: "\f104" !important;
top: auto !important;
}
.vc_images_carousel .vc_carousel-control .icon-next:before{
content: "\f105" !important;
top: auto !important;
}
.vc_images_carousel .vc_carousel-control .icon-next:hover,
.vc_images_carousel .vc_carousel-control .icon-prev:hover{
background-color: #fff;
color: #e95f58;
}
.vc_images_carousel .vc_carousel-indicators li{
display: inline-block !important;
margin: 3px !important;
width: 8px !important;
height: 8px !important;
border-style: solid !important;
border-width: 1px !important;
border-radius: 50% !important;
background: transparent !important;
border-color: #e95f58 !important;
}
.vc_images_carousel .vc_carousel-indicators li.vc_active{
background-color: #e95f58 !important;
}
.vc_images_carousel .vc_item a img{
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);		
}
.vc_images_carousel .vc_item:hover a img{
-webkit-transition: all 4s ease;
transition: all 4s ease;
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);	
}
.vc_images_carousel .vc_item a,
.vc_images_carousel .vc_item img{
display: block;
}
.vc_row.vc_row-flex.vc_row-o-equal-height>.vc_column_container>.vc_column-inner{
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;	
}
.wpb_wrapper.children_height_stretchedByFlex{
width: 100%;
}
.vc_row.vc_row-flex.vc_row-o-equal-height>.vc_column_container>.vc_column-inner>.wpb_wrapper>.prospect_module{
width: 100%;
}
.vc_tta.vc_general .vc_tta-panel-heading{
border-bottom: 2px solid #d8e8ec !important;
}
.vc_tta.vc_general.accordion_alternative .vc_tta-panel-heading{
border-bottom: 0 !important;
}
.vc_tta.vc_general .vc_tta-panel.vc_active .vc_tta-panel-title > a{
background-color: transparent;
color: #1c3545 !important;
}
.vc_tta.vc_general.accordion_alternative .vc_tta-panel.vc_active .vc_tta-panel-title > a{
color: #fff !important;
}
.vc_tta.vc_general .vc_tta-panel + .vc_tta-panel{
margin-top: -1px;
}
.vc_tta-panel-title{
font-family: inherit;
} .wpb_gmaps_widget .wpb_wrapper{
padding: 0 !important;
background-color: transparent !important;
width: 100%;
display: block;
}
.wpb_gmaps_widget iframe{
border-radius: 0;
}
.vc_row.vc_row-no-padding[data-vc-full-width-init="true"][data-vc-stretch-content="true"] .wpb_gmaps_widget .wpb_wrapper{
padding: 0;
border-style: none;
} .vc_row.top_line{
border-top: 3px solid #f2f2f2 !important;
}
.vc_row.bottom_line{
border-bottom: 3px solid #f2f2f2 !important;
}
.posts_grid .post_post .vc_col-sm-1,
.posts_grid .post_post .vc_col-sm-10,
.posts_grid .post_post .vc_col-sm-11,
.posts_grid .post_post .vc_col-sm-12,
.posts_grid .post_post .vc_col-sm-2,
.posts_grid .post_post .vc_col-sm-3,
.posts_grid .post_post .vc_col-sm-4,
.posts_grid .post_post .vc_col-sm-5,
.posts_grid .post_post .vc_col-sm-6,
.posts_grid .post_post .vc_col-sm-7,
.posts_grid .post_post .vc_col-sm-8,
.posts_grid .post_post .vc_col-sm-9{
float: none;
width: 100%;
}
#page.single_sidebar .vc_row[data-vc-full-width="true"],
#page.double_sidebar .vc_row[data-vc-full-width="true"]{
left: auto !important;
padding-left: 0 !important;
padding-right: 0 !important;
width: auto !important;
}
.wpb_text_column hr:last-child{
margin-bottom: 40px;
}  h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a{
color: inherit;
text-decoration: none;
}
.posts_grid_divider{
margin-top: 	20px;
margin-bottom: 	25px;
}
hr.posts_grid_small_divider{
margin: 20px 0 15px;
height: 2px;
width: 30px;
}
.post_post_wrapper{
border-radius: 8px;
background: #fff;
overflow: hidden;
}
.post_post_content_wrapper{
padding: 30px 40px;
}
.post_title.post_post_title{
margin-top: 0;
margin-bottom: 5px;
font-weight: 600;
}
.post_posts_grid.posts_grid_1 .post_title.post_post_title,
.post_posts_grid.posts_grid_medium .post_title.post_post_title,
.post_posts_grid.posts_grid_small .post_title.post_post_title{
font-size: 1.6em;
}
.post_posts_grid.posts_grid_2 .post_title.post_post_title,
.post_posts_grid.posts_grid_3 .post_title.post_post_title{
font-size: 1.85em;
}
article.post_post.post_single{
background: #fff;
border-radius: 8px;
}
.post_post_header{
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-wrap: nowrap;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-justify-content: flex-start;
-ms-flex-pack: justify;
justify-content: flex-start;
-webkit-align-items: stretch;
-ms-flex-align: stretch;
align-items: stretch;
text-align: center;
overflow: hidden;	
}
.post_post_header .v_sep{
border-left-color: #fff;
}
.post_post_header > *{
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
font-weight: 600;
font-size: 0.857em;
text-transform: uppercase;
color: #324251;
margin-right: 40px;
}
.post_post_header span{
color: #afb1bc;
margin-right: 5px;
}
.post_post_header .info{
-webkit-justify-content: space-around;
-ms-flex-pack: distribute;
justify-content: space-around;
}
.post_post_header .comments_link{
display: inline-block;
font-size: inherit;
min-width: 3.533333em;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-justify-content: space-around;
-ms-flex-pack: distribute;
justify-content: space-around;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
text-decoration: none;
white-space: nowrap;
}
.post_post_header .comments_link:only-child{
min-height: 3.533333em;	
}
.floated_media{
margin-right: -30px;
}
.floated_media_wrapper{ margin-right: 30px;
}
.posts_grid_medium .floated_media_wrapper,
.posts_grid_small .floated_media_wrapper{
float: left;
}
.floated_media_wrapper.cws_staff_posts_grid_post_floated_media_wrapper{
float: none;
} .comments-area{
background: #fff;
padding: 30px 40px;
border-radius: 8px;
margin-top: 30px;
}
.floated_media ~ .post_content ul,
.floated_media ~ .post_content ol,
.floated_media ~ .post_content blockquote,
.floated_media.post_floated_media.single_post_floated_media ~ .post_content ul,
.floated_media.post_floated_media.single_post_floated_media ~ .post_content ol,
.floated_media.post_floated_media.single_post_floated_media ~ .post_content blockquote,
.floated_media.posts_grid_post_floated_media.post_posts_grid_post_floated_media ~ .post_content ul,
.floated_media.posts_grid_post_floated_media.post_posts_grid_post_floated_media ~ .post_content ol,
.floated_media.posts_grid_post_floated_media.post_posts_grid_post_floated_media ~ .post_content blockquote{
overflow: auto;
}
.post_media,
.pic{
position: relative;
overflow: hidden;
}
.pic > img{
border-top-left-radius: 8px;
border-top-right-radius: 8px;
}
.pic > img,
.pic.link_post > a > img{
display: block;
width: 100%;
height: auto;
-webkit-transform: scale(1) translate3d(0,0,0);
-ms-transform: scale(1) translate3d(0,0,0);
transform: scale(1) translate3d(0,0,0);
}
.pic:hover > img,
.pic.link_post:hover > a > img{
-webkit-transition: all 4s ease;
transition: all 4s ease;
}
.pic.wth_hover:hover > img,
.pic.link_post.wth_hover:hover > a > img{
-webkit-transition: none;
transition: none;
}
.pic.wth_hover:hover > img,
.pic.link_post.wth_hover:hover > a > img{
-webkit-transform: scale(1) translate3d(0,0,0);
-ms-transform: scale(1) translate3d(0,0,0);
transform: scale(1) translate3d(0,0,0);
}
.pic .hover-effect{
position: absolute;
z-index: 1;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
}
.pic .links{
position: absolute;
z-index: 1;
top: 0;
left: 0;
width: 100%;
max-width: 100%;
max-height: 100%;
padding: 30px;
text-align: right;
}
.pic .links a:not(.cws_title){
position: relative;
display: inline-block;
vertical-align: middle;
text-decoration: none;
text-align: center;
width: 44px;
height: 48px;
margin: 2px;
border-radius: 8px;
font-size: 22px;
line-height: 50px;
color: #fff;
-webkit-transform: scale(0.5) rotate(180deg);
-ms-transform: scale(0.5) rotate(180deg);
transform: scale(0.5) rotate(180deg);
opacity: 0;
}
.pic .links a:hover .figure_wrap svg{
opacity: 0.6;
}
.pic .links a.cws_title{
color: #fff;	
opacity: 0;	
}
.pic:hover .links a.cws_title{
opacity: .9;
}
.pic:hover .links a.cws_title:hover{
color: #fff;
opacity: 1;
}
.pic:hover .links a:not(.cws_title){
-webkit-transform: scale(1) rotate(0);
-ms-transform: scale(1) rotate(0);
transform: scale(1) rotate(0);
opacity: 1;	
}
.hexagon_grid .pic .links{
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
text-align: center;
}
.hexagon_grid .pic .hover-effect .figure_wrap {
width: 94%;
height: 94%;
left: 6px;
top: 8px;
-webkit-transform: scale(0.1);
-ms-transform: scale(0.1);
transform: scale(0.1);
-webkit-transition: all 0.3s;
-ms-transition: all 0.3s;
transition: all 0.3s;
}
.hexagon_grid .pic:hover .hover-effect .figure_wrap {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.hexagon_grid .pic .hover-effect .figure_wrap svg{
opacity: 0.8;
}
.hexagon_grid .pic:hover .hover-effect{
opacity: 1;
}
.hexagon_grid .pic .links .figure_wrap svg{
fill: transparent;
stroke: #fff;
stroke-width: 4px;
}
.hexagon_grid .pic .links a:hover .figure_wrap svg{
fill: #fff;
opacity: 1;
}
.post_posts_grid .pic.link_post > a{
display: block;
color: #fff;
text-decoration: none;
}
.format-link .link > a{
color: #fff;
}
.post_post.format-link{
overflow: hidden;
}
.post_posts_grid .pic.link_post > a > img{
display: block;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
}
.post_posts_grid .floated_media .pic.link_post > a > img{
border-radius: 8px;
}
.post_posts_grid .pic.link_post .hover-effect{
opacity: 0.6;
}
.post_post:not(.format-audio) .post_post_media:before{
content: '';
position: absolute;
z-index: 1;
bottom: -11px;
left: 10%;
width: 20px;
height: 20px;
background: #fff;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
.post_post_media .link{
display: block;
font-size: 2.4em;
font-style: italic;
line-height: 1.2;
text-align: center;
font-weight: 700;
word-break: break-all;
}
.post_post_media .link a{
text-decoration: none;
}
.post_posts_grid .pic.link_post .link,
.post_single_post_media .pic.link_post .link{
position: absolute;
width: 100%;
max-height: 100%;
padding: 30px;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%,-50%);
-moz-transform: translate(-50%,-50%);
-ms-transform: translate(-50%,-50%);
transform: translate(-50%,-50%);
}
.post_post_media > .link{
padding: 30px 25px;
background-color: #e5e5e5;
}
.post_posts_grid .posts_grid_small{
font-size: 1.8em;	
}
.post_post_media .video{
position: relative;
height: 0;
padding-bottom: 56.316%;
}
.post_post_media .video iframe,
.post_post_media .audio.soundcloud iframe{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
} .prospect_grid.isotope > .item.post_post.format-gallery > .post_media{
padding-bottom: 56.3%;
}
.prospect_grid.isotope > .item.post_post.format-gallery > .post_media > .gallery_post_carousel{
position: absolute;
top: 0;
left: 0;
width: 100%;
} .post_post_media .video p{
text-indent: 0;
}
.post_post_media .video iframe{
border-radius: 0;
}
.post_post_media .audio:only-child{
padding: 30px 25px;
background-color: #e5e5e5;
}
.post_post_media .audio.soundcloud{
padding: 0;
background-color: transparent;
position: relative;
height: 0;
padding-bottom: 56.3%;
}
.mejs-controls button{
min-width: 0;
}
.post_post_media iframe{
display: block;
width: 100%;
border-radius: 0;
}
.post_post.sticky-post .post_post_wrapper{
border: 1px solid #e6e6e6;
}
.post_post_header + .post_post_media .testimonial{
margin-top: 20px;
}
.post_post_media .testimonial.prospect_module{
margin-bottom: auto;
padding: 40px 40px 0px 40px;
}
.gallery_post_carousel_nav{
display: block;
position: absolute;
top: 50%;
width: 30px;
height: 30px;
line-height: 30px;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
border: 2px solid #fff;
border-radius: 8px;
font-size: 20px;
font-family: FontAwesome;
text-align: center;
text-decoration: none;
color: #fff;
}
.gallery_post_carousel_nav:hover{
background-color: #fff;
}
.gallery_post_carousel_nav.prev{
left: 5px;
}
.gallery_post_carousel_nav.prev:before{
content: "\f104";
}
.gallery_post_carousel_nav.next:before{
content: "\f105";
}
.gallery_post_carousel_nav.next{
right: 5px;	
}
.gallery_post_carousel{
z-index: 1;
}
.gallery_post_carousel_nav{
z-index: 2;
}
.more-link{
color: inherit;
display: table;
}
.more-link:hover{
color: #fff;
}
.post_posts_grid_post_content.read_more_alt .more-link{
margin-top: 30px;
min-width: 0;
padding: 0;
border-style: none;
color: #324251;
}
.post_posts_grid_post_content.read_more_alt .more-link:hover{
background-color: transparent;
}
.post_post_content_wrapper .post_posts_grid_post_content{
color: #808c95;
font-weight: 300;
}
.post_grid_post{
margin-bottom: 60px;
}
.floated_media.posts_grid_post_floated_media.post_posts_grid_post_floated_media + .post_post_title{
margin-top: auto;
}
*:not(.post_post_title) + .post_post_content,
.post_post *:not(.post_post_title) + .pagination,
.more-link{
margin-top: 20px;
}
* + .post_post_terms{
margin-top: 5px;
line-height: 1;
}
.post_post_terms > *{
vertical-align: middle;
}
.post_post_terms i{
font-size: 1.066667em;
}
.post_post_terms a{
font-size: 0.866667em;
text-decoration: none;
font-weight: 600;
line-height: 1;
}
.post_post_terms .v_sep{
padding-left: 10px;
margin-left: 10px;
}
.pagination{
position: relative;
z-index: 1;
}
.pagination .page_links{
font-size: 0;
text-align: center;
margin-top: 1px;
}
.pagination .page_links > *{
display: inline-block;
line-height: 38px;
padding: 0 5px;
margin: 0 15px;
font-size: 15px;
text-align: center;
text-decoration: none;
border-bottom: 2px solid transparent;
}
.pagination .page_links > a:hover,
.pagination .page_links > span.current{
border-bottom: 2px solid;
}
.pagination .page-numbers.next{
position: absolute;
z-index: 1;
right: 0;
border-color: transparent !important;
margin: 0;
}
.pagination .page-numbers.prev{
position: absolute;
z-index: 1;
left: 0;
border-color: transparent !important;
margin: 0;
}
.vc_col-sm-2 hr.posts_grid_divider:before,
.vc_col-sm-3 hr.posts_grid_divider:before,
.vc_col-sm-4 hr.posts_grid_divider:before,
.posts_grid_3 hr.posts_grid_divider:before{
display: none;
}
.posts_grid select.filter{
display: block;
width: 200px;
}
.simple_filter .select2-container{
display: none;
}
.select_filter .filter_wrap{
display: none;
}
.select2-container.filter{
margin-bottom: 30px;
}
.filter_wrap{
margin-bottom: 30px !important;
text-align: center;
}
.over_section .filter_wrap{
margin-bottom: 80px !important;
}
.filter_wrap .filter:before{
content: '';
position: absolute;
left: 0;
top: 100%;
height: 2px;
width: 0;
transition: all 0.3s;
}
.filter_wrap .filter.active:before{
width: 100%;
}
.filter_wrap .filter{
cursor: pointer;
display: inline-block;
margin: 0 30px 0 30px;
padding: 0;
text-transform: uppercase;
font-weight: 400;
}
.posts_grid .widget_header:not(:only-child){
margin-bottom: 20px;
}
.post_posts_grid.posts_grid_medium .floated_media > .floated_media_wrapper{
width: 570px;
}
.post_posts_grid.posts_grid_small .floated_media > .floated_media_wrapper{
width: 370px;
}
.post_posts_grid.posts_grid_medium .floated_media > .floated_media_wrapper,
.post_posts_grid.posts_grid_small .floated_media > .floated_media_wrapper{
max-width: -webkit-calc( 100% - 30px );
max-width: calc( 100% - 30px );
}
.post_posts_grid.posts_grid_small .floated_media_wrapper,
.post_posts_grid.posts_grid_medium .floated_media_wrapper{
margin-left: 40px;
margin-top: 30px;
}
.post_posts_grid.posts_grid_small .floated_media_wrapper .post_posts_grid_post_media:before,
.post_posts_grid.posts_grid_medium .floated_media_wrapper .post_posts_grid_post_media:before{
display: none;
}
.post_posts_grid.posts_grid_small .floated_media_wrapper .pic > img,
.post_posts_grid.posts_grid_medium .floated_media_wrapper .pic > img,
.post_posts_grid.posts_grid_small .floated_media_wrapper .post_media,
.post_posts_grid.posts_grid_medium .floated_media_wrapper .post_media{
border-radius: 8px;
}
.floated_media.posts_grid_post_floated_media.post_posts_grid_post_floated_media:not(:last-child) > .post_media_wrapper{
margin-bottom: 1.17em;
}
.search_post_media a,
.search_post_media img{
display: block;
}
.latest_post_post{
padding-bottom: 44px;
margin-bottom: 20px;
position: relative;
z-index: 1;
}
.large_type .posts_time_line_wrap .latest_post_post:first-child{
margin-top: 65px;
}
.small_type .posts_time_line_wrap .latest_post_post:first-child{
padding-top: 65px;
}
.latest_post_post .latest_post_post_title{
margin-top: 20px;
margin-bottom: 5px;
font-weight: 600;
}
.large_type .latest_post_post .latest_post_post_data{
overflow: hidden;
}
.large_type .latest_post_post .latest_post_post_data .date{
color: #ebba44;
font-size: 12px;
}
.latest_post_post_media .link{
position: absolute;
z-index: 1;
width: 44px;
height: 48px;
top: calc(50% - 4px);
left: 50%;
margin: 0;
font-size: 22px;
line-height: 50px;
color: #fff;
text-align: center;
-webkit-transform: translate(-50%,-50%);
-ms-transform: translate(-50%,-50%);
transform: translate(-50%,-50%);
opacity: 0;
}
.latest_post_post_media .pentagon .link{
top: 50%;
}
.latest_post_post_media .triangle .link{
top: calc(50% + 10px);
}
.latest_post_post:hover .latest_post_post_media .link {
opacity: 1;
}
.latest_post_post .latest_post_post_media .link .figure_wrap svg{
fill: transparent;
stroke: #fff;
stroke-width: 4px;
}
.latest_post_post .latest_post_post_media .link:hover .figure_wrap svg{
fill: #fff;
}
.large_type .latest_post_post:nth-child(odd) .latest_post_post_media{
float: right;
margin-right: calc( 50% - 60px );
margin-left: 40px;
}
.latest_post_post:nth-child(odd) .latest_post_post_data{
text-align: right;
}
.small_type .latest_post_post:nth-child(odd) .latest_post_post_data{
text-align: left;
}
.large_type .latest_post_post:nth-child(even) .latest_post_post_media{
float: left;
margin-left: calc( 50% - 60px );
margin-right: 40px;
}
.latest_post_post .latest_post_post_media{
overflow: visible;
z-index: 1;
}
.large_type .latest_post_post:before{
content: '';
position: absolute;
z-index: 1;
left: 50%;
top: 150px;
border: 1px dashed #7796ab;
height: calc(100% - 150px);
margin-left: -1px;
}
.large_type .posts_time_line_wrap .latest_post_post:first-child .latest_post_post_media:after{
content: '';
position: absolute;
z-index: 1;
left: 50%;
top: -53px;
border: 1px dashed #7796ab;
height: 37px;
margin-left: -1px;
}
.latest_post_post_media > .figure_container > .figure_wrap > svg{
opacity: 0.8;
}
.latest_post_post_terms a{
text-decoration: none;
}
.latest_post_list_start,
.latest_post_list_end{
position: relative;
text-align: center;
width: 14px;
height: 18px;
margin: auto;
}
.latest_post_list_start .figure_wrap svg,
.latest_post_list_end .figure_wrap svg{
fill: #7796ab;
stroke: #7796ab;
}
.latest_post_list_end {
display: none;
}
.latest_post_list_more{
position: relative;
text-align: center;
width: 72px;
height: 82px;
margin: auto;
display: flex;
align-items: center;
text-decoration: none;
margin-top: 1px;
}
.latest_post_list_more span{
font-size: 12px;
line-height: 1.5;
padding: 0 2px;
}
.latest_post_list_more:hover span{
color: #fff;
}
.latest_post_list_more .figure_wrap svg{
fill: #fff;
stroke: #7796ab;
}
.latest_post_post_media > * > .figure_wrap{
position: absolute;
z-index: 1;
opacity: 0;
-webkit-transform: rotate(360deg) scale(0.2);
transform: rotate(360deg) scale(0.2);
-webkit-transition: all 0.6s ease;
transition: all 0.6s ease;
}
.latest_post_post_media > * > .figure_wrap.hexagon{
width: 94%;
height: 94%;
left: 3px;
top: 3px;
}
.latest_post_post_media > * > .figure_wrap.pentagon{
width: 90%;
height: 94%;
left: 7px;
top: 3px;
}
.latest_post_post_media > * > .figure_wrap.triangle{
width: 90%;
height: 94%;
left: 4px;
top: 10px;
}
.latest_post_post:hover .latest_post_post_media > * > .figure_wrap{
opacity: 1;
-webkit-transform: rotate(0) scale(1);
transform: rotate(0) scale(1);
}
.latest_post_post .latest_post_post_media .figure_dummy{
width: 120px;
height: 135px;
}
.latest_post_post .latest_post_post_media .figure_dummy svg{
fill: #27323e;
stroke: #27323e;
opacity: 0.9;
}
.small_type .posts_time_line_wrap{
position: relative;
z-index: 1;
}
.small_type .posts_time_line_wrap:before{
content: '';
position: absolute;
z-index: 1;
height: 100%;
border: 1px dashed #7796ab;
left: 50%;
top: 0;
margin-left: -1px;
}
.small_type .latest_post_post{
display: flex;
position: relative;
z-index: 1;
margin-bottom: 0;
}
.small_type .latest_post_post:nth-child(even){
flex-direction: row-reverse;
}
.small_type .latest_post_post .latest_post_post_date{
display: flex;
align-items: center;
}
.small_type .latest_post_post .latest_post_post_date .center_figure_wrap > .figure_wrap > svg{
fill: #fff;
stroke: #7796ab;
stroke-width: 10px;
}
.small_type .latest_post_post .latest_post_post_date .center_figure{
position: absolute;
z-index: 1;
top: 8px;
left: 7px;
width: 16px;
height: 17px;
-webkit-transition: all 0.3s;
transition: all 0.3s;
-webkit-transform: scale(0);
transform: scale(0);
}
.small_type .latest_post_post:hover .latest_post_post_date .center_figure{
-webkit-transform: scale(1);
transform: scale(1);
}
.small_type .latest_post_post:nth-child(even) .latest_post_post_date{ margin-right: calc( 50% - 15px );
margin-left: 40px;
position: relative;
z-index: 1;
}
.small_type .latest_post_post:nth-child(odd) .latest_post_post_date{ margin-left: calc( 50% - 15px );
margin-right: 40px;
position: relative;
z-index: 1;
}
.small_type .latest_post_post .latest_post_post_date .center_figure_wrap{
position: relative;
z-index: 1;
width: 30px;
height: 32px;
display: block;
}
.small_type .latest_post_post .latest_post_post_date .date{
position: absolute;
z-index: 1;
top: 5px;
left: 100%;
padding-left: 20px;
white-space: nowrap;
color: #afb1bc;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.small_type .latest_post_post:nth-child(odd) .latest_post_post_date .date{
top: 7px;
right: 100%;
left: initial;
padding-left: 0;
padding-right: 20px;
}
.small_type .latest_post_post:hover .latest_post_post_date .date{
}
.small_type .latest_post_post .latest_post_post_media{
margin-top: 6px;
}
.small_type .latest_post_post:nth-child(even) .latest_post_post_media{
float: right;
margin-left: 20px;
}
.small_type .latest_post_post:nth-child(odd) .latest_post_post_media{
float: left;
margin-right: 20px;
}
.small_type .latest_post_post:nth-child(odd) .latest_post_post_data,
.small_type .latest_post_post:nth-child(even) .latest_post_post_data{
border: 1px solid #e8eaeb;
border-radius: 8px;
padding: 10px;
padding-left: 20px;
display: flex;
align-items: center;
background: #fff;
box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.2);
position: relative;
z-index: 1;
}
.small_type .latest_post_post:nth-child(even) .latest_post_post_data{
flex-direction: row-reverse;
padding-right: 20px;
text-align: right;
}
.latest_post_post .latest_post_post_data{
opacity: 0;
-webkit-transition: all 0.3s;
transition: all 0.4s;
-webkit-transform: translateY(50%);
transform: translateY(50%);
}
.latest_post_post.block_show .latest_post_post_data{
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
.small_type .latest_post_post .latest_post_post_data h5{
margin-top: 0;
}
.small_type .latest_post_post .latest_post_post_data:before {
content: '';
position: absolute;
z-index: 1;
top: 50%;
right: -10px;
width: 20px;
height: 20px;
background: #fff;
box-shadow: 3px -3px 5px -2px rgba(0, 0, 0, 0.2);
transform: translateY(-50%) rotate(45deg);
}
.small_type .latest_post_post:nth-child(odd) .latest_post_post_data:before{
right: initial;
left: -10px;
box-shadow: -3px 3px 5px -2px rgba(0, 0, 0, 0.2);
}  .cws_portfolio_posts_grid.dynamic_content{
text-align: center;
}
.cws_portfolio_posts_grid.dynamic_content .prospect_load_more{
margin-top: 30px;
}
.cws_portfolio_posts_grid.posts_grid_2 hr.posts_grid_divider:before,
.cws_portfolio_posts_grid.posts_grid_3 hr.posts_grid_divider:before,
.cws_portfolio_posts_grid.posts_grid_4 hr.posts_grid_divider:before{
display: none;
}
.posts_grid .cws_portfolio_post_title:not(:last-child){
margin-bottom: 0.2em;
}
.posts_grid .cws_portfolio_post_title{
font-size: 19px;
text-align: center;
color: #1c3545;
font-weight: 600;
}
*:not(.cws_portfolio_post_title) + .cws_portfolio_posts_grid_post_content,
.post_post *:not(.cws_portfolio_post_title) + .pagination{
margin-top: 20px;
}
.post_single .cws_portfolio_post_title{
text-align: center;
font-weight: 600;
margin-bottom: 5px;
margin-top: 20px;	
}
.cws_portfolio_post_terms{
text-align: center;
text-transform: uppercase;
font-weight: 600;
padding-bottom: 15px;
position: relative;
z-index: 1;
}
.cws_portfolio_post_terms:before{
content: '';
position: absolute;
z-index: 1;
bottom: 0;
left: 50%;
width: 30px;
height: 2px;
background: red;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
}
.cws_portfolio_post_terms > *{
vertical-align: middle;
}
.cws_portfolio_post_terms a{
font-size: 0.866667em;
text-decoration: none;
}
.portfolio_item_post .pic > img{
border-radius: 8px;
}
.portfolio_item_grid_post{
margin-bottom: 50px;
}
.portfolio_item_grid_post.hex_style{
margin-bottom: 0;
}
.portfolio_item_grid_post .post_post_media:before{
content: '';
position: absolute;
z-index: 2;
bottom: -17px;
left: 50%;
margin-left: -5px;
width: 20px;
height: 20px;
background: #fafafa;
-webkit-transform: rotate(45deg) translateX(-50%);
-ms-transform: rotate(45deg) translateX(-50%);
transform: rotate(45deg) translateX(-50%);
}
.portfolio_item_grid_post.hex_style .post_post_media:before{
display: none;
}
.portfolio_item_grid_post .pic .hover-effect{
border-radius: 8px;
}
.cws_portfolio_posts_grid.hexagon_grid .prospect_grid{
padding-top: 50px;
}
.cws_portfolio_posts_grid:not(.posts_grid_carousel) .portfolio_item_post.hex_style{
width: 210px;
padding-left: 5px;
padding-right: 5px;
margin-top: -50px;
}
.portfolio_item_post.hex_style.wrap1{
transform: translateX(50%);
}
.prospect_carousel .portfolio_item_post.hex_style.wrap1{
transform: translateX(0);
}
.portfolio_item_post.hex_style.wrap1 + .wrap2,
.portfolio_item_post.hex_style.wrap2 + .wrap1{
clear: left;
}
.posts_grid.hexagon_grid .owl-item > .item{
width: 230px !important;
margin: auto;
float: none;
}
.cws_portfolio_single_content .gallery{
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.cws_portfolio_single_content{
background: #fff;
border-radius: 8px;
padding: 40px 75px;
margin-top: -80px;
position: relative;
z-index: 1;
}
.single-cws_portfolio .post_single .post_post_media{
margin-top: -80px;
}
.single-cws_portfolio .post_single .post_post_media{
margin: -80px -30px 0 -30px;
}
.single-cws_portfolio .post_single .post_post_media img{
border-radius: 0;
}  .cws_staff_posts_grid.dynamic_content{
text-align: center;
}
.cws_staff_post.posts_grid_post{
text-align: center;
}
.cws_portfolio_post.post_single{
text-align: center;
}
.cws_staff_post.posts_grid_post > .prospect_wrapper{
border-radius: 4px;
-webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
-webkit-transform: rotate(0.000001deg);
}
.cws_staff_post.posts_grid_post a{
color: inherit;
text-decoration: none;
}
.cws_staff_post_title.posts_grid_post_title{
font-size: 1.2em;
line-height: 1.388889em;
font-weight: 600;
margin: auto;
}
.floated_media.posts_grid_post_floated_media.cws_staff_posts_grid_post_floated_media > .floated_media_wrapper{
margin-bottom: auto;
}
.prospect_cws_staff_posts_grid_post_data .cws_staff_post_content{
color: #808c95;
font-weight: 300;
margin-top: 15px;
}
.prospect_cws_staff_posts_grid_post_data:only-child{
padding: 20px 30px 20px 30px;
}
.cws_staff_photo img{
display: none;
}
.cws_staff_post_terms.posts_grid_post_terms{
font-size: 0.866667em;
}
.cws_staff_social_links.post_social_links a{
display: inline-block;
margin: 0 5px;
font-size: 23px;
line-height: 50px;
position: relative;
z-index: 1;
width: 44px;
height: 50px;
text-align: center;
}
.cws_staff_social_links.post_social_links a:first-child{
margin-left: 0;
}
.cws_staff_social_links.post_social_links a:last-child{
margin-right: 0;
}
.cws_staff_social_links.post_social_links a .figure_wrap svg{
fill: #fff;
stroke: #7796ab;
}
.cws_staff_social_links.post_social_links a:hover{
color: #fff;
}
.cws_staff_posts_grid_post_data_divider{
width: 70px;
height: 2px;
background-color: #fff;
margin: 14px auto;
}
.cws_staff_posts_grid_post_data_divider:before{
display: none;
}
.cws_staff_social_links.post_social_links{
margin-top: 20px;
}
.cws_staff_post.posts_grid_post:hover > .prospect_wrapper{
background-color: transparent !important;
}
.cws_staff_post.posts_grid_post:hover{
color: inherit;
}
.cws_staff_post_terms.single_post_terms a{
text-decoration: none;
}
.cws_staff_social_links.single_social_links{
}
.cws_staff_social_links.single_social_links a:hover{
color: #fff;
}
* + .single_post_content.cws_staff_post_content{
margin-top: 20px;
}
.floated_media + .single_post_content.cws_staff_post_content{
margin-top: auto;
}
* + .cws_staff_post_terms.single_post_terms,
* +.cws_staff_social_links.single_social_links{
margin-top: 10px;
}
.cws_staff_photo{
width: 200px;
position: relative;
margin: auto;
margin-bottom: 25px;
}
.single_post_media .cws_staff_photo{
width: 280px;
}
.cws_staff_photo .figure_container .link{
position: absolute;
z-index: 1;
width: 44px;
height: 48px;
top: 50%;
left: 50%;
margin: 2px;
font-size: 22px;
line-height: 50px;
color: #fff;
-webkit-transform: translate(-50%,-50%);
-ms-transform: translate(-50%,-50%);
transform: translate(-50%,-50%);
opacity: 0;
}
.cws_staff_photo:hover .figure_container .link{
opacity: 1;
}
.cws_staff_photo .figure_container .link .figure_wrap svg{
fill: transparent;
stroke: #fff;
stroke-width: 4px;
}
.cws_staff_photo .figure_container .link:hover .figure_wrap svg{
fill: #fff;
}
.cws_staff_photo > .figure_container > .figure_wrap > svg{
opacity: 0.8;
}
.single_post_content.cws_staff_post_content{
background: #fff;
padding: 80px;
padding-bottom: 60px;
margin-top: -25px;
border-radius: 8px;
box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
}
@media screen and ( max-width: 767px ){
.single_post_content.cws_staff_post_content{
padding: 30px;
}
}  * + .attachment_single_post_content,
.attachment_post * + .pagination{
margin-top: 20px;
}
.attachment_nav{
margin-top: 40px;
}
.attachment_nav a{
text-decoration: none;
}
.attachment_nav .prev_section{
float: left;
}
.attachment_nav .next_section{
float: right;
}
.alignleft{
float: left;
margin-right: 30px;
}
a[rel^="attachment"] .alignleft{
float: none;
margin-right: auto;	
}
.aligncenter{
display: table;
position: relative;
left: 50%;
-webkit-transform: translate(-50%,0);
-ms-transform: translate(-50%,0);
transform: translate(-50%,0);
}
a[rel^="attachment"] .aligncenter{
display: block;
position: static;
left: auto;	
-webkit-transform: none;
-ms-transform: none;
transform: none;
}
.alignright{
float: right;
margin-left: 30px;
}
a[rel^="attachment"] .alignleft{
float: none;
margin-left: auto;	
}  .prospect_module,
.widget{
margin-bottom: 30px;
}
.prospect_module:only-child,
.widget:only-child{
margin-bottom: auto;
}
.posts_grid .prospect_grid,
.crsl-grid{
margin-left: -15px;
margin-right: -15px;
}
.posts_grid .item,
.crsl-grid .item{
float: left;
padding-left: 15px;
padding-right: 15px;
}
.crsl-grid li.item{
padding-left: 15px;
}
.posts_grid .item,
.crsl-grid .item{
width: 100%;
}
.posts_grid_2 .item,
.grid_col_6,
.crsl-grid-2 .item{
width: 50%;
}
.posts_grid_3 .item,
.grid_col_4,
.crsl-grid-3 .item{
width: 33.33333%;
}
.posts_grid_4 .item,
.grid_col_3,
.crsl-grid-4 .item{
width: 25%;
}
.posts_grid .item.hidden{
opacity: 0;
}
.prospect_load_more.hiding{
-webkit-animation-duration: 0.3s;
animation-duration: 0.3s;
}
.prospect_carousel .item{
width: 100%;
}
.prospect_carousel{
margin-left: -15px;
margin-right: -15px;
}
hr.posts_grid_spacing{
height: 0;
background-color: transparent;
margin-top: auto;
}
hr.posts_grid_spacing:before{
display: none;
}
.posts_grid .owl-item > .item{
width: 100% !important;
}
.owl-controls{
margin-top: -20px;
}
.owl-controls .owl-page{
cursor: pointer;
background: #d8e8ec;
border-color: #d8e8ec;
}
.cws_staff_posts_grid.posts_grid_2.posts_grid_carousel .owl-item:nth-child(even) .cws_staff_posts_grid_post_floated_media{
float: right;
}
.cws_staff_posts_grid.posts_grid_2.posts_grid_carousel .owl-item:nth-child(odd) .cws_staff_posts_grid_post_floated_media{
float: left;
}
.cws_staff_posts_grid.posts_grid_2.posts_grid_carousel .owl-item:nth-child(odd) .prospect_cws_staff_posts_grid_post_data{
text-align: left;
margin-left: 230px;
margin-top: 20px;
padding-right: 20px;
}
.cws_staff_posts_grid.posts_grid_2.posts_grid_carousel .owl-item:nth-child(even) .prospect_cws_staff_posts_grid_post_data{
text-align: right;
margin-right: 230px;
margin-top: 20px;
padding-left: 20px;
}
.cws_staff_posts_grid.posts_grid_2.posts_grid_carousel .owl-item:nth-child(odd) .cws_staff_post{
position: relative;
z-index: 1;
}
.cws_staff_posts_grid.posts_grid_2.posts_grid_carousel .owl-item:nth-child(odd) .cws_staff_post:before{
content: '';
position: absolute;
z-index: 1;
top: 20px;
right: -1px;
height: 80%;
border-right: 2px dashed #7796ab;
}  .figure_wrap{
position: absolute;
z-index: -1;
left: -1px;
top: -1px;
width: 100%;
height: 100%;
}
.cws_staff_photo > * > .figure_wrap{
position: absolute;
z-index: 1;
opacity: 0;
-webkit-transform: rotate(360deg) scale(0.2);
transform: rotate(360deg) scale(0.2);
-webkit-transition: all 0.6s ease;
transition: all 0.6s ease;
}
.cws_staff_photo > * > .figure_wrap.hexagon{
width: 95%;
height: 95%;
left: 5px;
top: 7px;
}
.cws_staff_photo > * > .figure_wrap.pentagon{
width: 92%;
height: 93%;
left: 11px;
top: 4px;
}
.cws_staff_photo > * > .figure_wrap.triangle{
width: 90%;
height: 90%;
left: 8px;
top: 19px;
}
.cws_staff_photo:hover > * > .figure_wrap{
opacity: 1;
-webkit-transform: rotate(0) scale(1);
transform: rotate(0) scale(1);
}
.figure_wrap svg{
fill: transparent;
stroke-width: 2px;
padding: 1px;
opacity: 1;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.figure_wrap.alt svg{
stroke: transparent; 
}  #comments p{
color: #8f96a2;
}
#comments .avatar_section{
float: left;
}
#comments .avatar_section + .comment_section{
margin-left: 100px;
}
#comments .avatar{
display: block;
border-radius: 8px;
}
#comments .author_name{
font-style: normal;
font-weight: 600;
font-size: 1.066em;
text-transform: uppercase;
margin-right: 10px;
}
#comments .author_name a{
color: #232b33;
}
#comments .comment_date{
display: block;
color: #5c6268;
font-size: 0.86em;
}
#comments .comment_content{
margin: 4px 0 8px 0;
}
#comments .comment-reply-link{
display: block;
font-size: 0.8em;
line-height: 1.53846em;
text-decoration: none;
font-weight: 600;
}
#comments .comments_children{
padding-left: 36px;
}
#comments .comment_list > * + *,
#comments .comments_children > *{
margin-top: 40px;
}
#commentform{
margin-left: -10px;
}
#commentform > *{
display: block;
width: 100%;
padding-left: 10px;
}
#commentform .comment-form-author,
#commentform .comment-form-email,
#commentform .comment-form-url{
float: left;
width: 33.333%;
}
#commentform label,
#commentform input:not([type='submit']),
#commentform textarea{
display: block;
width: 100%;
}
#commentform p{
margin-bottom: 10px;
}
#commentform .form-submit{
text-indent: 0;
}
#commentform #submit{
float: right;	
}
#commentform script{
display: none;
}
.comments_nav{
margin-top: 40px;
}
.comments_nav .prev_section{
float: left;
}
.comments_nav .next_section{
float: right;
}
.comments_nav a{
text-decoration: none;
}
.comments_title,
.comment_reply_title{
text-transform: uppercase;
font-size: 1.9em;
}  #scroll_to_top{
position: fixed;
right: 25px;
bottom: 25px;
z-index: 1000;
opacity: 0;
pointer-events: none;
width: 38px;
height: 38px;
line-height: 38px;
font-size: 32px;
color: #fff;
border-radius: 8px;
text-align: center;
cursor: pointer;
}  #banner_404{
text-align: center;
margin: 70px auto 110px;
}
#banner_404 > * + *{
margin-top: 30px;
}
#banner_404_number{
font-size: 250px;
line-height: 1;
color: #b0b0b0;
white-space: nowrap;
}
#banner_404_number mark{
display: inline-block;
line-height: 0.83em;
padding: 0 20px;
color: #fff;
border-radius: 30px 0;
vertical-align: bottom;
}
#banner_404_content{
font-size: 27px;
line-height: 40px;
font-weight: 300;
color: #b0b0b0;
}
#banner_404_title{
color: #fff;
font-size: 2.3em;
text-transform: uppercase;
}
#banner_404_away .prospect_button{
color: #fff;
}   .select2-container .select2-choice,
.select2-container .select2-choice .select2-arrow,
.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices{
background-image: none;
background-color: transparent;	
}
.select2-results .select2-result,
.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-ajax-error,
.select2-results .select2-selection-limit{
background-color: transparent;		
}
.select2-container .select2-choice{
line-height: inherit;
padding: 0;
height: auto;
}
.select2-search{
padding: 0;
}
.select2-search input[type="text"]{
background-image: none;
}
.select2-results{
margin: 0;
padding: 0;
}
.select2-results .select2-result-label{
padding: 0;
}
.select2-container .select2-choice .select2-arrow b{
background-image: none;	
}
.select2-container-active .select2-choice,
.select2-container-active .select2-choices,
.select2-drop{
-webkit-box-shadow: none;
box-shadow: none;
} .select2-drop{
z-index: 9999;
}
.select2-container .select2-choice{
position: relative;
z-index: 2;
}
.select2-container{
width: 270px;
max-width: 100%;
z-index: 1;
}
.select2-container li:before{
display: none;
}
.select2-container,
.select2-container .select2-choice .select2-arrow,
.select2-container-active,
.select2-container .select2-choice,
.select2-container .select2-choices,
.select2-container-active .select2-choice,
.select2-container-active .select2-choices,
.select2-drop-active,
.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices,
.select2-drop.select2-drop-above.select2-drop-active{
border-color: #e1e1e1;
}
.woocommerce .woocommerce-ordering .select2-container .select2-choice {
border: 1px solid #e1e1e1;
}
.select2-container .select2-choice{
padding: 12px 0 12px 10px;
}
.select2-container .select2-choice > .select2-chosen{
margin-right: 46px;
}
.select2-container .select2-choice .select2-arrow{
width: 36px;
}
.select2-container .select2-choice .select2-arrow b{
font-family: FontAwesome;
text-align: center;
}
.select2-container .select2-choice .select2-arrow b:before{
content: "\f078";
line-height: 46px;
}
.select2-search input[type="text"]{
border-top: 1px solid #e1e1e1;
border-bottom: 1px solid #e1e1e1;
border-left-style: none;
border-right-style: none;
padding: 5px 10px;
border-radius: 0;
}
.select2-results .select2-result,
.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-ajax-error,
.select2-results .select2-selection-limit{
padding: 5px 10px;
}
.select2-results .select2-result + .select2-result{
border-top: 1px solid #e1e1e1;
}
.select2-results .select2-highlighted{
background-color: transparent;
color: inherit;
color: #e95f58;
}
.select2-dropdown-open,
.select2-drop,
.select2-drop.select2-drop-above{
-webkit-box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.2);
-moz-box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.2);
box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.2);
}
.select2-dropdown-open,
.select2-drop{
border-radius: 0 0 8px 8px;
}
.select2-drop.select2-drop-above{
border-radius: 8px 8px 0 0;	
}
.select2-drop.select2-drop-above{
border-bottom: 1px solid #e1e1e1;
}
.select2-drop.select2-drop-above .select2-search input{
margin-top: auto;
border-top-style: none;
}
.select2-container .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choice{
background-color: #fff;
} .select2-results{
background-color: transparent;
}
.select2-container .select2-choice .select2-arrow b:after{
display: none;
}
.select2-container .select2-choice .select2-arrow{
border-left: 0;
}
.select2-container.select2-dropdown-open .select2-choice .select2-arrow{
border-left-style: none;	
}
.select2-drop.select2-drop-above .select2-search input{
border-radius: 4px 4px 0 0;
}   #mobile_header{
display: none;
padding: 14px 0;
}
body.cws_mobile #site_header{
display: none;
}
body.cws_mobile #mobile_header{
display: block;
} #mobile_menu_wrapper{
position: absolute;
left: 0;
top: 100%;
width: 100%;
display: none;
-webkit-box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.24);
-moz-box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.24);
box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.24);
width: calc(100% - 30px);
margin: 0 15px;
}
#mobile_menu_wrapper > .prospect_layout_container{
display: block;
padding-top: 14px;
padding-bottom: 14px;
}
#mobile_menu{
display: block;
}
#mobile_menu .menu-item{
border-bottom: 1px solid transparent;
}
#mobile_menu .sub-menu .menu-item:first-of-type:before,
#mobile_menu .menu-item:after{
content: "";
display: block;
position: absolute;
top: 100%;
right: 0;
width: 0;
height: 1px;
background-color: #f2f2f2;
-webkit-transition: all 0.6s ease-out;
transition: all 0.6s ease-out;
}
#mobile_menu .sub-menu .menu-item:first-of-type:before{
display: block;
top: 0;
left: auto;
height: 0;
}
#mobile_menu .menu-item:after{
top: 100%;
}
#mobile_header.sandwich_active .menu-item:after,
#mobile_header.sandwich_active .sub-menu .menu-item:first-of-type:before{
width: 100%;
}
#mobile_menu .menu-item:last-of-type{
border-bottom-style: none;
}
#mobile_menu .sub-menu .menu-item:first-of-type{
border-top: 1px solid transparent;	
}
#mobile_menu .menu-item:last-of-type:after{
display: none;
}
#mobile_menu .menu-item{
display: block;
white-space: normal;
}
#mobile_menu .sub-menu{
position: relative;
top: auto;
left: auto;
right: auto;
padding-left: 16px;
background-color: transparent;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
border-radius: 0;
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
opacity: 1;	
}
#mobile_menu .sub-menu .menu-item.menu-item-has-children{
display: block;
}
#mobile_menu .sub-menu .menu-item.menu-item-has-children > *{
display: block;
}
#mobile_menu > .menu-item > .sub-menu{
border-top-style: none;
}
#mobile_menu .sub-menu{
margin-left: auto;
}
#mobile_menu .sub-menu:before{
display: none;
}
#mobile_menu .menu-item.right .sub-menu .sub-menu{
top: auto;
right: auto;
margin-right: auto;
}
#mobile_menu > .menu-item + .menu-item:before{
display: none !important;
}
#mobile_menu > .menu-item > a,
#mobile_menu .sub-menu .menu-item > a,
#mobile_menu > .menu-item > span,
#mobile_menu .sub-menu .menu-item > span{
padding: 0;
}
#mobile_menu .sub-menu .menu-item > a{
border: 0;
}
#mobile_menu .menu-item .pointer{
display: block;	
}
#mobile_menu .menu-item > .pointer{
position: absolute;
top: 0;
right: 0;
cursor: pointer;
}
#mobile_menu .sub-menu,
#mobile_menu .sub-menu .menu-item.menu-item-has-children > .sub-menu{
height: 0;
box-sizing: border-box;
overflow: hidden;
padding: 0;			
margin: 0;			
}
#mobile_menu .menu-item.active .sub-menu,
#mobile_menu .sub-menu .menu-item.menu-item-has-children.active > .sub-menu{
height: auto;
}
.main_menu .menu-item > .pointer{
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.main_menu .menu-item.active > .pointer{
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
}
#mobile_menu .menu-item > .depth,
#mobile_menu .menu-item.menu-item-has-children > .depth,
#mobile_menu .sub-menu .menu-item > .depth,
#mobile_menu .sub-menu .menu-item.menu-item-has-children > .depth,
#mobile_menu .menu-item > a,
#mobile_menu .menu-item.menu-item-has-children > a,
#mobile_menu .sub-menu .menu-item > a,
#mobile_menu .sub-menu .menu-item.menu-item-has-children > a,
#mobile_menu .menu-item > span,
#mobile_menu .menu-item.menu-item-has-children > span,
#mobile_menu .sub-menu .menu-item > span,
#mobile_menu .sub-menu .menu-item.menu-item-has-children > span{
display: inline;
} #mobile_header .site_header .prospect_layout_container{
display: block;
}
#mobile_header #site_header{
padding-top: 20px;
padding-bottom: 20px;
}
#mobile_header .site_header .prospect_layout_container > * + *,
#mobile_header .site_header .prospect_layout_container + .prospect_layout_container{
margin-top: 20px;
}
#mobile_header .header_logo_img{
margin-left: auto;
margin-right: auto;
}  .cws_loader_holder{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: transparent;
z-index: 1;
display: none;
}
.cws_loader_holder.active{
display: block;
}
.cws_loader_container{
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #fafafa;
z-index: 1030;
-webkit-transition: opacity 0.8s ease;
-moz-transition: opacity 0.8s ease;
-ms-transition: opacity 0.8s ease;
transition: opacity 0.8s ease;
}
.cws_loader {
width: 100px;
height: 100px;
position: fixed;
top: 50%;
left: 50%;
margin: -50px 0 0 -50px;
border-radius: 50%;
animation: fadeIn 2s 1 ;
-webkit-animation-fill-mode: forwards; animation-fill-mode: forwards;
}
.cws_loader span {
color: black;
display: block;
top: 100%;
position: absolute;
font-size: 0.8em;
width: 100%;
font-family: 'Chathura', sans-serif;
text-align: center;
margin: 8px;
letter-spacing: 0.3em;
}
.hex:nth-child(1) {
top: 10px;
left: 17px;
-webkit-animation-delay: -0.1s;
-moz-animation-delay: -0.1s;
-ms-animation-delay: -0.1s;
-o-animation-delay: -0.1s;
animation-delay: -0.1s;
}
.hex:nth-child(2) {
top: 10px;
left: 51px;
-webkit-animation-delay: -0.2s;
-moz-animation-delay: -0.2s;
-ms-animation-delay: -0.2s;
-o-animation-delay: -0.2s;
animation-delay: -0.2s;
}
.hex:nth-child(3) {
top: 40px;
left: 70px;
-webkit-animation-delay: -0.3s;
-moz-animation-delay: -0.3s;
-ms-animation-delay: -0.3s;
-o-animation-delay: -0.3s;
animation-delay:-0.3s;
}
.hex:nth-child(4) {
top: 70px;
left: 51px;
-webkit-animation-delay: -0.4s;
-moz-animation-delay: -0.4s;
-ms-animation-delay: -0.4s;
-o-animation-delay: -0.4s;
animation-delay:-0.4s;
}
.hex:nth-child(5) {
top: 70px;
left: 17px;
-webkit-animation-delay: -0.5s;
-moz-animation-delay: -0.5s;
-ms-animation-delay: -0.5s;
-o-animation-delay: -0.5s;
animation-delay:-0.5s;
}
.hex:nth-child(6) {
top: 40px;
left: 0;
-webkit-animation-delay: -0.6s;
-moz-animation-delay: -0.6s;
-ms-animation-delay: -0.6s;
-o-animation-delay: -0.6s;
animation-delay:-0.6s;
}
.hex:nth-child(7) {
top: 40px;
left: 35px;
-webkit-animation-delay: -0.7s;
-moz-animation-delay: -0.7s;
-ms-animation-delay: -0.7s;
-o-animation-delay: -0.7s;
animation-delay: -0.7s;
}
.hex:nth-child(8) {
top: 10px;
left: 17px;
-webkit-animation-delay: -0.1s;
-moz-animation-delay: -0.1s;
-ms-animation-delay: -0.1s;
-o-animation-delay: -0.1s;
animation-delay: -0.1s;
}
.hex {
position: absolute;
width: 30px; 
height: 20px;
background: #38cfae;
opacity: 0.2;
animation: fade 1.5s infinite ease;
box-shadow: 0 0 20px #38cfae, 0 0 20px #38cfae;
opacity: 0.1;
}
.hex:before, .hex:after {
position: absolute;
content: "";
width: 0;
border-left: 15px solid transparent;
border-right: 15px solid transparent;
}
.hex:before {
border-bottom: 8px solid #38cfae;
bottom: 100%;
}
.hex:after {
width: 0; 
top: 100%; 
border-top: 8px solid #38cfae;
}
@keyframes fade {
0% { opacity: 0.5; transform:scale(1); }
7% { opacity: 0; transform:scale(0.2);}
42% { opacity: 0; transform:scale(0.2);}
49% { opacity: 0.5; transform:scale(1);}
100% { opacity: 0.5;transform:scale(1); }
}
@keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}  #lang_sel,
.menu-item.menu-item-language .sub-menu.submenu-languages{
min-width: 150px;
}
#lang_sel ul li + li,
#lang_sel li > ul > li:first-child{
margin-top: auto;
}
#lang_sel ul li{
padding-left: 0;
}
#lang_sel ul li:before{
display: none;
}
#lang_sel > ul > li{
position: relative;
}
#lang_sel > ul > li > ul{
display: none;
position: absolute;
top: 100%;
left: 0;
width: 100%;
z-index: 2;
}
#lang_sel > ul > li:hover > ul{
display: block;
}
#lang_sel a{
display: block;
padding: 5px 24px 5px 12px;
}
#lang_sel > ul > li:after{
content: "";
display: block;
position: absolute;
top: 50%;
right: 12px;
margin-top: -3px;
margin-right: -6px;
width: 0;
height: 0;
border-width: 6px;
border-style: solid;
border-color: transparent;
border-top-color: #e1e1e1;
}
#lang_sel,
#lang_sel > ul > li > ul{
background-color: #fff;	
}
.widget #lang_sel a{
padding: 0 24px 0 12px;
}
.widget #lang_sel li ul li:first-of-type{
margin-top: auto;
}
.widget #lang_sel li ul li:last-of-type{
padding-bottom: 13px;
}
.widget #lang_sel>ul>li>ul{
padding-left: 0;
border-radius: 0 0 4px 4px;
}
.widget #lang_sel:hover,
.widget #lang_sel:hover>ul>li>ul{
-webkit-box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.2);
-moz-box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.2);
box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.2);
}
.menu-item.menu-item-language img{
margin-right: 1ex;
}
#top_panel_bar #lang_sel{
display: table-cell;
font-size: 15px;
line-height: 24px;
}
#top_panel_bar #lang_sel ul{
color: #fff;
}
#top_panel_bar #lang_sel ul li{
border-bottom: 1px solid #e1e1e1;
}
#top_panel_bar #lang_sel ul ul li:first-of-type{
border-top: 1px solid #e1e1e1;	
}
#top_panel_bar #lang_sel ul li:last-of-type{
border-bottom-style: none;
}
#top_panel_bar #lang_sel,
#top_panel_bar #lang_sel > ul > li > ul{
background-color: #4bbcd7;
}
#top_panel_bar #lang_sel a{
padding-top: 8px;
padding-bottom: 8px;
}
#top_panel_bar #lang_sel > ul > li > ul{
border-radius: 0 0 4px 4px;
}
#top_panel_bar #lang_sel > ul > li:after{
border-top-color: #fff;
}
#footer_icl #lang_sel > ul > li > ul{
top: auto;
bottom: 100%;
}
#footer_icl #lang_sel a{
padding-top: 8px;
padding-bottom: 8px;
}
#footer_icl{
margin-top: -8px;
margin-bottom: -8px;
}
#footer_icl #lang_sel,
#footer_icl #lang_sel > ul > li > ul{
background-color: #2d3339;	
}
#footer_icl #lang_sel > ul > li:after{
-webkit-transform: rotate(-180deg);
-ms-transform: rotate(-180deg);
transform: rotate(-180deg);
margin-top: -9px;
border-top-color: #fff;
}
.wpml-ls-statics-footer.wpml-ls-legacy-dropdown .wpml-ls-item:before{
display: none;
}
.wpml-ls-statics-footer.wpml-ls-legacy-dropdown .wpml-ls-sub-menu {
bottom: 100%;
top: initial;
}
.wpml-ls-statics-footer.wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after {
border: .35em solid transparent;
border-top: .35em solid transparent;
border-bottom: .5em solid;
position: absolute;
right: 10px;
top: calc(50% - .675em);
}
body > .wpml-ls-statics-footer{
display: none;
}  @media screen and ( max-width: 1190px ){
#page.single_sidebar .posts_grid_4 .item,
#page.single_sidebar .grid_col_3,
#page.single_sidebar .crsl-grid-4 .item{
width: 33.33%;
}
#page.double_sidebar .posts_grid_3 .item,
#page.double_sidebar .grid_col_4,
#page.double_sidebar .crsl-grid-3 .item,
#page.double_sidebar .posts_grid_4 .item,
#page.double_sidebar .grid_col_3,
#page.double_sidebar .crsl-grid-4 .item{
width: 50%;
}
#footer_widgets_container{
margin-left: -10px;
margin-right: -10px;
}
#footer_widgets_container .widget{
padding-left: 10px;
padding-right: 10px;
}
#footer_widgets_container .widget:nth-child(1):nth-last-child(5),
#footer_widgets_container .widget:nth-child(2):nth-last-child(4),
#footer_widgets_container .widget:nth-child(3):nth-last-child(3),
#footer_widgets_container .widget:nth-child(4):nth-last-child(2),
#footer_widgets_container .widget:nth-child(5):nth-last-child(1)	{
width: 172px;
}
#footer_widgets_container .widget:nth-child(1):nth-last-child(4),
#footer_widgets_container .widget:nth-child(2):nth-last-child(3),
#footer_widgets_container .widget:nth-child(3):nth-last-child(2),
#footer_widgets_container .widget:nth-child(4):nth-last-child(1){
width: 220px;
}
#footer_widgets_container .widget:nth-child(1):nth-last-child(3),
#footer_widgets_container .widget:nth-child(2):nth-last-child(2),
#footer_widgets_container .widget:nth-child(3):nth-last-child(1){
width: 300px;
}
#footer_widgets_container .widget:nth-child(1):nth-last-child(2),
#footer_widgets_container .widget:nth-child(2):nth-last-child(1){
width: 460px;
}
#footer_widgets_container .widget{
-webkit-flex: 1 1 auto;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
}
.banner_offer{
font-size: 70px;
}
.banner_title{
font-size: 70%;
padding: 20px 0;
}
.vc_col-sm-4 .prospect_milestone .prospect_milestone_title {
font-size: 1em;
margin-top: -10px;
}
.vc_col-sm-4 .prospect_milestone .odometer-inside {
font-size: 30px;
}
.vc_col-md-4 .vc_column-inner ,
.vc_col-sm-6 .vc_column-inner {
padding-bottom: 20px;
}
}
@media screen and ( max-width: 1020px ){
.cws_staff_posts_grid.posts_grid_2.posts_grid_carousel .cws_staff_posts_grid_post_floated_media {
float: none !important;
}
.cws_staff_posts_grid.posts_grid_2.posts_grid_carousel .prospect_cws_staff_posts_grid_post_data {
text-align: center !important;
margin-right: auto !important;
margin-left: auto !important;
padding: 0 !important;
}
}
@media screen and ( min-width: 981px ){
#page.single_sidebar .cws_staff_posts_grid.posts_grid_2 .floated_media.posts_grid_post_floated_media.cws_staff_posts_grid_post_floated_media,
#page.double_sidebar .cws_staff_posts_grid.posts_grid_2 .floated_media.posts_grid_post_floated_media.cws_staff_posts_grid_post_floated_media{
margin-right: auto;
}
#page.single_sidebar .cws_staff_posts_grid.posts_grid_2 .floated_media.posts_grid_post_floated_media.cws_staff_posts_grid_post_floated_media > .floated_media_wrapper,
#page.double_sidebar .cws_staff_posts_grid.posts_grid_2 .floated_media.posts_grid_post_floated_media.cws_staff_posts_grid_post_floated_media > .floated_media_wrapper{
float: none;
margin-right: auto;		
}
#page.single_sidebar .cws_staff_posts_grid.posts_grid_2 .prospect_cws_staff_posts_grid_post_data,
#page.double_sidebar .cws_staff_posts_grid.posts_grid_2 .prospect_cws_staff_posts_grid_post_data{
padding: 0;
}
#page.single_sidebar .cws_staff_posts_grid.posts_grid_2 .prospect_cws_staff_posts_grid_post_data:not(:only-child),
#page.double_sidebar .cws_staff_posts_grid.posts_grid_2 .prospect_cws_staff_posts_grid_post_data:not(:only-child){
margin-top: 20px;
}
#page.single_sidebar .cws_staff_posts_grid.posts_grid_2 .cws_staff_photo img,
#page.double_sidebar .cws_staff_posts_grid.posts_grid_2 .cws_staff_photo img{
margin-left: auto;
margin-right: auto;
border-radius: 6px;
}
#page.single_sidebar .cws_staff_posts_grid.posts_grid_2 .cws_staff_post.posts_grid_post,
#page.double_sidebar .cws_staff_posts_grid.posts_grid_2 .cws_staff_post.posts_grid_post{
color: inherit;
}
#page.single_sidebar .cws_staff_posts_grid.posts_grid_2 .cws_staff_post.posts_grid_post > .prospect_wrapper,
#page.double_sidebar .cws_staff_posts_grid.posts_grid_2 .cws_staff_post.posts_grid_post > .prospect_wrapper{
background-color: transparent !important;
}
#page.single_sidebar .cws_staff_posts_grid.posts_grid_2 .cws_staff_post.posts_grid_post .cws_staff_posts_grid_post_data_divider,
#page.double_sidebar .cws_staff_posts_grid.posts_grid_2 .cws_staff_post.posts_grid_post .cws_staff_posts_grid_post_data_divider{
background-color: #fff;
}
#page.single_sidebar .cws_staff_posts_grid.posts_grid_2 .cws_staff_post.posts_grid_post .post_social_links,
#page.double_sidebar .cws_staff_posts_grid.posts_grid_2 .cws_staff_post.posts_grid_post .post_social_links{
color: #fff;
}
}
@media screen and ( max-width: 980px ){
.posts_grid_4 .item,
.grid_col_3,
.crsl-grid-4 .item,
#page.double_sidebar .posts_grid_4 .item,
#page.double_sidebar .grid_col_3,
#page.double_sidebar .crsl-grid-4 .item{
width: 33.33%;		
}
.posts_grid_3 .item,
.grid_col_4,
.crsl-grid-3 .item{
width: 50%;
}
.posts_grid_2.cws_staff_posts_grid .item{
width: 100%;
}
#footer_widgets_container{
margin-left: -9px;
margin-right: -9px;
}
#footer_widgets_container .widget{
padding-left: 9px;
padding-right: 9px;
}
#footer_widgets_container .widget:nth-child(1):nth-last-child(5),
#footer_widgets_container .widget:nth-child(2):nth-last-child(4),
#footer_widgets_container .widget:nth-child(3):nth-last-child(3){
width: 232px;
}
#footer_widgets_container .widget:nth-child(4):nth-last-child(2),
#footer_widgets_container .widget:nth-child(5):nth-last-child(1){
width: 360px;
}
#footer_widgets_container .widget:nth-child(1):nth-last-child(4),
#footer_widgets_container .widget:nth-child(2):nth-last-child(3),
#footer_widgets_container .widget:nth-child(3):nth-last-child(2),
#footer_widgets_container .widget:nth-child(4):nth-last-child(1){
width: 171px;
}
#footer_widgets_container .widget:nth-child(1):nth-last-child(3),
#footer_widgets_container .widget:nth-child(2):nth-last-child(2),
#footer_widgets_container .widget:nth-child(3):nth-last-child(1){
width: 234px;
}
#footer_widgets_container .widget:nth-child(1):nth-last-child(2),
#footer_widgets_container .widget:nth-child(2):nth-last-child(1){
width: 360px;
}
.vc_col-sm-4 .prospect_services_column.icon_right .prospect_services_icon,
.vc_col-sm-4 .prospect_services_column.icon_left .prospect_services_icon{
float: none;
margin: 0;
}
.vc_col-sm-4 .prospect_services_column.icon_right .prospect_services_desc p,
.vc_col-sm-4 .prospect_services_column.icon_left .prospect_services_desc p{
text-align: center !important;
}
.vc_row.over_section{
display: block;
}
.posts_grid_2 .post_post_header{
flex-direction: column;	
}
.posts_grid_2 .post_post_header .info,
.posts_grid_2 .post_post_header .comments_link{
justify-content: flex-start;
}
.post_posts_grid.posts_grid_medium .floated_media_wrapper{
float: none;
}
#site_footer > div{
flex-direction: column-reverse;
align-items: center;
align-content: center;
display: flex;
}
#site_footer > div > * {
padding: 5px 0;
}
#site_footer .wpml_language_switch{
margin-left: 0;
}
}
@media screen and ( max-width: 980px ) and ( min-width: 768px ){
#page.single_sidebar .posts_grid_3 .item,
#page.single_sidebar .grid_col_4,
#page.single_sidebar .crsl-grid-3 .item,
#page.double_sidebar .posts_grid_3 .item,
#page.double_sidebar .grid_col_4,
#page.double_sidebar .crsl-grid-3 .item{
width: 33.33%;
}
.vc_column_container.vc_col-sm-3 .prospect_pricing_plan .pricing_plan_price{
font-size: 57px;
}
.vc_column_container.vc_col-sm-3 .prospect_pricing_plan .pricing_plan_button .prospect_button{
min-width: 0;
}
}
@media screen and (max-width: 782px){
body.admin-bar #sticky{
margin-top: 46px;
}
}
@media screen and ( max-width: 767px ){
.vc_row{
margin-bottom: -20px;
}
.vc_row-full-width + .vc_row[data-vc-full-width="true"]{
margin-bottom: auto;
}
.vc_column-inner{
padding-bottom: 20px;
}
.posts_grid_4 .item,
.grid_col_3,
.crsl-grid-4 .item,
#page.single_sidebar .posts_grid_4 .item,
#page.single_sidebar .grid_col_3,
#page.single_sidebar .crsl-grid-4 .item,
#page.double_sidebar .posts_grid_4 .item,
#page.double_sidebar .grid_col_3,
#page.double_sidebar .crsl-grid-4 .item{
width: 50%;		
}
#comments .comments_children{
padding-left: 18px;
}
#comments .comment_list > * + *,
#comments .comments_children > *{
margin-top: 20px;
}
#commentform .comment-form-author,
#commentform .comment-form-email,
#commentform .comment-form-url{
float: none;
width: 100%;
}
#top_panel .prospect_layout_container > *,
#site_footer .prospect_layout_container > *{
display: block;
}
#top_panel_bar{
float: right;
}
#top_panel address{
padding-top: 1.333em;
}
#site_footer{
text-align: center;
}
#site_footer .prospect_layout_container > * + *{
margin-top: 10px;
}
#footer_social{
float: none;
}
#footer_widgets_container{
margin-left: -2%;
margin-right: -2%;
}
#footer_widgets_container .widget{
padding-left: 2%; 
padding-right: 2%; 
}
#footer_widgets_container .widget:nth-child(1):nth-last-child(5),
#footer_widgets_container .widget:nth-child(2):nth-last-child(4),
#footer_widgets_container .widget:nth-child(3):nth-last-child(3),
#footer_widgets_container .widget:nth-child(4):nth-last-child(2){
width: 46%;
}
#footer_widgets_container .widget:nth-child(5):nth-last-child(1){
width: 96%;
}
#footer_widgets_container .widget:nth-child(1):nth-last-child(4),
#footer_widgets_container .widget:nth-child(2):nth-last-child(3),
#footer_widgets_container .widget:nth-child(3):nth-last-child(2),
#footer_widgets_container .widget:nth-child(4):nth-last-child(1){
width: 46%;
}
#footer_widgets_container .widget:nth-child(1):nth-last-child(3),
#footer_widgets_container .widget:nth-child(2):nth-last-child(2){
width: 46%;		
}
#footer_widgets_container .widget:nth-child(3):nth-last-child(1){
width: 96%;		
}
#footer_widgets_container .widget:nth-child(1):nth-last-child(2),
#footer_widgets_container .widget:nth-child(2):nth-last-child(1){
width: 46%;
}
.prospect_cta{
text-align: center;
}
.cta_holder{
display: block;
}
.cta_holder > *{
display: block;
vertical-align: baseline;
}
.cta_holder > * + *{
padding-left: 0;
margin-top: 12px;
}
.cta_icon{
margin-left: auto;
margin-right: auto;
}
#banner_404 > * + *{
margin-top: 20px;
}
#banner_404_number{
font-size: 160px;
}
#banner_404_content{
font-size: 24px;
line-height: 36px;
}
#top_panel{
display: none;
}	
.post_post_header{
flex-direction: column;	
}
.post_post_header .info,
.post_post_header .comments_link{
justify-content: flex-start;
}
.post_post_content_wrapper{
padding: 20px 30px;
}
.post_posts_grid.posts_grid_small .floated_media,
.post_posts_grid.posts_grid_medium .floated_media{
margin-right: 0;
}
.post_posts_grid.posts_grid_small .floated_media > .floated_media_wrapper,
.post_posts_grid.posts_grid_medium .floated_media > .floated_media_wrapper{
max-width: calc( 100% - 60px );
}
.post_posts_grid.posts_grid_small .floated_media_wrapper,
.post_posts_grid.posts_grid_medium .floated_media_wrapper{
margin-left: 30px;
float: none;
}
}
@media screen and ( max-width: 700px ){
.small_type .latest_post_list_start, 
.small_type .latest_post_list_end {
margin: auto;
margin-left: 38px;
}	
.small_type .posts_time_line_wrap:before {
left: 45px;
}
.small_type .latest_post_post .latest_post_post_date {
margin-right: 30px !important;
margin-left: 30px !important;
}
.small_type .latest_post_post:nth-child(even) .latest_post_post_date .date ,
.small_type .latest_post_post:nth-child(odd) .latest_post_post_date .date {
top: 0; 
right: 0;
transform: rotate3d(0,0,1,-90deg);
left: -80px;
}
.small_type .latest_post_post:nth-child(even) {
flex-direction: row;
}
.small_type .latest_post_list_more {
margin-left: 9px;
}
.small_type .latest_post_post:nth-child(even) .latest_post_post_data:before {
right: initial;
left: -10px;
box-shadow: -3px 3px 5px -2px rgba(0, 0, 0, 0.2);
}
.small_type .latest_post_post:nth-child(even) .latest_post_post_data {
text-align: left;
flex-direction: row;
padding-right: 0;
}
.small_type .latest_post_post:nth-child(even) .latest_post_post_media {
float: left;
margin-right: 20px;
margin-left: 0;
}
}
@media screen and ( max-width: 600px ){
body.admin-bar #sticky{
margin-top: auto;
}	
.filter_wrap .filter {
margin: 0 20px 0 20px;
}
.large_type .latest_post_post .latest_post_post_media {
float: none !important;
margin-left: auto !important;
margin-right: auto !important;
width: 120px;
}
.large_type .latest_post_post .latest_post_post_data {
text-align: center !important;
}
.large_type .latest_post_post:before {
top: initial; 
height: 32px;
bottom: 0;
}
.large_type .latest_post_post .latest_post_post_title {
margin-top: 0; 
}
.site_header:not(.menu_boxed) .prospect_layout_container {
width: calc(100% - 40px);
margin: 0 20px;
}
.product .woo_product_post_title.posts_grid_post_title,
.product .prospect_after_shop_loop_item_title_wrapper{
margin: 0 10px;
}
}
@media screen and ( max-width: 470px ) {
.cws_portfolio_posts_grid.hexagon_grid .prospect_grid{
padding-top: 0;
}
.cws_portfolio_posts_grid:not(.posts_grid_carousel) .portfolio_item_post.hex_style{
margin-top: 10px;
}
.portfolio_item_post.hex_style.wrap1{
transform: translateX(0);
}
.pagination .page_links > *{
margin: 0 5px;
}
}
@media screen and ( max-width: 479px ){
.floated_media.posts_grid_post_floated_media.cws_staff_posts_grid_post_floated_media{
margin-right: auto;
}
.floated_media.posts_grid_post_floated_media.cws_staff_posts_grid_post_floated_media > .floated_media_wrapper{
float: none;
margin-right: auto;
}
.prospect_cws_staff_posts_grid_post_data{
padding: 0;
}
.prospect_cws_staff_posts_grid_post_data:not(:only-child){
margin-top: 20px;
}
.cws_staff_posts_grid .cws_staff_photo img{
margin-left: auto;
margin-right: auto;
border-radius: 6px;
}
.cws_staff_post.posts_grid_post{
color: inherit;
}
.cws_staff_post.posts_grid_post > .prospect_wrapper{
background-color: transparent !important;
}
.cws_staff_post.posts_grid_post .cws_staff_posts_grid_post_data_divider{
background-color: #fff;
}
.cws_staff_post.posts_grid_post .post_social_links{
color: #fff;
}
.posts_grid_2 .item,
.grid_col_6,
.crsl-grid-2 .item,
.posts_grid_3 .item,
.grid_col_4,
.crsl-grid-3 .item,
.posts_grid_4 .item,
.grid_col_3,
.crsl-grid-4 .item{
width: 100%;
}
#page.single_sidebar .posts_grid_3.cws_portfolio_posts_grid .item{
width: 50%;
}
#footer_widgets_container,
#footer_widgets_container .widget{
margin-left: auto;
margin-right: auto;
}
#footer_widgets_container .widget:nth-child(1n+1):nth-last-child(1n+1){
width: 100%;
}
.prospect_banner .banner_wrapper > *,
.prospect_banner .banner_title,
.prospect_banner.icon_left .banner_wrapper > *,
.prospect_banner.icon_left .banner_title{
float: none;
margin-left: auto;
margin-right: auto;
}
.banner_wrapper{
text-align: center;
margin-top: -20px;
}
.banner_wrapper > *{
display: block;
float: none;
margin-left: auto;
margin-top: 20px;
}
.banner_title{
padding-top: 0;
padding-bottom: 0;
}
#banner_404_number{
font-size: 120px;
}
#banner_404_content{
font-size: 24px;
line-height: 36px;
}
}
@media screen and ( max-width: 1200px ) {
#gallery-1 .gallery-item.medium_size.col_4{
width: 33%;
}
#gallery-1 .gallery-item.thumbnail_size.col_6,
#gallery-1 .gallery-item.thumbnail_size.col_5{
width: 25%;
}
#gallery-1 .gallery-item.mini_size.col_9,
#gallery-1 .gallery-item.mini_size.col_8{
width: 14%;
}
}
@media screen and ( max-width: 980px ) {
#gallery-1 .gallery-item.medium_size.col_3,
#gallery-1 .gallery-item.medium_size.col_4{
width: 50%;
}
#gallery-1 .gallery-item.thumbnail_size.col_6,
#gallery-1 .gallery-item.thumbnail_size.col_5,
#gallery-1 .gallery-item.thumbnail_size.col_4{
width: 33%;
}
#gallery-1 .gallery-item.mini_size.col_9,
#gallery-1 .gallery-item.mini_size.col_8,
#gallery-1 .gallery-item.mini_size.col_7{
width: 20%;
}
}
@media screen and ( max-width: 770px ) {
#gallery-1 .gallery-item.big_size.col_2,
#gallery-1 .gallery-item.big_size.col_3{
width: 100%;
}
}
@media screen and ( max-width: 730px ) {
#gallery-1 .gallery-item.mini_size.col_9,
#gallery-1 .gallery-item.mini_size.col_8,
#gallery-1 .gallery-item.mini_size.col_7{
width: 25%;
}
}
@media screen and ( max-width: 700px ) {
.cws_portfolio_single_content{
padding: 40px;
}
}	
@media screen and ( max-width: 620px ) {
#gallery-1 .gallery-item.thumbnail_size.col_6,
#gallery-1 .gallery-item.thumbnail_size.col_5,
#gallery-1 .gallery-item.thumbnail_size.col_4,
#gallery-1 .gallery-item.thumbnail_size.col_3{
width: 50%;
}
}
@media screen and ( max-width: 550px ) {
#gallery-1 .gallery-item.medium_size.col_2,
#gallery-1 .gallery-item.medium_size.col_3,
#gallery-1 .gallery-item.medium_size.col_4{
width: 100%;
}
#gallery-1 .gallery-item.mini_size.col_9,
#gallery-1 .gallery-item.mini_size.col_8,
#gallery-1 .gallery-item.mini_size.col_7{
width: 33%;
}
}
@media screen and ( max-width: 450px ) {
#gallery-1 .gallery-item.thumbnail_size.col_6,
#gallery-1 .gallery-item.thumbnail_size.col_5,
#gallery-1 .gallery-item.thumbnail_size.col_4,
#gallery-1 .gallery-item.thumbnail_size.col_3,
#gallery-1 .gallery-item.thumbnail_size.col_2{
width: 100%;
}
#gallery-1 .gallery-item.mini_size.col_9,
#gallery-1 .gallery-item.mini_size.col_8,
#gallery-1 .gallery-item.mini_size.col_7{
width: 50%;
}
}
@media screen and ( max-width: 400px ) {
#gallery-1 .gallery-item.big_size{
padding: 0;
}
.cws_portfolio_single_content{
padding: 40px 15px;
}
}