@charset 'UTF-8';
@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;
} @-webkit-keyframes fadeInLeftSmall {
from {
opacity: 0;
-webkit-transform: translate3d(-40px, 0, 0);
transform: translate3d(-40px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeftSmall {
from {
opacity: 0;
-webkit-transform: translate3d(-40px, 0, 0);
transform: translate3d(-40px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeftSmall {
-webkit-animation-name: fadeInLeftSmall;
animation-name: fadeInLeftSmall;
}
@-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;
}
}
@-webkit-keyframes fadeInRightSmall {
from {
opacity: 0;
-webkit-transform: translate3d(40px, 0, 0);
transform: translate3d(40px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRightSmall {
from {
opacity: 0;
-webkit-transform: translate3d(40px, 0, 0);
transform: translate3d(40px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRightSmall {
-webkit-animation-name: fadeInRightSmall;
animation-name: fadeInRightSmall;
}
@-webkit-keyframes fadeOut_to_1 {
from {
opacity: 1;
}
to {
opacity: 0.1;
}
}
@keyframes fadeOut_to_1 {
from {
opacity: 1;
}
to {
opacity: 0.1;
}
}
.fadeOut_to_1 {
-webkit-animation-name: fadeOut_to_1;
animation-name: fadeOut_to_1;
}.lae-flex-container a:hover,
.lae-flex-slider a:hover {
outline: none;
}
.lae-slides,
.lae-slides > li,
.lae-flex-control-nav,
.lae-flex-direction-nav {
margin: 0;
padding: 0;
list-style: none;
}
.lae-flex-pauseplay span {
text-transform: capitalize;
} .lae-flexslider {
margin: 0;
padding: 0;
}
.lae-flexslider .lae-slides > li {
display: none;
-webkit-backface-visibility: hidden;
}
.lae-flexslider .lae-slides img {
width: 100%;
display: block;
}
.lae-flexslider .lae-slides:after {
content: "\0020";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
html[xmlns] .lae-flexslider .lae-slides {
display: block;
}
* html .lae-flexslider .lae-slides {
height: 1%;
}
.no-js .lae-flexslider .lae-slides > li:first-child {
display: block;
} .lae-flexslider {
margin: 0 0 60px;
padding: 4px;
position: relative;
zoom: 1;
}
.lae-flexslider .lae-slides {
zoom: 1;
}
.lae-flexslider .lae-slides img {
height: auto;
-moz-user-select: none;
}
.lae-flex-viewport {
max-height: 2000px;
-webkit-transition: all 1s ease;
transition: all 1s ease;
}
.loading .lae-flex-viewport {
max-height: 300px;
}
@-moz-document url-prefix() {
.loading .lae-flex-viewport {
max-height: none;
}
}
.carousel li {
margin-right: 5px;
}
.lae-flex-direction-nav {
*height: 0;
}
.lae-flex-direction-nav a {
text-decoration: none;
display: block;
width: 40px;
height: 40px;
margin: -20px 0 0;
position: absolute;
top: 50%;
z-index: 10;
overflow: hidden;
opacity: 0;
cursor: pointer;
color: rgba(0, 0, 0, 0.8);
text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.lae-flex-direction-nav a {
font-size: 40px;
display: inline-block;
color: rgba(0, 0, 0, 0.8);
text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
}
.lae-flex-direction-nav a.lae-flex-next:before {
content: '\f002';
}
.lae-flex-direction-nav .lae-flex-prev {
left: -50px;
}
.lae-flex-direction-nav .lae-flex-next {
right: -50px;
text-align: right;
}
.lae-flex-direction-nav .lae-flex-disabled {
opacity: 0!important;
filter: alpha(opacity=0);
cursor: default;
z-index: -1;
}
.lae-flex-pauseplay a {
display: block;
width: 20px;
height: 20px;
position: absolute;
bottom: 5px;
left: 10px;
opacity: 0.8;
z-index: 10;
overflow: hidden;
cursor: pointer;
color: #000;
}
.lae-flex-pauseplay a:before {
font-family: "flexslider-icon";
font-size: 20px;
display: inline-block;
content: '\f004';
}
.lae-flex-pauseplay a:hover {
opacity: 1;
}
.lae-flex-pauseplay a.lae-flex-play:before {
content: '\f003';
}
.lae-flex-control-nav {
width: 100%;
position: absolute;
bottom: -40px;
text-align: center;
}
.lae-flex-control-nav li {
margin: 0 6px;
display: inline-block;
zoom: 1;
*display: inline;
}
.lae-flex-control-paging li a {
width: 11px;
height: 11px;
display: block;
background: #666;
background: rgba(0, 0, 0, 0.5);
cursor: pointer;
text-indent: -9999px;
-webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
-o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
border-radius: 20px;
}
.lae-flex-control-paging li a:hover {
background: #333;
background: rgba(0, 0, 0, 0.7);
}
.lae-flex-control-paging li a.lae-flex-active {
background: #000;
background: rgba(0, 0, 0, 0.9);
cursor: default;
}
.lae-flex-control-thumbs {
margin: 5px 0 0;
position: static;
overflow: hidden;
}
.lae-flex-control-thumbs li {
width: 25%;
float: left;
margin: 0;
}
.lae-flex-control-thumbs img {
width: 100%;
height: auto;
display: block;
opacity: .7;
cursor: pointer;
-moz-user-select: none;
-webkit-transition: all 1s ease;
transition: all 1s ease;
}
.lae-flex-control-thumbs img:hover {
opacity: 1;
}
.lae-flex-control-thumbs .lae-flex-active {
opacity: 1;
cursor: default;
} @media screen and (max-width: 860px) {
.lae-flex-direction-nav .lae-flex-prev {
opacity: 1;
left: 10px;
}
.lae-flex-direction-nav .lae-flex-next {
opacity: 1;
right: 10px;
}
}  .slick-slider
{
position: relative;
display: block;
-webkit-box-sizing: border-box;
box-sizing: border-box;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-touch-callout: none;
-khtml-user-select: none;
-ms-touch-action: pan-y;
touch-action: pan-y;
-webkit-tap-highlight-color: transparent;
}
.slick-list
{
position: relative;
display: block;
overflow: hidden;
margin: 0;
padding: 0;
}
.slick-list:focus
{
outline: none;
}
.slick-list.dragging
{
cursor: pointer;
cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list
{
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.slick-track
{
position: relative;
top: 0;
left: 0;
display: block;
margin-left: auto;
margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
display: table;
content: '';
}
.slick-track:after
{
clear: both;
}
.slick-loading .slick-track
{
visibility: hidden;
}
.slick-slide
{
display: none;
float: left;
height: 100%;
min-height: 1px;
}
[dir='rtl'] .slick-slide
{
float: right;
}
.slick-slide img
{
display: block;
}
.slick-slide.slick-loading img
{
display: none;
}
.slick-slide.dragging img
{
pointer-events: none;
}
.slick-initialized .slick-slide
{
display: block;
}
.slick-loading .slick-slide
{
visibility: hidden;
}
.slick-vertical .slick-slide
{
display: block;
height: auto;
border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
display: none;
}@font-face {
font-family: 'lae-icomoon';
src:
url(//www.goclickon.com.au/wp-content/plugins/addons-for-elementor/assets/css/fonts/lae-icomoon.ttf?maw9cj) format('truetype'),
url(//www.goclickon.com.au/wp-content/plugins/addons-for-elementor/assets/css/fonts/lae-icomoon.woff?maw9cj) format('woff'),
url(//www.goclickon.com.au/wp-content/plugins/addons-for-elementor/assets/css/fonts/lae-icomoon.svg?maw9cj#lae-icomoon) format('svg');
font-weight: normal;
font-style: normal;
font-display: block;
}
[class^="lae-icon-"], [class*=" lae-icon-"] { font-family: 'lae-icomoon' !important;
speak: never;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.lae-icon-twitter-grid:before {
content: "\e926";
}
.lae-icon-piechart3:before {
content: "\e927";
}
.lae-icon-features:before {
content: "\e928";
}
.lae-icon-slider2:before {
content: "\e929";
}
.lae-icon-gallery:before {
content: "\e92a";
}
.lae-icon-team4:before {
content: "\e92b";
}
.lae-icon-team6:before {
content: "\e92c";
}
.lae-icon-stats-bars:before {
content: "\e92d";
}
.lae-icon-instagram-grid:before {
content: "\e92e";
}
.lae-icon-posts-grid:before {
content: "\e92f";
}
.lae-icon-posts-block:before {
content: "\e930";
}
.lae-icon-posts-grid-masonry:before {
content: "\e931";
}
.lae-icon-buttons:before {
content: "\e932";
}
.lae-icon-posts-carousel:before {
content: "\e933";
}
.lae-icon-pricing-table:before {
content: "\e934";
}
.lae-icon-tab-slider1:before {
content: "\e935";
}
.lae-icon-tabs5:before {
content: "\e936";
}
.lae-icon-tabs2:before {
content: "\e937";
}
.lae-icon-faq:before {
content: "\e938";
}
.lae-icon-youtube-grid:before {
content: "\e939";
}
.lae-icon-vimeo-grid:before {
content: "\e93a";
}
.lae-icon-carousel:before {
content: "\e93b";
}
.lae-icon-slider7:before {
content: "\e93c";
}
.lae-icon-slider3:before {
content: "\e93d";
}
.lae-icon-slider6:before {
content: "\e93e";
}
.lae-icon-slider4:before {
content: "\e93f";
}
.lae-icon-testimonials3:before {
content: "\e940";
}
.lae-icon-testimonials1:before {
content: "\e941";
}
.lae-icon-clients:before {
content: "\e942";
}
.lae-icon-gallery-carousel:before {
content: "\e943";
}
.lae-icon-services:before {
content: "\e944";
}
.lae-icon-testimonials:before {
content: "\e945";
}
.lae-icon-pie-chart2:before {
content: "\e946";
}
.lae-icon-heading:before {
content: "\e947";
}
.lae-icon-play:before {
content: "\e925";
}
.lae-icon-link:before {
content: "\e924";
}
.lae-icon-star-empty:before {
content: "\e901";
}
.lae-icon-rate:before {
content: "\e901";
}
.lae-icon-star:before {
content: "\e901";
}
.lae-icon-favorite:before {
content: "\e901";
}
.lae-icon-bookmark:before {
content: "\e901";
}
.lae-icon-eye:before {
content: "\e902";
}
.lae-icon-like:before {
content: "\e900";
}
.lae-icon-calendar:before {
content: "\e923";
}
.lae-icon-bubble:before {
content: "\e903";
}
.lae-icon-comment:before {
content: "\e903";
}
.lae-icon-chat:before {
content: "\e903";
}
.lae-icon-talk:before {
content: "\e903";
}
.lae-icon-arrow-left:before {
content: "\e904";
}
.lae-icon-arrow-right:before {
content: "\e905";
}
.lae-icon-aim:before {
content: "\e906";
}
.lae-icon-behance:before {
content: "\e907";
}
.lae-icon-dribbble:before {
content: "\e908";
}
.lae-icon-facebook:before {
content: "\e909";
}
.lae-icon-flickr:before {
content: "\e90a";
}
.lae-icon-googleplus:before {
content: "\e90b";
}
.lae-icon-linkedin:before {
content: "\e90c";
}
.lae-icon-pinterest:before {
content: "\e90d";
}
.lae-icon-skype:before {
content: "\e90e";
}
.lae-icon-twitter:before {
content: "\e90f";
}
.lae-icon-vimeo:before {
content: "\e910";
}
.lae-icon-zerply:before {
content: "\e911";
}
.lae-icon-quote:before {
content: "\e912";
}
.lae-icon-video-play:before {
content: "\e913";
}
.lae-icon-email:before {
content: "\e914";
}
.lae-icon-close:before {
content: "\e915";
}
.lae-icon-plus:before {
content: "\e916";
}
.lae-icon-arrow-right-toggle:before {
content: "\e917";
}
.lae-icon-menu:before {
content: "\e918";
}
.lae-icon-menu-2:before {
content: "\e919";
}
.lae-icon-fit-to:before {
content: "\e91a";
}
.lae-icon-full-screen:before {
content: "\e91b";
}
.lae-icon-arrow-left2:before {
content: "\e91c";
}
.lae-icon-arrow-left3:before {
content: "\e91d";
}
.lae-icon-arrow-right2:before {
content: "\e91e";
}
.lae-icon-arrow-right3:before {
content: "\e91f";
}
.lae-icon-start:before {
content: "\e920";
}
.lae-icon-heart:before {
content: "\e921";
}
.lae-icon-retweet:before {
content: "\e922";
}
.lae-icon-play2:before {
content: "\ea15";
}
.lae-icon-play3:before {
content: "\ea1c";
}
.lae-icon-instagram:before {
content: "\ea92";
}
.lae-icon-twitter1:before {
content: "\ea96";
}.panel-grid .widget {
overflow: initial; }
.lae-container, .lae-grid-container {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.lae-container *, .lae-container *::after, .lae-container *::before, .lae-grid-container *, .lae-grid-container *::after, .lae-grid-container *::before {
-webkit-box-sizing: inherit;
box-sizing: inherit; }
.lae-container ol, .lae-container ul, .lae-container ol > li, .lae-container ul > li, .lae-container ol:hover, .lae-container ul:hover, .lae-container ul > li:hover, .lae-container ol > li:hover, .lae-container ol > li > a, .lae-container ul > li > a, .lae-container ol > li > a:hover, .lae-container ul > li > a:hover, .lae-container img, .lae-grid-container ol, .lae-grid-container ul, .lae-grid-container ol > li, .lae-grid-container ul > li, .lae-grid-container ol:hover, .lae-grid-container ul:hover, .lae-grid-container ul > li:hover, .lae-grid-container ol > li:hover, .lae-grid-container ol > li > a, .lae-grid-container ul > li > a, .lae-grid-container ol > li > a:hover, .lae-grid-container ul > li > a:hover, .lae-grid-container img {
padding: 0;
margin: 0;
border: none;
-webkit-box-shadow: none;
box-shadow: none;
list-style: none;
background: none; }
.lae-container ol:before, .lae-container ol:after, .lae-container ul:before, .lae-container ul:after, .lae-container ol > li:before, .lae-container ol > li:after, .lae-container ul > li:before, .lae-container ul > li:after, .lae-container ol:hover:before, .lae-container ol:hover:after, .lae-container ul:hover:before, .lae-container ul:hover:after, .lae-container ul > li:hover:before, .lae-container ul > li:hover:after, .lae-container ol > li:hover:before, .lae-container ol > li:hover:after, .lae-container ol > li > a:before, .lae-container ol > li > a:after, .lae-container ul > li > a:before, .lae-container ul > li > a:after, .lae-container ol > li > a:hover:before, .lae-container ol > li > a:hover:after, .lae-container ul > li > a:hover:before, .lae-container ul > li > a:hover:after, .lae-container img:before, .lae-container img:after, .lae-grid-container ol:before, .lae-grid-container ol:after, .lae-grid-container ul:before, .lae-grid-container ul:after, .lae-grid-container ol > li:before, .lae-grid-container ol > li:after, .lae-grid-container ul > li:before, .lae-grid-container ul > li:after, .lae-grid-container ol:hover:before, .lae-grid-container ol:hover:after, .lae-grid-container ul:hover:before, .lae-grid-container ul:hover:after, .lae-grid-container ul > li:hover:before, .lae-grid-container ul > li:hover:after, .lae-grid-container ol > li:hover:before, .lae-grid-container ol > li:hover:after, .lae-grid-container ol > li > a:before, .lae-grid-container ol > li > a:after, .lae-grid-container ul > li > a:before, .lae-grid-container ul > li > a:after, .lae-grid-container ol > li > a:hover:before, .lae-grid-container ol > li > a:hover:after, .lae-grid-container ul > li > a:hover:before, .lae-grid-container ul > li > a:hover:after, .lae-grid-container img:before, .lae-grid-container img:after {
display: none; }
.lae-container a, .lae-grid-container a {
text-decoration: initial; }
.lae-container img, .lae-grid-container img {
max-width: 100%;
width: auto;
height: auto; } .lae-container {
margin-left: auto;
margin-right: auto; }
.lae-container::after {
clear: both;
content: "";
display: block; }
.panel-grid .widget {
border: 0; }
.lae-center {
text-align: center; }
.lae-grid-container {
margin-left: -20px;
margin-right: -20px;
width: calc(100% + 40px); }
.lae-grid-container::after {
clear: both;
content: "";
display: block; }
.lae-grid-container .lae-grid-item {
min-height: 1px; }
@media (max-width: 479px) {
.lae-grid-container.lae-grid-mobile-2 .lae-grid-item:nth-child(2n+1) {
clear: left; }
.rtl .lae-grid-container.lae-grid-mobile-2 .lae-grid-item:nth-child(2n+1) {
clear: right; }
.lae-grid-container.lae-grid-mobile-3 .lae-grid-item:nth-child(3n+1) {
clear: left; }
.rtl .lae-grid-container.lae-grid-mobile-3 .lae-grid-item:nth-child(3n+1) {
clear: right; }
.lae-grid-container.lae-grid-mobile-4 .lae-grid-item:nth-child(4n+1) {
clear: left; }
.rtl .lae-grid-container.lae-grid-mobile-4 .lae-grid-item:nth-child(4n+1) {
clear: right; }
.lae-grid-container.lae-grid-mobile-5 .lae-grid-item:nth-child(5n+1) {
clear: left; }
.rtl .lae-grid-container.lae-grid-mobile-5 .lae-grid-item:nth-child(5n+1) {
clear: right; }
.lae-grid-container.lae-grid-mobile-6 .lae-grid-item:nth-child(6n+1) {
clear: left; }
.rtl .lae-grid-container.lae-grid-mobile-6 .lae-grid-item:nth-child(6n+1) {
clear: right; } }
@media (min-width: 480px) and (max-width: 800px) {
.lae-grid-container.lae-grid-tablet-2 .lae-grid-item:nth-child(2n+1) {
clear: left; }
.rtl .lae-grid-container.lae-grid-tablet-2 .lae-grid-item:nth-child(2n+1) {
clear: right; }
.lae-grid-container.lae-grid-tablet-3 .lae-grid-item:nth-child(3n+1) {
clear: left; }
.rtl .lae-grid-container.lae-grid-tablet-3 .lae-grid-item:nth-child(3n+1) {
clear: right; }
.lae-grid-container.lae-grid-tablet-4 .lae-grid-item:nth-child(4n+1) {
clear: left; }
.rtl .lae-grid-container.lae-grid-tablet-4 .lae-grid-item:nth-child(4n+1) {
clear: right; }
.lae-grid-container.lae-grid-tablet-5 .lae-grid-item:nth-child(5n+1) {
clear: left; }
.rtl .lae-grid-container.lae-grid-tablet-5 .lae-grid-item:nth-child(5n+1) {
clear: right; }
.lae-grid-container.lae-grid-tablet-6 .lae-grid-item:nth-child(6n+1) {
clear: left; }
.rtl .lae-grid-container.lae-grid-tablet-6 .lae-grid-item:nth-child(6n+1) {
clear: right; } }
@media only screen and (min-width: 801px) {
.lae-grid-container.lae-grid-desktop-2 .lae-grid-item:nth-child(2n+1) {
clear: left; }
.rtl .lae-grid-container.lae-grid-desktop-2 .lae-grid-item:nth-child(2n+1) {
clear: right; }
.lae-grid-container.lae-grid-desktop-3 .lae-grid-item:nth-child(3n+1) {
clear: left; }
.rtl .lae-grid-container.lae-grid-desktop-3 .lae-grid-item:nth-child(3n+1) {
clear: right; }
.lae-grid-container.lae-grid-desktop-4 .lae-grid-item:nth-child(4n+1) {
clear: left; }
.rtl .lae-grid-container.lae-grid-desktop-4 .lae-grid-item:nth-child(4n+1) {
clear: right; }
.lae-grid-container.lae-grid-desktop-5 .lae-grid-item:nth-child(5n+1) {
clear: left; }
.rtl .lae-grid-container.lae-grid-desktop-5 .lae-grid-item:nth-child(5n+1) {
clear: right; }
.lae-grid-container.lae-grid-desktop-6 .lae-grid-item:nth-child(6n+1) {
clear: left; }
.rtl .lae-grid-container.lae-grid-desktop-6 .lae-grid-item:nth-child(6n+1) {
clear: right; } }
.lae-grid-container.lae-grid-mobile-1 .lae-grid-item {
width: calc(100% - 40px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-mobile-2 .lae-grid-item {
width: calc(50% - 30px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-mobile-3 .lae-grid-item {
width: calc(33.33333% - 26.66667px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-mobile-4 .lae-grid-item {
width: calc(25% - 25px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-mobile-5 .lae-grid-item {
width: calc(20% - 24px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-mobile-6 .lae-grid-item {
width: calc(16.66667% - 23.33333px);
float: left;
margin-left: 20px; }
@media only screen and (min-width: 480px) {
.lae-grid-container.lae-grid-tablet-1 .lae-grid-item {
width: calc(100% - 40px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-tablet-2 .lae-grid-item {
width: calc(50% - 30px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-tablet-3 .lae-grid-item {
width: calc(33.33333% - 26.66667px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-tablet-4 .lae-grid-item {
width: calc(25% - 25px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-tablet-5 .lae-grid-item {
width: calc(20% - 24px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-tablet-6 .lae-grid-item {
width: calc(16.66667% - 23.33333px);
float: left;
margin-left: 20px; } }
@media only screen and (min-width: 801px) {
.lae-grid-container.lae-grid-desktop-1 .lae-grid-item {
width: calc(100% - 40px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-desktop-2 .lae-grid-item {
width: calc(50% - 30px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-desktop-3 .lae-grid-item {
width: calc(33.33333% - 26.66667px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-desktop-4 .lae-grid-item {
width: calc(25% - 25px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-desktop-5 .lae-grid-item {
width: calc(20% - 24px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-desktop-6 .lae-grid-item {
width: calc(16.66667% - 23.33333px);
float: left;
margin-left: 20px; } } .lae-gapless-grid .lae-grid-container {
margin-left: 0;
margin-right: 0;
width: auto; }
.lae-gapless-grid .lae-grid-container.lae-grid-mobile-1 .lae-grid-item {
width: calc(100%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-mobile-2 .lae-grid-item {
width: calc(50%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-mobile-3 .lae-grid-item {
width: calc(33.33333%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-mobile-4 .lae-grid-item {
width: calc(25%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-mobile-5 .lae-grid-item {
width: calc(20%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-mobile-6 .lae-grid-item {
width: calc(16.66667%);
float: left;
margin-left: 0px; }
@media only screen and (min-width: 480px) {
.lae-gapless-grid .lae-grid-container.lae-grid-tablet-1 .lae-grid-item {
width: calc(100%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-tablet-2 .lae-grid-item {
width: calc(50%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-tablet-3 .lae-grid-item {
width: calc(33.33333%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-tablet-4 .lae-grid-item {
width: calc(25%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-tablet-5 .lae-grid-item {
width: calc(20%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-tablet-6 .lae-grid-item {
width: calc(16.66667%);
float: left;
margin-left: 0px; } }
@media only screen and (min-width: 801px) {
.lae-gapless-grid .lae-grid-container.lae-grid-desktop-1 .lae-grid-item {
width: calc(100%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-desktop-2 .lae-grid-item {
width: calc(50%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-desktop-3 .lae-grid-item {
width: calc(33.33333%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-desktop-4 .lae-grid-item {
width: calc(25%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-desktop-5 .lae-grid-item {
width: calc(20%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-desktop-6 .lae-grid-item {
width: calc(16.66667%);
float: left;
margin-left: 0px; } } .lae-gapless-grid .lae-masonry { }
.lae-gapless-grid .lae-masonry .lae-grid-item {
clear: none !important; }
.lae-gapless-grid .lae-masonry .lae-grid-sizer {
width: calc(8.33333%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-mobile-1 .lae-grid-item.lae-wide {
width: calc(100%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-mobile-2 .lae-grid-item.lae-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-mobile-3 .lae-grid-item.lae-wide {
width: calc(66.66667%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-mobile-4 .lae-grid-item.lae-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-mobile-5 .lae-grid-item.lae-wide {
width: calc(40%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-mobile-6 .lae-grid-item.lae-wide {
width: calc(33.33333%);
float: left;
margin-left: 0px; }
@media only screen and (min-width: 480px) {
.lae-gapless-grid .lae-masonry.lae-grid-tablet-1 .lae-grid-item.lae-wide {
width: calc(100%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-tablet-2 .lae-grid-item.lae-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-tablet-3 .lae-grid-item.lae-wide {
width: calc(66.66667%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-tablet-4 .lae-grid-item.lae-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-tablet-5 .lae-grid-item.lae-wide {
width: calc(40%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-tablet-6 .lae-grid-item.lae-wide {
width: calc(33.33333%);
float: left;
margin-left: 0px; } }
@media only screen and (min-width: 801px) {
.lae-gapless-grid .lae-masonry.lae-grid-desktop-1 .lae-grid-item.lae-wide {
width: calc(100%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-desktop-2 .lae-grid-item.lae-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-desktop-3 .lae-grid-item.lae-wide {
width: calc(66.66667%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-desktop-4 .lae-grid-item.lae-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-desktop-5 .lae-grid-item.lae-wide {
width: calc(40%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-desktop-6 .lae-grid-item.lae-wide {
width: calc(33.33333%);
float: left;
margin-left: 0px; } } .rtl .lae-grid-container.lae-grid-mobile-1 .lae-grid-item, .rtl .lae-grid-container.lae-grid-mobile-2 .lae-grid-item, .rtl .lae-grid-container.lae-grid-mobile-3 .lae-grid-item, .rtl .lae-grid-container.lae-grid-mobile-4 .lae-grid-item, .rtl .lae-grid-container.lae-grid-mobile-5 .lae-grid-item, .rtl .lae-grid-container.lae-grid-mobile-6 .lae-grid-item {
float: right;
margin-left: 0;
margin-right: 20px; }
@media only screen and (min-width: 480px) {
.rtl .lae-grid-container.lae-grid-tablet-1 .lae-grid-item, .rtl .lae-grid-container.lae-grid-tablet-2 .lae-grid-item, .rtl .lae-grid-container.lae-grid-tablet-3 .lae-grid-item, .rtl .lae-grid-container.lae-grid-tablet-4 .lae-grid-item, .rtl .lae-grid-container.lae-grid-tablet-5 .lae-grid-item, .rtl .lae-grid-container.lae-grid-tablet-6 .lae-grid-item {
float: right;
margin-left: 0;
margin-right: 20px; } }
@media only screen and (min-width: 801px) {
.rtl .lae-grid-container.lae-grid-desktop-1 .lae-grid-item, .rtl .lae-grid-container.lae-grid-desktop-2 .lae-grid-item, .rtl .lae-grid-container.lae-grid-desktop-3 .lae-grid-item, .rtl .lae-grid-container.lae-grid-desktop-4 .lae-grid-item, .rtl .lae-grid-container.lae-grid-desktop-5 .lae-grid-item, .rtl .lae-grid-container.lae-grid-desktop-6 .lae-grid-item {
float: right;
margin-left: 0;
margin-right: 20px; } }
.rtl .lae-gapless-grid .lae-grid-container.lae-grid-mobile-1 .lae-grid-item, .rtl .lae-gapless-grid .lae-grid-container.lae-grid-mobile-2 .lae-grid-item, .rtl .lae-gapless-grid .lae-grid-container.lae-grid-mobile-3 .lae-grid-item, .rtl .lae-gapless-grid .lae-grid-container.lae-grid-mobile-4 .lae-grid-item, .rtl .lae-gapless-grid .lae-grid-container.lae-grid-mobile-5 .lae-grid-item, .rtl .lae-gapless-grid .lae-grid-container.lae-grid-mobile-6 .lae-grid-item {
float: right;
margin-right: 0; }
@media only screen and (min-width: 480px) {
.rtl .lae-gapless-grid .lae-grid-container.lae-grid-tablet-1 .lae-grid-item, .rtl .lae-gapless-grid .lae-grid-container.lae-grid-tablet-2 .lae-grid-item, .rtl .lae-gapless-grid .lae-grid-container.lae-grid-tablet-3 .lae-grid-item, .rtl .lae-gapless-grid .lae-grid-container.lae-grid-tablet-4 .lae-grid-item, .rtl .lae-gapless-grid .lae-grid-container.lae-grid-tablet-5 .lae-grid-item, .rtl .lae-gapless-grid .lae-grid-container.lae-grid-tablet-6 .lae-grid-item {
float: right;
margin-right: 0; } }
@media only screen and (min-width: 801px) {
.rtl .lae-gapless-grid .lae-grid-container.lae-grid-desktop-1 .lae-grid-item, .rtl .lae-gapless-grid .lae-grid-container.lae-grid-desktop-2 .lae-grid-item, .rtl .lae-gapless-grid .lae-grid-container.lae-grid-desktop-3 .lae-grid-item, .rtl .lae-gapless-grid .lae-grid-container.lae-grid-desktop-4 .lae-grid-item, .rtl .lae-gapless-grid .lae-grid-container.lae-grid-desktop-5 .lae-grid-item, .rtl .lae-gapless-grid .lae-grid-container.lae-grid-desktop-6 .lae-grid-item {
float: right;
margin-right: 0; } }
.rtl .lae-gapless-grid .lae-masonry .lae-grid-sizer {
float: right;
margin-right: 0; }
.rtl .lae-gapless-grid .lae-masonry.lae-grid-mobile-1 .lae-grid-item.lae-wide, .rtl .lae-gapless-grid .lae-masonry.lae-grid-mobile-2 .lae-grid-item.lae-wide, .rtl .lae-gapless-grid .lae-masonry.lae-grid-mobile-3 .lae-grid-item.lae-wide, .rtl .lae-gapless-grid .lae-masonry.lae-grid-mobile-4 .lae-grid-item.lae-wide, .rtl .lae-gapless-grid .lae-masonry.lae-grid-mobile-5 .lae-grid-item.lae-wide, .rtl .lae-gapless-grid .lae-masonry.lae-grid-mobile-6 .lae-grid-item.lae-wide {
float: right;
margin-right: 0; }
@media only screen and (min-width: 480px) {
.rtl .lae-gapless-grid .lae-masonry.lae-grid-tablet-1 .lae-grid-item.lae-wide, .rtl .lae-gapless-grid .lae-masonry.lae-grid-tablet-2 .lae-grid-item.lae-wide, .rtl .lae-gapless-grid .lae-masonry.lae-grid-tablet-3 .lae-grid-item.lae-wide, .rtl .lae-gapless-grid .lae-masonry.lae-grid-tablet-4 .lae-grid-item.lae-wide, .rtl .lae-gapless-grid .lae-masonry.lae-grid-tablet-5 .lae-grid-item.lae-wide, .rtl .lae-gapless-grid .lae-masonry.lae-grid-tablet-6 .lae-grid-item.lae-wide {
float: right;
margin-right: 0; } }
@media only screen and (min-width: 801px) {
.rtl .lae-gapless-grid .lae-masonry.lae-grid-desktop-1 .lae-grid-item.lae-wide, .rtl .lae-gapless-grid .lae-masonry.lae-grid-desktop-2 .lae-grid-item.lae-wide, .rtl .lae-gapless-grid .lae-masonry.lae-grid-desktop-3 .lae-grid-item.lae-wide, .rtl .lae-gapless-grid .lae-masonry.lae-grid-desktop-4 .lae-grid-item.lae-wide, .rtl .lae-gapless-grid .lae-masonry.lae-grid-desktop-5 .lae-grid-item.lae-wide, .rtl .lae-gapless-grid .lae-masonry.lae-grid-desktop-6 .lae-grid-item.lae-wide {
float: right;
margin-right: 0; } } .lae-container .lae-thumbnailslider.lae-flexslider {
margin-top: 15px; }
.lae-container .lae-thumbnailslider.lae-flexslider .lae-slide {
margin: 0 5px 0 0; }
.lae-container .lae-thumbnailslider.lae-flexslider .lae-slide img {
display: block;
opacity: .5;
cursor: pointer; }
.lae-container .lae-thumbnailslider.lae-flexslider .lae-slide img:hover {
opacity: 1; }
.lae-container .lae-thumbnailslider.lae-flexslider .lae-slide.lae-flex-active-slide img {
opacity: 1;
cursor: default; }
.lae-container .lae-flex-direction-nav {
padding: 0 !important;
margin: 0 !important; }
.lae-container .lae-flex-direction-nav li {
position: initial; }
.lae-container .lae-flex-direction-nav a, .lae-container .lae-flex-direction-nav a:hover {
opacity: 1;
text-shadow: none;
background: none;
color: #888;
font-family: 'lae-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; }
.rtl .lae-container .lae-flex-direction-nav a, .rtl .lae-container .lae-flex-direction-nav a:hover {
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
direction: ltr; }
.lae-container .lae-flex-direction-nav a:before, .lae-container .lae-flex-direction-nav a:hover:before {
margin: 2px;
vertical-align: middle;
display: inline;
font-family: inherit !important;
opacity: 1; }
.lae-dark-bg .lae-container .lae-flex-direction-nav a, .lae-dark-bg .lae-container .lae-flex-direction-nav a:hover {
color: #888; }
.lae-dark-bg .lae-container .lae-flex-direction-nav a:hover, .lae-dark-bg .lae-container .lae-flex-direction-nav a:hover:hover {
color: #aaa; }
@media only screen and (max-width: 960px) {
.lae-container .lae-flex-direction-nav a, .lae-container .lae-flex-direction-nav a:hover {
display: none; } }
.lae-container .lae-flex-direction-nav a.lae-flex-prev {
left: -30px; }
.lae-container .lae-flex-direction-nav a.lae-flex-prev:before {
content: "\e904"; }
.lae-container .lae-flex-direction-nav a.lae-flex-next {
right: -30px; }
.lae-container .lae-flex-direction-nav a.lae-flex-next:before {
content: "\e905"; }
.lae-container .lae-flex-control-nav {
width: 100%;
position: absolute;
bottom: -40px;
text-align: center;
padding: 0 !important;
margin: 0 !important; }
.lae-container .lae-flex-control-nav li, .lae-container .lae-flex-control-nav li:hover {
margin: 0 8px 0 0;
padding: 0;
border: none;
-webkit-box-shadow: none;
box-shadow: none; }
.lae-container .lae-flex-control-nav li a, .lae-container .lae-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; }
.lae-dark-bg .lae-container .lae-flex-control-nav li a, .lae-dark-bg .lae-container .lae-flex-control-nav li a:hover {
background: #ccc;
border-color: #ccc; }
.lae-container .lae-flex-control-nav li a.lae-flex-active, .lae-container .lae-flex-control-nav li a:hover.lae-flex-active, .lae-container .lae-flex-control-nav li a:hover {
background: none; }
.lae-container .lae-flex-control-nav li a.lae-flex-active, .lae-container .lae-flex-control-nav li a:hover.lae-flex-active {
width: 14px;
height: 14px; }
.lae-container .lae-flex-control-thumbs {
bottom: -120px; }
@media only screen and (max-width: 600px) {
.lae-container .lae-flex-control-thumbs {
bottom: -80px; } }
.lae-container .lae-flex-control-thumbs li {
width: auto;
float: none; }
.lae-container .lae-flex-control-thumbs li img {
max-width: 100%;
width: 150px; }
@media only screen and (max-width: 600px) {
.lae-container .lae-flex-control-thumbs li img {
width: 100px; } } .slick-loading .slick-list {
background: #fff url(https://www.goclickon.com.au/wp-content/plugins/addons-for-elementor/assets/css/ajax-loader.gif) center center no-repeat; }
@media only screen and (max-width: 1024px) {
.slick-slider {
padding: 0 10px; } }
.lae-container button.slick-prev, .lae-container button.slick-next {
position: absolute;
bottom: initial;
left: initial;
right: initial;
top: 50%;
width: 28px;
height: 28px;
margin: -14px 0 0; }
.rtl .lae-container button.slick-prev, .rtl .lae-container button.slick-next {
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
direction: ltr; }
.lae-container button.slick-prev, .lae-container button.slick-prev:before, .lae-container button.slick-prev:after, .lae-container button.slick-next, .lae-container button.slick-next:before, .lae-container button.slick-next:after {
text-shadow: none;
background: none !important;
border: none;
padding: 0;
opacity: 1;
font-family: 'lae-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; }
.lae-container button.slick-prev:before, .lae-container button.slick-next:before {
margin: 2px;
vertical-align: middle; }
.lae-container button.slick-prev:hover:before, .lae-container button.slick-prev:hover:after, .lae-container button.slick-next:hover:before, .lae-container button.slick-next:hover:after {
color: #888 !important; }
.lae-dark-bg .lae-container button.slick-prev:before, .lae-dark-bg .lae-container button.slick-prev:after, .lae-dark-bg .lae-container button.slick-next:before, .lae-dark-bg .lae-container button.slick-next:after {
color: #888 !important; }
.lae-dark-bg .lae-container button.slick-prev:hover:before, .lae-dark-bg .lae-container button.slick-prev:hover:after, .lae-dark-bg .lae-container button.slick-next:hover:before, .lae-dark-bg .lae-container button.slick-next:hover:after {
color: #aaa !important;
background: none !important; }
.lae-container button.slick-prev {
left: -40px; }
.lae-container button.slick-prev:before {
content: "\e904"; }
@media only screen and (max-width: 1024px) {
.lae-container button.slick-prev {
left: -10px; } }
.lae-container button.slick-next {
right: -40px; }
.lae-container button.slick-next:before {
content: "\e905"; }
@media only screen and (max-width: 1024px) {
.lae-container button.slick-next {
right: -10px; } }
.lae-container ul.slick-dots {
width: 100%;
position: absolute;
bottom: -30px;
text-align: center;
padding: 0 !important;
margin: 0 !important; }
.lae-container ul.slick-dots li {
margin: 0 8px 0 0 !important;
padding: 0 !important;
display: inline-block;
font-size: 0; }
.lae-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; }
.lae-container ul.slick-dots li button:before {
display: none; }
.lae-dark-bg .lae-container ul.slick-dots li button {
background: #888 !important;
border-color: #888 !important; }
.lae-container ul.slick-dots li button:hover, .lae-container ul.slick-dots li.slick-active button {
background: none !important;
border-color: #aaa !important; }
.lae-container ul.slick-dots li.slick-active button {
width: 14px;
height: 14px; } .lae-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) {
.lae-widget-heading {
font-size: 32px;
line-height: 44px; } } input.lae-button, button.lae-button, a.lae-button, .lae-button:active, .lae-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.lae-button.lae-rounded, button.lae-button.lae-rounded, a.lae-button.lae-rounded, .lae-button:active.lae-rounded, .lae-button:visited.lae-rounded {
border-radius: 999px; }
input.lae-button.lae-large, button.lae-button.lae-large, a.lae-button.lae-large, .lae-button:active.lae-large, .lae-button:visited.lae-large {
padding: 20px 60px; }
input.lae-button.lae-small, button.lae-button.lae-small, a.lae-button.lae-small, .lae-button:active.lae-small, .lae-button:visited.lae-small {
padding: 12px 25px;
font-size: 11px; }
input.lae-button:hover, button.lae-button:hover, a.lae-button:hover, .lae-button:active:hover, .lae-button:visited:hover {
background-color: #f9633e;
color: #fefefe; }
.lae-button.lae-black {
background-color: #363636; }
.lae-button.lae-black:hover {
background-color: #434343; }
.lae-button.lae-blue {
background-color: #46a5d5; }
.lae-button.lae-blue:hover {
background-color: #5bafda; }
.lae-button.lae-cyan {
background-color: #57c0dc; }
.lae-button.lae-cyan:hover {
background-color: #6cc8e0; }
.lae-button.lae-green {
background-color: #00a57d; }
.lae-button.lae-green:hover {
background-color: #00bf90; }
.lae-button.lae-orange {
background-color: #e87151; }
.lae-button.lae-orange:hover {
background-color: #eb8368; }
.lae-button.lae-pink {
background-color: #dd5679; }
.lae-button.lae-pink:hover {
background-color: #e16b8a; }
.lae-button.lae-red {
background-color: #da4f49; }
.lae-button.lae-red:hover {
background-color: #de635e; }
.lae-button.lae-teal {
background-color: #28c2ba; }
.lae-button.lae-teal:hover {
background-color: #2fd4cc; }
.lae-button.lae-trans {
color: #333;
background-color: transparent; background-color: rgba(0, 0, 0, 0);
border: 2px solid #a5a5a5; }
.lae-button.lae-trans:hover {
background-color: #fff;
color: #333 !important;
border-color: #fff; }
.lae-button.lae-semitrans {
color: #fff;
background-color: transparent; background-color: rgba(125, 125, 125, 0.5); }
.lae-button.lae-semitrans:hover {
background-color: #fff;
color: #333 !important; } .single-elementor_library [data-elementor-type="livemesh_grid"] .elementor-element.elementor-widget.elementor-widget-livemesh-grid-item .elementor-widget-container {
border: 5px double #a4a0a2;
padding: 10px; }
.single-elementor_library [data-elementor-type="livemesh_grid"] .elementor-column {
border: 1px dotted #827e80; }
.lae-template-error {
padding: 20px;
font-style: italic; }
 .lae-team-members {
clear: both; }
.lae-team-members .lae-team-member .lae-social-list {
margin-top: 20px; }
.lae-team-members .lae-team-member .lae-social-list .lae-social-list-item {
display: inline;
margin: 0 15px 0 0; }
.lae-team-members .lae-team-member .lae-social-list .lae-social-list-item i {
color: #999;
-webkit-transition: color .3s ease-in-out 0s;
transition: color .3s ease-in-out 0s; }
.lae-team-members .lae-team-member .lae-social-list .lae-social-list-item i:hover {
color: #666; }
.lae-team-members .lae-team-member .lae-team-member-details {
font-size: 15px;
line-height: 24px; }
.lae-team-members .lae-team-member .lae-team-member-text .lae-title {
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; }
.lae-team-members .lae-team-member .lae-team-member-text .lae-title-link .lae-title {
-webkit-transition: color .4s ease-in-out 0s;
transition: color .4s ease-in-out 0s; }
.lae-team-members .lae-team-member .lae-team-member-text .lae-title-link:hover .lae-title {
color: #666; }
.lae-team-members .lae-team-member .lae-team-member-text .lae-team-member-position {
font-size: 15px;
line-height: 24px;
font-style: italic;
color: #888;
margin-bottom: 10px; } .lae-team-members-style1 .lae-team-member-wrapper {
float: left;
padding: 10px; }
.lae-team-members-style1 .lae-team-member {
max-width: 320px;
margin: 0 auto 40px; }
.lae-team-members-style1 .lae-team-member .lae-image-wrapper {
text-align: center;
position: relative; }
.lae-team-members-style1 .lae-team-member .lae-image-wrapper img {
max-width: 100%;
margin: 0 auto 30px;
border-radius: 50%;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s; }
.lae-team-members-style1 .lae-team-member .lae-image-wrapper .lae-social-list {
position: absolute;
width: 100%;
top: 40%;
z-index: 2; }
@media only screen and (max-width: 767px) {
.lae-team-members-style1 .lae-team-member .lae-image-wrapper .lae-social-list {
position: relative;
top: 0; } }
.lae-team-members-style1 .lae-team-member .lae-image-wrapper .lae-social-list i {
font-size: 26px;
color: #fff;
opacity: 0;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s; }
.lae-team-members-style1 .lae-team-member .lae-image-wrapper .lae-social-list i:hover {
color: #ccc; }
@media only screen and (max-width: 767px) {
.lae-team-members-style1 .lae-team-member .lae-image-wrapper .lae-social-list i {
color: #999;
opacity: 1; }
.lae-dark-bg .lae-team-members-style1 .lae-team-member .lae-image-wrapper .lae-social-list i {
color: #888; }
.lae-team-members-style1 .lae-team-member .lae-image-wrapper .lae-social-list i:hover {
color: #666; }
.lae-dark-bg .lae-team-members-style1 .lae-team-member .lae-image-wrapper .lae-social-list i:hover {
color: #ccc; } }
.lae-team-members-style1 .lae-team-member:hover .lae-image-wrapper img {
-webkit-filter: brightness(50%);
filter: brightness(50%); }
@media only screen and (max-width: 767px) {
.lae-team-members-style1 .lae-team-member:hover .lae-image-wrapper img {
-webkit-filter: brightness(80%);
filter: brightness(80%); } }
.lae-team-members-style1 .lae-team-member:hover .lae-image-wrapper .lae-social-list i {
opacity: 1; }
.lae-team-members-style1 .lae-team-member .lae-team-member-text {
text-align: center;
max-width: 650px; }
.lae-team-members-style1 .lae-team-member .lae-team-member-text .lae-title {
margin-bottom: 10px; }
.lae-team-members-style1 .lae-team-member .lae-social-list {
margin: 10px auto; } .lae-team-members-style2 {
position: relative;
max-width: 960px; }
.lae-team-members-style2 .lae-team-member-wrapper {
clear: both;
margin-top: 100px; }
.lae-team-members-style2 .lae-team-member-wrapper:first-child {
margin-top: 0; }
.lae-team-members-style2 .lae-team-member-wrapper .lae-image-wrapper {
float: left;
position: relative; }
.lae-team-members-style2 .lae-team-member-wrapper .lae-image-wrapper img {
max-width: 320px;
border-radius: 50%;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s; }
.lae-team-members-style2 .lae-team-member-wrapper .lae-team-member-text {
margin: 10px 0 0;
vertical-align: middle;
padding-top: 20px; }
.lae-team-members-style2 .lae-team-member-wrapper .lae-team-member-text .lae-title {
margin-bottom: 5px; }
.lae-team-members-style2 .lae-team-member-wrapper .lae-team-member-text .lae-team-member-details {
margin: 10px 0 10px; }
.lae-team-members-style2 .lae-team-member-wrapper .lae-team-member-text .lae-social-list i {
font-size: 24px; }
.lae-team-members-style2 .lae-team-member-wrapper:hover .lae-image-wrapper img {
-webkit-filter: brightness(80%);
filter: brightness(80%); }
.lae-team-members-style2 .lae-team-member-wrapper:nth-child(odd) .lae-image-wrapper {
margin-right: 50px; }
.lae-team-members-style2 .lae-team-member-wrapper:nth-child(even) .lae-image-wrapper {
float: right;
margin-left: 50px; }
.lae-team-members-style2 .lae-team-member-wrapper:nth-child(even) .lae-team-member-text .lae-title, .lae-team-members-style2 .lae-team-member-wrapper:nth-child(even) .lae-team-member-text .lae-team-member-position, .lae-team-members-style2 .lae-team-member-wrapper:nth-child(even) .lae-team-member-text .lae-team-member-details, .lae-team-members-style2 .lae-team-member-wrapper:nth-child(even) .lae-team-member-text .lae-social-list {
text-align: right; }
@media only screen and (max-width: 767px) {
.lae-team-members-style2 .lae-team-member-wrapper {
margin-top: 75px; }
.lae-team-members-style2 .lae-team-member .lae-image-wrapper, .lae-team-members-style2 .lae-team-member .lae-team-member-text {
width: 100%;
float: none; }
.lae-team-members-style2 .lae-team-member .lae-image-wrapper {
text-align: center; }
.lae-team-members-style2 .lae-team-member .lae-image-wrapper img {
margin: 0 auto 20px; }
.lae-team-members-style2 .lae-team-member .lae-team-member-text {
max-width: 400px;
margin: 0 auto;
padding-top: 0; }
.lae-team-members-style2 .lae-team-member .lae-team-member-text .lae-title, .lae-team-members-style2 .lae-team-member .lae-team-member-text .lae-team-member-position, .lae-team-members-style2 .lae-team-member .lae-team-member-text .lae-team-member-details, .lae-team-members-style2 .lae-team-member .lae-team-member-text .lae-social-list {
text-align: center !important; } }
.lae-dark-bg .lae-team-members .lae-team-member .lae-team-member-details {
color: #909090; }
.lae-dark-bg .lae-team-members .lae-team-member .lae-team-member-text .lae-title, .lae-dark-bg .lae-team-members .lae-team-member .lae-team-member-text .lae-title-link .lae-title {
color: #e5e5e5; }
.lae-dark-bg .lae-team-members .lae-team-member .lae-team-member-text .lae-title-link:hover .lae-title {
color: #b5b5b5; }
.lae-dark-bg .lae-team-members .lae-team-member .lae-team-member-text .lae-team-member-position {
color: #a5a5a5; }
.lae-dark-bg .lae-team-members .lae-team-member .lae-team-member-text .lae-social-list i {
color: #aaa; }
.lae-dark-bg .lae-team-members .lae-team-member .lae-team-member-text .lae-social-list i:hover {
color: #ccc; } .lae-testimonials {
clear: both; }
.lae-testimonials .lae-testimonial {
margin-bottom: 50px; }
.lae-testimonials .lae-testimonial-text {
background: #ffffff;
border: 1px solid #dbdbdb;
border-radius: 30px;
text-align: center;
position: relative;
padding: 20px 20px 0;
margin-bottom: 40px;
font-style: italic;
font-size: 15px;
line-height: 24px;
color: #888;
text-align: center;
max-width: 450px; }
.lae-dark-bg .lae-testimonials .lae-testimonial-text {
color: #666;
background: #eee; }
.lae-testimonials .lae-testimonial-text:after {
content: '';
display: block;
background: #fff;
border-left: 1px solid #dbdbdb;
border-bottom: 1px solid #dbdbdb;
background: #ffffff;
transform: rotate(45deg);
-webkit-transform: rotate(45deg);
transform: skew(0deg, -44deg);
width: 24px;
height: 24px;
position: absolute;
bottom: -12px;
left: 40px;
margin: auto; }
.rtl .lae-testimonials .lae-testimonial-text:after {
left: auto;
right: 40px; }
.lae-dark-bg .lae-testimonials .lae-testimonial-text:after {
background: #eee; }
.lae-testimonials .lae-testimonial-user {
display: table; }
.lae-testimonials .lae-testimonial-user .lae-image-wrapper {
display: table-cell; }
.lae-testimonials .lae-testimonial-user .lae-image-wrapper img {
max-width: 64px;
border-radius: 50%;
margin-right: 20px; }
.rtl .lae-testimonials .lae-testimonial-user .lae-image-wrapper img {
margin: 0 0 0 20px; }
.lae-testimonials .lae-testimonial-user .lae-text {
display: table-cell;
vertical-align: middle;
color: #888; }
.lae-dark-bg .lae-testimonials .lae-testimonial-user .lae-text {
color: #909090; }
.lae-testimonials .lae-testimonial-user .lae-text .lae-author-name {
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: 15px;
line-height: 24px;
margin-bottom: 5px;
color: #333; }
.lae-dark-bg .lae-testimonials .lae-testimonial-user .lae-text .lae-author-name {
color: #e5e5e5; } .lae-testimonials-slider {
clear: both;
position: relative; }
.lae-testimonials-slider.lae-container {
max-width: 900px;
margin: 0 auto; }
.lae-testimonials-slider .lae-testimonial-text {
text-align: center;
max-width: 750px;
margin: 0 auto 40px;
font-size: 18px;
line-height: 32px;
font-style: italic;
color: #666; }
.lae-dark-bg .lae-testimonials-slider .lae-testimonial-text {
color: #ccc; }
.lae-testimonials-slider .lae-testimonial-text i {
color: #ccc;
font-size: 32px;
display: block;
margin-bottom: 35px;
background: none;
width: auto;
height: auto; }
.lae-dark-bg .lae-testimonials-slider .lae-testimonial-text i {
color: #ddd; }
.lae-testimonials-slider .lae-testimonial-user {
display: table;
margin: 0 auto; }
.lae-testimonials-slider .lae-testimonial-user .lae-image-wrapper {
display: table-cell; }
.lae-testimonials-slider .lae-testimonial-user .lae-image-wrapper img {
max-width: 64px;
border-radius: 50%;
margin-right: 15px; }
.rtl .lae-testimonials-slider .lae-testimonial-user .lae-image-wrapper img {
margin: 0 0 0 15px; }
.lae-testimonials-slider .lae-testimonial-user .lae-text {
display: table-cell;
vertical-align: middle;
color: #888; }
.lae-dark-bg .lae-testimonials-slider .lae-testimonial-user .lae-text {
color: #909090; }
.lae-testimonials-slider .lae-testimonial-user .lae-text .lae-author-name {
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: 15px;
line-height: 24px;
margin-bottom: 5px; }
.lae-dark-bg .lae-testimonials-slider .lae-testimonial-user .lae-text .lae-author-name {
color: #e5e5e5; } .lae-stats-bars {
clear: both; }
.lae-stats-bars .lae-stats-bar {
width: 100%;
display: block;
margin: 0 0 18px;
overflow: hidden; }
.lae-stats-bars .lae-stats-bar .lae-stats-title {
margin: 0;
display: block;
color: #888;
font-style: normal;
font-size: 15px;
text-transform: none;
color: #333;
font-size: 16px;
line-height: 28px; }
.lae-stats-bars .lae-stats-bar .lae-stats-title span {
margin-left: 5px; }
.rtl .lae-stats-bars .lae-stats-bar .lae-stats-title span {
display: inline-block;
margin: 0 5px 0 0; }
.lae-dark-bg .lae-stats-bars .lae-stats-bar .lae-stats-title {
color: #ddd; }
.lae-stats-bars .lae-stats-bar .lae-stats-bar-wrap {
position: relative; }
.lae-stats-bars .lae-stats-bar .lae-stats-bar-content {
background: #e55a54;
display: block;
height: 10px;
width: 0;
position: relative;
z-index: 1;
border-radius: 5px; }
.lae-stats-bars .lae-stats-bar .lae-stats-bar-bg {
width: 100%;
background: rgba(0, 0, 0, 0.1);
height: 10px;
display: block;
margin-top: -10px;
border-radius: 5px; }
.lae-dark-bg .lae-stats-bars .lae-stats-bar .lae-stats-bar-bg {
background: rgba(255, 255, 255, 0.1); } .lae-piecharts {
clear: both; }
.lae-piechart {
position: relative;
text-align: center;
float: left;
overflow: hidden;
float: left;
padding: 10px; }
.lae-piechart canvas {
position: relative;
top: 0;
left: 0;
max-width: 100%;
margin: 0 auto; }
.lae-piechart .lae-label {
text-align: center;
position: absolute;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
top: 55%;
max-width: 65%;
color: #888; }
.lae-dark-bg .lae-piechart .lae-label {
color: #909090; }
.lae-piechart .lae-percentage span {
position: absolute;
top: 25%;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
font-size: 60px;
line-height: 60px;
font-weight: 300;
text-align: center;
color: #333;
font-weight: bolder; }
.lae-dark-bg .lae-piechart .lae-percentage span {
color: #e5e5e5; }
.lae-piechart .lae-percentage sup {
font-size: 18px;
vertical-align: middle; }
.lae-piechart.dark-bg .lae-label {
color: #fff; }
.lae-piechart.dark-bg .lae-percentage span {
color: #eee; }
@media only screen and (max-width: 479px) {
.lae-piechart canvas {
margin-bottom: 15px; } } .odometer.odometer-auto-theme, .odometer.odometer-theme-default {
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
*zoom: 1;
*display: inline;
position: relative; }
.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-default .odometer-digit {
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
*zoom: 1;
*display: inline;
position: relative; }
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer, .odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
*zoom: 1;
*display: inline;
visibility: hidden; }
.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;
transition: -webkit-transform 2s;
transition: transform 2s;
transition: transform 2s, -webkit-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%);
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%);
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;
transition: -webkit-transform 2s;
transition: transform 2s;
transition: transform 2s, -webkit-transform 2s;
-webkit-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; } .lae-odometers {
clear: both;
font-size: 0; }
.lae-odometers .lae-odometer {
display: inline-block;
vertical-align: top;
text-align: left;
position: relative;
margin-bottom: 50px; }
.rtl .lae-odometers .lae-odometer {
text-align: right; }
.lae-odometers .lae-odometer:last-child:after {
border: none; }
.lae-odometers .lae-odometer .lae-prefix, .lae-odometers .lae-odometer .lae-suffix {
display: inline;
font-size: 36px;
line-height: 48px;
color: #333;
vertical-align: middle; }
.lae-dark-bg .lae-odometers .lae-odometer .lae-prefix, .lae-dark-bg .lae-odometers .lae-odometer .lae-suffix {
color: #e5e5e5; }
.lae-odometers .lae-odometer .lae-prefix {
margin-right: 5px;
margin-left: 5px; }
.lae-odometers .lae-odometer .lae-suffix {
margin-left: 5px; }
.lae-odometers .lae-odometer .lae-number {
font-size: 60px;
line-height: 72px;
font-style: normal;
text-transform: none;
letter-spacing: 2px;
font-weight: 900;
color: #333;
margin-bottom: 10px; }
.lae-odometers .lae-odometer .lae-number span {
font-size: 60px; }
.lae-dark-bg .lae-odometers .lae-odometer .lae-number {
color: #e5e5e5; }
.lae-odometers .lae-odometer .lae-stats-title {
font-size: 18px;
line-height: 28px;
display: inline-block;
color: #888; }
.lae-dark-bg .lae-odometers .lae-odometer .lae-stats-title {
color: #909090; }
.lae-odometers .lae-odometer .lae-stats-title span {
float: left;
margin-right: 15px; }
.rtl .lae-odometers .lae-odometer .lae-stats-title span {
float: right;
margin: 0 0 0 15px; }
.lae-odometers .lae-odometer .lae-stats-title .lae-icon-wrapper i {
font-size: 32px;
vertical-align: middle;
color: #ccc; }
@media only screen and (max-width: 960px) {
.lae-odometers .lae-odometer .lae-number {
font-size: 48px;
line-height: 56px;
margin-bottom: 0; }
.lae-odometers .lae-odometer .lae-number span {
font-size: 48px; }
.lae-odometers .lae-odometer .lae-stats-title {
font-size: 15px;
line-height: 26px; } }
@media only screen and (max-width: 479px) {
.lae-odometers .lae-odometer {
text-align: center; } } .lae-pricing-table {
clear: both; }
.lae-pricing-table .lae-pricing-plan {
float: left;
padding: 10px; }
.lae-center {
text-align: center; }
.lae-pricing-table {
padding: 0; }
.lae-pricing-table .lae-top-header {
padding: 15px 0;
background-color: #494949;
border-bottom: 1px solid #2c2b2b; }
.lae-pricing-table .lae-top-header .lae-plan-name {
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: 20px;
line-height: 32px;
color: #fefefe;
margin: 0; }
.lae-pricing-table .lae-top-header img {
margin-top: 15px; }
.lae-pricing-table .lae-top-header .lae-tagline {
display: block;
font-size: 15px;
line-height: 24px;
color: #EDEDED;
text-transform: none;
text-align: center;
margin-bottom: 5px; }
.lae-pricing-table .lae-pricing-plan {
background: #fff;
padding: 0;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all 0.1s ease-in-out 0s;
transition: all 0.1s ease-in-out 0s;
margin-bottom: 30px; }
.lae-pricing-table .lae-pricing-plan:hover .lae-purchase {
background: #e5e5e5; }
.lae-pricing-table .lae-pricing-plan .lae-plan-price {
color: #fff;
font-size: 22px;
line-height: 28px;
font-weight: 700;
margin: 0; }
.lae-pricing-table .lae-pricing-plan .lae-plan-price span {
font-size: 22px;
line-height: 32px; }
.lae-pricing-table .lae-plan-header {
padding: 30px 0 30px;
background-color: #494949; }
.lae-pricing-table .lae-plan-price .lae-text {
display: inline-block;
padding: 6px 25px;
border-radius: 25px;
background: #2C2B2B; }
.lae-pricing-table .lae-plan-price sup {
font-size: 18px;
line-height: 32px;
vertical-align: top;
margin-right: 2px;
position: static; }
.lae-pricing-table .lae-plan-details {
padding: 15px 0;
margin: 0;
border: 1px solid #eee; }
.lae-pricing-table .lae-plan-details .lae-pricing-item {
list-style: none;
display: block;
padding: 6px;
margin: 0;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
text-align: center; }
.lae-pricing-table .lae-plan-details .lae-pricing-item i {
color: #777;
font-size: 18px;
display: inline;
margin-right: 8px; }
.lae-pricing-table .lae-plan-details .lae-pricing-item .lae-title {
color: #838383;
margin-bottom: 10px; }
.lae-pricing-table .lae-plan-details .lae-pricing-item .lae-value-wrap {
display: block; }
.lae-pricing-table .lae-plan-details .lae-pricing-item .lae-value-wrap:after {
position: relative;
content: "";
background: #ddd;
width: 120px;
height: 1px;
display: block;
margin: 12px auto 0; }
.lae-pricing-table .lae-plan-details .lae-pricing-item .lae-value {
color: #444;
font-size: 24px;
line-height: 32px;
display: inline; }
.lae-pricing-table .lae-plan-details .lae-pricing-item s {
color: #b4c9d3; }
.lae-pricing-table .lae-plan-details .lae-pricing-item:last-child .lae-value-wrap:after {
display: none; }
.lae-pricing-table .lae-purchase {
text-align: center;
text-transform: uppercase;
padding: 15px;
margin: 0 auto;
background: #f1f1f1;
-webkit-transition: all 0.1s ease-in-out 0s;
transition: all 0.1s ease-in-out 0s;
border-left: 1px solid #eee;
border-right: 1px solid #eee;
border-bottom: 1px solid #eee; }
.lae-pricing-table .lae-purchase a {
padding: 12px 25px;
border-radius: 5px;
letter-spacing: 0;
font-size: 16px;
line-height: 24px;
letter-spacing: 6px;
font-weight: bold; }
.lae-pricing-table .lae-pricing-plan.lae-highlight {
background: #f5f5f5;
margin-top: -10px; }
.lae-pricing-table .lae-pricing-plan.lae-highlight .lae-plan-details {
border-color: #e5e5e5; }
.lae-pricing-table .lae-pricing-plan.lae-highlight .lae-top-header {
padding: 20px 0; }
.lae-pricing-table .lae-pricing-plan.lae-highlight .lae-pricing-table .lae-top-header .lae-plan-name {
color: #28c2ba; }
.lae-pricing-table .lae-pricing-plan.lae-highlight .lae-purchase {
padding: 20px 0;
background-color: #e5e5e5;
border-color: #ddd; }  .lae-services {
clear: both; }
.lae-services .lae-service {
margin-bottom: 50px; }
.lae-services .lae-service .lae-icon-wrapper i {
-webkit-transition: color .4s ease-in-out 0s;
transition: color .4s ease-in-out 0s; }
.lae-services .lae-service .lae-icon-wrapper i:hover {
color: #555; }
.lae-dark-bg .lae-services .lae-service .lae-icon-wrapper i:hover {
color: #d5d5d5; }
.lae-services .lae-service .lae-service-text {
font-size: 15px;
line-height: 24px; }
.lae-dark-bg .lae-services .lae-service .lae-service-text {
color: #909090; }
.lae-dark-bg .lae-services .lae-service .lae-service-text .lae-title {
color: #e5e5e5; }
.lae-services .lae-service .lae-service-text .lae-title-link .lae-title {
-webkit-transition: color .3s ease-in-out 0s;
transition: color .3s ease-in-out 0s; }
.lae-services .lae-service .lae-service-text .lae-title-link:hover .lae-title {
color: #666; }
.lae-dark-bg .lae-services .lae-service .lae-service-text .lae-title-link:hover .lae-title {
color: #c5c5c5; } .lae-services-style1 .lae-service .lae-icon-wrapper i {
display: block;
text-align: center;
font-size: 96px;
line-height: 1;
margin-bottom: 20px;
-webkit-transition: color .4s ease-in-out 0s;
transition: color .4s ease-in-out 0s;
color: #888; }
.lae-dark-bg .lae-services-style1 .lae-service .lae-icon-wrapper i {
color: #a5a5a5; }
.lae-dark-bg .lae-services-style1 .lae-service .lae-icon-wrapper i:hover {
color: #c5c5c5; }
.lae-services-style1 .lae-service .lae-image-wrapper img {
display: block;
max-width: 100%;
text-align: center;
margin: 0 auto 25px;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s; }
.lae-services-style1 .lae-service .lae-service-text {
text-align: center;
max-width: 300px;
margin: 0 auto; }
.lae-services-style1 .lae-service .lae-service-text .lae-title {
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;
margin-bottom: 20px; }
.lae-services-style1 .lae-service:hover .lae-image-wrapper img {
-webkit-transform: scale(0.9, 0.9);
transform: scale(0.9, 0.9); } .lae-services-style2 .lae-service .lae-image-wrapper img, .lae-services-style2 .lae-service .lae-icon-wrapper i {
float: left;
margin-right: 18px;
color: #888; }
.rtl .lae-services-style2 .lae-service .lae-image-wrapper img, .rtl .lae-services-style2 .lae-service .lae-icon-wrapper i {
float: right;
margin: 0 0 0 18px; }
.lae-dark-bg .lae-services-style2 .lae-service .lae-image-wrapper img, .lae-dark-bg .lae-services-style2 .lae-service .lae-icon-wrapper i {
color: #a5a5a5; }
.lae-dark-bg .lae-services-style2 .lae-service .lae-image-wrapper img:hover, .lae-dark-bg .lae-services-style2 .lae-service .lae-icon-wrapper i:hover {
color: #c5c5c5; }
.lae-services-style2 .lae-service .lae-icon-wrapper i {
font-size: 24px;
line-height: 32px; }
.lae-services-style2 .lae-service .lae-service-text .lae-title {
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;
margin-bottom: 20px; } .lae-services-style3 .lae-service .lae-icon-wrapper i {
display: block;
text-align: left;
font-size: 80px;
line-height: 1;
margin-bottom: 25px;
color: #555; }
.rtl .lae-services-style3 .lae-service .lae-icon-wrapper i {
text-align: right; }
.lae-services-style3 .lae-service .lae-icon-wrapper i:hover {
color: #888; }
.lae-dark-bg .lae-services-style3 .lae-service .lae-icon-wrapper i {
color: #c5c5c5; }
.lae-dark-bg .lae-services-style3 .lae-service .lae-icon-wrapper i:hover {
color: #e5e5e5; }
.lae-services-style3 .lae-service .lae-image-wrapper img {
display: block;
max-width: 100%;
text-align: left;
margin-bottom: 25px; }
.lae-services-style3 .lae-service .lae-service-text {
text-align: left;
max-width: 300px;
margin: 0;
font-size: 14px;
line-height: 32px;
color: #888; }
.rtl .lae-services-style3 .lae-service .lae-service-text {
text-align: right; }
.lae-services-style3 .lae-service .lae-service-text ul.lae-services-list {
padding: 0;
margin: 0;
border: none; }
.lae-services-style3 .lae-service .lae-service-text ul.lae-services-list li {
border-bottom: 1px solid #eee;
position: relative;
padding: 0;
margin: 0;
list-style: none;
line-height: 42px; }
.lae-services-style3 .lae-service .lae-service-text ul.lae-services-list li:hover {
padding: 0; }
.lae-dark-bg .lae-services-style3 .lae-service .lae-service-text ul.lae-services-list li {
border-color: #333; }
.lae-services-style3 .lae-service .lae-service-text ul.lae-services-list li:before {
font-family: 'lae-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;
position: relative;
display: inline-block;
height: auto;
width: auto;
background: none;
float: none;
vertical-align: middle;
margin: 0 15px 0 0;
content: "\e917";
color: #BBBBBB;
font-size: 12px;
line-height: 1; }
.rtl .lae-services-style3 .lae-service .lae-service-text ul.lae-services-list li:before {
display: none; }
.lae-dark-bg .lae-services-style3 .lae-service .lae-service-text ul.lae-services-list li:before {
color: #606060; }
.lae-services-style3 .lae-service .lae-service-text .lae-title {
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;
margin-bottom: 20px; } .lae-posts-carousel {
clear: both;
max-width: none; }
@media only screen and (min-width: 1024px) {
.lae-posts-carousel {
max-width: 96%; } }
.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .hentry {
background: #fff;
border-radius: 6px;
border: none;
padding: 0;
margin: 0;
-webkit-transition: -webkit-box-shadow .25s ease 0s;
transition: -webkit-box-shadow .25s ease 0s;
transition: box-shadow .25s ease 0s;
transition: box-shadow .25s ease 0s, -webkit-box-shadow .25s ease 0s;
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
overflow: hidden; }
.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .hentry:hover {
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); }
.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-project-image {
position: relative;
overflow: hidden; }
.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-project-image img {
width: 100%;
display: block;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s;
max-width: 100%; }
.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-project-image:hover img {
-webkit-filter: brightness(50%);
filter: brightness(50%); }
.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-project-image .lae-image-info {
display: block;
text-align: center; }
.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-project-image .lae-image-info .lae-entry-info {
text-align: center;
display: block;
position: absolute;
top: 50%;
left: 0;
right: 0;
margin: auto;
max-width: 100%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%); }
.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-project-image .lae-image-info .lae-post-title {
padding: 10px;
margin: 0;
font-size: 22px;
line-height: 34px;
font-weight: 400;
color: #fff;
opacity: 0;
-webkit-transition: opacity .4s ease-in-out 0s;
transition: opacity .4s ease-in-out 0s; }
@media only screen and (max-width: 1024px) {
.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-project-image .lae-image-info .lae-post-title {
font-size: 18px;
line-height: 26px; } }
.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-project-image .lae-image-info .lae-post-title a {
display: inline;
color: #fff;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s;
border-bottom: 1px solid transparent; }
.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-project-image .lae-image-info .lae-post-title a:hover {
border-bottom: 2px solid #ccc; }
.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-project-image .lae-image-info .lae-terms {
display: block;
color: #f9f9f9;
font-size: 14px;
line-height: 22px;
opacity: 0;
-webkit-transition: opacity .4s ease-in-out 0s;
transition: opacity .4s ease-in-out 0s; }
.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-project-image .lae-image-info .lae-terms a {
color: #ddd;
position: relative;
display: inline;
zoom: 1;
font-size: 14px;
line-height: 22px;
font-style: italic;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s; }
.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-project-image .lae-image-info .lae-terms a:hover {
color: #fff; }
.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-project-image:hover .lae-image-info .lae-post-title, .lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-project-image:hover .lae-image-info .lae-terms {
opacity: 1; }
.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-entry-text-wrap {
text-align: center;
max-width: 650px;
margin: 0 auto;
padding: 25px 15px; }
.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-entry-text-wrap .entry-title {
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: 16px;
line-height: 24px;
margin-bottom: 10px; }
.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-entry-text-wrap .entry-title:after, .lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-entry-text-wrap .entry-title:before {
display: none; }
.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-entry-text-wrap .entry-title a {
color: #333333;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s; }
.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-entry-text-wrap .entry-title a:hover {
color: #888; }
.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-entry-text-wrap .lae-entry-meta span {
display: inline-block;
padding: 0;
margin: 0;
font-style: italic;
color: #999; }
.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-entry-text-wrap .lae-entry-meta span a {
-webkit-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
font-style: normal; }
.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-entry-text-wrap .lae-entry-meta span:after {
content: '//';
padding-left: 6px;
padding-right: 6px; }
.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-entry-text-wrap .lae-entry-meta span:first-child {
border: none;
padding-left: 0; }
.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-entry-text-wrap .lae-entry-meta span:last-child:after {
display: none; }
.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-entry-text-wrap .entry-summary {
padding: 0;
margin: 10px auto 0; }
.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-entry-text-wrap .entry-summary:before {
width: 35px;
height: 1px;
background: #aaa;
display: block;
content: "";
text-align: center;
margin: 0 auto 15px; }
.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-entry-text-wrap .lae-category-list {
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s; }
.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-entry-text-wrap .lae-category-list:after {
width: 35px;
height: 1px;
background: #aaa;
display: block;
content: ""; }
.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-entry-text-wrap .lae-category-list:after {
text-align: center;
margin: 10px auto 10px; }
.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-entry-text-wrap .lae-category-list a {
font-style: italic;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s; }
.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .type-post .lae-entry-text-wrap .entry-summary:before {
display: none; } .lae-clients {
clear: both;
overflow: hidden;
margin: 0 auto; }
@media (max-width: 479px) {
.lae-clients .lae-grid-mobile-1 .lae-grid-item:nth-child(1n + 1) {
border-left: 1px solid #ddd; }
.rtl .lae-clients .lae-grid-mobile-1 .lae-grid-item:nth-child(1n + 1) {
border-right: 1px solid #ddd; }
.lae-clients .lae-grid-mobile-1 .lae-grid-item:nth-child(-n + 1) {
border-top: 1px solid #ddd; }
.lae-clients .lae-grid-mobile-2 .lae-grid-item:nth-child(2n + 1) {
border-left: 1px solid #ddd; }
.rtl .lae-clients .lae-grid-mobile-2 .lae-grid-item:nth-child(2n + 1) {
border-right: 1px solid #ddd; }
.lae-clients .lae-grid-mobile-2 .lae-grid-item:nth-child(-n + 2) {
border-top: 1px solid #ddd; }
.lae-clients .lae-grid-mobile-3 .lae-grid-item:nth-child(3n + 1) {
border-left: 1px solid #ddd; }
.rtl .lae-clients .lae-grid-mobile-3 .lae-grid-item:nth-child(3n + 1) {
border-right: 1px solid #ddd; }
.lae-clients .lae-grid-mobile-3 .lae-grid-item:nth-child(-n + 3) {
border-top: 1px solid #ddd; }
.lae-clients .lae-grid-mobile-4 .lae-grid-item:nth-child(4n + 1) {
border-left: 1px solid #ddd; }
.rtl .lae-clients .lae-grid-mobile-4 .lae-grid-item:nth-child(4n + 1) {
border-right: 1px solid #ddd; }
.lae-clients .lae-grid-mobile-4 .lae-grid-item:nth-child(-n + 4) {
border-top: 1px solid #ddd; }
.lae-clients .lae-grid-mobile-5 .lae-grid-item:nth-child(5n + 1) {
border-left: 1px solid #ddd; }
.rtl .lae-clients .lae-grid-mobile-5 .lae-grid-item:nth-child(5n + 1) {
border-right: 1px solid #ddd; }
.lae-clients .lae-grid-mobile-5 .lae-grid-item:nth-child(-n + 5) {
border-top: 1px solid #ddd; }
.lae-clients .lae-grid-mobile-6 .lae-grid-item:nth-child(6n + 1) {
border-left: 1px solid #ddd; }
.rtl .lae-clients .lae-grid-mobile-6 .lae-grid-item:nth-child(6n + 1) {
border-right: 1px solid #ddd; }
.lae-clients .lae-grid-mobile-6 .lae-grid-item:nth-child(-n + 6) {
border-top: 1px solid #ddd; } }
@media (min-width: 480px) and (max-width: 800px) {
.lae-clients .lae-grid-tablet-1 .lae-grid-item:nth-child(1n + 1) {
border-left: 1px solid #ddd; }
.rtl .lae-clients .lae-grid-tablet-1 .lae-grid-item:nth-child(1n + 1) {
border-right: 1px solid #ddd; }
.lae-clients .lae-grid-tablet-1 .lae-grid-item:nth-child(-n + 1) {
border-top: 1px solid #ddd; }
.lae-clients .lae-grid-tablet-2 .lae-grid-item:nth-child(2n + 1) {
border-left: 1px solid #ddd; }
.rtl .lae-clients .lae-grid-tablet-2 .lae-grid-item:nth-child(2n + 1) {
border-right: 1px solid #ddd; }
.lae-clients .lae-grid-tablet-2 .lae-grid-item:nth-child(-n + 2) {
border-top: 1px solid #ddd; }
.lae-clients .lae-grid-tablet-3 .lae-grid-item:nth-child(3n + 1) {
border-left: 1px solid #ddd; }
.rtl .lae-clients .lae-grid-tablet-3 .lae-grid-item:nth-child(3n + 1) {
border-right: 1px solid #ddd; }
.lae-clients .lae-grid-tablet-3 .lae-grid-item:nth-child(-n + 3) {
border-top: 1px solid #ddd; }
.lae-clients .lae-grid-tablet-4 .lae-grid-item:nth-child(4n + 1) {
border-left: 1px solid #ddd; }
.rtl .lae-clients .lae-grid-tablet-4 .lae-grid-item:nth-child(4n + 1) {
border-right: 1px solid #ddd; }
.lae-clients .lae-grid-tablet-4 .lae-grid-item:nth-child(-n + 4) {
border-top: 1px solid #ddd; }
.lae-clients .lae-grid-tablet-5 .lae-grid-item:nth-child(5n + 1) {
border-left: 1px solid #ddd; }
.rtl .lae-clients .lae-grid-tablet-5 .lae-grid-item:nth-child(5n + 1) {
border-right: 1px solid #ddd; }
.lae-clients .lae-grid-tablet-5 .lae-grid-item:nth-child(-n + 5) {
border-top: 1px solid #ddd; }
.lae-clients .lae-grid-tablet-6 .lae-grid-item:nth-child(6n + 1) {
border-left: 1px solid #ddd; }
.rtl .lae-clients .lae-grid-tablet-6 .lae-grid-item:nth-child(6n + 1) {
border-right: 1px solid #ddd; }
.lae-clients .lae-grid-tablet-6 .lae-grid-item:nth-child(-n + 6) {
border-top: 1px solid #ddd; } }
@media only screen and (min-width: 801px) {
.lae-clients .lae-grid-desktop-1 .lae-grid-item:nth-child(1n + 1) {
border-left: 1px solid #ddd; }
.rtl .lae-clients .lae-grid-desktop-1 .lae-grid-item:nth-child(1n + 1) {
border-right: 1px solid #ddd; }
.lae-clients .lae-grid-desktop-1 .lae-grid-item:nth-child(-n + 1) {
border-top: 1px solid #ddd; }
.lae-clients .lae-grid-desktop-2 .lae-grid-item:nth-child(2n + 1) {
border-left: 1px solid #ddd; }
.rtl .lae-clients .lae-grid-desktop-2 .lae-grid-item:nth-child(2n + 1) {
border-right: 1px solid #ddd; }
.lae-clients .lae-grid-desktop-2 .lae-grid-item:nth-child(-n + 2) {
border-top: 1px solid #ddd; }
.lae-clients .lae-grid-desktop-3 .lae-grid-item:nth-child(3n + 1) {
border-left: 1px solid #ddd; }
.rtl .lae-clients .lae-grid-desktop-3 .lae-grid-item:nth-child(3n + 1) {
border-right: 1px solid #ddd; }
.lae-clients .lae-grid-desktop-3 .lae-grid-item:nth-child(-n + 3) {
border-top: 1px solid #ddd; }
.lae-clients .lae-grid-desktop-4 .lae-grid-item:nth-child(4n + 1) {
border-left: 1px solid #ddd; }
.rtl .lae-clients .lae-grid-desktop-4 .lae-grid-item:nth-child(4n + 1) {
border-right: 1px solid #ddd; }
.lae-clients .lae-grid-desktop-4 .lae-grid-item:nth-child(-n + 4) {
border-top: 1px solid #ddd; }
.lae-clients .lae-grid-desktop-5 .lae-grid-item:nth-child(5n + 1) {
border-left: 1px solid #ddd; }
.rtl .lae-clients .lae-grid-desktop-5 .lae-grid-item:nth-child(5n + 1) {
border-right: 1px solid #ddd; }
.lae-clients .lae-grid-desktop-5 .lae-grid-item:nth-child(-n + 5) {
border-top: 1px solid #ddd; }
.lae-clients .lae-grid-desktop-6 .lae-grid-item:nth-child(6n + 1) {
border-left: 1px solid #ddd; }
.rtl .lae-clients .lae-grid-desktop-6 .lae-grid-item:nth-child(6n + 1) {
border-right: 1px solid #ddd; }
.lae-clients .lae-grid-desktop-6 .lae-grid-item:nth-child(-n + 6) {
border-top: 1px solid #ddd; } }
.lae-clients .lae-client {
position: relative;
border-right: 1px solid #ddd;
border-bottom: 1px solid #ddd;
overflow: hidden; }
.rtl .lae-clients .lae-client {
border-right: none;
border-left: 1px solid #ddd; }
.lae-dark-bg .lae-clients .lae-client {
border-color: #505050 !important; }
.lae-clients .lae-client img {
-webkit-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
width: 100%;
margin: 0;
display: block; }
.lae-clients .lae-client .lae-client-name {
position: absolute;
z-index: 2;
top: 50%;
left: 0;
text-align: center;
width: 100%;
height: 100%;
margin-top: -12px;
color: #fff;
font-size: 18px;
line-height: 26px;
-webkit-transition: opacity .4s ease-in-out 0s;
transition: opacity .4s ease-in-out 0s;
opacity: 0; }
.lae-clients .lae-client .lae-client-name a {
color: #fff;
text-decoration: none; }
.lae-clients .lae-client .lae-image-overlay {
position: absolute;
left: 0;
top: 0;
overflow: hidden;
width: 100%;
height: 100%;
background: #000;
filter: alpha(opacity=0);
-moz-opacity: 0;
opacity: 0;
-webkit-transition: opacity .4s ease-in-out 0s;
transition: opacity .4s ease-in-out 0s; }
.lae-clients .lae-client:hover .lae-image-overlay {
opacity: 0.7; }
.lae-dark-bg .lae-clients .lae-client:hover .lae-image-overlay {
opacity: 0.8; }
.lae-clients .lae-client:hover .lae-client-name {
opacity: 1; } .lae-carousel .lae-carousel-item {
position: relative; }
.lae-carousel.lae-container {
max-width: none; } input.lae-button.lae-with-icon i, input.lae-button.lae-with-icon img.lae-thumbnail, button.lae-button.lae-with-icon i, button.lae-button.lae-with-icon img.lae-thumbnail, a.lae-button.lae-with-icon i, a.lae-button.lae-with-icon img.lae-thumbnail, .lae-button.lae-with-icon:active i, .lae-button.lae-with-icon:active img.lae-thumbnail, .lae-button.lae-with-icon:visited i, .lae-button.lae-with-icon:visited img.lae-thumbnail {
margin-right: 15px; }
.rtl input.lae-button.lae-with-icon i, .rtl input.lae-button.lae-with-icon img.lae-thumbnail, .rtl button.lae-button.lae-with-icon i, .rtl button.lae-button.lae-with-icon img.lae-thumbnail, .rtl a.lae-button.lae-with-icon i, .rtl a.lae-button.lae-with-icon img.lae-thumbnail, .rtl .lae-button.lae-with-icon:active i, .rtl .lae-button.lae-with-icon:active img.lae-thumbnail, .rtl .lae-button.lae-with-icon:visited i, .rtl .lae-button.lae-with-icon:visited img.lae-thumbnail {
margin-right: 0;
margin-left: 15px; }
input.lae-button.lae-with-icon i, button.lae-button.lae-with-icon i, a.lae-button.lae-with-icon i, .lae-button.lae-with-icon:active i, .lae-button.lae-with-icon:visited i {
color: #fff;
font-size: 24px;
vertical-align: middle;
line-height: 1; }
input.lae-button.lae-with-icon img.lae-thumbnail, button.lae-button.lae-with-icon img.lae-thumbnail, a.lae-button.lae-with-icon img.lae-thumbnail, .lae-button.lae-with-icon:active img.lae-thumbnail, .lae-button.lae-with-icon:visited img.lae-thumbnail {
display: inline !important;
vertical-align: middle;
max-width: 50px; } .lae-heading {
text-align: center;
margin: 0 auto 60px;
max-width: 640px; }
@media only screen and (max-width: 767px) {
.lae-heading {
margin-bottom: 40px; } }
.lae-heading .lae-text {
font-size: 18px;
line-height: 28px;
margin: 0 auto; }
@media only screen and (max-width: 767px) {
.lae-heading .lae-text {
font-size: 15px;
line-height: 26px; } }
.lae-heading.lae-alignleft, .lae-heading.lae-alignright {
margin: 0; }
.lae-heading.lae-alignleft .lae-text, .lae-heading.lae-alignright .lae-text {
margin: 0; }
.lae-heading.lae-alignleft {
text-align: left; }
.lae-heading.lae-alignright {
text-align: right;
max-width: none; }
.lae-heading .lae-title {
font-weight: 700;
font-size: 32px;
line-height: 42px;
margin: 0 auto 20px;
color: #333;
font-weight: bold; }
@media only screen and (max-width: 767px) {
.lae-heading .lae-title {
font-size: 24px;
line-height: 32px; } }
.lae-dark-bg .lae-heading .lae-title {
color: #e5e5e5; }
.lae-dark-bg .lae-heading .lae-subtitle {
color: #B0B0B0; }
.lae-dark-bg .lae-heading .lae-text {
color: #909090; }
.lae-heading.lae-alignleft .lae-title, .lae-heading.lae-alignright .lae-title {
margin: 0 0 20px; }
.lae-heading .lae-subtitle {
margin: 0 auto 5px;
color: #888;
font-size: 12px;
line-height: 20px;
text-transform: uppercase;
font-weight: 600;
letter-spacing: 2px;
position: relative;
display: inline-block;
padding: 0 10px; }
@media only screen and (max-width: 767px) {
.lae-heading .lae-subtitle {
font-size: 11px;
line-height: 18px; } }
.lae-heading.lae-alignleft .lae-subtitle, .lae-heading.lae-alignright .lae-subtitle {
margin: 0 0 5px;
padding: 0; }
.lae-heading.lae-alignleft .lae-subtitle:before, .lae-heading.lae-alignleft .lae-subtitle:after, .lae-heading.lae-alignright .lae-subtitle:before, .lae-heading.lae-alignright .lae-subtitle:after {
display: none; }
.lae-heading.lae-style3 {
margin: 0 auto 30px; }
.lae-heading.lae-style3 .lae-title {
font-size: 22px;
line-height: 32px;
text-transform: uppercase;
letter-spacing: 1px; }
.lae-heading.lae-style3 .lae-title:after {
width: 35px;
height: 1px;
background: #aaa;
display: block;
content: ""; }
.lae-heading.lae-style3 .lae-title:after {
margin: 10px auto 20px; }
.lae-dark-bg .lae-heading.lae-style3 .lae-title:after {
background: #909090; }
@media only screen and (max-width: 767px) {
.lae-heading.lae-style3 .lae-title {
font-size: 16px;
line-height: 24px; } }
.lae-heading.lae-style3.lae-alignleft, .lae-heading.lae-style3.lae-alignright {
margin: 0 0 30px; }
.lae-heading.lae-style3.lae-alignleft .lae-title:after, .lae-heading.lae-style3.lae-alignright .lae-title:after {
margin: 10px 0 20px; } .lae-portfolio-wrap {
clear: both;
overflow: hidden; }
.lae-portfolio-wrap .lae-portfolio-header {
position: relative;
max-width: 1140px;
margin: 0 auto 30px;
overflow: hidden;
clear: both;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-flow: row nowrap;
flex-flow: row nowrap;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between; }
.lae-portfolio-wrap .lae-portfolio-header.lae-no-heading {
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center; }
@media only screen and (max-width: 800px) {
.lae-portfolio-wrap .lae-portfolio-header {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-flow: column wrap;
flex-flow: column wrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start; } }
.lae-portfolio-wrap .lae-heading {
display: inline-block;
text-align: left;
max-width: none;
font-size: 32px;
line-height: 44px;
text-transform: uppercase;
letter-spacing: 1px;
color: #333;
margin: 0 100px 0 0; }
.rtl .lae-portfolio-wrap .lae-heading {
margin: 0 0 0 100px; }
.lae-dark-bg .lae-portfolio-wrap .lae-heading {
color: #e5e5e5; }
@media only screen and (max-width: 800px) {
.lae-portfolio-wrap .lae-heading {
margin-bottom: 30px; } }
.lae-portfolio-wrap .lae-taxonomy-filter {
display: block;
margin: 0;
padding: 0;
-webkit-align-self: center;
align-self: center;
-ms-flex-item-align: center; }
@media only screen and (max-width: 800px) {
.lae-portfolio-wrap .lae-taxonomy-filter {
-webkit-align-self: flex-start;
align-self: flex-start;
-ms-flex-item-align: start; } }
.lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item {
position: relative;
display: inline-block;
margin: 0 0 15px 0;
padding: 0;
font-style: normal;
border-bottom: 1px solid #ddd; }
.lae-dark-bg .lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item {
border-color: #444; }
.lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item a {
font-size: 15px;
line-height: 24px;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s;
display: block;
color: #777;
padding: 0 15px 15px; }
.lae-dark-bg .lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item a {
color: #999; }
.lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item a:hover {
color: #222; }
.lae-dark-bg .lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item a:hover {
color: #fff; }
@media only screen and (max-width: 479px) {
.lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item a {
padding: 0 10px 8px; } }
.lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item.lae-active a {
color: #222; }
.lae-dark-bg .lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item.lae-active a {
color: #fff; }
.lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item.lae-active:after {
content: '';
position: absolute;
left: 0;
bottom: 0;
border-bottom: 3px solid #f94213;
width: 100%; }
.lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item:last-child {
margin-right: 0; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .hentry {
margin: 0;
padding: 0;
border: none;
background: none;
-webkit-box-shadow: none;
box-shadow: none; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image {
position: relative;
overflow: hidden; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image img {
display: block;
width: 100%;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image:hover img {
-webkit-filter: brightness(50%);
filter: brightness(50%); }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info {
display: block;
text-align: center; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info .lae-entry-info {
text-align: center;
display: block;
position: absolute;
top: 50%;
left: 0;
right: 0;
margin: auto;
max-width: 100%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%); }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info .lae-post-title {
padding: 10px;
margin: 0;
font-size: 18px;
line-height: 28px;
font-weight: 400;
color: #fff;
opacity: 0;
-webkit-transition: opacity .4s ease-in-out 0s;
transition: opacity .4s ease-in-out 0s; }
@media only screen and (max-width: 1024px) {
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info .lae-post-title {
font-size: 18px;
line-height: 26px; } }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info .lae-post-title a {
display: inline;
color: #fff;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s;
border-bottom: 1px solid transparent; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info .lae-post-title a:hover {
border-bottom: 1px solid #ccc; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info .lae-terms {
display: block;
color: #f9f9f9;
font-size: 14px;
line-height: 22px;
opacity: 0;
-webkit-transition: opacity .4s ease-in-out 0s;
transition: opacity .4s ease-in-out 0s; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info .lae-terms a {
color: #ddd;
position: relative;
display: inline;
zoom: 1;
font-size: 14px;
line-height: 22px;
font-style: italic;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info .lae-terms a:hover {
color: #fff; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image:hover .lae-image-info .lae-post-title, .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image:hover .lae-image-info .lae-terms {
opacity: 1; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-entry-text-wrap {
text-align: center;
max-width: 650px;
margin: 20px auto 0; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-title {
font-size: 18px;
line-height: 26px;
font-weight: normal;
margin-bottom: 10px; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-title:after, .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-title:before {
display: none; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-title a {
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s;
color: #333; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-title a:hover {
color: #888; }
.lae-dark-bg .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-title a {
color: #e0e0e0; }
.lae-dark-bg .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-title a:hover {
color: #fff; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-entry-meta span {
display: inline-block;
padding: 0;
margin: 0;
font-style: italic;
color: #999; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-entry-meta span:after {
content: '//';
padding-left: 6px;
padding-right: 6px; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-entry-meta span:first-child {
border: none;
padding-left: 0; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-entry-meta span:last-child:after {
display: none; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-entry-meta span a {
-webkit-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
font-style: normal; }
.lae-dark-bg .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-entry-meta span {
color: #707070; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-summary {
margin: 15px auto 0;
padding: 0; }
.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-summary:before {
width: 35px;
height: 1px;
background: #aaa;
display: block;
content: "";
text-align: center;
margin: 0 auto 15px; }
.lae-dark-bg .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-summary {
color: #999; }
.lae-dark-bg .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-summary:before {
background: #505050; }
.lae-portfolio-wrap .lae-portfolio-item .lae-read-more, .lae-posts-carousel .lae-posts-carousel-item .lae-read-more {
margin: 25px 0 0 0; }
.lae-portfolio-wrap .lae-portfolio-item .lae-read-more a:not(.lae-button), .lae-posts-carousel .lae-posts-carousel-item .lae-read-more a:not(.lae-button) {
color: #333;
font-size: 12px;
line-height: 1;
font-weight: 600;
text-transform: uppercase;
display: block;
padding: 0;
-webkit-transition: color 0.3s ease-in-out 0s;
transition: color 0.3s ease-in-out 0s; }
.lae-portfolio-wrap .lae-portfolio-item .lae-read-more a:not(.lae-button):hover, .lae-posts-carousel .lae-posts-carousel-item .lae-read-more a:not(.lae-button):hover {
color: #666; }
.lae-portfolio-wrap .lae-portfolio-item .lae-read-more a:not(.lae-button):after, .lae-posts-carousel .lae-posts-carousel-item .lae-read-more a:not(.lae-button):after {
content: '›';
display: inline-block;
margin-left: 7px; }
.rtl .lae-portfolio-wrap .lae-portfolio-item .lae-read-more a:not(.lae-button):after, .rtl .lae-posts-carousel .lae-posts-carousel-item .lae-read-more a:not(.lae-button):after {
margin: 0 7px 0 0; } .lae-tab-slider {
clear: both;
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-flow: column nowrap;
flex-flow: column nowrap; }
.lae-tab-slider .slick-list {
-webkit-box-ordinal-group: 3;
-ms-flex-order: 2;
order: 2; }
.lae-tab-slider .slick-list .slick-slide .lae-tab-slide-nav {
display: none; }
.lae-tab-slider .slick-dots {
list-style: none;
margin: 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-flow: row wrap;
flex-flow: row wrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start; }
.lae-tab-slider .slick-dots li {
list-style: none;
margin: 0 20px 0 0; }
.lae-tab-slider .slick-dots li:last-child {
margin-right: 0; }
.lae-tab-slider .slick-dots .lae-tab-slide-nav {
display: block;
text-overflow: ellipsis;
white-space: normal;
text-decoration: none;
border: none;
margin: 0;
outline: none; }
.lae-tab-slider .slick-dots .lae-tab-slide-nav span.lae-icon-wrapper i {
font-size: 32px;
vertical-align: middle;
margin-right: 10px;
-webkit-transition: color .3s ease-in-out 0s;
transition: color .3s ease-in-out 0s; }
.rtl .lae-tab-slider .slick-dots .lae-tab-slide-nav span.lae-icon-wrapper i {
margin: 0 0 0 15px; }
.lae-tab-slider .slick-dots .lae-tab-slide-nav span.lae-image-wrapper img {
display: inline-block;
vertical-align: middle;
height: auto;
width: auto;
padding: 0;
margin: 0 10px 0 0;
border: none; }
.lae-tab-slider .slick-dots .lae-tab-slide-nav span.lae-tab-title {
font-size: 14px;
line-height: 1;
font-weight: 700;
letter-spacing: 1px;
-webkit-transition: color .3s ease-in-out 0s;
transition: color .3s ease-in-out 0s;
vertical-align: middle; }
.lae-tab-slider .lae-tab-slide {
position: relative; }
.lae-tab-slider.lae-style1 {
background: #f2f2f2;
border-radius: 5px; }
.lae-tab-slider.lae-style1 .slick-list .lae-tab-slide .lae-tab-slide-content {
padding: 40px; }
.lae-tab-slider.lae-style1 .slick-dots {
border-bottom: 1px solid #dddddd;
margin: 0 40px;
text-align: center; }
.lae-tab-slider.lae-style1 .slick-dots .lae-tab-slide-nav {
position: relative;
z-index: 1;
padding: 30px 40px; }
@media only screen and (max-width: 1024px) {
.lae-tab-slider.lae-style1 .slick-dots .lae-tab-slide-nav {
padding: 25px 20px; } }
.lae-tab-slider.lae-style1 .slick-dots .lae-tab-slide-nav:before {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 2px;
background: transparent;
-webkit-transition: background .3s ease-in-out 0s;
transition: background .3s ease-in-out 0s; }
.lae-tab-slider.lae-style1 .slick-dots .lae-tab-slide-nav .lae-tab-title {
color: #888;
padding: 30px 20px;
text-transform: uppercase; }
.lae-tab-slider.lae-style1 .slick-dots .lae-tab-slide-nav:hover .lae-tab-title {
color: #565656; }
.lae-tab-slider.lae-style1 .slick-dots li.slick-active .lae-tab-slide-nav .lae-tab-title {
color: #333; }
.lae-tab-slider.lae-style1 .slick-dots li.slick-active .lae-tab-slide-nav:before {
background: #f94213;
height: 2px; }
@media only screen and (max-width: 767px) {
.lae-tab-slider.lae-style1 .slick-dots {
margin: 0 30px; } }
.lae-tab-slider.lae-style2 .slick-list .lae-tab-slide .lae-tab-slide-content {
margin-top: 40px;
font-size: 16px;
line-height: 27px; }
.lae-tab-slider.lae-style2 .slick-dots li {
margin: 0 60px 0 0; }
.lae-tab-slider.lae-style2 .slick-dots li:last-child {
margin-right: 0; }
.lae-tab-slider.lae-style2 .slick-dots .lae-tab-slide-nav {
text-align: center; }
.lae-tab-slider.lae-style2 .slick-dots .lae-tab-slide-nav span.lae-icon-wrapper i {
display: block;
margin: 0 auto;
font-size: 84px;
color: #aaa; }
.lae-tab-slider.lae-style2 .slick-dots .lae-tab-slide-nav span.lae-image-wrapper img {
max-width: none;
display: block;
margin: 0 auto;
width: 84px; }
.lae-tab-slider.lae-style2 .slick-dots .lae-tab-slide-nav .lae-tab-title {
display: block;
color: #999;
font-size: 16px;
line-height: 26px;
letter-spacing: 1px;
font-weight: 600;
margin: 20px auto 0;
text-transform: uppercase; }
.lae-tab-slider.lae-style2 .slick-dots .lae-tab-slide-nav:hover span.lae-icon-wrapper i {
color: #565656; }
.lae-tab-slider.lae-style2 .slick-dots .lae-tab-slide-nav:hover .lae-tab-title {
color: #747373; }
.lae-tab-slider.lae-style2 .slick-dots li.slick-active .lae-tab-slide-nav span.lae-icon-wrapper i {
color: #747373; }
.lae-tab-slider.lae-style2 .slick-dots li.slick-active .lae-tab-slide-nav .lae-tab-title {
color: #747373; }
@media only screen and (max-width: 1024px) {
.lae-tab-slider.lae-style2 .slick-dots .lae-tab-slide-nav span.lae-icon-wrapper i {
font-size: 64px; }
.lae-tab-slider.lae-style2 .slick-dots .lae-tab-slide-nav span.lae-image-wrapper i {
width: 64px; }
.lae-tab-slider.lae-style2 .slick-dots .lae-tab-slide-nav .lae-tab-title {
font-size: 15px;
line-height: 24px;
letter-spacing: 1px; } }
.lae-tab-slider.lae-style3 .slick-list .lae-tab-slide .lae-tab-slide-content {
margin-top: 20px;
font-size: 15px;
line-height: 26px; }
.lae-tab-slider.lae-style3 .slick-dots li {
margin: 0 60px 20px 0; }
.lae-tab-slider.lae-style3 .slick-dots li:last-child {
margin-right: 0; }
.lae-tab-slider.lae-style3 .slick-dots .lae-tab-slide-nav {
text-align: center;
border-top: 2px solid transparent;
border-bottom: 2px solid transparent;
padding: 5px 0; }
.lae-tab-slider.lae-style3 .slick-dots .lae-tab-slide-nav span.lae-icon-wrapper i {
color: #aaa; }
.lae-tab-slider.lae-style3 .slick-dots .lae-tab-slide-nav span.lae-image-wrapper img {
width: 32px; }
.lae-tab-slider.lae-style3 .slick-dots .lae-tab-slide-nav .lae-tab-title {
color: #999;
font-size: 15px;
line-height: 26px;
font-weight: 600;
text-transform: uppercase; }
.lae-tab-slider.lae-style3 .slick-dots .lae-tab-slide-nav:hover span.lae-icon-wrapper i {
color: #565656; }
.lae-tab-slider.lae-style3 .slick-dots .lae-tab-slide-nav:hover .lae-tab-title {
color: #747373; }
.lae-tab-slider.lae-style3 .slick-dots li.slick-active .lae-tab-slide-nav {
border-color: #f94213; }
.lae-tab-slider.lae-style3 .slick-dots li.slick-active .lae-tab-slide-nav span.lae-icon-wrapper i {
color: #747373; }
.lae-tab-slider.lae-style3 .slick-dots li.slick-active .lae-tab-slide-nav .lae-tab-title {
color: #747373; }
@media only screen and (max-width: 767px) {
.lae-tab-slider.lae-style3 .slick-dots li {
margin: 0 40px 15px 0; }
.lae-tab-slider.lae-style3 .slick-dots li:last-child {
margin-right: 0; }
.lae-tab-slider.lae-style3 .slick-dots .lae-tab-slide-nav .lae-tab-title {
font-size: 14px;
line-height: 22px; } }@font-face{font-family:'Simple-Line-Icons';src:url(//www.goclickon.com.au/wp-content/plugins/saasland-core/assets/vendors/simple-line-icon/fonts/Simple-Line-Icons.eot);src:url(//www.goclickon.com.au/wp-content/plugins/saasland-core/assets/vendors/simple-line-icon/fonts/Simple-Line-Icons.eot?#iefix) format('embedded-opentype'),url(//www.goclickon.com.au/wp-content/plugins/saasland-core/assets/vendors/simple-line-icon/fonts/Simple-Line-Icons.woff) format('woff'),url(//www.goclickon.com.au/wp-content/plugins/saasland-core/assets/vendors/simple-line-icon/fonts/Simple-Line-Icons.ttf) format('truetype'),url(//www.goclickon.com.au/wp-content/plugins/saasland-core/assets/vendors/simple-line-icon/fonts/Simple-Line-Icons.svg#Simple-Line-Icons) format('svg');font-weight:normal;font-style:normal}[data-icon]:before{font-family:'Simple-Line-Icons';content:attr(data-icon);speak:none;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-user-female,.icon-user-follow,.icon-user-following,.icon-user-unfollow,.icon-trophy,.icon-screen-smartphone,.icon-screen-desktop,.icon-plane,.icon-notebook,.icon-moustache,.icon-mouse,.icon-magnet,.icon-energy,.icon-emoticon-smile,.icon-disc,.icon-cursor-move,.icon-crop,.icon-credit-card,.icon-chemistry,.icon-user,.icon-speedometer,.icon-social-youtube,.icon-social-twitter,.icon-social-tumblr,.icon-social-facebook,.icon-social-dropbox,.icon-social-dribbble,.icon-shield,.icon-screen-tablet,.icon-magic-wand,.icon-hourglass,.icon-graduation,.icon-ghost,.icon-game-controller,.icon-fire,.icon-eyeglasses,.icon-envelope-open,.icon-envelope-letter,.icon-bell,.icon-badge,.icon-anchor,.icon-wallet,.icon-vector,.icon-speech,.icon-puzzle,.icon-printer,.icon-present,.icon-playlist,.icon-pin,.icon-picture,.icon-map,.icon-layers,.icon-handbag,.icon-globe-alt,.icon-globe,.icon-frame,.icon-folder-alt,.icon-film,.icon-feed,.icon-earphones-alt,.icon-earphones,.icon-drop,.icon-drawer,.icon-docs,.icon-directions,.icon-direction,.icon-diamond,.icon-cup,.icon-compass,.icon-call-out,.icon-call-in,.icon-call-end,.icon-calculator,.icon-bubbles,.icon-briefcase,.icon-book-open,.icon-basket-loaded,.icon-basket,.icon-bag,.icon-action-undo,.icon-action-redo,.icon-wrench,.icon-umbrella,.icon-trash,.icon-tag,.icon-support,.icon-size-fullscreen,.icon-size-actual,.icon-shuffle,.icon-share-alt,.icon-share,.icon-rocket,.icon-question,.icon-pie-chart,.icon-pencil,.icon-note,.icon-music-tone-alt,.icon-music-tone,.icon-microphone,.icon-loop,.icon-logout,.icon-login,.icon-list,.icon-like,.icon-home,.icon-grid,.icon-graph,.icon-equalizer,.icon-dislike,.icon-cursor,.icon-control-start,.icon-control-rewind,.icon-control-play,.icon-control-pause,.icon-control-forward,.icon-control-end,.icon-calendar,.icon-bulb,.icon-bar-chart,.icon-arrow-up,.icon-arrow-right,.icon-arrow-left,.icon-arrow-down,.icon-ban,.icon-bubble,.icon-camcorder,.icon-camera,.icon-check,.icon-clock,.icon-close,.icon-cloud-download,.icon-cloud-upload,.icon-doc,.icon-envelope,.icon-eye,.icon-flag,.icon-folder,.icon-heart,.icon-info,.icon-key,.icon-link,.icon-lock,.icon-lock-open,.icon-magnifier,.icon-magnifier-add,.icon-magnifier-remove,.icon-paper-clip,.icon-paper-plane,.icon-plus,.icon-pointer,.icon-power,.icon-refresh,.icon-reload,.icon-settings,.icon-star,.icon-symbol-female,.icon-symbol-male,.icon-target,.icon-volume-1,.icon-volume-2,.icon-volume-off,.icon-users{font-family:'Simple-Line-Icons';speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased}.icon-user-female:before{content:"\e000"}.icon-user-follow:before{content:"\e002"}.icon-user-following:before{content:"\e003"}.icon-user-unfollow:before{content:"\e004"}.icon-trophy:before{content:"\e006"}.icon-screen-smartphone:before{content:"\e010"}.icon-screen-desktop:before{content:"\e011"}.icon-plane:before{content:"\e012"}.icon-notebook:before{content:"\e013"}.icon-moustache:before{content:"\e014"}.icon-mouse:before{content:"\e015"}.icon-magnet:before{content:"\e016"}.icon-energy:before{content:"\e020"}.icon-emoticon-smile:before{content:"\e021"}.icon-disc:before{content:"\e022"}.icon-cursor-move:before{content:"\e023"}.icon-crop:before{content:"\e024"}.icon-credit-card:before{content:"\e025"}.icon-chemistry:before{content:"\e026"}.icon-user:before{content:"\e005"}.icon-speedometer:before{content:"\e007"}.icon-social-youtube:before{content:"\e008"}.icon-social-twitter:before{content:"\e009"}.icon-social-tumblr:before{content:"\e00a"}.icon-social-facebook:before{content:"\e00b"}.icon-social-dropbox:before{content:"\e00c"}.icon-social-dribbble:before{content:"\e00d"}.icon-shield:before{content:"\e00e"}.icon-screen-tablet:before{content:"\e00f"}.icon-magic-wand:before{content:"\e017"}.icon-hourglass:before{content:"\e018"}.icon-graduation:before{content:"\e019"}.icon-ghost:before{content:"\e01a"}.icon-game-controller:before{content:"\e01b"}.icon-fire:before{content:"\e01c"}.icon-eyeglasses:before{content:"\e01d"}.icon-envelope-open:before{content:"\e01e"}.icon-envelope-letter:before{content:"\e01f"}.icon-bell:before{content:"\e027"}.icon-badge:before{content:"\e028"}.icon-anchor:before{content:"\e029"}.icon-wallet:before{content:"\e02a"}.icon-vector:before{content:"\e02b"}.icon-speech:before{content:"\e02c"}.icon-puzzle:before{content:"\e02d"}.icon-printer:before{content:"\e02e"}.icon-present:before{content:"\e02f"}.icon-playlist:before{content:"\e030"}.icon-pin:before{content:"\e031"}.icon-picture:before{content:"\e032"}.icon-map:before{content:"\e033"}.icon-layers:before{content:"\e034"}.icon-handbag:before{content:"\e035"}.icon-globe-alt:before{content:"\e036"}.icon-globe:before{content:"\e037"}.icon-frame:before{content:"\e038"}.icon-folder-alt:before{content:"\e039"}.icon-film:before{content:"\e03a"}.icon-feed:before{content:"\e03b"}.icon-earphones-alt:before{content:"\e03c"}.icon-earphones:before{content:"\e03d"}.icon-drop:before{content:"\e03e"}.icon-drawer:before{content:"\e03f"}.icon-docs:before{content:"\e040"}.icon-directions:before{content:"\e041"}.icon-direction:before{content:"\e042"}.icon-diamond:before{content:"\e043"}.icon-cup:before{content:"\e044"}.icon-compass:before{content:"\e045"}.icon-call-out:before{content:"\e046"}.icon-call-in:before{content:"\e047"}.icon-call-end:before{content:"\e048"}.icon-calculator:before{content:"\e049"}.icon-bubbles:before{content:"\e04a"}.icon-briefcase:before{content:"\e04b"}.icon-book-open:before{content:"\e04c"}.icon-basket-loaded:before{content:"\e04d"}.icon-basket:before{content:"\e04e"}.icon-bag:before{content:"\e04f"}.icon-action-undo:before{content:"\e050"}.icon-action-redo:before{content:"\e051"}.icon-wrench:before{content:"\e052"}.icon-umbrella:before{content:"\e053"}.icon-trash:before{content:"\e054"}.icon-tag:before{content:"\e055"}.icon-support:before{content:"\e056"}.icon-size-fullscreen:before{content:"\e057"}.icon-size-actual:before{content:"\e058"}.icon-shuffle:before{content:"\e059"}.icon-share-alt:before{content:"\e05a"}.icon-share:before{content:"\e05b"}.icon-rocket:before{content:"\e05c"}.icon-question:before{content:"\e05d"}.icon-pie-chart:before{content:"\e05e"}.icon-pencil:before{content:"\e05f"}.icon-note:before{content:"\e060"}.icon-music-tone-alt:before{content:"\e061"}.icon-music-tone:before{content:"\e062"}.icon-microphone:before{content:"\e063"}.icon-loop:before{content:"\e064"}.icon-logout:before{content:"\e065"}.icon-login:before{content:"\e066"}.icon-list:before{content:"\e067"}.icon-like:before{content:"\e068"}.icon-home:before{content:"\e069"}.icon-grid:before{content:"\e06a"}.icon-graph:before{content:"\e06b"}.icon-equalizer:before{content:"\e06c"}.icon-dislike:before{content:"\e06d"}.icon-cursor:before{content:"\e06e"}.icon-control-start:before{content:"\e06f"}.icon-control-rewind:before{content:"\e070"}.icon-control-play:before{content:"\e071"}.icon-control-pause:before{content:"\e072"}.icon-control-forward:before{content:"\e073"}.icon-control-end:before{content:"\e074"}.icon-calendar:before{content:"\e075"}.icon-bulb:before{content:"\e076"}.icon-bar-chart:before{content:"\e077"}.icon-arrow-up:before{content:"\e078"}.icon-arrow-right:before{content:"\e079"}.icon-arrow-left:before{content:"\e07a"}.icon-arrow-down:before{content:"\e07b"}.icon-ban:before{content:"\e07c"}.icon-bubble:before{content:"\e07d"}.icon-camcorder:before{content:"\e07e"}.icon-camera:before{content:"\e07f"}.icon-check:before{content:"\e080"}.icon-clock:before{content:"\e081"}.icon-close:before{content:"\e082"}.icon-cloud-download:before{content:"\e083"}.icon-cloud-upload:before{content:"\e084"}.icon-doc:before{content:"\e085"}.icon-envelope:before{content:"\e086"}.icon-eye:before{content:"\e087"}.icon-flag:before{content:"\e088"}.icon-folder:before{content:"\e089"}.icon-heart:before{content:"\e08a"}.icon-info:before{content:"\e08b"}.icon-key:before{content:"\e08c"}.icon-link:before{content:"\e08d"}.icon-lock:before{content:"\e08e"}.icon-lock-open:before{content:"\e08f"}.icon-magnifier:before{content:"\e090"}.icon-magnifier-add:before{content:"\e091"}.icon-magnifier-remove:before{content:"\e092"}.icon-paper-clip:before{content:"\e093"}.icon-paper-plane:before{content:"\e094"}.icon-plus:before{content:"\e095"}.icon-pointer:before{content:"\e096"}.icon-power:before{content:"\e097"}.icon-refresh:before{content:"\e098"}.icon-reload:before{content:"\e099"}.icon-settings:before{content:"\e09a"}.icon-star:before{content:"\e09b"}.icon-symbol-female:before{content:"\e09c"}.icon-symbol-male:before{content:"\e09d"}.icon-target:before{content:"\e09e"}.icon-volume-1:before{content:"\e09f"}.icon-volume-2:before{content:"\e0a0"}.icon-volume-off:before{content:"\e0a1"}.icon-users:before{content:"\e001"}
 .slick-loading .slick-list
{
background: #fff url(https://www.goclickon.com.au/wp-content/plugins/saasland-core/assets/vendors/slick/ajax-loader.gif) center center no-repeat;
} @font-face
{
font-family: 'slick';
font-weight: normal;
font-style: normal;
src: url(https://www.goclickon.com.au/wp-content/plugins/saasland-core/assets/vendors/slick/fonts/slick.eot);
src: url(https://www.goclickon.com.au/wp-content/plugins/saasland-core/assets/vendors/slick/fonts/slick.eot?#iefix) format('embedded-opentype'), url(https://www.goclickon.com.au/wp-content/plugins/saasland-core/assets/vendors/slick/fonts/slick.woff) format('woff'), url(https://www.goclickon.com.au/wp-content/plugins/saasland-core/assets/vendors/slick/fonts/slick.ttf) format('truetype'), url(https://www.goclickon.com.au/wp-content/plugins/saasland-core/assets/vendors/slick/fonts/slick.svg#slick) format('svg');
} .slick-prev,
.slick-next
{
font-size: 0;
line-height: 0;
position: absolute;
top: 50%;
display: block;
width: 20px;
height: 20px;
padding: 0;
-webkit-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
transform: translate(0, -50%);
cursor: pointer;
color: transparent;
border: none;
outline: none;
background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
color: transparent;
outline: none;
background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
opacity: .25;
}
.slick-prev:before,
.slick-next:before
{
font-family: 'slick';
font-size: 20px;
line-height: 1;
opacity: .75;
color: white;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.slick-prev
{
left: -25px;
}
[dir='rtl'] .slick-prev
{
right: -25px;
left: auto;
}
.slick-prev:before
{
content: '←';
}
[dir='rtl'] .slick-prev:before
{
content: '→';
}
.slick-next
{
right: -25px;
}
[dir='rtl'] .slick-next
{
right: auto;
left: -25px;
}
.slick-next:before
{
content: '→';
}
[dir='rtl'] .slick-next:before
{
content: '←';
} .slick-dotted.slick-slider
{
margin-bottom: 30px;
}
.slick-dots
{
position: absolute;
bottom: -25px;
display: block;
width: 100%;
padding: 0;
margin: 0;
list-style: none;
text-align: center;
}
.slick-dots li
{
position: relative;
display: inline-block;
width: 20px;
height: 20px;
margin: 0 5px;
padding: 0;
cursor: pointer;
}
.slick-dots li button
{
font-size: 0;
line-height: 0;
display: block;
width: 20px;
height: 20px;
padding: 5px;
cursor: pointer;
color: transparent;
border: 0;
outline: none;
background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
opacity: 1;
}
.slick-dots li button:before
{
font-family: 'slick';
font-size: 6px;
line-height: 20px;
position: absolute;
top: 0;
left: 0;
width: 20px;
height: 20px;
content: '•';
text-align: center;
opacity: .25;
color: black;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
opacity: .75;
color: black;
}@font-face{font-family:'themify';src:url(//www.goclickon.com.au/wp-content/plugins/saasland-core/assets/vendors/themify-icon/fonts/themify.eot?-fvbane);src:url(//www.goclickon.com.au/wp-content/plugins/saasland-core/assets/vendors/themify-icon/fonts/themify.eot?#iefix-fvbane) format('embedded-opentype'),url(//www.goclickon.com.au/wp-content/plugins/saasland-core/assets/vendors/themify-icon/fonts/themify.woff?-fvbane) format('woff'),url(//www.goclickon.com.au/wp-content/plugins/saasland-core/assets/vendors/themify-icon/fonts/themify.ttf?-fvbane) format('truetype'),url(//www.goclickon.com.au/wp-content/plugins/saasland-core/assets/vendors/themify-icon/fonts/themify.svg?-fvbane#themify) format('svg');font-weight:400;font-display: auto;font-style:normal}[class^="ti-"],[class*=" ti-"]{font-family:'themify';speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ti-wand:before{content:"\e600"}.ti-volume:before{content:"\e601"}.ti-user:before{content:"\e602"}.ti-unlock:before{content:"\e603"}.ti-unlink:before{content:"\e604"}.ti-trash:before{content:"\e605"}.ti-thought:before{content:"\e606"}.ti-target:before{content:"\e607"}.ti-tag:before{content:"\e608"}.ti-tablet:before{content:"\e609"}.ti-star:before{content:"\e60a"}.ti-spray:before{content:"\e60b"}.ti-signal:before{content:"\e60c"}.ti-shopping-cart:before{content:"\e60d"}.ti-shopping-cart-full:before{content:"\e60e"}.ti-settings:before{content:"\e60f"}.ti-search:before{content:"\e610"}.ti-zoom-in:before{content:"\e611"}.ti-zoom-out:before{content:"\e612"}.ti-cut:before{content:"\e613"}.ti-ruler:before{content:"\e614"}.ti-ruler-pencil:before{content:"\e615"}.ti-ruler-alt:before{content:"\e616"}.ti-bookmark:before{content:"\e617"}.ti-bookmark-alt:before{content:"\e618"}.ti-reload:before{content:"\e619"}.ti-plus:before{content:"\e61a"}.ti-pin:before{content:"\e61b"}.ti-pencil:before{content:"\e61c"}.ti-pencil-alt:before{content:"\e61d"}.ti-paint-roller:before{content:"\e61e"}.ti-paint-bucket:before{content:"\e61f"}.ti-na:before{content:"\e620"}.ti-mobile:before{content:"\e621"}.ti-minus:before{content:"\e622"}.ti-medall:before{content:"\e623"}.ti-medall-alt:before{content:"\e624"}.ti-marker:before{content:"\e625"}.ti-marker-alt:before{content:"\e626"}.ti-arrow-up:before{content:"\e627"}.ti-arrow-right:before{content:"\e628"}.ti-arrow-left:before{content:"\e629"}.ti-arrow-down:before{content:"\e62a"}.ti-lock:before{content:"\e62b"}.ti-location-arrow:before{content:"\e62c"}.ti-link:before{content:"\e62d"}.ti-layout:before{content:"\e62e"}.ti-layers:before{content:"\e62f"}.ti-layers-alt:before{content:"\e630"}.ti-key:before{content:"\e631"}.ti-import:before{content:"\e632"}.ti-image:before{content:"\e633"}.ti-heart:before{content:"\e634"}.ti-heart-broken:before{content:"\e635"}.ti-hand-stop:before{content:"\e636"}.ti-hand-open:before{content:"\e637"}.ti-hand-drag:before{content:"\e638"}.ti-folder:before{content:"\e639"}.ti-flag:before{content:"\e63a"}.ti-flag-alt:before{content:"\e63b"}.ti-flag-alt-2:before{content:"\e63c"}.ti-eye:before{content:"\e63d"}.ti-export:before{content:"\e63e"}.ti-exchange-vertical:before{content:"\e63f"}.ti-desktop:before{content:"\e640"}.ti-cup:before{content:"\e641"}.ti-crown:before{content:"\e642"}.ti-comments:before{content:"\e643"}.ti-comment:before{content:"\e644"}.ti-comment-alt:before{content:"\e645"}.ti-close:before{content:"\e646"}.ti-clip:before{content:"\e647"}.ti-angle-up:before{content:"\e648"}.ti-angle-right:before{content:"\e649"}.ti-angle-left:before{content:"\e64a"}.ti-angle-down:before{content:"\e64b"}.ti-check:before{content:"\e64c"}.ti-check-box:before{content:"\e64d"}.ti-camera:before{content:"\e64e"}.ti-announcement:before{content:"\e64f"}.ti-brush:before{content:"\e650"}.ti-briefcase:before{content:"\e651"}.ti-bolt:before{content:"\e652"}.ti-bolt-alt:before{content:"\e653"}.ti-blackboard:before{content:"\e654"}.ti-bag:before{content:"\e655"}.ti-move:before{content:"\e656"}.ti-arrows-vertical:before{content:"\e657"}.ti-arrows-horizontal:before{content:"\e658"}.ti-fullscreen:before{content:"\e659"}.ti-arrow-top-right:before{content:"\e65a"}.ti-arrow-top-left:before{content:"\e65b"}.ti-arrow-circle-up:before{content:"\e65c"}.ti-arrow-circle-right:before{content:"\e65d"}.ti-arrow-circle-left:before{content:"\e65e"}.ti-arrow-circle-down:before{content:"\e65f"}.ti-angle-double-up:before{content:"\e660"}.ti-angle-double-right:before{content:"\e661"}.ti-angle-double-left:before{content:"\e662"}.ti-angle-double-down:before{content:"\e663"}.ti-zip:before{content:"\e664"}.ti-world:before{content:"\e665"}.ti-wheelchair:before{content:"\e666"}.ti-view-list:before{content:"\e667"}.ti-view-list-alt:before{content:"\e668"}.ti-view-grid:before{content:"\e669"}.ti-uppercase:before{content:"\e66a"}.ti-upload:before{content:"\e66b"}.ti-underline:before{content:"\e66c"}.ti-truck:before{content:"\e66d"}.ti-timer:before{content:"\e66e"}.ti-ticket:before{content:"\e66f"}.ti-thumb-up:before{content:"\e670"}.ti-thumb-down:before{content:"\e671"}.ti-text:before{content:"\e672"}.ti-stats-up:before{content:"\e673"}.ti-stats-down:before{content:"\e674"}.ti-split-v:before{content:"\e675"}.ti-split-h:before{content:"\e676"}.ti-smallcap:before{content:"\e677"}.ti-shine:before{content:"\e678"}.ti-shift-right:before{content:"\e679"}.ti-shift-left:before{content:"\e67a"}.ti-shield:before{content:"\e67b"}.ti-notepad:before{content:"\e67c"}.ti-server:before{content:"\e67d"}.ti-quote-right:before{content:"\e67e"}.ti-quote-left:before{content:"\e67f"}.ti-pulse:before{content:"\e680"}.ti-printer:before{content:"\e681"}.ti-power-off:before{content:"\e682"}.ti-plug:before{content:"\e683"}.ti-pie-chart:before{content:"\e684"}.ti-paragraph:before{content:"\e685"}.ti-panel:before{content:"\e686"}.ti-package:before{content:"\e687"}.ti-music:before{content:"\e688"}.ti-music-alt:before{content:"\e689"}.ti-mouse:before{content:"\e68a"}.ti-mouse-alt:before{content:"\e68b"}.ti-money:before{content:"\e68c"}.ti-microphone:before{content:"\e68d"}.ti-menu:before{content:"\e68e"}.ti-menu-alt:before{content:"\e68f"}.ti-map:before{content:"\e690"}.ti-map-alt:before{content:"\e691"}.ti-loop:before{content:"\e692"}.ti-location-pin:before{content:"\e693"}.ti-list:before{content:"\e694"}.ti-light-bulb:before{content:"\e695"}.ti-Italic:before{content:"\e696"}.ti-info:before{content:"\e697"}.ti-infinite:before{content:"\e698"}.ti-id-badge:before{content:"\e699"}.ti-hummer:before{content:"\e69a"}.ti-home:before{content:"\e69b"}.ti-help:before{content:"\e69c"}.ti-headphone:before{content:"\e69d"}.ti-harddrives:before{content:"\e69e"}.ti-harddrive:before{content:"\e69f"}.ti-gift:before{content:"\e6a0"}.ti-game:before{content:"\e6a1"}.ti-filter:before{content:"\e6a2"}.ti-files:before{content:"\e6a3"}.ti-file:before{content:"\e6a4"}.ti-eraser:before{content:"\e6a5"}.ti-envelope:before{content:"\e6a6"}.ti-download:before{content:"\e6a7"}.ti-direction:before{content:"\e6a8"}.ti-direction-alt:before{content:"\e6a9"}.ti-dashboard:before{content:"\e6aa"}.ti-control-stop:before{content:"\e6ab"}.ti-control-shuffle:before{content:"\e6ac"}.ti-control-play:before{content:"\e6ad"}.ti-control-pause:before{content:"\e6ae"}.ti-control-forward:before{content:"\e6af"}.ti-control-backward:before{content:"\e6b0"}.ti-cloud:before{content:"\e6b1"}.ti-cloud-up:before{content:"\e6b2"}.ti-cloud-down:before{content:"\e6b3"}.ti-clipboard:before{content:"\e6b4"}.ti-car:before{content:"\e6b5"}.ti-calendar:before{content:"\e6b6"}.ti-book:before{content:"\e6b7"}.ti-bell:before{content:"\e6b8"}.ti-basketball:before{content:"\e6b9"}.ti-bar-chart:before{content:"\e6ba"}.ti-bar-chart-alt:before{content:"\e6bb"}.ti-back-right:before{content:"\e6bc"}.ti-back-left:before{content:"\e6bd"}.ti-arrows-corner:before{content:"\e6be"}.ti-archive:before{content:"\e6bf"}.ti-anchor:before{content:"\e6c0"}.ti-align-right:before{content:"\e6c1"}.ti-align-left:before{content:"\e6c2"}.ti-align-justify:before{content:"\e6c3"}.ti-align-center:before{content:"\e6c4"}.ti-alert:before{content:"\e6c5"}.ti-alarm-clock:before{content:"\e6c6"}.ti-agenda:before{content:"\e6c7"}.ti-write:before{content:"\e6c8"}.ti-window:before{content:"\e6c9"}.ti-widgetized:before{content:"\e6ca"}.ti-widget:before{content:"\e6cb"}.ti-widget-alt:before{content:"\e6cc"}.ti-wallet:before{content:"\e6cd"}.ti-video-clapper:before{content:"\e6ce"}.ti-video-camera:before{content:"\e6cf"}.ti-vector:before{content:"\e6d0"}.ti-themify-logo:before{content:"\e6d1"}.ti-themify-favicon:before{content:"\e6d2"}.ti-themify-favicon-alt:before{content:"\e6d3"}.ti-support:before{content:"\e6d4"}.ti-stamp:before{content:"\e6d5"}.ti-split-v-alt:before{content:"\e6d6"}.ti-slice:before{content:"\e6d7"}.ti-shortcode:before{content:"\e6d8"}.ti-shift-right-alt:before{content:"\e6d9"}.ti-shift-left-alt:before{content:"\e6da"}.ti-ruler-alt-2:before{content:"\e6db"}.ti-receipt:before{content:"\e6dc"}.ti-pin2:before{content:"\e6dd"}.ti-pin-alt:before{content:"\e6de"}.ti-pencil-alt2:before{content:"\e6df"}.ti-palette:before{content:"\e6e0"}.ti-more:before{content:"\e6e1"}.ti-more-alt:before{content:"\e6e2"}.ti-microphone-alt:before{content:"\e6e3"}.ti-magnet:before{content:"\e6e4"}.ti-line-double:before{content:"\e6e5"}.ti-line-dotted:before{content:"\e6e6"}.ti-line-dashed:before{content:"\e6e7"}.ti-layout-width-full:before{content:"\e6e8"}.ti-layout-width-default:before{content:"\e6e9"}.ti-layout-width-default-alt:before{content:"\e6ea"}.ti-layout-tab:before{content:"\e6eb"}.ti-layout-tab-window:before{content:"\e6ec"}.ti-layout-tab-v:before{content:"\e6ed"}.ti-layout-tab-min:before{content:"\e6ee"}.ti-layout-slider:before{content:"\e6ef"}.ti-layout-slider-alt:before{content:"\e6f0"}.ti-layout-sidebar-right:before{content:"\e6f1"}.ti-layout-sidebar-none:before{content:"\e6f2"}.ti-layout-sidebar-left:before{content:"\e6f3"}.ti-layout-placeholder:before{content:"\e6f4"}.ti-layout-menu:before{content:"\e6f5"}.ti-layout-menu-v:before{content:"\e6f6"}.ti-layout-menu-separated:before{content:"\e6f7"}.ti-layout-menu-full:before{content:"\e6f8"}.ti-layout-media-right-alt:before{content:"\e6f9"}.ti-layout-media-right:before{content:"\e6fa"}.ti-layout-media-overlay:before{content:"\e6fb"}.ti-layout-media-overlay-alt:before{content:"\e6fc"}.ti-layout-media-overlay-alt-2:before{content:"\e6fd"}.ti-layout-media-left-alt:before{content:"\e6fe"}.ti-layout-media-left:before{content:"\e6ff"}.ti-layout-media-center-alt:before{content:"\e700"}.ti-layout-media-center:before{content:"\e701"}.ti-layout-list-thumb:before{content:"\e702"}.ti-layout-list-thumb-alt:before{content:"\e703"}.ti-layout-list-post:before{content:"\e704"}.ti-layout-list-large-image:before{content:"\e705"}.ti-layout-line-solid:before{content:"\e706"}.ti-layout-grid4:before{content:"\e707"}.ti-layout-grid3:before{content:"\e708"}.ti-layout-grid2:before{content:"\e709"}.ti-layout-grid2-thumb:before{content:"\e70a"}.ti-layout-cta-right:before{content:"\e70b"}.ti-layout-cta-left:before{content:"\e70c"}.ti-layout-cta-center:before{content:"\e70d"}.ti-layout-cta-btn-right:before{content:"\e70e"}.ti-layout-cta-btn-left:before{content:"\e70f"}.ti-layout-column4:before{content:"\e710"}.ti-layout-column3:before{content:"\e711"}.ti-layout-column2:before{content:"\e712"}.ti-layout-accordion-separated:before{content:"\e713"}.ti-layout-accordion-merged:before{content:"\e714"}.ti-layout-accordion-list:before{content:"\e715"}.ti-ink-pen:before{content:"\e716"}.ti-info-alt:before{content:"\e717"}.ti-help-alt:before{content:"\e718"}.ti-headphone-alt:before{content:"\e719"}.ti-hand-point-up:before{content:"\e71a"}.ti-hand-point-right:before{content:"\e71b"}.ti-hand-point-left:before{content:"\e71c"}.ti-hand-point-down:before{content:"\e71d"}.ti-gallery:before{content:"\e71e"}.ti-face-smile:before{content:"\e71f"}.ti-face-sad:before{content:"\e720"}.ti-credit-card:before{content:"\e721"}.ti-control-skip-forward:before{content:"\e722"}.ti-control-skip-backward:before{content:"\e723"}.ti-control-record:before{content:"\e724"}.ti-control-eject:before{content:"\e725"}.ti-comments-smiley:before{content:"\e726"}.ti-brush-alt:before{content:"\e727"}.ti-youtube:before{content:"\e728"}.ti-vimeo:before{content:"\e729"}.ti-twitter:before{content:"\e72a"}.ti-time:before{content:"\e72b"}.ti-tumblr:before{content:"\e72c"}.ti-skype:before{content:"\e72d"}.ti-share:before{content:"\e72e"}.ti-share-alt:before{content:"\e72f"}.ti-rocket:before{content:"\e730"}.ti-pinterest:before{content:"\e731"}.ti-new-window:before{content:"\e732"}.ti-microsoft:before{content:"\e733"}.ti-list-ol:before{content:"\e734"}.ti-linkedin:before{content:"\e735"}.ti-layout-sidebar-2:before{content:"\e736"}.ti-layout-grid4-alt:before{content:"\e737"}.ti-layout-grid3-alt:before{content:"\e738"}.ti-layout-grid2-alt:before{content:"\e739"}.ti-layout-column4-alt:before{content:"\e73a"}.ti-layout-column3-alt:before{content:"\e73b"}.ti-layout-column2-alt:before{content:"\e73c"}.ti-instagram:before{content:"\e73d"}.ti-google:before{content:"\e73e"}.ti-github:before{content:"\e73f"}.ti-flickr:before{content:"\e740"}.ti-facebook:before{content:"\e741"}.ti-dropbox:before{content:"\e742"}.ti-dribbble:before{content:"\e743"}.ti-apple:before{content:"\e744"}.ti-android:before{content:"\e745"}.ti-save:before{content:"\e746"}.ti-save-alt:before{content:"\e747"}.ti-yahoo:before{content:"\e748"}.ti-wordpress:before{content:"\e749"}.ti-vimeo-alt:before{content:"\e74a"}.ti-twitter-alt:before{content:"\e74b"}.ti-tumblr-alt:before{content:"\e74c"}.ti-trello:before{content:"\e74d"}.ti-stack-overflow:before{content:"\e74e"}.ti-soundcloud:before{content:"\e74f"}.ti-sharethis:before{content:"\e750"}.ti-sharethis-alt:before{content:"\e751"}.ti-reddit:before{content:"\e752"}.ti-pinterest-alt:before{content:"\e753"}.ti-microsoft-alt:before{content:"\e754"}.ti-linux:before{content:"\e755"}.ti-jsfiddle:before{content:"\e756"}.ti-joomla:before{content:"\e757"}.ti-html5:before{content:"\e758"}.ti-flickr-alt:before{content:"\e759"}.ti-email:before{content:"\e75a"}.ti-drupal:before{content:"\e75b"}.ti-dropbox-alt:before{content:"\e75c"}.ti-css3:before{content:"\e75d"}.ti-rss:before{content:"\e75e"}.ti-rss-alt:before{content:"\e75f"}@font-face {
font-family: "Flaticon";
src: url(https://www.goclickon.com.au/wp-content/plugins/saasland-core/assets/vendors/flaticon/Flaticon.eot);
src: url(https://www.goclickon.com.au/wp-content/plugins/saasland-core/assets/vendors/flaticon/Flaticon.eot?#iefix) format("embedded-opentype"),
url(https://www.goclickon.com.au/wp-content/plugins/saasland-core/assets/vendors/flaticon/Flaticon.woff) format("woff"),
url(https://www.goclickon.com.au/wp-content/plugins/saasland-core/assets/vendors/flaticon/Flaticon.ttf) format("truetype"),
url(https://www.goclickon.com.au/wp-content/plugins/saasland-core/assets/vendors/flaticon/Flaticon.svg#Flaticon) format("svg");
font-weight: normal;
font-style: normal;
font-display: auto;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
font-family: "Flaticon";
src: url(https://www.goclickon.com.au/wp-content/plugins/saasland-core/assets/vendors/flaticon/Flaticon.svg#Flaticon) format("svg");
}
}
[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {   
font-family: Flaticon;
font-size: 20px;
font-style: normal;
margin-left: 20px;
}
.flaticon-target:before { content: "\f100"; }
.flaticon-lightbulb:before { content: "\f101"; }
.flaticon-mortarboard:before { content: "\f102"; }