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

 .animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.animated.infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.animated.hinge {
-webkit-animation-duration: 2s;
animation-duration: 2s;
}
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
-webkit-animation-duration: .75s;
animation-duration: .75s;
}
@-webkit-keyframes bounce {
from, 20%, 53%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
40%, 43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0);
}
}
@keyframes bounce {
from, 20%, 53%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
40%, 43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0);
}
}
.bounce {
-webkit-animation-name: bounce;
animation-name: bounce;
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
}
@-webkit-keyframes flash {
from, 50%, to {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
@keyframes flash {
from, 50%, to {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
.flash {
-webkit-animation-name: flash;
animation-name: flash;
} @-webkit-keyframes pulse {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes pulse {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.pulse {
-webkit-animation-name: pulse;
animation-name: pulse;
}
@-webkit-keyframes rubberBand {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes rubberBand {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.rubberBand {
-webkit-animation-name: rubberBand;
animation-name: rubberBand;
}
@-webkit-keyframes shake {
from, to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
@keyframes shake {
from, to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
.shake {
-webkit-animation-name: shake;
animation-name: shake;
}
@-webkit-keyframes headShake {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
6.5% {
-webkit-transform: translateX(-6px) rotateY(-9deg);
transform: translateX(-6px) rotateY(-9deg);
}
18.5% {
-webkit-transform: translateX(5px) rotateY(7deg);
transform: translateX(5px) rotateY(7deg);
}
31.5% {
-webkit-transform: translateX(-3px) rotateY(-5deg);
transform: translateX(-3px) rotateY(-5deg);
}
43.5% {
-webkit-transform: translateX(2px) rotateY(3deg);
transform: translateX(2px) rotateY(3deg);
}
50% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes headShake {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
6.5% {
-webkit-transform: translateX(-6px) rotateY(-9deg);
transform: translateX(-6px) rotateY(-9deg);
}
18.5% {
-webkit-transform: translateX(5px) rotateY(7deg);
transform: translateX(5px) rotateY(7deg);
}
31.5% {
-webkit-transform: translateX(-3px) rotateY(-5deg);
transform: translateX(-3px) rotateY(-5deg);
}
43.5% {
-webkit-transform: translateX(2px) rotateY(3deg);
transform: translateX(2px) rotateY(3deg);
}
50% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
.headShake {
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
-webkit-animation-name: headShake;
animation-name: headShake;
}
@-webkit-keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
to {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
@keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
to {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
.swing {
-webkit-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing;
}
@-webkit-keyframes tada {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%, 20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes tada {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%, 20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.tada {
-webkit-animation-name: tada;
animation-name: tada;
} @-webkit-keyframes wobble {
from {
-webkit-transform: none;
transform: none;
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes wobble {
from {
-webkit-transform: none;
transform: none;
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
-webkit-transform: none;
transform: none;
}
}
.wobble {
-webkit-animation-name: wobble;
animation-name: wobble;
}
@-webkit-keyframes jello {
from, 11.1%, to {
-webkit-transform: none;
transform: none;
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
@keyframes jello {
from, 11.1%, to {
-webkit-transform: none;
transform: none;
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
.jello {
-webkit-animation-name: jello;
animation-name: jello;
-webkit-transform-origin: center;
transform-origin: center;
}
@-webkit-keyframes bounceIn {
from, 20%, 40%, 60%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes bounceIn {
from, 20%, 40%, 60%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.bounceIn {
-webkit-animation-name: bounceIn;
animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInDown {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInDown {
-webkit-animation-name: bounceInDown;
animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInLeft {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInRight {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInRight {
-webkit-animation-name: bounceInRight;
animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInUp {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.bounceInUp {
-webkit-animation-name: bounceInUp;
animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
}
@keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
}
.bounceOut {
-webkit-animation-name: bounceOut;
animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.bounceOutDown {
-webkit-animation-name: bounceOutDown;
animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.bounceOutLeft {
-webkit-animation-name: bounceOutLeft;
animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.bounceOutRight {
-webkit-animation-name: bounceOutRight;
animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.bounceOutUp {
-webkit-animation-name: bounceOutUp;
animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDownBig {
-webkit-animation-name: fadeInDownBig;
animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeftBig {
-webkit-animation-name: fadeInLeftBig;
animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRightBig {
-webkit-animation-name: fadeInRightBig;
animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUpBig {
-webkit-animation-name: fadeInUpBig;
animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
.fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.fadeOutDown {
-webkit-animation-name: fadeOutDown;
animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.fadeOutDownBig {
-webkit-animation-name: fadeOutDownBig;
animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.fadeOutLeft {
-webkit-animation-name: fadeOutLeft;
animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.fadeOutLeftBig {
-webkit-animation-name: fadeOutLeftBig;
animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.fadeOutRight {
-webkit-animation-name: fadeOutRight;
animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.fadeOutRightBig {
-webkit-animation-name: fadeOutRightBig;
animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.fadeOutUp {
-webkit-animation-name: fadeOutUp;
animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.fadeOutUpBig {
-webkit-animation-name: fadeOutUpBig;
animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
transform: perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
@keyframes flip {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
transform: perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
.animated.flip {
-webkit-backface-visibility: visible;
backface-visibility: visible;
-webkit-animation-name: flip;
animation-name: flip;
}
@-webkit-keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInX {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInX;
animation-name: flipInX;
}
@-webkit-keyframes flipInY {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInY {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInY;
animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutX {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
.flipOutX {
-webkit-animation-name: flipOutX;
animation-name: flipOutX;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutY {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
.flipOutY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipOutY;
animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
from {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1;
}
to {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes lightSpeedIn {
from {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1;
}
to {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.lightSpeedIn {
-webkit-animation-name: lightSpeedIn;
animation-name: lightSpeedIn;
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
from {
opacity: 1;
}
to {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
@keyframes lightSpeedOut {
from {
opacity: 1;
}
to {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
.lightSpeedOut {
-webkit-animation-name: lightSpeedOut;
animation-name: lightSpeedOut;
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
from {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateIn {
from {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateIn {
-webkit-animation-name: rotateIn;
animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInDownLeft {
-webkit-animation-name: rotateInDownLeft;
animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInDownRight {
-webkit-animation-name: rotateInDownRight;
animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInUpLeft {
-webkit-animation-name: rotateInUpLeft;
animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInUpRight {
-webkit-animation-name: rotateInUpRight;
animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
from {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
@keyframes rotateOut {
from {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
.rotateOut {
-webkit-animation-name: rotateOut;
animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
@keyframes rotateOutDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
.rotateOutDownLeft {
-webkit-animation-name: rotateOutDownLeft;
animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutDownRight {
-webkit-animation-name: rotateOutDownRight;
animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutUpLeft {
-webkit-animation-name: rotateOutUpLeft;
animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
@keyframes rotateOutUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
.rotateOutUpRight {
-webkit-animation-name: rotateOutUpRight;
animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%, 80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
@keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%, 80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
.hinge {
-webkit-animation-name: hinge;
animation-name: hinge;
} @-webkit-keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.rollIn {
-webkit-animation-name: rollIn;
animation-name: rollIn;
} @-webkit-keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
@keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
.rollOut {
-webkit-animation-name: rollOut;
animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
@keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
.zoomIn {
-webkit-animation-name: zoomIn;
animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInDown {
-webkit-animation-name: zoomInDown;
animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInLeft {
-webkit-animation-name: zoomInLeft;
animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInRight {
-webkit-animation-name: zoomInRight;
animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInUp {
-webkit-animation-name: zoomInUp;
animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
to {
opacity: 0;
}
}
@keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
to {
opacity: 0;
}
}
.zoomOut {
-webkit-animation-name: zoomOut;
animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutDown {
-webkit-animation-name: zoomOutDown;
animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
.zoomOutLeft {
-webkit-animation-name: zoomOutLeft;
animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
@keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
.zoomOutRight {
-webkit-animation-name: zoomOutRight;
animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutUp {
-webkit-animation-name: zoomOutUp;
animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInDown {
-webkit-animation-name: slideInDown;
animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInLeft {
-webkit-animation-name: slideInLeft;
animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInRight {
-webkit-animation-name: slideInRight;
animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInUp {
-webkit-animation-name: slideInUp;
animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.slideOutDown {
-webkit-animation-name: slideOutDown;
animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.slideOutLeft {
-webkit-animation-name: slideOutLeft;
animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.slideOutRight {
-webkit-animation-name: slideOutRight;
animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.slideOutUp {
-webkit-animation-name: slideOutUp;
animation-name: slideOutUp;
}.lvca-container, .lvca-grid-container {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.lvca-container *, .lvca-container *::after, .lvca-container *::before, .lvca-grid-container *, .lvca-grid-container *::after, .lvca-grid-container *::before {
-webkit-box-sizing: inherit;
box-sizing: inherit; }
.lvca-container ol, .lvca-container ul, .lvca-container ol > li, .lvca-container ul > li, .lvca-container ol:hover, .lvca-container ul:hover, .lvca-container ul > li:hover, .lvca-container ol > li:hover, .lvca-container ol > li > a, .lvca-container ul > li > a, .lvca-container ol > li > a:hover, .lvca-container ul > li > a:hover, .lvca-container img, .lvca-grid-container ol, .lvca-grid-container ul, .lvca-grid-container ol > li, .lvca-grid-container ul > li, .lvca-grid-container ol:hover, .lvca-grid-container ul:hover, .lvca-grid-container ul > li:hover, .lvca-grid-container ol > li:hover, .lvca-grid-container ol > li > a, .lvca-grid-container ul > li > a, .lvca-grid-container ol > li > a:hover, .lvca-grid-container ul > li > a:hover, .lvca-grid-container img {
padding: 0;
margin: 0;
border: none;
-webkit-box-shadow: none;
box-shadow: none;
list-style: none;
background: none; }
.lvca-container ol:before, .lvca-container ol:after, .lvca-container ul:before, .lvca-container ul:after, .lvca-container ol > li:before, .lvca-container ol > li:after, .lvca-container ul > li:before, .lvca-container ul > li:after, .lvca-container ol:hover:before, .lvca-container ol:hover:after, .lvca-container ul:hover:before, .lvca-container ul:hover:after, .lvca-container ul > li:hover:before, .lvca-container ul > li:hover:after, .lvca-container ol > li:hover:before, .lvca-container ol > li:hover:after, .lvca-container ol > li > a:before, .lvca-container ol > li > a:after, .lvca-container ul > li > a:before, .lvca-container ul > li > a:after, .lvca-container ol > li > a:hover:before, .lvca-container ol > li > a:hover:after, .lvca-container ul > li > a:hover:before, .lvca-container ul > li > a:hover:after, .lvca-container img:before, .lvca-container img:after, .lvca-grid-container ol:before, .lvca-grid-container ol:after, .lvca-grid-container ul:before, .lvca-grid-container ul:after, .lvca-grid-container ol > li:before, .lvca-grid-container ol > li:after, .lvca-grid-container ul > li:before, .lvca-grid-container ul > li:after, .lvca-grid-container ol:hover:before, .lvca-grid-container ol:hover:after, .lvca-grid-container ul:hover:before, .lvca-grid-container ul:hover:after, .lvca-grid-container ul > li:hover:before, .lvca-grid-container ul > li:hover:after, .lvca-grid-container ol > li:hover:before, .lvca-grid-container ol > li:hover:after, .lvca-grid-container ol > li > a:before, .lvca-grid-container ol > li > a:after, .lvca-grid-container ul > li > a:before, .lvca-grid-container ul > li > a:after, .lvca-grid-container ol > li > a:hover:before, .lvca-grid-container ol > li > a:hover:after, .lvca-grid-container ul > li > a:hover:before, .lvca-grid-container ul > li > a:hover:after, .lvca-grid-container img:before, .lvca-grid-container img:after {
display: none; }
.lvca-container a, .lvca-grid-container a {
text-decoration: initial; }
.lvca-container img, .lvca-grid-container img {
max-width: 100%;
width: auto;
height: auto; } .lvca-container {
margin-left: auto;
margin-right: auto; }
.lvca-container::after {
clear: both;
content: "";
display: block; }
.panel-grid .widget {
border: 0; }
.lvca-center {
text-align: center; }
.lvca-grid-container {
margin-left: -20px;
margin-right: -20px;
width: calc(100% + 40px); }
.lvca-grid-container::after {
clear: both;
content: "";
display: block; }
.lvca-grid-container .lvca-grid-item {
min-height: 1px; }
@media (max-width: 479px) {
.lvca-grid-container.lvca-grid-mobile-2 .lvca-grid-item:nth-child(2n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-mobile-3 .lvca-grid-item:nth-child(3n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-mobile-4 .lvca-grid-item:nth-child(4n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-mobile-5 .lvca-grid-item:nth-child(5n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-mobile-6 .lvca-grid-item:nth-child(6n+1) {
clear: left; } }
@media (min-width: 480px) and (max-width: 800px) {
.lvca-grid-container.lvca-grid-tablet-2 .lvca-grid-item:nth-child(2n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-tablet-3 .lvca-grid-item:nth-child(3n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-tablet-4 .lvca-grid-item:nth-child(4n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-tablet-5 .lvca-grid-item:nth-child(5n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-tablet-6 .lvca-grid-item:nth-child(6n+1) {
clear: left; } }
@media only screen and (min-width: 801px) {
.lvca-grid-container.lvca-grid-desktop-2 .lvca-grid-item:nth-child(2n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-desktop-3 .lvca-grid-item:nth-child(3n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-desktop-4 .lvca-grid-item:nth-child(4n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-desktop-5 .lvca-grid-item:nth-child(5n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-desktop-6 .lvca-grid-item:nth-child(6n+1) {
clear: left; } }
.lvca-grid-container.lvca-grid-mobile-1 .lvca-grid-item {
width: calc(100% - 40px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-mobile-2 .lvca-grid-item {
width: calc(50% - 30px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-mobile-3 .lvca-grid-item {
width: calc(33.33333% - 26.66667px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-mobile-4 .lvca-grid-item {
width: calc(25% - 25px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-mobile-5 .lvca-grid-item {
width: calc(20% - 24px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-mobile-6 .lvca-grid-item {
width: calc(16.66667% - 23.33333px);
float: left;
margin-left: 20px; }
@media only screen and (min-width: 480px) {
.lvca-grid-container.lvca-grid-tablet-1 .lvca-grid-item {
width: calc(100% - 40px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-tablet-2 .lvca-grid-item {
width: calc(50% - 30px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-tablet-3 .lvca-grid-item {
width: calc(33.33333% - 26.66667px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-tablet-4 .lvca-grid-item {
width: calc(25% - 25px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-tablet-5 .lvca-grid-item {
width: calc(20% - 24px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-tablet-6 .lvca-grid-item {
width: calc(16.66667% - 23.33333px);
float: left;
margin-left: 20px; } }
@media only screen and (min-width: 801px) {
.lvca-grid-container.lvca-grid-desktop-1 .lvca-grid-item {
width: calc(100% - 40px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-desktop-2 .lvca-grid-item {
width: calc(50% - 30px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-desktop-3 .lvca-grid-item {
width: calc(33.33333% - 26.66667px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-desktop-4 .lvca-grid-item {
width: calc(25% - 25px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-desktop-5 .lvca-grid-item {
width: calc(20% - 24px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-desktop-6 .lvca-grid-item {
width: calc(16.66667% - 23.33333px);
float: left;
margin-left: 20px; } } .lvca-gapless-grid .lvca-grid-container {
margin-left: 0;
margin-right: 0;
width: auto; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-mobile-1 .lvca-grid-item {
width: calc(100%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-mobile-2 .lvca-grid-item {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-mobile-3 .lvca-grid-item {
width: calc(33.33333%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-mobile-4 .lvca-grid-item {
width: calc(25%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-mobile-5 .lvca-grid-item {
width: calc(20%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-mobile-6 .lvca-grid-item {
width: calc(16.66667%);
float: left;
margin-left: 0px; }
@media only screen and (min-width: 480px) {
.lvca-gapless-grid .lvca-grid-container.lvca-grid-tablet-1 .lvca-grid-item {
width: calc(100%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-tablet-2 .lvca-grid-item {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-tablet-3 .lvca-grid-item {
width: calc(33.33333%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-tablet-4 .lvca-grid-item {
width: calc(25%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-tablet-5 .lvca-grid-item {
width: calc(20%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-tablet-6 .lvca-grid-item {
width: calc(16.66667%);
float: left;
margin-left: 0px; } }
@media only screen and (min-width: 801px) {
.lvca-gapless-grid .lvca-grid-container.lvca-grid-desktop-1 .lvca-grid-item {
width: calc(100%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-desktop-2 .lvca-grid-item {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-desktop-3 .lvca-grid-item {
width: calc(33.33333%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-desktop-4 .lvca-grid-item {
width: calc(25%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-desktop-5 .lvca-grid-item {
width: calc(20%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-desktop-6 .lvca-grid-item {
width: calc(16.66667%);
float: left;
margin-left: 0px; } } .lvca-gapless-grid .lvca-masonry { }
.lvca-gapless-grid .lvca-masonry .lvca-grid-item {
clear: none !important; }
.lvca-gapless-grid .lvca-masonry .lvca-grid-sizer {
width: calc(8.33333%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-mobile-1 .lvca-grid-item.lvca-wide {
width: calc(100%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-mobile-2 .lvca-grid-item.lvca-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-mobile-3 .lvca-grid-item.lvca-wide {
width: calc(66.66667%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-mobile-4 .lvca-grid-item.lvca-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-mobile-5 .lvca-grid-item.lvca-wide {
width: calc(40%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-mobile-6 .lvca-grid-item.lvca-wide {
width: calc(33.33333%);
float: left;
margin-left: 0px; }
@media only screen and (min-width: 480px) {
.lvca-gapless-grid .lvca-masonry.lvca-grid-tablet-1 .lvca-grid-item.lvca-wide {
width: calc(100%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-tablet-2 .lvca-grid-item.lvca-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-tablet-3 .lvca-grid-item.lvca-wide {
width: calc(66.66667%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-tablet-4 .lvca-grid-item.lvca-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-tablet-5 .lvca-grid-item.lvca-wide {
width: calc(40%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-tablet-6 .lvca-grid-item.lvca-wide {
width: calc(33.33333%);
float: left;
margin-left: 0px; } }
@media only screen and (min-width: 801px) {
.lvca-gapless-grid .lvca-masonry.lvca-grid-desktop-1 .lvca-grid-item.lvca-wide {
width: calc(100%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-desktop-2 .lvca-grid-item.lvca-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-desktop-3 .lvca-grid-item.lvca-wide {
width: calc(66.66667%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-desktop-4 .lvca-grid-item.lvca-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-desktop-5 .lvca-grid-item.lvca-wide {
width: calc(40%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-desktop-6 .lvca-grid-item.lvca-wide {
width: calc(33.33333%);
float: left;
margin-left: 0px; } } .lvca-container .lvca-thumbnailslider.lvca-flexslider {
margin-top: 15px; }
.lvca-container .lvca-thumbnailslider.lvca-flexslider .lvca-slide {
margin: 0 5px 0 0; }
.lvca-container .lvca-thumbnailslider.lvca-flexslider .lvca-slide img {
display: block;
opacity: .5;
cursor: pointer; }
.lvca-container .lvca-thumbnailslider.lvca-flexslider .lvca-slide img:hover {
opacity: 1; }
.lvca-container .lvca-thumbnailslider.lvca-flexslider .lvca-slide.lvca-flex-active-slide img {
opacity: 1;
cursor: default; }
.lvca-container .lvca-flex-direction-nav {
padding: 0 !important;
margin: 0 !important; }
.lvca-container .lvca-flex-direction-nav li {
position: initial; }
.lvca-container .lvca-flex-direction-nav a, .lvca-container .lvca-flex-direction-nav a:hover {
opacity: 1;
text-shadow: none;
background: none;
color: #888;
font-family: 'lvca-icomoon' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 24px;
width: 28px;
height: 28px;
margin: -14px 0 0;
bottom: initial;
left: initial;
right: initial;
top: 50%;
text-indent: 0;
text-align: center;
color: #aaa;
-webkit-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
outline: none; }
.lvca-container .lvca-flex-direction-nav a:before, .lvca-container .lvca-flex-direction-nav a:hover:before, .lvca-container .lvca-flex-direction-nav a:hover:before, .lvca-container .lvca-flex-direction-nav a:hover:hover:before {
margin: 2px;
vertical-align: middle;
display: inline;
font-family: inherit !important;
opacity: 1; }
.lvca-container .lvca-flex-direction-nav a:hover, .lvca-container .lvca-flex-direction-nav a:hover:hover {
color: #888; }
.lvca-dark-bg .lvca-container .lvca-flex-direction-nav a, .lvca-dark-bg .lvca-container .lvca-flex-direction-nav a:hover {
color: #888; }
.lvca-dark-bg .lvca-container .lvca-flex-direction-nav a:hover, .lvca-dark-bg .lvca-container .lvca-flex-direction-nav a:hover:hover {
color: #aaa; }
@media only screen and (max-width: 960px) {
.lvca-container .lvca-flex-direction-nav a, .lvca-container .lvca-flex-direction-nav a:hover {
display: none; } }
.lvca-container .lvca-flex-direction-nav a.lvca-flex-prev {
left: -30px; }
.lvca-container .lvca-flex-direction-nav a.lvca-flex-prev:before {
content: "\e900"; }
.lvca-container .lvca-flex-direction-nav a.lvca-flex-next {
right: -30px; }
.lvca-container .lvca-flex-direction-nav a.lvca-flex-next:before {
content: "\e901"; }
.lvca-container .lvca-flex-control-nav {
width: 100%;
position: absolute;
bottom: -40px;
text-align: center;
padding: 0 !important;
margin: 0 !important; }
.lvca-container .lvca-flex-control-nav li, .lvca-container .lvca-flex-control-nav li:hover {
margin: 0 8px 0 0;
padding: 0;
border: none;
-webkit-box-shadow: none;
box-shadow: none; }
.lvca-container .lvca-flex-control-nav li a, .lvca-container .lvca-flex-control-nav li a:hover {
background: #aaa;
border: 1px solid #aaa;
border-radius: 50%;
width: 12px;
height: 12px;
-webkit-box-shadow: none;
box-shadow: none;
-webkit-transition: all 0.2s ease-in 0s;
transition: all 0.2s ease-in 0s;
display: inline-block;
vertical-align: middle;
outline: none; }
.lvca-dark-bg .lvca-container .lvca-flex-control-nav li a, .lvca-dark-bg .lvca-container .lvca-flex-control-nav li a:hover {
background: #ccc;
border-color: #ccc; }
.lvca-container .lvca-flex-control-nav li a.lvca-flex-active, .lvca-container .lvca-flex-control-nav li a:hover.lvca-flex-active, .lvca-container .lvca-flex-control-nav li a:hover {
background: none; }
.lvca-container .lvca-flex-control-nav li a.lvca-flex-active, .lvca-container .lvca-flex-control-nav li a:hover.lvca-flex-active {
width: 14px;
height: 14px; }
.lvca-container .lvca-flex-control-thumbs {
bottom: -120px; }
@media only screen and (max-width: 600px) {
.lvca-container .lvca-flex-control-thumbs {
bottom: -80px; } }
.lvca-container .lvca-flex-control-thumbs li {
width: auto;
float: none; }
.lvca-container .lvca-flex-control-thumbs li img {
max-width: 100%;
width: 150px; }
@media only screen and (max-width: 600px) {
.lvca-container .lvca-flex-control-thumbs li img {
width: 100px; } } .slick-loading .slick-list {
background: #fff url(https://edgeconsulting.ma/wp-content/plugins/addons-for-visual-composer/assets/css/ajax-loader.gif) center center no-repeat; }
@media only screen and (max-width: 1024px) {
.slick-slider {
padding: 0 10px; } }
.lvca-container .slick-prev, .lvca-container .slick-next {
position: absolute;
bottom: initial;
left: initial;
right: initial;
top: 50%;
width: 28px;
height: 28px;
margin: -14px 0 0; }
.rtl .lvca-container .slick-prev, .rtl .lvca-container .slick-next {
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
direction: ltr; }
.lvca-container .slick-prev, .lvca-container .slick-prev:before, .lvca-container .slick-prev:after, .lvca-container .slick-next, .lvca-container .slick-next:before, .lvca-container .slick-next:after {
text-shadow: none;
background: none;
border: none;
padding: 0;
opacity: 1;
font-family: 'lvca-icomoon' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 24px;
color: #aaa;
overflow: hidden;
-webkit-box-shadow: none;
box-shadow: none;
outline: none;
text-indent: 0;
text-align: center;
-webkit-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s; }
.lvca-container .slick-prev:before, .lvca-container .slick-next:before {
margin: 2px;
vertical-align: middle; }
.lvca-container .slick-prev:hover:before, .lvca-container .slick-prev:hover:after, .lvca-container .slick-next:hover:before, .lvca-container .slick-next:hover:after {
color: #888; }
.lvca-dark-bg .lvca-container .slick-prev:before, .lvca-dark-bg .lvca-container .slick-prev:after, .lvca-dark-bg .lvca-container .slick-next:before, .lvca-dark-bg .lvca-container .slick-next:after {
color: #888; }
.lvca-dark-bg .lvca-container .slick-prev:hover:before, .lvca-dark-bg .lvca-container .slick-prev:hover:after, .lvca-dark-bg .lvca-container .slick-next:hover:before, .lvca-dark-bg .lvca-container .slick-next:hover:after {
color: #aaa;
background: none; }
.lvca-container .slick-prev {
left: -40px; }
.lvca-container .slick-prev:before {
content: "\e900"; }
.lvca-container .slick-next {
right: -40px; }
.lvca-container .slick-next:before {
content: "\e901"; }
.lvca-container ul.slick-dots {
width: 100%;
position: absolute;
bottom: -30px;
text-align: center;
padding: 0;
margin: 0; }
.lvca-container ul.slick-dots li {
margin: 0 8px 0 0;
padding: 0;
display: inline-block;
font-size: 0; }
.lvca-container ul.slick-dots li button {
padding: 0;
background: #aaa;
border: 1px solid #aaa;
border-radius: 50%;
width: 12px;
height: 12px;
-webkit-box-shadow: none;
box-shadow: none;
-webkit-transition: background 0.3s ease-in-out 0s;
transition: background 0.3s ease-in-out 0s;
font-size: 0;
outline: none; }
.lvca-container ul.slick-dots li button:before {
display: none; }
.lvca-dark-bg .lvca-container ul.slick-dots li button {
background: #888;
border-color: #888; }
.lvca-container ul.slick-dots li button:hover, .lvca-container ul.slick-dots li.slick-active button {
background: none;
border-color: #aaa; }
.lvca-container ul.slick-dots li.slick-active button {
width: 14px;
height: 14px; } .lvca-widget-heading {
font-size: 18px;
line-height: 26px;
letter-spacing: 1px;
font-weight: bold;
color: #333;
text-transform: uppercase;
clear: none;
margin-top: 0;
margin-bottom: 10px;
font-size: 40px;
line-height: 52px;
text-align: center; }
@media only screen and (max-width: 767px) {
.lvca-widget-heading {
font-size: 32px;
line-height: 44px; } } .lvca-spacer {
clear: both; } input.lvca-button, button.lvca-button, a.lvca-button, .lvca-button:active, .lvca-button:visited {
display: inline-block;
text-align: center;
line-height: 1;
cursor: pointer;
-webkit-appearance: none;
vertical-align: middle;
border: 1px solid transparent;
border-radius: 3px;
padding: 16px 40px;
margin: 0;
font-size: 12px;
font-weight: normal;
text-transform: uppercase;
letter-spacing: 2px;
background-color: #f94213;
color: #fefefe;
outline: none;
-webkit-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s; }
input.lvca-button.lvca-rounded, button.lvca-button.lvca-rounded, a.lvca-button.lvca-rounded, .lvca-button:active.lvca-rounded, .lvca-button:visited.lvca-rounded {
border-radius: 999px; }
input.lvca-button.lvca-large, button.lvca-button.lvca-large, a.lvca-button.lvca-large, .lvca-button:active.lvca-large, .lvca-button:visited.lvca-large {
padding: 20px 60px; }
input.lvca-button.lvca-small, button.lvca-button.lvca-small, a.lvca-button.lvca-small, .lvca-button:active.lvca-small, .lvca-button:visited.lvca-small {
padding: 12px 25px;
font-size: 11px; }
input.lvca-button:hover, button.lvca-button:hover, a.lvca-button:hover, .lvca-button:active:hover, .lvca-button:visited:hover {
background-color: #f9633e;
color: #fefefe; }
input.lvca-button img, input.lvca-button span.lvca-icon, button.lvca-button img, button.lvca-button span.lvca-icon, a.lvca-button img, a.lvca-button span.lvca-icon, .lvca-button:active img, .lvca-button:active span.lvca-icon, .lvca-button:visited img, .lvca-button:visited span.lvca-icon {
margin-right: 10px; }
.lvca-button.lvca-black {
background-color: #363636; }
.lvca-button.lvca-black:hover {
background-color: #434343; }
.lvca-button.lvca-blue {
background-color: #46a5d5; }
.lvca-button.lvca-blue:hover {
background-color: #5bafda; }
.lvca-button.lvca-cyan {
background-color: #57c0dc; }
.lvca-button.lvca-cyan:hover {
background-color: #6cc8e0; }
.lvca-button.lvca-green {
background-color: #00a57d; }
.lvca-button.lvca-green:hover {
background-color: #00bf90; }
.lvca-button.lvca-orange {
background-color: #e87151; }
.lvca-button.lvca-orange:hover {
background-color: #eb8368; }
.lvca-button.lvca-pink {
background-color: #dd5679; }
.lvca-button.lvca-pink:hover {
background-color: #e16b8a; }
.lvca-button.lvca-red {
background-color: #da4f49; }
.lvca-button.lvca-red:hover {
background-color: #de635e; }
.lvca-button.lvca-teal {
background-color: #28c2ba; }
.lvca-button.lvca-teal:hover {
background-color: #2fd4cc; }
.lvca-button.lvca-trans {
color: #333;
background-color: transparent; background-color: rgba(0, 0, 0, 0);
border: 2px solid #a5a5a5; }
.lvca-button.lvca-trans:hover {
background-color: #fff;
color: #333 !important;
border-color: #fff; }
.lvca-button.lvca-semitrans {
color: #fff;
background-color: transparent; background-color: rgba(125, 125, 125, 0.5); }
.lvca-button.lvca-semitrans:hover {
background-color: #fff;
color: #333 !important; } .lvca-post-link-overlay {
position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
width: 100%;
z-index: 1; }
.lvca-terms a, .lvca-post-title a {
-webkit-transition: all 0.5s ease-out 0s;
transition: all 0.5s ease-out 0s; }
.lvca-read-more {
position: relative;
display: inline-block;
font-size: 0.75rem;
line-height: 1;
text-decoration: none;
padding: 8px 15px;
margin-top: 15px;
-webkit-transition: all 0.5s ease-out 0s;
transition: all 0.5s ease-out 0s;
transition: all 0.5s ease-out 0s; }
.lvca-post-featured-img-bg {
position: relative;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
margin-bottom: 15px; }@font-face {
font-family: 'lvca-icomoon';
src:    url(//edgeconsulting.ma/wp-content/plugins/addons-for-visual-composer/assets/css/fonts/icomoon/icomoon.eot?qq9b0v);
src:    url(//edgeconsulting.ma/wp-content/plugins/addons-for-visual-composer/assets/css/fonts/icomoon/icomoon.eot?qq9b0v#iefix) format('embedded-opentype'),
url(//edgeconsulting.ma/wp-content/plugins/addons-for-visual-composer/assets/css/fonts/icomoon/icomoon.ttf?qq9b0v) format('truetype'),
url(//edgeconsulting.ma/wp-content/plugins/addons-for-visual-composer/assets/css/fonts/icomoon/icomoon.woff?qq9b0v) format('woff'),
url(//edgeconsulting.ma/wp-content/plugins/addons-for-visual-composer/assets/css/fonts/icomoon/icomoon.svg?qq9b0v#icomoon) format('svg');
font-weight: normal;
font-style: normal;
}
[class^="lvca-icon-"], [class*=" lvca-icon-"] { font-family: 'lvca-icomoon' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.lvca-icon-arrow-left:before {
content: "\e900";
}
.lvca-icon-arrow-right:before {
content: "\e901";
}
.lvca-icon-aim:before {
content: "\e902";
}
.lvca-icon-behance:before {
content: "\e903";
}
.lvca-icon-dribbble:before {
content: "\e904";
}
.lvca-icon-facebook:before {
content: "\e905";
}
.lvca-icon-flickr:before {
content: "\e906";
}
.lvca-icon-googleplus:before {
content: "\e907";
}
.lvca-icon-linkedin:before {
content: "\e908";
}
.lvca-icon-pinterest:before {
content: "\e909";
}
.lvca-icon-skype:before {
content: "\e90a";
}
.lvca-icon-twitter:before {
content: "\e90b";
}
.lvca-icon-vimeo:before {
content: "\e90c";
}
.lvca-icon-zerply:before {
content: "\e90d";
}
.lvca-icon-quote:before {
content: "\e90e";
}
.lvca-icon-video-play:before {
content: "\e90f";
}
.lvca-icon-email:before {
content: "\e910";
}
.lvca-icon-close:before {
content: "\e911";
}
.lvca-icon-plus:before {
content: "\e912";
}
.lvca-icon-arrow-right-toggle:before {
content: "\e913";
}
.lvca-icon-menu:before {
content: "\e914";
}
.lvca-icon-menu-2:before {
content: "\e915";
}
.lvca-icon-fit-to:before {
content: "\e916";
}
.lvca-icon-full-screen:before {
content: "\e917";
}
.lvca-icon-arrow-left2:before {
content: "\e918";
}
.lvca-icon-arrow-left3:before {
content: "\e919";
}
.lvca-icon-arrow-right2:before {
content: "\e91a";
}
.lvca-icon-arrow-right3:before {
content: "\e91b";
}
.lvca-icon-start:before {
content: "\e91c";
}
.lvca-icon-instagram:before {
content: "\ea92";
}
.lvca-icon-angle-left:before {
content: "\f104";
}
.lvca-icon-angle-right:before {
content: "\f105";
}.tooltipster-default {
border-radius: 5px; 
border: 2px solid #000;
background: #4c4c4c;
color: #fff;
} .tooltipster-default .tooltipster-content {
font-family: Arial, sans-serif;
font-size: 14px;
line-height: 16px;
padding: 8px 10px;
overflow: hidden;
} .tooltipster-default .tooltipster-arrow .tooltipster-arrow-border { } .tooltipster-icon {
cursor: help;
margin-left: 4px;
} .tooltipster-base {
padding: 0;
font-size: 0;
line-height: 0;
position: absolute;
left: 0;
top: 0;
z-index: 9999999;
pointer-events: none;
width: auto;
overflow: visible;
}
.tooltipster-base .tooltipster-content {
overflow: hidden;
} .tooltipster-arrow {
display: block;
text-align: center;
width: 100%;
height: 100%;
position: absolute;
top: 1px;
left: 0;
z-index: -1;
}
.tooltipster-arrow span, .tooltipster-arrow-border {
display: block;
width: 0; 
height: 0;
position: absolute;
}
.tooltipster-arrow-top span, .tooltipster-arrow-top-right span, .tooltipster-arrow-top-left span {
border-left: 8px solid transparent !important;
border-right: 8px solid transparent !important;
border-top: 8px solid;
bottom: -7px;
}
.tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-top-left .tooltipster-arrow-border {
border-left: 9px solid transparent !important;
border-right: 9px solid transparent !important;
border-top: 9px solid;
bottom: -7px;
}
.tooltipster-arrow-bottom span, .tooltipster-arrow-bottom-right span, .tooltipster-arrow-bottom-left span {
border-left: 8px solid transparent !important;
border-right: 8px solid transparent !important;
border-bottom: 8px solid;
top: -7px;
}
.tooltipster-arrow-bottom .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
border-left: 9px solid transparent !important;
border-right: 9px solid transparent !important;
border-bottom: 9px solid;
top: -7px;
}
.tooltipster-arrow-top span, .tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-bottom span, .tooltipster-arrow-bottom .tooltipster-arrow-border {
left: 0;
right: 0;
margin: 0 auto;
}
.tooltipster-arrow-top-left span, .tooltipster-arrow-bottom-left span {
left: 6px;
}
.tooltipster-arrow-top-left .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
left: 5px;
}
.tooltipster-arrow-top-right span,  .tooltipster-arrow-bottom-right span {
right: 6px;
}
.tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border {
right: 5px;
}
.tooltipster-arrow-left span, .tooltipster-arrow-left .tooltipster-arrow-border {
border-top: 8px solid transparent !important;
border-bottom: 8px solid transparent !important; 
border-left: 8px solid;
top: 50%;
margin-top: -7px;
right: -7px;
}
.tooltipster-arrow-left .tooltipster-arrow-border {
border-top: 9px solid transparent !important;
border-bottom: 9px solid transparent !important; 
border-left: 9px solid;
margin-top: -8px;
}
.tooltipster-arrow-right span, .tooltipster-arrow-right .tooltipster-arrow-border {
border-top: 8px solid transparent !important;
border-bottom: 8px solid transparent !important; 
border-right: 8px solid;
top: 50%;
margin-top: -7px;
left: -7px;
}
.tooltipster-arrow-right .tooltipster-arrow-border {
border-top: 9px solid transparent !important;
border-bottom: 9px solid transparent !important; 
border-right: 9px solid;
margin-top: -8px;
} .tooltipster-fade {
opacity: 0;
-webkit-transition-property: opacity;
-moz-transition-property: opacity;
-o-transition-property: opacity;
-ms-transition-property: opacity;
transition-property: opacity;
}
.tooltipster-fade-show {
opacity: 1;
}
.tooltipster-grow {
opacity:0;
-webkit-transform: translate3d(0,5px,0);
-moz-transform: translate3d(0,5px,0);
-o-transform: translate3d(0,5px,0);
-ms-transform: translate3d(0,5px,0);
transform: translate3d(0,5px,0);
-webkit-transition-property: -webkit-transform;
-moz-transition-property: -moz-transform;
-o-transition-property: -o-transform;
-ms-transition-property: -ms-transform;
transition-property: transform;
-webkit-backface-visibility: hidden;
}
.tooltipster-grow-show {
opacity:1;
-webkit-transform: translate3d(0,0,0);
-moz-transform: translate3d(0,0,0);
-o-transform: translate3d(0,0,0);
-ms-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.275);
-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.275);
-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.275);
transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.275);
}
.tooltipster-swing {
opacity: 0;
-webkit-transform: rotateZ(4deg);
-moz-transform: rotateZ(4deg);
-o-transform: rotateZ(4deg);
-ms-transform: rotateZ(4deg);
transform: rotateZ(4deg);
-webkit-transition-property: -webkit-transform, opacity;
-moz-transition-property: -moz-transform;
-o-transition-property: -o-transform;
-ms-transition-property: -ms-transform;
transition-property: transform;
}
.tooltipster-swing-show {
opacity: 1;
-webkit-transform: rotateZ(0deg);
-moz-transform: rotateZ(0deg);
-o-transform: rotateZ(0deg);
-ms-transform: rotateZ(0deg);
transform: rotateZ(0deg);
-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 1);
-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
-moz-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
-ms-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
-o-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
}
.tooltipster-fall {
top: 0;
-webkit-transition-property: top;
-moz-transition-property: top;
-o-transition-property: top;
-ms-transition-property: top;
transition-property: top;
-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
}
.tooltipster-fall-show {
}
.tooltipster-fall.tooltipster-dying {
-webkit-transition-property: all;
-moz-transition-property: all;
-o-transition-property: all;
-ms-transition-property: all;
transition-property: all;
top: 0px !important;
opacity: 0;
}
.tooltipster-slide {
left: -40px;
-webkit-transition-property: left;
-moz-transition-property: left;
-o-transition-property: left;
-ms-transition-property: left;
transition-property: left;
-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-slide.tooltipster-slide-show {
}
.tooltipster-slide.tooltipster-dying {
-webkit-transition-property: all;
-moz-transition-property: all;
-o-transition-property: all;
-ms-transition-property: all;
transition-property: all;
left: 0px !important;
opacity: 0;
} .tooltipster-content-changing {
opacity: 0.5;
-webkit-transform: scale(1.1, 1.1);
-moz-transform: scale(1.1, 1.1);
-o-transform: scale(1.1, 1.1);
-ms-transform: scale(1.1, 1.1);
transform: scale(1.1, 1.1);
}.tooltipster-light {
border-radius: 3px; 
border: 1px solid #ddd;
-moz-box-shadow:0 1px 2px rgba(0,0,0,0.1); -webkit-box-shadow:0 1px 2px rgba(0,0,0,0.1); box-shadow:0 1px 2px rgba(0,0,0,0.1);
background: #fff;
color: #888;
}
.tooltipster-light .tooltipster-content {
font-family: Arial, sans-serif;
font-size: 14px;
line-height: 16px;
padding: 8px 10px;
}@keyframes booked-flyin {
0% { opacity: 0; transform: scale(0.9); }
100% { opacity: 1; transform: scale(1); }
}
@-webkit-keyframes booked-flyin {
0% { opacity: 0; -webkit-transform: scale(0.9); }
100% { opacity: 1; -webkit-transform: scale(1); }
}
@-moz-keyframes booked-flyin {
0% { opacity: 0; -moz-transform: scale(0.9); }
100% { opacity: 1; -moz-transform: scale(1); }
}
@-ms-keyframes booked-flyin {
0% { opacity: 0; -ms-transform: scale(0.9); }
100% { opacity: 1; -ms-transform: scale(1); }
}
@-o-keyframes booked-flyin {
0% { opacity: 0; -o-transform: scale(0.9); }
100% { opacity: 1; -o-transform: scale(1); }
} @keyframes booked-popflyin {
0% { opacity: 0; transform: scale(0.95); }
50% { opacity: 1; transform: scale(1.01); }
100% { opacity: 1; transform: scale(1); }
}
@-webkit-keyframes booked-popflyin {
0% { opacity: 0; -webkit-transform: scale(0.95); }
50% { opacity: 1; -webkit-transform: scale(1.01); }
100% { opacity: 1; -webkit-transform: scale(1); }
}
@-moz-keyframes booked-popflyin {
0% { opacity: 0; -moz-transform: scale(0.95); }
50% { opacity: 1; -moz-transform: scale(1.01); }
100% { opacity: 1; -moz-transform: scale(1); }
}
@-ms-keyframes booked-popflyin {
0% { opacity: 0; -ms-transform: scale(0.95); }
50% { opacity: 1; -ms-transform: scale(1.01); }
100% { opacity: 1; -ms-transform: scale(1); }
}
@-o-keyframes booked-popflyin {
0% { opacity: 0; -o-transform: scale(0.95); }
50% { opacity: 1; -o-transform: scale(1.01); }
100% { opacity: 1; -o-transform: scale(1); }
} @keyframes booked-flyout {
0% { opacity: 1; transform: scale(1); }
100% { opacity: 0; transform: scale(0.9); }
}
@-webkit-keyframes booked-flyout {
0% { opacity: 1; -webkit-transform: scale(1); }
100% { opacity: 0; -webkit-transform: scale(0.9); }
}
@-moz-keyframes booked-flyout {
0% { opacity: 1; -moz-transform: scale(1); }
100% { opacity: 0; -moz-transform: scale(0.9); }
}
@-ms-keyframes booked-flyout {
0% { opacity: 1; -ms-transform: scale(1); }
100% { opacity: 0; -ms-transform: scale(0.9); }
}
@-o-keyframes booked-flyout {
0% { opacity: 1; -o-transform: scale(1); }
100% { opacity: 0; -o-transform: scale(0.9); }
} @keyframes booked-popdown {
0% { opacity: 0; transform: translateY(-5px); }
100% { opacity: 1; transform: translateY(0); }
}
@-webkit-keyframes booked-popdown {
0% { opacity: 0; -webkit-transform: translateY(-5px); }
100% { opacity: 1; -webkit-transform: translateY(0); }
}
@-moz-keyframes booked-popdown {
0% { opacity: 0; -moz-transform: translateY(-5px); }
100% { opacity: 1; -moz-transform: translateY(0); }
}
@-ms-keyframes booked-popdown {
0% { opacity: 0; -ms-transform: translateY(-5px); }
100% { opacity: 1; -ms-transform: translateY(0); }
}
@-o-keyframes booked-popdown {
0% { opacity: 0; -o-transform: translateY(-5px); }
100% { opacity: 1; -o-transform: translateY(0); }
} @keyframes booked-fadein {
0% { opacity: 0; }
100% { opacity: 1; }
}
@-webkit-keyframes booked-fadein {
0% { opacity: 0; }
100% { opacity: 1; }
}
@-moz-keyframes booked-fadein {
0% { opacity: 0; }
100% { opacity: 1; }
}
@-ms-keyframes booked-fadein {
0% { opacity: 0; }
100% { opacity: 1; }
}
@-o-keyframes booked-fadein {
0% { opacity: 0; }
100% { opacity: 1; }
} @keyframes booked-fadeout {
0% { opacity: 1; }
100% { opacity: 9; }
}
@-webkit-keyframes booked-fadeout {
0% { opacity: 1; }
100% { opacity: 9; }
}
@-moz-keyframes booked-fadeout {
0% { opacity: 1; }
100% { opacity: 9; }
}
@-ms-keyframes booked-fadeout {
0% { opacity: 1; }
100% { opacity: 9; }
}
@-o-keyframes booked-fadeout {
0% { opacity: 1; }
100% { opacity: 9; }
}

@keyframes booked-flyin {
0% {
opacity: 0;
transform: scale(0.9);
}
100% {
opacity: 1;
transform: scale(1);
}
}
@keyframes booked-popflyin {
0% {
opacity: 0;
transform: scale(0.95);
}
50% {
opacity: 1;
transform: scale(1.01);
}
100% {
opacity: 1;
transform: scale(1);
}
}
@keyframes booked-flyout {
0% {
opacity: 1;
transform: scale(1);
}
100% {
opacity: 0;
transform: scale(0.9);
}
}
@keyframes booked-popdown {
0% {
opacity: 0;
transform: translateY(-5px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
@keyframes booked-fadein {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes booked-fadeout {
0% {
opacity: 1;
}
100% {
opacity: 9;
}
}
body #booked-profile-page input[type=submit],
body #booked-profile-page button,
body .booked-list-view input[type=submit],
body .booked-list-view button,
body .booked-calendar input[type=submit],
body .booked-calendar button,
body .booked-modal input[type=submit],
body .booked-modal button {
-webkit-appearance: none;
height: auto;
font-size: 13px;
border-radius: 3px;
display: inline-block;
padding: 9px 12px 10px;
background: #eee;
color: #333;
line-height: 1;
text-shadow: none;
box-shadow: none;
border: 1px solid #ccc;
}
body #booked-profile-page input[type=submit]:hover,
body #booked-profile-page button:hover,
body .booked-list-view input[type=submit]:hover,
body .booked-list-view button:hover,
body .booked-calendar input[type=submit]:hover,
body .booked-calendar button:hover,
body .booked-modal input[type=submit]:hover,
body .booked-modal button:hover {
background: #ddd;
color: #000;
height: auto;
text-shadow: none;
box-shadow: none;
border: 1px solid #ccc;
}
body #booked-profile-page input[type=submit].bb-small,
body #booked-profile-page button.bb-small,
body .booked-list-view input[type=submit].bb-small,
body .booked-list-view button.bb-small,
body .booked-calendar input[type=submit].bb-small,
body .booked-calendar button.bb-small,
body .booked-modal input[type=submit].bb-small,
body .booked-modal button.bb-small {
line-height: 24px;
padding: 0 8px;
cursor: pointer;
}
body #booked-profile-page input[type=submit].button-primary,
body #booked-profile-page button.button-primary,
body .booked-list-view input[type=submit].button-primary,
body .booked-list-view button.button-primary,
body .booked-calendar input[type=submit].button-primary,
body .booked-calendar button.button-primary,
body .booked-modal input[type=submit].button-primary,
body .booked-modal button.button-primary {
-webkit-appearance: none;
height: auto;
color: #fff;
border-width: 1px;
border-style: solid;
}
body #booked-profile-page input[type=submit].button-primary:hover,
body #booked-profile-page button.button-primary:hover,
body .booked-list-view input[type=submit].button-primary:hover,
body .booked-list-view button.button-primary:hover,
body .booked-calendar input[type=submit].button-primary:hover,
body .booked-calendar button.button-primary:hover,
body .booked-modal input[type=submit].button-primary:hover,
body .booked-modal button.button-primary:hover {
color: #fff;
height: auto;
border: 1px solid;
}
body #booked-profile-page input[type=submit].cancel,
body #booked-profile-page button.cancel,
body .booked-list-view input[type=submit].cancel,
body .booked-list-view button.cancel,
body .booked-calendar input[type=submit].cancel,
body .booked-calendar button.cancel,
body .booked-modal input[type=submit].cancel,
body .booked-modal button.cancel {
background: #eee !important;
color: #333 !important;
}
body #booked-profile-page input[type=submit].cancel:hover,
body #booked-profile-page button.cancel:hover,
body .booked-list-view input[type=submit].cancel:hover,
body .booked-list-view button.cancel:hover,
body .booked-calendar input[type=submit].cancel:hover,
body .booked-calendar button.cancel:hover,
body .booked-modal input[type=submit].cancel:hover,
body .booked-modal button.cancel:hover {
background: #ddd !important;
color: #000 !important;
}
body { }
body .booked-calendar-wrap {
margin: 0 0 30px;
}
body .widget_booked_calendar .booked-calendar-wrap {
margin: 0;
}
body .calendarSavingState {
font-size: 17px;
display: none;
}
body #wp-admin-bar-booked .ab-icon:before {
content: "";
top: 1px;
}
body.booked-noScroll {
width: 100%;
overflow: hidden;
position: relative;
}
body div.booked-calendar-wrap div.booked-calendar {
border-radius: 10px;
overflow: hidden;
box-sizing: border-box;
margin: 0;
padding: 0;
background: #F1F1F1;
border-spacing: 0;
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.075);
width: 100%;
}
body div.booked-calendar-wrap div.booked-calendar .bc-head {
color: #fff;
text-transform: uppercase;
}
body div.booked-calendar-wrap div.booked-calendar .bc-head .bc-row {
display: flex;
}
body div.booked-calendar-wrap div.booked-calendar .bc-head .bc-row .bc-col {
font-weight: 400;
position: relative;
width: 14.285%;
border-width: 1px;
border-style: solid;
line-height: 1;
}
body div.booked-calendar-wrap div.booked-calendar .bc-head .bc-row .bc-col .monthName {
letter-spacing: 0.03rem;
font-size: 1.05rem;
line-height: 1rem;
height: 1.05rem;
display: inline-block;
}
body div.booked-calendar-wrap div.booked-calendar .bc-head .bc-row .bc-col .monthName a {
font-size: 0.8rem;
position: relative;
top: -0.05rem;
padding-left: 8px;
text-decoration: none;
text-transform: none;
color: #fff;
color: rgba(255, 255, 255, 0.5);
}
body div.booked-calendar-wrap div.booked-calendar .bc-head .bc-row .bc-col .monthName a:hover {
color: rgba(255, 255, 255, 0.75);
}
body div.booked-calendar-wrap div.booked-calendar .bc-head .bc-row .bc-col .page-right, body div.booked-calendar-wrap div.booked-calendar .bc-head .bc-row .bc-col .page-left {
color: #fff !important;
position: absolute;
font-size: 1.3rem;
top: 50%;
margin-top: -0.65rem;
}
body div.booked-calendar-wrap div.booked-calendar .bc-head .bc-row .bc-col .page-left {
left: 20px;
}
body div.booked-calendar-wrap div.booked-calendar .bc-head .bc-row .bc-col .page-left:hover {
left: 19px;
}
body div.booked-calendar-wrap div.booked-calendar .bc-head .bc-row .bc-col .page-right {
right: 20px;
}
body div.booked-calendar-wrap div.booked-calendar .bc-head .bc-row .bc-col .page-right:hover {
right: 19px;
}
body div.booked-calendar-wrap div.booked-calendar .bc-head .bc-row.days {
color: #fff;
text-transform: uppercase;
}
body div.booked-calendar-wrap div.booked-calendar .bc-head .bc-row.days .bc-col {
font-weight: 600;
text-align: center;
padding: 9px 0 10px;
font-size: 11px;
letter-spacing: 0.03rem;
}
body div.booked-calendar-wrap div.booked-calendar .bc-head .bc-row.top {
height: auto;
}
body div.booked-calendar-wrap div.booked-calendar .bc-head .bc-row.top .bc-col {
padding: 1.1rem 0;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row {
display: flex;
}
body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col {
width: 100%;
font-weight: 400;
text-align: center;
overflow: hidden;
position: relative;
font-size: 20px;
color: #333;
padding: 0 !important;
margin: 0 !important;
border-right: 1px solid #eee;
}
body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col:last-child {
border-right: none;
}
body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col ::before {
content: "";
float: left;
padding-top: 100%;
}
body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col .date {
position: relative;
background: #fff;
display: block;
width: 100%;
height: 100%;
}
body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col .date .number {
position: absolute;
top: 50%;
left: 50%;
margin: -25px 0 0 -25px;
display: inline-block;
border-radius: 30px;
width: 50px;
height: 50px;
line-height: 49px;
}
body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col:hover .date {
cursor: pointer;
background: #fafafa;
}
body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col:hover .date span {
color: #fff;
}
body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.prev-date .date, body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.prev-date .date span, body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.prev-date:hover .date, body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.prev-date:hover .date span, body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.blur .date, body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.blur .date span, body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.blur:hover .date, body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.blur:hover .date span {
cursor: not-allowed;
background: #f5f5f5 !important;
color: #ccc !important;
}
body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.booked .date, body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.booked .date span, body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col .booked:hover .date, body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col .booked:hover .date span {
cursor: not-allowed;
background: #FFF9F8 !important;
color: #FFA790 !important;
}
body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.next-month .date, body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.prev-month .date {
background: #fafafa;
}
body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.next-month .date span, body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.prev-month .date span {
color: #ccc;
}
body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.next-month:hover .date span, body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.prev-month:hover .date span {
color: #fff;
}
body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.active {
background: #ddd;
border-bottom-color: #ddd;
}
body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.active .date {
background: #ddd;
color: #555;
}
body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.active .date .number {
border: none;
background: #fff;
color: #000;
}
body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.active:hover .date {
background: #ddd;
}
body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.active:hover .date span {
background: #fff;
}
body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.today .date {
color: #000;
}
body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.today .date span {
box-shadow: inset 0 0 0 2px #31afea;
color: #000 !important;
}
body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.today.prev-date .date span {
color: #ccc !important;
}
body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.today:hover .date {
color: #000 !important;
}
body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.today:hover .date span {
background: #31afea !important;
color: #fff !important;
}
body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.today.active:hover .date span {
background: #fff !important;
color: #000 !important;
}
body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.today.prev-date:hover .date span {
background: none !important;
color: #ccc !important;
}
body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.entryBlock {
color: #fff;
background: #ddd;
}
body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.entryBlock .bc-col {
width: 100%;
padding: 2%;
color: #fff;
border-bottom-color: #ddd;
}
body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.entryBlock.booked-loading {
position: relative;
}
body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.entryBlock.booked-loading .booked-spinner {
position: absolute;
}
body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.entryBlock.booked-loading .bc-col {
height: 132px;
}
body div.booked-calendar-wrap div.booked-calendar.booked-pa-active .bc-row.week .bc-col.booked .date, body div.booked-calendar-wrap div.booked-calendar.booked-pa-active .bc-row.week .bc-col.booked:hover .date, body div.booked-calendar-wrap div.booked-calendar.booked-pa-active .bc-row.week .bc-col.booked .date span, body div.booked-calendar-wrap div.booked-calendar.booked-pa-active .bc-row.week .bc-col.booked:hover .date span {
cursor: pointer;
}
body div.booked-calendar-wrap div.booked-calendar.booked-pa-active .bc-row.week .bc-col.booked:hover .date span {
color: #fff !important;
}
body div.booked-calendar-wrap div.booked-calendar.booked-pa-active .bc-row.week .bc-col.booked.active .date, body div.booked-calendar-wrap div.booked-calendar.booked-pa-active .bc-row.week .bc-col.booked.active .date:hover {
background: #ddd !important;
color: #555 !important;
}
body div.booked-calendar-wrap div.booked-calendar.booked-pa-active .bc-row.week .bc-col.booked.active .date span, body div.booked-calendar-wrap div.booked-calendar.booked-pa-active .bc-row.week .bc-col.booked.active .date span:hover {
background: #fff !important;
color: #555 !important;
}
body div.booked-calendar-wrap.small div.booked-calendar .bc-head .bc-row .bc-col .monthName {
font-size: 0.9rem;
font-weight: 800;
line-height: 1.1rem;
height: 1.1rem;
}
body div.booked-calendar-wrap.small div.booked-calendar .bc-head .bc-row .bc-col .monthName .backToMonth {
font-weight: 500;
letter-spacing: 0;
}
body div.booked-calendar-wrap.small div.booked-calendar .bc-body .bc-row.week .bc-col .date .number {
margin: -18px 0 0 -18px;
font-size: 16px;
line-height: 35px !important;
width: 36px;
height: 36px;
}
body .booked-appt-list {
font-size: 15px;
line-height: 1.7;
color: #000;
background: #fff;
transform: scale(0.95);
padding: 30px 35px 10px;
display: none;
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
border-radius: 5px;
}
body .booked-appt-list.shown {
transform: scale(1);
}
body .booked-appt-list h2 {
text-align: center;
color: #555;
font-size: 20px;
margin: 0 0 30px;
line-height: 1.4;
}
body .booked-appt-list h2.booked-no-prev {
text-align: left;
}
body .booked-appt-list p {
color: #888;
font-weight: 400;
margin: 0 0 20px;
}
body .booked-appt-list .timeslot {
display: flex;
box-sizing: border-box;
line-height: 1.8;
color: #888;
border-top: 1px solid #ddd;
}
body .booked-appt-list .timeslot.faded {
opacity: 0.25;
}
body .booked-appt-list .timeslot:hover {
background: #f9f9f9;
}
body .booked-appt-list .timeslot:last-child {
margin: 0 0 10px;
}
body .booked-appt-list .timeslot .timeslot-title {
margin: 0 0 10px 0;
display: block;
color: #4DC574;
}
body .booked-appt-list .timeslot .timeslot-time {
height: 71px;
display: flex;
align-items: flex-start;
justify-content: center;
flex-direction: column;
padding: 0 0 0 15px;
box-sizing: border-box;
line-height: 1;
width: 60%;
font-weight: 600;
color: #555;
font-size: 16px;
}
body .booked-appt-list .timeslot .timeslot-time i.fa-solid {
color: #555;
}
body .booked-appt-list .timeslot .timeslot-people {
display: flex;
align-items: center;
justify-content: flex-end;
height: 71px;
width: 40%;
padding: 0 16px 0 0;
box-sizing: border-box;
}
body .booked-appt-list .timeslot .timeslot-people button {
color: #fff;
}
body .booked-appt-list .timeslot .timeslot-people button .spots-available,
body .booked-appt-list .timeslot .timeslot-people button .button-timeslot {
display: none;
}
body .booked-appt-list .timeslot .spots-available {
font-weight: 400;
text-transform: uppercase;
font-size: 0.7rem;
display: block;
line-height: 1;
color: #aaa;
padding-top: 8px;
}
body .booked-appt-list .timeslot .spots-available.empty {
color: #aaa;
}
body .booked-appt-list .timeslot a {
font-weight: 600;
text-decoration: none;
}
body .booked-appt-list .timeslot.has-title .timeslot-time {
height: auto;
min-height: 71px;
}
body .booked-appt-list .timeslot.has-title.booked-hide-time .timeslot-time {
min-height: auto;
}
body .booked-appt-list .timeslot.has-title.booked-hide-time .timeslot-time .timeslot-title {
margin: 0;
}
body .booked-appt-list .timeslot.has-title.booked-hide-time .timeslot-time .timeslot-range {
display: none;
}
body .booked-appt-list .timeslot.has-title.timeslot-count-hidden .timeslot-time {
height: 60px;
}
body .booked-appt-list .timeslot.has-title.timeslot-count-hidden .timeslot-people {
height: 60px;
padding-top: 13px;
padding-right: 0;
}
body .booked-appt-list .timeslot.has-title.timeslot-count-hidden .timeslot-time {
padding-top: 22px;
}
body div.booked-calendar-wrap.booked-list-view .booked-appt-list {
box-shadow: none;
padding: 0;
margin: 0 0 30px;
display: block;
}
body div.booked-calendar-wrap.booked-list-view .booked-appt-list .booked-appt-list-header {
display: flex;
justify-content: space-between;
align-items: center;
margin: 0 0 20px;
}
body div.booked-calendar-wrap.booked-list-view .booked-appt-list .booked-appt-list-header h2 {
margin: 0;
}
body div.booked-calendar-wrap.booked-list-view .booked-appt-list .booked-appt-list-header .booked-list-view-nav > * {
margin: 0 0 0 10px;
}
body div.booked-calendar-wrap.small {
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
body div.booked-calendar-wrap.small .booked-appt-list {
padding: 30px 35px 30px;
}
body div.booked-calendar-wrap.small .booked-appt-list h2 {
margin: 0 0 20px;
}
body div.booked-calendar-wrap.small .booked-appt-list h2 > span:first-child {
display: none;
}
body div.booked-calendar-wrap.small .booked-appt-list .timeslot {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 5px 0;
margin: 0;
border: none;
}
body div.booked-calendar-wrap.small .booked-appt-list .timeslot .timeslot-title {
height: auto;
margin: 0;
display: block;
color: #4DC574;
}
body div.booked-calendar-wrap.small .booked-appt-list .timeslot .timeslot-time {
display: none;
}
body div.booked-calendar-wrap.small .booked-appt-list .timeslot .timeslot-people {
height: auto;
justify-content: center;
width: 100%;
padding: 0;
}
body div.booked-calendar-wrap.small .booked-appt-list .timeslot .timeslot-people button.button {
width: 100%;
line-height: 1.4;
}
body div.booked-calendar-wrap.small .booked-appt-list .timeslot .timeslot-people button.button .button-text,
body div.booked-calendar-wrap.small .booked-appt-list .timeslot .timeslot-people button.button .button-timeslot {
font-weight: bold;
}
body div.booked-calendar-wrap.small .booked-appt-list .timeslot .timeslot-people button.button .spots-available {
color: #fff;
opacity: 0.75;
padding: 8px 0 4px;
}
body div.booked-calendar-wrap.small .booked-appt-list .timeslot .timeslot-people button.button .button-text {
display: none;
}
body div.booked-calendar-wrap.small .booked-appt-list .timeslot .timeslot-people button.button .spots-available,
body div.booked-calendar-wrap.small .booked-appt-list .timeslot .timeslot-people button.button .button-timeslot {
display: block;
} body .booked-form {
padding-top: 5px;
}
body .booked-form .field {
margin: 5px 0 7px;
}
body .booked-form .field.booked-text-content {
margin-bottom: 0;
margin-top: 20px;
}
body .booked-form .field.booked-text-content *:last-child {
margin-bottom: 0;
}
body .booked-form .field:after {
content: "";
display: table;
clear: both;
}
body .booked-form input[type=radio],
body .booked-form input[type=checkbox] {
position: relative;
top: 2px;
}
body .booked-form .field select,
body .booked-form .field input[type=text],
body .booked-form .field input[type=password],
body .booked-form .field input[type=tel],
body .booked-form .field input[type=email],
body .booked-form .field textarea {
background: #fff;
border: 1px solid #ccc;
box-sizing: border-box;
margin: 0 1.5% 0 0;
width: 49.2%;
float: left;
}
body .booked-form .field input:last-child {
margin-right: 0;
}
body .booked-form .field input[type=text],
body .booked-form .field input[type=password],
body .booked-form .field input[type=tel],
body .booked-form .field input[type=email],
body .booked-form .field textarea {
font-size: 13px;
padding: 7px 10px;
color: #aaa;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
body .booked-form .field textarea,
body .booked-form .field input.hasContent {
color: #555;
}
body .booked-form .field input.large,
body .booked-form .field select.large {
width: 100%;
margin-right: 1px;
width: 99.8%;
}
body .booked-form .spacer {
padding: 5px 0 0 0;
margin: 0;
display: block;
}
body .booked-form .spacer.big {
padding: 25px 0 0;
}
body .booked-form hr {
border: none;
border-top: 1px solid #ddd;
padding: 10px 0 0 0;
margin: 20px 0 0 0;
}
body .booked-form .condition-block {
display: none;
}
body .booked-form .condition-block.default {
display: block;
}
body .booked-form input[type=submit],
body .booked-form button {
float: left;
margin: 0 10px 0 0;
}
body .booked-form .field label {
cursor: pointer;
}
body .booked-form .field label.field-label {
cursor: default;
display: block;
font-weight: bold;
padding: 10px 0 8px;
margin: 0;
}
body .booked-form .field textarea {
height: 100px;
width: 100%;
box-sizing: border-box;
line-height: 1.6;
}
body .booked-form .field .checkbox-radio-block {
display: block;
padding: 0 0 3px 10px;
}
body .booked-form .field .checkbox-radio-block label {
font-size: 13px;
display: inline-block;
padding-left: 7px;
margin: 0;
position: relative;
top: 3px;
}
body .booked-form .cf-block {
margin: 0 0 25px;
}
body .booked-form .cf-block select {
font-size: 13px;
width: 100%;
height: 33px;
margin-right: 0;
padding: 0 10px;
float: none;
}
body .booked-form .cf-block ul, body .booked-form .cf-block ol {
margin-left: 30px;
}
body .booked-form .required-asterisk {
color: #E35656;
margin: -1px 0 0 7px;
}
body .booked-form #ajaxlogin {
width: 100%;
}
body .booked-form #ajaxlogin p.status {
display: none;
padding: 15px 0 0;
margin: 0;
font-size: 15px;
color: #888;
}
body .booked-form #newAppointmentForm p.status {
display: none;
padding: 0 0 20px;
margin: 0;
font-size: 15px;
color: #888;
}
body img.captcha-image {
position: relative;
top: 5px;
left: 5px;
}
body #booked-page-form p.captcha, body .booked-modal .bm-window p.captcha {
margin: -5px 0 15px;
}
body .booked-form .field p.field-small-p {
font-size: 14px;
margin: -5px 0 5px;
}
body .booked-form input[type=submit].button:disabled {
background: #ddd !important;
border-color: #ddd !important;
color: #aaa !important;
cursor: not-allowed;
}
body .booked-form .booked-appointments {
background: #fff;
padding: 10px 16px 13px;
margin: 0 0 15px;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
body .booked-form .booked-appointment-details {
margin: 0 0 10px;
padding: 0 0 7px;
border-bottom: 1px solid #ddd;
}
body .booked-form .booked-appointment-details:last-child {
margin: 0;
padding: 0;
border: none;
}
body .booked-form .booked-appointment-details.has-error {
color: #e35656;
}
#customerChoices {
display: block;
text-align: left;
background: #fff;
padding: 20px 0 23px;
text-align: center;
margin: -26px -36px 15px;
border-bottom: 1px solid #ddd;
}
#customerChoices .field {
display: inline-block;
}
#customerChoices .field .checkbox-radio-block {
padding-left: 0;
}
#customerChoices .field {
margin: 0 20px 0 0;
}
#customerChoices .field:last-child {
margin: 0;
}
#customerChoices .field .checkbox-radio-block label {
font-weight: 400;
font-size: 15px;
}
#ajaxforgot {
display: none;
} body .booked-modal {
margin-top: -84px;
min-height: 168px;
position: fixed;
z-index: 9999999;
top: 50%;
right: 0;
bottom: 0;
left: 0;
}
body .booked-modal hr {
border-top: 1px solid #ddd;
background: none;
}
body .booked-modal .bm-overlay {
animation: booked-fadein 0.2s;
-webkit-animation: booked-fadein 0.2s;
-moz-animation: booked-fadein 0.2s;
-ms-animation: booked-fadein 0.2s;
-o-animation: booked-fadein 0.2s;
-webkit-backface-visibility: hidden;
position: fixed;
background: #000;
background: rgba(0, 0, 0, 0.65);
top: 0;
right: 0;
bottom: 0;
left: 0;
}
body .booked-modal .bm-window {
animation: booked-flyin 0.2s;
-webkit-animation: booked-flyin 0.2s;
-moz-animation: booked-flyin 0.2s;
-ms-animation: booked-flyin 0.2s;
-o-animation: booked-flyin 0.2s;
-webkit-backface-visibility: hidden;
padding: 43px 0 25px;
width: 450px;
position: relative;
margin: 0 auto;
background: #fff;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
-moz-box-shadow: 1px 1px 60px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 1px 1px 60px rgba(0, 0, 0, 0.5);
box-shadow: 1px 1px 60px rgba(0, 0, 0, 0.5);
}
body .booked-modal.bm-loading .bm-window {
background: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
body .booked-modal.bm-closing .bm-overlay {
animation: booked-fadeout 0.2s;
-webkit-animation: booked-fadeout 0.2s;
-moz-animation: booked-fadeout 0.2s;
-ms-animation: booked-fadeout 0.2s;
-o-animation: booked-fadeout 0.2s;
-webkit-backface-visibility: hidden;
}
body .booked-modal.bm-closing .bm-window {
animation: booked-flyout 0.2s;
-webkit-animation: booked-flyout 0.2s;
-moz-animation: booked-flyout 0.2s;
-ms-animation: booked-flyout 0.2s;
-o-animation: booked-flyout 0.2s;
-webkit-backface-visibility: hidden;
}
body .booked-modal .bm-window {
background: #f5f5f5;
max-height: 100px;
z-index: 2000000000;
}
body .booked-modal .bm-window p {
margin: 0 0 15px;
font-size: 15px;
}
body .booked-modal .bm-window p small {
display: block;
margin: 0 0 15px;
text-transform: uppercase;
font-size: 13px;
font-weight: 600;
}
body .booked-modal .bm-window p.appointment-title {
font-weight: 600;
margin-bottom: 0;
}
body .booked-modal .bm-window p.calendar-name {
font-weight: 600;
margin-bottom: 0;
}
body .booked-modal .bm-window p.appointment-info {
font-size: 15px;
margin: 0;
line-height: 1.7;
}
body .booked-modal .bm-window p strong {
font-size: 13px;
text-transform: uppercase;
display: inline-block;
padding-right: 3px;
font-weight: 600;
}
body .booked-modal .bm-window a {
text-decoration: none;
}
body .booked-modal .bm-window .close {
line-height: 1;
color: #fff;
color: rgba(255, 255, 255, 0.5);
font-size: 20px;
position: absolute;
top: 11px;
right: 14px;
}
body .booked-modal .bm-window .close:hover {
color: #fff;
}
body .booked-modal .bm-window p i.fa-solid.far-clock {
font-size: 18px;
position: relative;
top: 1px;
}
body .booked-modal .bm-window p.booked-calendar-name {
font-weight: 600;
font-size: 15px;
}
body .booked-modal .bm-window .booked-scrollable {
max-height: 100px;
padding: 25px 30px;
overflow-y: auto;
overflow-x: hidden;
background: #f5f5f5;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
box-sizing: content-box;
}
body .booked-modal .bm-window p.booked-title-bar {
box-sizing: border-box;
font-size: 13px;
position: absolute;
top: 0;
left: 0;
line-height: 1;
width: 100%;
color: #fff;
border-radius: 4px 4px 0 0;
padding: 15px 30px 15px 15px;
}
body .booked-modal .bm-window p.booked-title-bar small {
margin: 0;
} body .booked-modal .bm-window .booked-scrollable {
-webkit-overflow-scrolling: touch;
}
body .booked-modal .bm-window .booked-scrollable > * {
-webkit-transform: translateZ(0px);
-webkit-transform: translate3d(0, 0, 0);
}
body .booked-calendarSwitcher {
box-sizing: border-box;
display: inline-block;
margin: 0 0 0 15px;
padding: 8px 10px 9px 12px;
color: #fff;
border-radius: 10px 10px 0 0;
position: relative;
}
body .booked-calendarSwitcher::before {
position: absolute;
top: 12px;
right: 15px;
color: white;
font: var(--fa-font-solid);
content: "";
}
body .booked-calendarSwitcher > p {
display: flex;
align-items: center;
}
body .booked-calendarSwitcher > p i.fa-solid {
font-size: 14px;
margin: 0 10px 0 0;
position: relative;
color: #fff;
}
body .booked-calendarSwitcher > p select {
padding-left: 0;
height: 24px;
position: relative;
cursor: pointer;
background: transparent;
font-size: 14px;
min-width: 200px;
border: none;
color: #fff;
-webkit-appearance: none;
} body #booked-page-form .booked-form-wrap {
padding: 10px 0;
}
body #booked-page-form input[type=submit] {
margin: 0;
}
body #booked-page-form input[type=text],
body #booked-page-form input[type=password],
body #booked-page-form input[type=email],
body #booked-page-form textarea {
margin: 7px 0 0 0;
border-width: 1px;
border-style: solid;
padding: 10px 12px;
width: 100%;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
body #booked-page-form input:disabled,
body #booked-page-form textarea:disabled {
background: #f9f9f9;
color: #bbb;
border: 1px dotted #ccc;
}
body #booked-page-form input[type=file]:disabled {
background: #fff;
border: none;
}
body #booked-page-form label .not-bold {
font-weight: 400;
color: #ccc;
padding: 0 0 0 5px;
}
body #booked-page-form p {
margin: 0 0 15px;
}
body #booked-page-form .login-submit {
margin: 0;
}
body #profile-edit #booked-page-form {
border-top: 1px solid #ddd;
padding-top: 20px;
}
body #profile-edit #booked-page-form input[type=file] {
display: inline-block;
padding: 0;
}
body #profile-edit #booked-page-form label {
font-weight: 600;
}
body #profile-edit #booked-page-form p.form-nickname,
body #profile-edit #booked-page-form p.form-email,
body #profile-edit #booked-page-form p.form-url {
float: left;
width: 100%;
margin: 0 0 25px;
}
body #profile-edit #booked-page-form p.form-password {
float: left;
width: 48%;
margin: 0 4% 25px 0;
}
body #profile-edit #booked-page-form p.form-password.last {
margin: 0 0 25px;
}
body #profile-edit #booked-page-form p.form-textarea,
body #profile-edit #booked-page-form p.form-avatar,
body #profile-edit #booked-page-form p.form-submit {
float: none;
width: 100%;
margin: 0 0 25px;
}
body #profile-edit #booked-page-form p.form-submit {
margin: 0 0 5px;
}
body #profile-edit #booked-page-form .hint-p {
font-size: 12px;
color: #aaa;
padding-top: 5px;
display: block;
font-style: italic;
}
body #profile-login label, #profile-register label, #profile-forgot label {
font-weight: 600;
}
body .booked-upload-wrap,
body .booked-upload-wrap input {
background: #f5f5f5;
border: 1px solid #ddd;
display: block;
height: 35px;
width: 100%;
cursor: pointer;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
position: relative;
}
body .booked-upload-wrap {
width: 100%;
margin: 10px 0 4px;
}
body #booked-submit-recipe-form .booked-upload-wrap {
width: 100%;
margin: 0;
}
body .booked-upload-wrap:hover {
background: #eee;
}
body .booked-upload-wrap span {
color: #888;
font-size: 13px;
text-align: center;
height: 24px;
width: 100%;
position: absolute;
left: 0;
top: 50%;
margin-top: -12px;
display: block;
z-index: 1;
}
body .booked-upload-wrap input {
z-index: 2;
opacity: 0;
}
body .booked-upload-wrap.hasFile {
background: #f9f9f9;
border: 1px solid #ccc;
color: #666;
}
body #booked-submit-recipe-form .booked-upload-wrap.hasFile {
width: 100%;
}
body .booked-upload-wrap.hasFile span {
color: #000;
}
body .booked-custom-error {
display: none;
margin: 0 0 20px;
padding: 5px 10px;
background: #fff0f0;
border: 1px solid #e3c3c3;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
body .booked-custom-error.not-hidden {
display: block;
}
body #booked-plugin-page p.booked-form-notice {
border: 1px solid #E6DB55;
border-radius: 3px;
background-color: #FFFBCC;
margin: 0 0 35px;
padding: 10px 15px;
} .booked-list-date-picker-wrap {
width: 100%;
position: absolute;
text-align: center;
top: 30px;
left: 0;
}
#ui-datepicker-div.booked_custom_date_picker {
animation: booked-popflyin 0.15s;
-webkit-animation: booked-popflyin 0.15s;
-moz-animation: booked-popflyin 0.15s;
-ms-animation: booked-popflyin 0.15s;
-o-animation: booked-popflyin 0.15s;
background: #fff;
margin-top: 37px;
margin-left: -107px;
width: 230px;
border: 1px solid #d5d5d5;
padding: 8px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
z-index: 9999 !important;
}
#ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header {
position: relative;
color: #fff;
}
#ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header .ui-datepicker-prev,
#ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header .ui-datepicker-next {
cursor: pointer;
top: 10px;
font-size: 16px;
position: absolute;
display: inline-block;
font: var(--fa-font-solid);
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
transform: translate(0, 0);
color: #fff;
}
#ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header .ui-datepicker-prev .ui-icon,
#ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header .ui-datepicker-next .ui-icon {
display: none;
}
#ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header .ui-datepicker-prev {
left: 10px;
}
#ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header .ui-datepicker-next {
right: 10px;
}
#ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header {
display: flex;
align-items: center;
justify-content: space-between;
}
#ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header .ui-datepicker-title {
display: block;
width: 100%;
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
padding: 9px 0;
text-align: center;
}
#ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header .ui-datepicker-prev:hover,
#ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header .ui-datepicker-next:hover {
opacity: 0.7;
}
#ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header .ui-datepicker-prev:before {
content: "";
}
#ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header .ui-datepicker-next:before {
content: "";
}
#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar {
width: 100%;
border-collapse: collapse;
}
#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar thead, #ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar thead th {
font-size: 11px;
font-weight: normal;
color: #fff;
}
#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar thead th {
width: 14.285%;
text-align: center;
padding: 0;
margin: 0;
border: none;
border-collapse: collapse;
}
#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody {
border-top: 8px solid #fff;
}
#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody, #ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td {
font-size: 12px;
font-weight: normal;
background: #fff;
color: #888;
}
#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td {
text-align: center;
padding: 0px;
}
#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td a {
display: block;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
line-height: 33px;
text-decoration: none;
color: #333;
}
#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td a:hover {
background: #eee;
}
#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td span {
display: block;
line-height: 33px;
}
#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td.ui-datepicker-unselectable span {
color: #ddd;
}
#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td.ui-datepicker-week-end a {
color: #888;
}
#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td.ui-datepicker-today a {
color: #fff;
}
#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td.ui-datepicker-today a:hover {
color: #fff;
}
#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td a.ui-state-active, #ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td a.ui-state-active:hover {
color: #ffffff;
}  body #booked-page-form input[type=email],
body #booked-page-form input[type=text],
body #booked-page-form input[type=password],
body #booked-page-form textarea,
body #booked-page-form {
border-color: #ccc;
color: #888;
line-height: 1.5;
font-size: 13px;
} body .booked-calendar-wrap {
-webkit-transition: height 0.15s ease-out;
-moz-transition: height 0.15s ease-out;
-o-transition: height 0.15s ease-out;
transition: height 0.15s ease-out;
}
body .booked-calendar td .count,
body .booked-calendar thead th a,
body .booked-appt-list .timeslot .timeslot-time,
body .booked-appt-list .timeslot .timeslot-people,
body .booked-appt-list .timeslot,
body .booked-list-view a.booked_list_date_picker_trigger {
transition: all 0.1s ease-out;
}
body .booked-calendar td .date,
body .booked-calendar td .date span {
transition: background 0.15s ease-out, color 0.15s ease-out;
}
body .booked-list-view .booked-appt-list {
transition: opacity 0.2s ease-out;
}
body .booked-appt-list {
transition: transform 0.4s ease-in-out;
} .booked-tabs {
overflow: hidden;
}
.booked-tabs .booked-tabs-nav {
margin-bottom: 20px;
}
.booked-tabs .booked-tabs-nav span {
display: inline-block;
padding: 0 5px;
border: 1px solid #ccc;
background: #eee;
color: #000;
font-size: 12px;
line-height: 30px;
text-transform: uppercase;
cursor: pointer;
box-sizing: border-box;
}
.booked-tabs .booked-tabs-nav span:hover,
.booked-tabs .booked-tabs-nav span.active {
background: #ddd;
color: #fff;
}
.booked-tabs .booked-tabs-cnt > div {
display: none;
}
.booked-tabs .booked-tabs-cnt > div.active {
display: block;
}  body #booked-profile-page {
position: relative;
margin-bottom: 30px;
}
body #booked-profile-page .booked-profile-header {
display: flex;
border: 1px solid #ddd;
border-radius: 10px 10px 0 0;
padding: 15px;
position: relative;
}
body #booked-profile-page .booked-profile-header .booked-logout-button {
text-decoration: none;
font-size: 0.9rem;
position: relative;
top: -1px;
color: rgba(255, 255, 255, 0.5);
}
body #booked-profile-page .booked-profile-header .booked-logout-button:hover {
color: #fff;
}
body #booked-profile-page .booked-user-avatar {
width: 35px;
height: 35px;
position: relative;
top: 0;
left: 0;
float: left;
display: inline-block;
}
body #booked-profile-page .booked-user-avatar img {
width: 100%;
height: auto;
display: block;
margin: 0;
-moz-border-radius: 20px;
-webkit-border-radius: 20px;
border-radius: 20px;
}
body #booked-profile-page .booked-info {
display: flex;
width: 100%;
}
body #booked-profile-page .booked-user * {
margin: 0;
padding: 0;
line-height: 1.6;
}
body #booked-profile-page .booked-user h3 {
color: #fff;
margin: 0;
padding: 4px 0 4px 12px;
display: inline-block;
font-size: 1.25rem !important;
letter-spacing: 0.03rem !important;
}
body #booked-profile-page .booked-counts {
float: right;
width: 25%;
margin-left: 5%;
color: #fff;
}
body #booked-profile-page .booked-counts span {
display: block;
text-align: right;
font-size: 12px;
line-height: 2.1;
}
body #booked-profile-page .booked-counts i.fa-solid {
padding-right: 10px;
}
body #booked-profile-page .booked-tabs {
display: flex;
border-width: 1px;
border-style: solid;
border-top: 0;
border-bottom: 0;
list-style: none;
margin: 0 !important;
padding: 0 !important;
}
body #booked-profile-page .booked-tabs li {
margin: 0 !important;
padding: 0 !important;
}
body #booked-profile-page .booked-tabs li a {
display: flex;
align-items: center;
height: auto !important;
font-size: 14px;
border-right-width: 1px;
border-right-style: solid;
display: flex;
text-decoration: none;
padding: 0 15px;
line-height: 40px;
background: rgba(0, 0, 0, 0.15);
color: #fff;
border: none;
}
body #booked-profile-page .booked-tabs li a i.fa-solid {
padding-right: 10px;
}
body #booked-profile-page .booked-tabs li a:hover {
background: rgba(0, 0, 0, 0.25);
color: #fff;
}
body #booked-profile-page .booked-tabs li a .counter {
margin: 0 0 0 5px;
line-height: 1px;
display: none;
justify-content: center;
align-items: center;
font-size: 11px;
font-weight: 800;
width: auto;
padding: 0 5px;
min-width: 20px;
height: 20px;
border-radius: 10px;
background: #fff;
color: #fff;
}
body #booked-profile-page .booked-tabs li.active a {
color: #fff;
}
body #booked-profile-page .booked-tabs li.active a:hover {
color: #fff;
}
body #booked-profile-page .booked-tabs li.active a .counter {
background: #fff;
color: #000;
}
body #booked-profile-page .booked-tabs li.edit-button {
float: right;
}
body #booked-profile-page .booked-tab-content {
border-radius: 0 0 10px 10px;
display: none;
padding: 30px 35px 30px 35px;
border-width: 1px;
border-style: solid;
border-top: none;
border-color: #ddd;
background: #fff;
}
body #booked-profile-page .booked-tabs.login {
border-top-width: 1px;
border-top-style: solid;
}
body #booked-profile-page p.booked-no-margin {
color: #888;
margin: 0;
}
body #booked-profile-page .booked-show-cf {
outline: none;
font-weight: 600;
-webkit-transition: all 0.1s ease-out;
-moz-transition: all 0.1s ease-out;
-o-transition: all 0.1s ease-out;
transition: all 0.1s ease-out;
}
body #booked-profile-page .booked-show-cf.booked-cf-active {
color: #000;
}
body #booked-profile-page .cf-meta-values-hidden {
animation: booked-popdown 0.2s;
-webkit-animation: booked-popdown 0.2s;
-moz-animation: booked-popdown 0.2s;
-ms-animation: booked-popdown 0.2s;
-o-animation: booked-popdown 0.2s;
display: none;
border-left: 3px solid #ddd;
margin: 10px 0 0 0px;
padding: 0 0 0 20px;
}
body #booked-profile-page .cf-meta-values-hidden p {
margin: 0 0 10px;
font-size: 14px;
font-weight: 400;
line-height: 1.5;
}
body #booked-profile-page .cf-meta-values-hidden p:last-child {
margin-bottom: 0;
}
body #booked-profile-page .cf-meta-values-hidden p strong {
font-weight: 600;
}
body #booked-profile-page .result-section.table-layout {
margin: 0;
}
body #booked-profile-page .result-section.table-layout .table-box {
border: none;
}
body #booked-profile-page .result-section.table-layout .table-box .table-body .table-row {
min-height: 115px;
}
body #booked-profile-page .result-section.table-layout .table-box .table-body .cell-title {
font-weight: normal;
font-size: 15px;
line-height: 1.6;
}
body #booked-profile-page .result-section.table-layout .table-box .table-body .cell-title p {
margin: 0;
padding: 10px 0 0 0;
font-size: 12px;
}
body #booked-profile-page .result-section.table-layout .table-box .table-body .cell-title small {
display: block;
padding-top: 5px;
}
body #booked-profile-page .result-section.table-layout .table-box .table-body .cell-title a {
font-weight: 600;
}
body #booked-profile-page .result-section.table-layout .table-box .table-body .cell-title .booked-review p {
font-size: 14px;
line-height: 1.7;
}
body #booked-profile-page .result-section.table-layout .table-box .table-head-row {
background: none !important;
}
body #booked-profile-page .result-section.table-layout .table-box .table-cell {
padding: 20px 0;
}
body #booked-profile-page .result-section.table-layout .table-box .cell-title {
position: relative;
width: 55%;
padding-right: 25px;
}
body #booked-profile-page .result-section.table-layout .table-box .cell-title .compact-img img {
width: 65px;
height: auto;
position: absolute;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
top: 26px;
left: 0;
}
body #booked-profile-page .result-section.table-layout .table-box .cell-title .cell-title-wrap {
padding-left: 85px;
}
body #booked-profile-page .result-section.table-layout .table-box .cell-rating {
width: 20%;
}
body #booked-profile-page .result-section.table-layout .table-box .cell-time {
width: 25%;
}
body #booked-profile-page .result-section.table-layout .table-box .cell-title.reviews {
width: 100%;
padding-right: 0;
}
body #booked-profile-page .result-section.table-layout .table-box .cell-title.reviews .rating {
margin-top: 10px;
}
body #booked-profile-page p.booked-form-notice {
border: 1px solid #E6DB55;
border-radius: 3px;
background-color: #FFFBCC;
margin: 0 0 35px;
padding: 10px 15px;
}
body #booked-profile-page .booked-profile-appt-list {
box-sizing: border-box;
}
body #booked-profile-page .booked-profile-appt-list .appt-block {
color: #888;
line-height: 23px;
padding: 20px 0 25px;
border-top: 1px solid #ddd;
display: block;
}
body #booked-profile-page .booked-profile-appt-list .appt-block > i.fa-solid {
width: 23px;
color: #333;
}
body #booked-profile-page .booked-profile-appt-list .appt-block:last-child {
padding-bottom: 0;
}
body #booked-profile-page .booked-profile-appt-list .appt-block .status-block {
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
font-size: 12px;
text-transform: uppercase;
font-weight: bold;
float: right;
padding: 0 12px 1px;
line-height: 33px;
margin: 6px 0 0 0;
background: #ccc;
color: #fff;
}
body #booked-profile-page .booked-profile-appt-list .appt-block button {
float: right;
margin: 6px 0 0 0;
}
body #booked-profile-page .booked-profile-appt-list .appt-block .cancel {
color: #aaa;
font-size: 12px;
padding-left: 10px;
border: 1px solid #ddd;
background: #f5f5f5;
color: #aaa;
}
body #booked-profile-page .booked-profile-appt-list .appt-block .cancel:hover {
background: #eee;
color: #888;
border-color: #ccc;
}
body #booked-profile-page .booked-profile-appt-list .appt-block .booked-fea-buttons {
float: right;
display: flex;
}
body #booked-profile-page .booked-profile-appt-list .appt-block .booked-fea-buttons > a,
body #booked-profile-page .booked-profile-appt-list .appt-block .booked-fea-buttons > button {
margin: 0 0 0 0.5rem;
}
body #booked-profile-page .booked-profile-appt-list .appt-block .booked-fea-buttons > a.delete,
body #booked-profile-page .booked-profile-appt-list .appt-block .booked-fea-buttons > button.delete {
display: inline-block;
padding: 10px;
width: 45px;
text-align: center;
color: #aaa;
border: 2px solid #ddd;
border-radius: 5px;
}
body #booked-profile-page .booked-profile-appt-list .appt-block .booked-fea-buttons > a.delete:hover,
body #booked-profile-page .booked-profile-appt-list .appt-block .booked-fea-buttons > button.delete:hover {
color: #000;
border: 2px solid #888;
}
body #booked-profile-page .booked-profile-appt-list .appt-block .booked-cal-buttons {
display: flex;
padding: 15px 0 0 0;
}
body #booked-profile-page .booked-profile-appt-list .appt-block .booked-cal-buttons a {
text-decoration: none;
display: inline-block;
padding: 0.5rem 0.75rem;
margin: 0 7px 0 0;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
line-height: 1rem;
font-size: 0.9rem;
font-weight: 400;
-webkit-transition: all 0.1s ease-out;
-moz-transition: all 0.1s ease-out;
-o-transition: all 0.1s ease-out;
transition: all 0.1s ease-out;
}
body #booked-profile-page .booked-profile-appt-list .appt-block .booked-cal-buttons a:hover {
text-decoration: none;
}
body #booked-profile-page .booked-profile-appt-list .appt-block.approved {
color: #000;
}
body #booked-profile-page .booked-profile-appt-list .calendar-name {
padding: 0 0 5px;
}
body #booked-profile-page #profile-edit {
box-sizing: border-box;
}
body #booked-profile-page h4 {
margin: 0 0 20px;
padding: 0;
font-size: 19px;
font-weight: 600;
}
body #booked-profile-page .appt-block .booked-cal-buttons {
display: flex;
}
body #booked-profile-page .appt-block .booked-cal-buttons .google-cal-button {
font-size: 0.9rem;
line-height: 1rem;
font-weight: 400;
letter-spacing: 0.03rem;
padding: 0.5rem 0.65rem 0.5rem 40px;
}
body #booked-profile-page .appt-block .booked-cal-buttons .google-cal-button .addeventatc_dropdown {
padding: 0;
}
body #booked-profile-page .appt-block .booked-cal-buttons .google-cal-button .copyx {
display: none;
}
body #booked-profile-page .appt-block .booked-cal-buttons .google-cal-button .addeventatc_icon {
top: 0.35rem;
}
body #booked-profile-page .appt-block .booked-cal-buttons a {
display: inline-block;
margin: 0 0.5rem 0 0;
}
body #booked-profile-page .appt-block .booked-cal-buttons > span {
display: inline-block;
margin: 0 0.5rem 0 0;
}
body #booked-profile-page .appt-block .booked-cal-buttons > div {
display: inline-block;
margin: 0 0.5rem 0 0;
}
@media screen and (max-width: 1200px) {
body .booked-list-view .booked-appt-list h2 {
text-align: left;
margin: 0 0 20px;
}
body .booked-list-view .booked-appt-list h2.booked-no-prev {
text-align: left;
}
body .booked-list-view .booked-list-view-nav {
display: block;
height: 26px;
margin: -5px 0 30px;
position: static;
text-align: left;
}
body .booked-list-view .booked-list-view-nav .booked-list-view-date-next,
body .booked-list-view .booked-list-view-nav .booked-list-view-date-prev {
margin: 0 6px 5px 0;
position: relative;
display: inline-block;
top: 0;
right: 0;
}
body .booked-list-view .booked-list-view-nav .booked-list-view-date-next {
float: right;
margin: 0 0 5px;
}
}
@media screen and (max-width: 1100px) {
body .booked-calendar td .count {
padding: 5px 0;
font-size: 9px;
}
body .booked-calendar td .date .number {
width: 30px;
height: 30px;
line-height: 30px;
font-size: 14px;
}
}
@media screen and (max-width: 860px) {
body #booked-profile-page .booked-profile-appt-list {
float: none;
width: 100%;
margin: 0 0 30px;
}
body #booked-profile-page #profile-edit {
float: none;
width: 100%;
margin: 0;
}
body #booked-profile-page .booked-profile-appt-list .appt-block .status-block {
float: right;
margin: 6px 0 0 0;
}
}
@media screen and (max-width: 720px) {
body .booked-calendar-wrap .booked-calendar thead th {
font-size: 1rem;
padding: 1.15rem 0 !important;
height: 1rem;
}
body .booked-calendar-wrap .booked-calendar thead tr.days th {
font-size: 0.7rem;
padding: 0.5rem 0 !important;
height: auto;
}
body .booked-calendar-wrap .booked-calendar td {
font-size: 13px;
}
body .booked-calendar-wrap .booked-calendar thead th .page-left,
body .booked-calendar-wrap .booked-calendar thead th .page-right {
font-size: 1rem;
margin-top: -0.5rem;
}
body .booked-calendar-wrap .booked-calendar thead th .page-left:hover {
left: 19px;
}
body .booked-calendar-wrap .booked-calendar thead th .page-right:hover {
right: 19px;
}
body .booked-calendar-wrap .booked-calendar th .monthName {
height: auto;
display: inline-block;
}
body .booked-calendar-wrap .booked-calendar th .monthName a {
top: -2px;
font-size: 10px;
}
body .booked-calendar-wrap .booked-calendar td .count {
display: none;
}
body .booked-calendar-wrap .booked-calendar td .date {
height: 100%;
}
body .booked-calendar-wrap .booked-calendar td .date .number {
border: none;
display: block;
-moz-border-radius: 0;
-webkit-border-radius: 0;
border-radius: 0;
transform: scale(1);
width: 100%;
height: 100%;
vertical-align: middle;
}
body .booked-calendar-wrap .booked-calendar td.blur .date,
body .booked-calendar-wrap .booked-calendar td.blur:hover .date {
cursor: default;
background: #EEEEEE;
color: #ccc;
}
body .booked-calendar-wrap .booked-calendar td.booked .date,
body .booked-calendar-wrap .booked-calendar td.booked:hover .date {
cursor: default;
background: #FFE4DF;
color: #F15934;
}
body .booked-calendar-wrap .booked-calendar td.today .date {
background: #e3f2f9;
color: #555;
}
body .booked-calendar-wrap .booked-calendar td.today:hover .date {
background: #eff7fb;
color: #555;
}
body .booked-calendar-wrap .booked-calendar td:hover .date {
background: #f9f9f9;
cursor: pointer;
color: #000;
}
body .booked-calendar-wrap .booked-calendar tr.week td.active .date .number {
border: none;
transform: scale(1.5);
background: none;
color: #000;
}
body .booked-calendar-wrap .booked-calendar tr.entryBlock td {
padding: 5%;
}
body .booked-calendar-wrap .booked-calendar .booked-appt-list {
max-height: 300px;
overflow-y: auto;
overflow-x: hidden;
padding: 15px 20px 10px;
}
body .booked-calendar-wrap.small .booked-calendar .booked-appt-list {
max-height: 300px;
}
body .booked-calendar .booked-appt-list h2 {
text-align: center;
margin: 5px 0 20px;
font-size: 15px;
letter-spacing: 0.03em;
}
body .booked-calendar .booked-appt-list h2 span {
display: none;
}
body .booked-calendar .booked-appt-list .timeslot {
border-top: 0;
margin: 0;
}
body .booked-calendar .booked-appt-list .timeslot .timeslot-time,
body .booked-calendar .booked-appt-list .timeslot .timeslot-count {
display: none;
}
body .booked-calendar .booked-appt-list .timeslot button .spots-available,
body .booked-calendar-wrap .booked-appt-list .timeslot button .spots-available {
display: block;
}
body .booked-calendar .booked-appt-list .timeslot .timeslot-mobile-title,
body .booked-calendar-wrap .booked-calendar .booked-appt-list .timeslot .timeslot-mobile-title {
display: block;
}
body .booked-calendar .booked-appt-list .timeslot .timeslot-people, body .booked-calendar .booked-appt-list .timeslot .timeslot-people:hover,
body .booked-calendar .booked-appt-list .timeslot.timeslot-count-hidden .timeslot-people, body .booked-calendar .booked-appt-list .timeslot.timeslot-count-hidden .timeslot-people:hover {
width: 100%;
padding: 0;
height: auto;
}
body .booked-calendar .booked-appt-list .timeslot .timeslot-people button {
white-space: normal;
float: none;
margin: 0;
width: 100%;
text-align: center;
padding: 7px 0;
line-height: 1.5;
}
body .booked-calendar .booked-appt-list .timeslot .timeslot-people button .button-timeslot {
display: block;
font-weight: 600;
font-size: 13px;
}
body .booked-calendar .booked-appt-list .timeslot .timeslot-people button .button-text {
display: none;
}
body .booked-calendar-wrap .booked-calendar td.prev-date .date,
body .booked-calendar-wrap .booked-calendar td.prev-date:hover .date {
cursor: default;
background: #f9f9f9;
color: #bbb;
}
body .booked-calendar-wrap .booked-calendar td.blur .date,
body .booked-calendar-wrap .booked-calendar td.blur:hover .date {
cursor: default;
background: #eee;
color: #ddd;
}
body .booked-calendar-wrap .booked-calendar td.booked .date,
body .booked-calendar-wrap .booked-calendar td.booked:hover .date {
cursor: default;
background: #ffeae7;
color: #f0b1a1;
}
body .booked-calendar-wrap .booked-calendar tr.week td.active .date,
body .booked-calendar-wrap .booked-calendar tr.week td.active:hover .date {
background: #ddd;
}
body #booked-profile-page .result-section.table-layout {
padding: 10px 0;
}
body #booked-profile-page .result-section.table-layout .table-box .cell-title .compact-img img {
top: 46px;
left: 12px;
}
body #booked-profile-page .booked-tabs li,
body #booked-profile-page .booked-tabs li.edit-button {
display: block;
float: none;
}
body #booked-profile-page .booked-tabs li a,
body #booked-profile-page .booked-tabs li.edit-button a {
border-left: none;
border-right: none;
}
body .booked-modal {
padding: 0;
margin: 0 !important;
top: 0;
}
body .booked-modal .bm-window,
body .booked-modal .bm-window p.booked-title-bar {
border-radius: 0 !important;
}
body .booked-modal .bm-window {
width: 100%;
padding: 43px 0 0;
box-sizing: border-box;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
}
body .booked-modal .bm-window .booked-scrollable {
padding: 30px 35px;
}
body .booked-modal .bm-overlay {
background: rgba(0, 0, 0, 0.8);
}
body .booked-modal .bm-window p.name b {
display: block;
}
body .booked-list-view .booked-appt-list .timeslot.has-title.booked-hide-time .timeslot-people button .button-timeslot,
body .booked-calendar-wrap .booked-appt-list .timeslot.has-title.booked-hide-time .timeslot-people button .button-timeslot {
display: none;
}
}
@media screen and (max-width: 600px) {
body.booked-noScroll {
position: fixed;
height: 100%;
}
body .booked-modal input[type=submit] {
margin: 0 10px 10px 0;
float: none;
}
body .booked-modal .button {
width: 100%;
float: none;
}
body .booked-calendarSwitcher {
width: 100%;
display: block;
padding: 8px 5px;
}
body .booked-calendarSwitcher i.fa-solid {
display: none;
}
body .booked-calendarSwitcher select {
width: 100%;
}
body .booked-calendar td .date .number {
font-size: 12px;
}
body #booked-profile-page .booked-profile-appt-list .appt-block .status-block {
display: block;
float: none;
margin: 0 0 10px;
}
body #profile-edit #booked-page-form p.form-nickname,
body #profile-edit #booked-page-form p.form-email,
body #profile-edit #booked-page-form p.form-url,
body #profile-edit #booked-page-form p.form-password {
float: none;
width: 100%;
}
body .booked-modal #customerChoices .field {
display: block;
float: none;
margin: 5px 0;
}
}
@media screen and (max-width: 450px) {
body .booked-list-view .booked-appt-list h2 strong {
display: block;
margin: 0 auto;
}
body .booked-list-view .booked-appt-list h2 span:last-child {
display: none;
}
body .booked-list-view .booked-appt-list .timeslot {
border-top: 0;
margin: 0 0 10px;
}
body .booked-list-view .booked-appt-list .timeslot .timeslot-time,
body .booked-list-view .booked-appt-list .timeslot .timeslot-count {
display: none;
}
body .booked-list-view .booked-appt-list .timeslot .timeslot-people {
width: 100%;
padding: 0;
height: auto;
}
body .booked-list-view .booked-appt-list .timeslot .timeslot-people button {
float: none;
margin: 0;
width: 100%;
text-align: center;
padding: 7px 0;
line-height: 1.5;
}
body .booked-list-view .booked-appt-list .timeslot .timeslot-people button .button-timeslot {
display: block;
font-weight: 600;
font-size: 13px;
}
body .booked-list-view .booked-appt-list .timeslot .timeslot-people button .button-text {
display: none;
}
body .booked-calendar-wrap .booked-appt-list .timeslot .timeslot-people button .timeslot-mobile-title {
display: block;
}
body .booked-calendar-wrap .booked-appt-list .timeslot.timeslot-count-hidden .timeslot-people {
height: auto;
padding: 0;
}
}