@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;
}@font-face {
font-family: 'Roboto';
src: local('Roboto Thin'), local('Roboto-Thin'), url(/wp-content/themes/businessup/fonts/Robotothin.woff2) format('woff2'), url(/wp-content/themes/businessup/fonts/Robotothin.woff) format('woff'), url(/wp-content/themes/businessup/fonts/Robotothin.ttf) format('truetype');
font-weight: 100;
font-style: normal;
}
@font-face {
font-family: 'Roboto';
src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'), url(/wp-content/themes/businessup/fonts/Robotothinitalic.woff2) format('woff2'), url(/wp-content/themes/businessup/fonts/Robotothinitalic.woff) format('woff'), url(/wp-content/themes/businessup/fonts/Robotothinitalic.ttf) format('truetype');
font-weight: 100;
font-style: italic;
}
@font-face {
font-family: 'Roboto';
src: local('Roboto Light'), local('Roboto-Light'), url(/wp-content/themes/businessup/fonts/Robotolight.woff2) format('woff2'), url(/wp-content/themes/businessup/fonts/Robotolight.woff) format('woff'), url(/wp-content/themes/businessup/fonts/Robotolight.ttf) format('truetype');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Roboto';
src: local('Roboto Light Italic'), local('Roboto-LightItalic'), url(/wp-content/themes/businessup/fonts/Robotolightitalic.woff2) format('woff2'), url(/wp-content/themes/businessup/fonts/Robotolightitalic.woff) format('woff'), url(/wp-content/themes/businessup/fonts/Robotolightitalic.ttf) format('truetype');
font-weight: 300;
font-style: italic;
}
@font-face {
font-family: 'Roboto';
src: local('Roboto'), local('Roboto-Regular'), url(/wp-content/themes/businessup/fonts/Roboto.woff2) format('woff2'), url(/wp-content/themes/businessup/fonts/Roboto.woff) format('woff'), url(/wp-content/themes/businessup/fonts/Roboto.ttf) format('truetype');
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'Roboto';
src: local('Roboto Italic'), local('Roboto-Italic'), url(/wp-content/themes/businessup/fonts/Robotoitalic.woff2) format('woff2'), url(/wp-content/themes/businessup/fonts/Robotoitalic.woff) format('woff'), url(/wp-content/themes/businessup/fonts/Robotoitalic.ttf) format('truetype');
font-weight: 400;
font-style: italic;
}
@font-face {
font-family: 'Roboto';
src: local('Roboto Medium'), local('Roboto-Medium'), url(/wp-content/themes/businessup/fonts/Robotomedium.woff2) format('woff2'), url(/wp-content/themes/businessup/fonts/Robotomedium.woff) format('woff'), url(/wp-content/themes/businessup/fonts/Robotomedium.ttf) format('truetype');
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'Roboto';
src: local('Roboto Medium Italic'), local('Roboto-MediumItalic'), url(/wp-content/themes/businessup/fonts/Robotomediumitalic.woff2) format('woff2'), url(/wp-content/themes/businessup/fonts/Robotomediumitalic.woff) format('woff'), url(/wp-content/themes/businessup/fonts/Robotomediumitalic.ttf) format('truetype');
font-weight: 500;
font-style: italic;
}
@font-face {
font-family: 'Roboto';
src: local('Roboto Bold'), local('Roboto-Bold'), url(/wp-content/themes/businessup/fonts/Robotobold.woff2) format('woff2'), url(/wp-content/themes/businessup/fonts/Robotobold.woff) format('woff'), url(/wp-content/themes/businessup/fonts/Robotobold.ttf) format('truetype');
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: 'Roboto';
src: local('Roboto Bold Italic'), local('Roboto-BoldItalic'), url(/wp-content/themes/businessup/fonts/Robotobolditalic.woff2) format('woff2'), url(/wp-content/themes/businessup/fonts/Robotobolditalic.woff) format('woff'), url(/wp-content/themes/businessup/fonts/Robotobolditalic.ttf) format('truetype');
font-weight: 700;
font-style: italic;
}
@font-face {
font-family: 'Roboto';
src: local('Roboto Black'), local('Roboto-Black'), url(/wp-content/themes/businessup/fonts/Robotoblack.woff2) format('woff2'), url(/wp-content/themes/businessup/fonts/Robotoblack.woff) format('woff'), url(/wp-content/themes/businessup/fonts/Robotoblack.ttf) format('truetype');
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: 'Roboto';
src: local('Roboto Black Italic'), local('Roboto-BlackItalic'), url(/wp-content/themes/businessup/fonts/Robotoblackitalic.woff2) format('woff2'), url(/wp-content/themes/businessup/fonts/Robotoblackitalic.woff) format('woff'), url(/wp-content/themes/businessup/fonts/Robotoblackitalic.ttf) format('truetype');
font-weight: 900;
font-style: italic;
}.wrapper {
background: transparent;
}
body {
overflow-x: hidden;
font-family: 'Roboto';
font-weight: 400;
font-style: normal;
}
body.home .wrapper {
background: url(//havanagym.ru/wp-content/uploads/2018/01/zaliv_top.png) 50% 0 no-repeat;
background-size: 100% 565px;
}
.modal {
z-index: 9999999;
}
.navbar-wp .navbar-nav > li > a, h1, h2, h3, h4, h5 {
font-family: 'Roboto';
}
.gallery {
width: 98vw;
}
.gallery img.size-medium {
min-width: 100%;
object-fit: contain;
} .alert-form {
display: block;
position: absolute;
right: 60px;
margin-top: -35px;
color: #fff;
font-size: 13px;
}
.col-tab {
display: table;
text-align: justify;
}
.fil-cat-wrap {
padding: 20px 10px;
min-width: 150px;	
width: auto;	
display: table-cell;
}
.modal-backdrop {
background: rgba(0,0,0,0.8);
}
#pop_zapis .form-query, #pop_zamoroz .form-query {
margin: auto;
top: 0;
bottom: 0;
position: absolute;
left: 0;
right: 0;
max-width: 550px;
}
#pop_zapis .form-wrap, #pop_zamoroz .form-wrap {
padding: 10px 20px;
}
.form-query {
overflow-y: hidden;
height: 370px;
}
.alert-inactive {
opacity: 0;
}
.form-slide {
transition: 300ms;
transform: scaleY(1);
transform-origin: 50% 0;
}
.form-success {
position: absolute;
top: 0;
transition: 300ms;
transform: scaleY(0);
transform-origin: 50% 100%;
}
.form-query .info-icon {
border: 2px solid #fff;
}
.gallery-icon > a {
display: block;
width: 92%;
overflow: hidden;
height: 240px;
}
.screen-reader-text {
display: none;
}
#TB_closeWindowButton {
top: 0;
}
header {
background: url(//havanagym.ru/wp-content/uploads/2018/01/zaliv_top.png) 50% 0 no-repeat;
background-size: 100% auto;
padding-bottom: 10px;
}
body.home header {
padding-bottom: 0;
}
footer .overlay {
background: transparent;
}
.businessup-headwidget .businessup-head-detail {
display: none;
}
.businessup-headwidget .navbar-wp {
background: rgba(0,0,0,0.8);
}
.navbar {
min-height: 0;
}
#menu-main_menu {
width: 100%;
display: table;
margin-left: -0.5%;
}
.navbar-nav > li {
float: none;
display: table-cell;
text-align: center;
padding: 0 17px;
}
.businessup-headwidget .navbar-wp .navbar-nav > li > a {
padding: 12px 0;
display: inline-block;
text-transform: uppercase;
}
.businessup-headwidget .navbar-wp .navbar-nav > li > a:hover, .businessup-headwidget .navbar-wp .navbar-nav > li > a:focus, .businessup-headwidget .navbar-wp .navbar-nav > .active > a, .businessup-headwidget .navbar-wp .navbar-nav > .active > a:hover, .businessup-headwidget .navbar-wp .navbar-nav > .active > a:focus {
box-shadow: inset 0 -3px #16af50;
}
.navbar-brand img {
width: 200px;
height: auto;
margin-left: 15px;
}
#intro > .container {
transform: translateX(-0.5%);
}
.head-1 {
margin-left: -40px;
padding: 15px 0;
}
.head-1>div {
margin-bottom: 8px;
height: 40px;
}
.info-icon {
background: url(//havanagym.ru/wp-content/uploads/2018/01/icon_border.png) 50% 50% no-repeat;
background-size: contain;
width: 40px;
height: 40px;
display: inline-block;
position: relative;
transition: 200ms;
}
.info-icon::before {
position: absolute;
content: '';
display: block;
width: 100%;
height: 100%;
transition: 200ms;
transform-origin: 50% 50%;
}
.tel-icon::before {
background: url(//havanagym.ru/wp-content/uploads/2018/01/info_icon.png) 50% 50% no-repeat;
background-size: 55%;
}
.mail-icon::before {
background: url(//havanagym.ru/wp-content/uploads/2018/01/mail_icon.png) 50% 50% no-repeat;
background-size: 55%;
}
.businessup-headwidget .navbar-brand {
padding: 10px 0 0 0;
}
.tel-link span {
height: 40px;
display: inline-block;
margin-left: 10px;
font-size: 20px;
font-weight: 600;
vertical-align: top;
line-height: 40px;
color: #fff;
}
.tel-link:hover .info-icon {
background: url(//havanagym.ru/wp-content/uploads/2018/01/zaliv1.png) 50% 50% no-repeat;
background-size: auto 100%;
}
.form-link {
display: inline-block;
width: 100%;
height: 40px;
color: #fff !important;
text-align: center;
padding: 4px 0;
font-size: 14px;
transition: 200ms;
}
.fill-link {
background: url(//havanagym.ru/wp-content/uploads/2018/01/zaliv1.png) 50% 50% no-repeat;
background-size: 100% 40px;
}
.border-link {
background: url(//havanagym.ru/wp-content/uploads/2018/01/border2.png) 50% 50% no-repeat;
background-size: 100% 100%;
}
.head-2 {
padding-right: 0;
}
.businessup-nav-widget-area {
padding-bottom: 20px;
}
.tel-link span.loc-span {
height: 40px;
display: inline-block;
margin-left: 10px;
font-size: 11px;
font-weight: 400;
vertical-align: top;
line-height: 20px;
color: #fff;
}
.loc-icon::before {
background: url(//havanagym.ru/wp-content/uploads/2018/01/loc_icon.png) 50% 50% no-repeat;
background-size: 35%;
}
.vk-icon::before {
background: url(//havanagym.ru/wp-content/uploads/2018/01/vk_icon.png) 50% 50% no-repeat;
background-size: 55%;
}
.tg-icon::before {
background: url(//havanagym.ru/wp-content/uploads/2025/07/telegram-icon-x30.tiny_.png) 50% 50% no-repeat;
background-size: 55%;
}
.face-icon::before {
background: url(//havanagym.ru/wp-content/uploads/2018/01/face_icon.png) 50% 50% no-repeat;
background-size: 30%;
}
.insta-icon::before {
background: url(//havanagym.ru/wp-content/uploads/2018/01/insta_icon.png) 50% 50% no-repeat;
background-size: 50%;
}
.twit-icon::before {
background: url(//havanagym.ru/wp-content/uploads/2018/01/twit_icon.png) 50% 50% no-repeat;
background-size: 45%;
}
.youtube-icon::before {
background: url(//havanagym.ru/wp-content/uploads/2018/01/youtube_icon.png) 50% 50% no-repeat;
background-size: 45%;
}
.head-4 {
padding-left: 30px;
}
.head-5 .tel-link {
display: table-cell;
}
.head-5 {
display: table;
text-align: center;
transform: translateX(5px);
padding-left: 4px;
}
.businessup-slider-warraper #businessup-slider {
margin: auto;
position: relative;
z-index: 1;
float: none;
width: 1100px;
transform: translateX(-0.5%);
}
#businessup-slider {
padding-top: 25px;
}
#businessup-slider .widgettitle {
position: absolute;
color: #16af50;
font-weight: 700;
right: 15px;
width: 30%;
margin-top: 50px;
font-size: 40px;
line-height: 50px;
}
#pop_zapis, #pop_zamoroz {
display: none;
position: fixed;
}
.wrap-p {
height: 210px;
}
main#content .businessup-service-inner-img {
height: 240px;
overflow: hidden;
}
main#content .service-text {
transform: translateY(245px);
}
#businessup-slider .wp-caption .wp-caption-text {
left: 10px;
color: #fff;
width: 100%;
bottom: 15px;
position: absolute;
font-style: normal;  }
#businessup-slider .owl-item:hover .sl-desc {
opacity: 1;
}
.sl-head1 {
display: none;
font-weight: 700;
font-size: 26px;
text-transform: uppercase;
line-height: 33px; height: 70px;
}
.sl-desc {
opacity: 0;
font-size: 13px;
line-height: 35px;
display: block;
height: 40px;
transition: 1s ease;
}
#businessup-slider .form-link {
width: 50%;
line-height: 30px;
margin-top: 20px;
}
.businessup-slider-warraper .owl-controls .owl-buttons div {
background: transparent !important;
border: none;
box-shadow: none;
}
.fa-angle-right::before {
content: '';
}
.fa-angle-right {
background: url(//havanagym.ru/wp-content/uploads/2018/01/arrow_right.png) 50% 0 no-repeat;
width: 33px;
height: 65px;
position: absolute;
margin: auto;
top: 0;
bottom: 0;
right: 0;
}
#businessup-slider2  .owl-controls .owl-buttons .owl-prev, #businessup-slider2 .owl-controls .owl-buttons .owl-next {
margin-top: 0;
}
.businessup-slider-warraper.gallery .owl-controls {
margin-top: 50px;
}
.fa-angle-left::before {
content: '';
}
.fa-angle-left {
background: url(//havanagym.ru/wp-content/uploads/2018/01/arrow_left.png) 50% 0 no-repeat;
width: 33px;
height: 65px;
position: absolute;
margin: auto;
top: 0;
bottom: 0;
left: 0;
}
.businessup-slider-warraper .owl-controls .owl-buttons .owl-next {
top: 50%;
}	
.businessup-slider-warraper:hover .owl-controls .owl-buttons .owl-next {
right: 10px;
}
.businessup-slider-warraper .owl-controls .owl-buttons .owl-prev {
top: 50%;
}	
.businessup-slider-warraper:hover .owl-controls .owl-buttons .owl-prev {
left: 10px;
}
.businessup-slider-warraper .owl-pagination {
right: 10px;
left: auto;
position: absolute;
bottom: 33px;
}
.businessup-slider-warraper .owl-controls .owl-page span {
border: 2px solid #16af50;
border-radius: 0;
background: transparent;
width: 15px;
height: 15px;
}
.businessup-slider-warraper .owl-controls .owl-page.active span {
background: #16af50;
}
#intro {
margin-top: 40px;
}
.uroki {
padding-right: 5px;
}
.uroki div {
padding: 0 10px 0 5px;
margin-bottom: 15px;
}
.uroki img {
width: 100%;
height: auto;
}
.form-query {
padding: 0 20px 0 0;
}
.form-wrap {
height: 370px;
background: url(//havanagym.ru/wp-content/uploads/2018/01/zapis_zaliv.png) 50% 0 no-repeat;
background-size: auto 100%; 
}
.form-wrap {
text-align: center;
}
.query-head {
margin-top: 10px;
display: inline-block;	
font-size: 18px;
font-weight: 500;
color: #fff;
text-transform: uppercase;
}
.zapis-wrap {
padding: 10px 20px;
}
.zapis-span {
font-size: 12px;
line-height: 18px;
display: block;
margin-top: 5px;
color: #fff;
}
.zap-3 {
width: 150%;
margin-left: -20px;
}
#qu_form label {
font-size: 12px;
font-weight: 500;
color: #fff;
display: block;
text-align: left;
padding-top: 5px;
margin-bottom: 0;
float: none;
clear: both;
padding-left: 10px;
}
#qu_form input {
border: 2px solid #fff;
background: transparent;
width: 95%;
margin: 0 10px;
color: #fff;
}
#qu_form input[type="submit"] {
width: 50%;
border-radius: 0;
margin-top: 15px;
font-weight: 400;
}
.zapis-wrap img {
width: 44px;
}
#main_text {
background: url(//havanagym.ru/wp-content/uploads/2018/01/tetya1.jpg) 50% 0 no-repeat;
background-size: 1920px 412px;
padding-bottom: 30px;
opacity: 0.8;
position: relative;
height: 412px;
}
#main_text h1 {
font-weight: 700;
}
#main_text h1>i {
font-weight: 400;
font-size: 16px;
font-style: normal;
} 
#main_text p {
color: #333;	
font-size: 13px;
line-height: 16px;
margin-bottom: 30px;
}
#main_text .border-link, #service .border-link, #insta_total .border-link  {
color: #333 !important;
font-size: 14px;
width: 200px;
}
#treners .border-link {
color: #333 !important;
font-size: 14px;
width: 180px;
transition: 300ms;
opacity:0; 
font-style: normal;
margin-top: 0;
line-height: 30px;
}
#treners .item:hover .border-link {
opacity:1; 
}
#cards .border-link {
color: #fff !important;
font-size: 14px;
width: 200px;
}
.border-link:hover, #main_text .border-link:hover, #service .border-link:hover, #insta_total .border-link:hover, #treners .border-link:hover, .border-link.fil-act {
background: url(//havanagym.ru/wp-content/uploads/2018/01/zaliv1.png) 50% 50% no-repeat;
background-size: 100% 40px;
color: #fff !important;
}
.logo-add {
position: absolute;
margin-top: -200px;
left: 0;
right: 0;
}
.logo-add img {
margin-top: -15px;
margin-left: 55px;
}
.businessup-section {
padding: 30px 0;
}
.businessup-heading span, .businessup-heading p, .businessup-heading h1 {
font-size: 27px;
font-weight: 500;
margin: 10px auto 0 auto;
display: inline-block;
color: #111;
text-transform: uppercase;
}
.businessup-heading::after {
content: '';
width: 60px;
border-bottom: 3px solid #16af50;
display: inline-block;
vertical-align: middle;
}
.businessup-service .businessup-service-inner {
position: relative;
padding: 0;
overflow: hidden;
}
.service-text {
position: absolute;
width: 100%;
display: inline-block;
background-color: rgba(0,0,0,0.8);
padding: 5px 10px;
bottom: 0;
left: 0;
color: #fff;
text-transform: uppercase;
font-weight: 600;
font-size: 14px;
text-align: left;
transform: translateY(76px);
transition: 500ms;
}
.wrap-p {
padding: 20px 10px;
}
.p-head {
text-align: center;
display: inline-block;
width: 100%;
}
.p-li {
line-height: 20px;
font-size: 14px;
color: #16af50;
height: 40px;
font-weight: 600;
margin-left: 15px;
}
article.small .p-li {
line-height: 20px;
font-size: 14px;
color: #16af50;
font-weight: 600;
float: left;
height: auto;
margin-left: 15px;
}
.p-li + p {
float: left;
width: 40%;
padding-left: 5px;
display: inline-block;
}
.p-wrap {
color: #fff;
font-size: 11px;
font-weight: 400;
}
.p-price {
color: #16af50;
font-size: 16px;
font-weight: 600;
}
.trener-text {
line-height: 20px;
}
#service-home .form-link {
font-size: 14px;
font-weight: 400;
text-transform: none; 
}
.businessup-service .businessup-service-inner:hover .service-text {
transform: translateY(0);
}
main#content .businessup-service .businessup-service-inner .service-text {
transform: translateY(170px);
top: 0;
bottom: auto;
}
main#content .businessup-service .businessup-service-inner:hover .service-text {
transform: translateY(-35px);
}
.businessup-service-inner i {
line-height: 20px;
}
.service-text>span {
font-size: 11px;
font-weight: 500;
float: right;
}
.service-text>span i.service-price {
color: #16af50 !important;
font-size: 18px;
font-weight: 600;
text-shadow: none;
font-style: normal;
}
.service-text>span i.ruble {
font-size: 18px;
color: #fff !important;
font-style: normal;
text-shadow: none;
font-weight: 400;
}
.businessup-service-inner p {
border-top: 1px solid #fff;
color: #fff !important;
font-size: 11px;
font-weight: 500;
line-height: 20px;
padding: 10px 0;
font-style: italic;
margin: 0;
margin-top: 5px;
height: 69px;
overflow: hidden;
}
#cards {
background: rgba(0,0,0,0.9);
}
#cards-home {
text-align: left;
}
#cards .businessup-heading span, #advs .businessup-heading span {
color: #fff;
}
#cards figure img {
width: 100%;
}
.card-title {
color: #fff;
font-weight: 600;
font-size: 18px;
text-transform: uppercase;
display: block;
}
.card-pr1 {
color: #f5f5f5;
text-decoration: line-through;
}
.card-pr2 {
color: #16af50;
font-size: 24px;
font-weight: 600;
}
.card-prices i.ruble {
color: #f5f5f5;
font-size: 20px;
font-weight: 600;
font-style: normal;
}
.cards-text p {
color: #f5f5f5;
font-size: 11px;
line-height: 13px;
margin-bottom: 0;
}
.businessup-slider-inner {
padding: 0;
}
.card-link {
font-size: 13px;
text-decoration: underline;
transition: 200ms;
}
.card-link:hover {
color: #fff;
}
#cards .item {
margin-bottom: 35px;
}
#treners .item {
position: relative;
}
#treners .wp-caption img[class*="wp-image-"] {
display: inline-block;
margin: 0;
max-width: none !important;
margin-left: -15px;
}
#treners figure>a {
padding: 8px;	
display: inline-block;
transition: 500ms;
background: url(//havanagym.ru/wp-content/uploads/2018/01/komanda_border.png) 50% 50% no-repeat;
background-size: 50% auto;
}
#treners .trener-wrap {
display: block;
height: 150px;
width: 150px;
border-radius: 75px;
overflow: hidden;
}
#treners .item:hover figure>a {
background: url(//havanagym.ru/wp-content/uploads/2018/01/komanda_border.png) 50% 50% no-repeat;
background-size: 100% auto;
}
#treners .widgettitle {
position: absolute;
top: 150px;
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
text-align: center;
width: 100%;
color: #111;
transition: 300ms;
line-height: 18px;
height: 40px;
display: inline-block;
margin-top: 20px;
margin-bottom: 10px;
font-family: 'Montserrat', sans-serif;
}
#treners .wp-caption-text {
padding-top: 48px;
}
#treners .sl-desc {
line-height: 15px;
font-size: 12px;
font-style: normal;
padding: 0 5px;
height: 0;
display: inline-block;
overflow: hidden;
}
#treners .item:hover .widgettitle {
color: #16af50;
}
#treners.businessup-slider-warraper .owl-controls .owl-buttons .owl-prev,  #treners.businessup-slider-warraper .owl-controls .owl-buttons .owl-next {
top:23%; 
}
#treners.businessup-slider-warraper:hover .owl-controls .owl-buttons .owl-prev {
left: -40px;  
}
#treners.businessup-slider-warraper:hover .owl-controls .owl-buttons .owl-next {
right: -40px; 
}
#treners .wp-caption {
display:inline-block; 
}
#advs {
background: url(//havanagym.ru/wp-content/uploads/2018/01/mfon.png) 50% 0 no-repeat;
background-size: 1920px auto;
padding-bottom: 30px;
padding-top: 15px;
opacity: 1;
position: relative;
height: 387px;
} 
.advs-item {
text-align: center;
}
.advs-item > span {
line-height: 20px;
display: inline-block;
margin-top: 15px;
color: #ccc;
} 
.advs-item > img {
display: inline-block;
}
#businessup-slider3 .card-title {
color: #111;
font-weight: 600;
font-size: 16px;
text-transform: none;
line-height: 15px;
display: block;
}
#businessup-slider3 .card-pr1 {
color: #444;
line-height: 16px;
text-decoration: none;
font-size: 13px;
}
#businessup-slider3 .cards-text p {
color: #444;
font-size: 13px;
line-height: 17px;
margin-bottom: 0;
font-style: italic;
}
footer .businessup-footer-widget-area {
padding-bottom:100px; 
}
#businessup-slider3 .cards-text p i {
color: #111;
font-weight: 600;
font-style: normal;
font-size: 18px;
vertical-align: top;
} 
#businessup-slider3 .card-link {
color: #666;
text-decoration: none;
width: 200px;
overflow: hidden;
white-space: nowrap;
display: block;
}
.businessup-slider-warraper:hover #businessup-slider3 .owl-controls .owl-buttons .owl-prev {
left: -10px;
}
.businessup-slider-warraper:hover #businessup-slider5 .owl-controls .owl-buttons .owl-prev {
left: -40px;
}
.businessup-slider-warraper:hover #businessup-slider3 .owl-controls .owl-buttons .owl-next {
right: -10px;
}
.businessup-slider-warraper:hover #businessup-slider5 .owl-controls .owl-buttons .owl-next {
right: -40px;
}
.businessup-slider-warraper #businessup-slider3 .owl-controls .owl-buttons .owl-prev {
top: 35%;
}
.businessup-slider-warraper #businessup-slider3 .owl-controls .owl-buttons .owl-next {
top: 35%;
}
.businessup-slider-warraper #businessup-slider3 .owl-pagination {
right: auto;
position: relative;
bottom: -40px;
}
#businessup-slider5 .wp-caption-text {
position: relative;
padding: 5px;
background: rgba(0,0,0,0.8);
height: 60px;
margin-top: -60px;
width: 100%;
overflow: hidden;
}
.sl-capt {
display: block;
color: #fff;
font-weight: 600;
font-style: normal;
text-transform: uppercase;
}
.sl-desc-2 {
color: #fff;
}
[class*="ymaps-2-1"][class*="-ground-pane"] {
filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); -webkit-filter: grayscale(100%);
}
footer .businessup-footer-copyright {
padding: 0;
}
.map-head {
top: 0;
position: relative;
margin-top: -400px;
background: rgba(0,0,0,0.8);
padding: 7px 30px 0 30px;
}
.map-head .head-3 {
text-align: center;
}
.map-head a {
display: inline-block;
line-height: 25px !important;
padding: 5px;
}
.map-head .tel-link span.loc-span {
font-size: 16px;
line-height: 40px;
}
#main_footer {
position: relative;
top: 300px;
background: url(//havanagym.ru/wp-content/uploads/2018/01/footer_zaliv.png) 50% 0 no-repeat;
background-size: 1920px auto;
}
#main_footer .navbar-brand img {
width: 250px;
}
footer .businessup-footer-copyright p, footer .businessup-footer-copyright a {
font-size: 13px;
line-height: 33px;
}
.soc-footer {
overflow: hidden;
height: 40px;
padding: 0;
margin: 10px auto;
}
.soc-wrap {
width: 296px;
margin-left: -9px;
display: table;
text-align: center;
} 
.soc-wrap a {
display: table-cell;
}
.footer-links-header {
display: inline-block;
margin-top: 15px;
padding-left: 20px;
color: #16af50;
font-weight: 600;
}
.social-links-menu {
padding-left: 20px;
}
.social-links-menu-3 {
padding-left: 0;
}
.businessup-social-navigation li {
display: block;
margin-right: 0;
border-bottom: none;
height: 25px;
}
.businessup-social-navigation a {
display: inline-block;
float: none;
height: 28px;
line-height: 28px;
margin: 0;
text-align: left;
width: 100%;
border-radius: 0;
background: transparent !important;
}
.footer-nav-link {
color: #aaa;
transition: 200ms;
font-size: 11px;
line-height: 14px;
display: inline-block;
vertical-align: top;
}
.businessup-social-navigation li:hover .footer-nav-link {
color: #fff;
} 
.menu-item-has-children:hover .dropdown-menu {
display: block;
}
.head-6 {
margin-top: 25px;
}
.head-6 .form-link {
width: 240px;
}
.green-span {
color: #16af50;
}
#main_footer p {
margin-bottom: 0;
}
.delim {
font-style: normal;
font-size: 28px;
vertical-align: bottom;
}
.businessup-breadcrumb {
background: #fff;
padding: 5px 0;
text-align: left;
}
.businessup-breadcrumb-title {
text-align: left;
}
.businessup-breadcrumb li {
display: inline-block;
list-style-type: none;
}
.businessup-breadcrumb a {
color: #666;
transition: 200ms;
}
.businessup-breadcrumb a:hover {
color: #111;
}
.blog-post-1 .wp-post-image {
display: inline-block;
vertical-align: top;
max-width: 46%;
width: 30%;
height: auto;
float: left;
}
h1.title {
display: inline-block;
margin: 0 0 20px 0;
box-shadow: inset 0 -3px #16af50;
padding-bottom: 15px;
}
.small h2 {
font-size: 24px;
}
article.small {
padding-left: 30px;
display: inline-block;
width: 69%;
position: relative; overflow: hidden;
}
article.small .pre-p {
line-height: 22px;
font-size: 13px;
height: 16vw;
padding-top: 50px;
overflow: hidden;
margin-bottom: 1vw;
}
article.small > div {
padding-left:0;
}
#pop_zapis > button,  #pop_zamoroz > button {
position: absolute;
height: 40px;
padding: 5px 18px;
float: right;
margin: auto;
top: calc((100vh - 370px)/2 - 25px);
right: calc((100vw - 550px)/2 + 35px);
z-index: 11; 
}
#pop_zapis .tb-close-icon,  #pop_zamoroz .tb-close-icon {
top: 5px;
right: 2px;
cursor: pointer; 
}
.p-simple {
color: #333;
font-weight: 400;
font-style: normal;
line-height: 20px;
font-size: 14px;
vertical-align: baseline;
float: left;
display: inline;
}
.usl-li {
list-style-type: disc;
color: #16af50;
margin-left: 20px;
font-weight: 600;
line-height: 20px;
margin-bottom: 10px;
}
.usl-li span {
color: #111;
line-height: 20px;
font-weight: 400;
}
article.small .form-link span, .form-link.fil-cat span, article.small .form-link, .form-link.fil-cat  {
color: #111 !important;
transition: 200ms;
}
article.small .form-link:hover span, .form-link.fil-cat:hover span, article.small .form-link:hover, .form-link.fil-cat:hover {
color: #fff !important;
}
.border-link-2 {
border: 2px solid #dd3;
}
.border-link-2:hover {
background: #dd3;
}
article.small-2 h2, article.small-2 span.subheader {
font-size: 24px;
font-weight: 600;
margin: 35px 0 10px 0;
color: #212121;
font-family: 'Montserrat', sans-serif;
display: block;
}
article.small-2 p {
font-size: 13px;
}
.video-wrap * {
max-width: 100%;
}
#gallery.businessup-slider-warraper .owl-controls .owl-buttons .owl-prev, #gallery.businessup-slider-warraper .owl-controls .owl-buttons .owl-next, .businessup-slider-warraper.gallery .owl-controls .owl-buttons .owl-prev, .businessup-slider-warraper.gallery .owl-controls .owl-buttons .owl-next {
height: 100%;
top: 30px;
background: rgba(0,0,0,0.8) !important;
border-radius: 0;
padding: 70px 5px 0 5px;
width: 60px;
position: absolute;
z-index: 5;
margin: -30px 0 0;
transition: all 0.3s ease 0s;
}
.gallery.businessup-slider-warraper .owl-controls .owl-buttons .owl-prev {
left: -8px;
}
.gallery.businessup-slider-warraper:hover .owl-controls .owl-buttons .owl-prev {
left: 0;
}
.gallery.businessup-slider-warraper:hover .owl-controls .owl-buttons .owl-next {
right: 1.8%;
}
.kom-name {
text-transform: uppercase;
font-weight: 600;
color: #111;
font-size: 20px;
}
.kom-add {
font-size: 16px;
color: #16af50;
font-weight: 600;
}
.map-blog {
width: 400px;
height: 630px;
overflow: hidden;
position: absolute;
background: rgba(255,255,255,0.8);
margin-left: 10%;
}
.map-h1 {
text-align: center;
width: 100%;
display: inline-block;
font-weight: 600;
color: #111;
font-size: 20px;
padding: 15px;
}
.map-block {
padding: 0 20px;
margin-bottom: 10px;
}
.map-block img {
margin-right: 20px;
width: 170px;
}
.place-title {
display: inline-block;
width: 170px;
vertical-align: middle;
line-height: 20px;
}
body.archive .blog-post-1 {
padding: 20px;
background: #fff;
margin-bottom: 30px;
}
.soc-links-2 {
position: absolute;
width: 300px;
top: 0px;
right: 15px;
display: table;
} .aboutHavana {
background: #242B35;
padding: 50px 0;
overflow: hidden;
}
.aboutHavana .container {
position: relative;
}
.aboutHavana__title > span {
color: #fff;
font-weight: 700;
font-size: 30px;
}
.aboutHavana__title > span span {
color: #16af50;
}
.aboutHavana p {
line-height: 26px;
font-size: 18px;
color: #fff;
margin-top: 35px;
}
.aboutHavana p:first-child {
margin-top: 25px;
}
.aboutHavana p span {
color: #16af50;
}
.aboutHavana__list-title {
margin-top: 50px;
}
.aboutHavana__top-content {
margin-right: 35px;
}
.aboutHavana__list-desc {
padding-right: 65px;
}
.aboutHavana__general-content ul {
list-style-type: none;
padding-left: 0;
margin-top: 30px;
}
.aboutHavana__general-content li {
padding-left: 65px;
margin-top: 28px;
font-size: 16px;
line-height: 20px;
color: #fefefe;
position: relative;
padding-right: 140px;
}
.aboutHavana__general-content li:last-child {
padding-right: 0;
}
.aboutHavana__general-content li:before {
position: absolute;
content: '';
left: 55px;
width: 3px;
height: 100%;
background-color: #16ae50;
opacity: .35;
}
.aboutHavana__list-img-wr {
position: absolute;
width: 43px;
top: 3px;
left: 5px;
text-align: center;
}
.aboutHavana__row {
display: flex;
}
.aboutHavana__row > div:first-child {
padding-left: 0;
}
.aboutHavana__img-wr {
position: absolute;
left: -50px;
top: -85px;
height: 1185px;
}
.aboutHavana__img-wr:before, .aboutHavana__img-wr:after {
content: '';
position: absolute;
height: 3px;
width: 400px;
bottom: -3px;
opacity: .3;
}
.aboutHavana__img-wr:before {
right: 50%;
background-image: -webkit-linear-gradient(90.243944deg, transparent 0%, #16ae50 100%);
background-image: -moz-linear-gradient(90.243944deg, transparent 0%, #16ae50 100%);
background-image: -o-linear-gradient(90.243944deg, transparent 0%, #16ae50 100%);
background-image: linear-gradient(90.243944deg, transparent 0%, #16ae50 100%);
}
.aboutHavana__img-wr:after {
left: 50%;
background-image: -webkit-linear-gradient(-89.846deg, transparent 0%, #16ae50 100%);
background-image: -moz-linear-gradient(-89.846deg, transparent 0%, #16ae50 100%);
background-image: -o-linear-gradient(-89.846deg, transparent 0%, #16ae50 100%);
background-image: linear-gradient(-89.846deg, transparent 0%, #16ae50 100%);
}
.aboutHavana__img-block {
position: relative;
}
.aboutHavana__img-block img {
position: relative;
height: 100%;
}
.aboutHavana__img-block .aboutHavana__logo {
position: absolute;
top: 270px;
left: 110px;
width: 158px;
height: auto;
}
.aboutHavana__button-block {
margin-top: 30px;
}
.aboutHavana__button-block > span {
font-size: 26px;
color: #fefefe;
}
.aboutHavana__button-block > span > span {
font-size: 26px;
color: #16ae50;
}
.aboutHavana__button-block a {
display: block;
width: 190px;
margin: auto;
margin-top: 30px;
}
.aboutHavana__havana-txt, .aboutHavana__gym-txt {
position: absolute;
font-size: 378px;
font-weight: 900;
color: #ffffff;
opacity: .02;
}
.aboutHavana__havana-txt.second, .aboutHavana__gym-txt.second, .aboutHavana__havana-txt.third, .aboutHavana__gym-txt.third, .aboutHavana__havana-txt.fouth, .aboutHavana__gym-txt.fouth {
display: none;
}
.aboutHavana__havana-txt {
transform: rotate(-90deg);
bottom: 630px;
left: -550px;
}
.aboutHavana__gym-txt {
bottom: 190px;
right: -60px;
}
.aboutHavana__logo-mob {
display: none;
}
@media (max-width:960px) {
.soc-links-2 
{
position:static;
padding-top:10px;
}
}
.small span {
display: block;
} 
.category-1 .small-2,.category-1 .video-wrap {
display: none;
}
.cat-desc {
text-align: center;
}
.arr-d-1 {
background: url(//havanagym.ru/wp-content/uploads/2018/01/ar_down.png) 0 100% no-repeat;
width: 30px;
height: 50px;
position: relative;
margin-left: calc(10% + 280px);
margin-top: 140px;
} 
.arr-d-2 {
background: url(//havanagym.ru/wp-content/uploads/2018/01/ar_down.png) 0 100% no-repeat;
width: 30px;
height: 50px;
position: absolute;
margin-left: calc(10% + 280px);
margin-top: 40px;
} .soc-links-2 .vk-icon::before {
background: url(//havanagym.ru/wp-content/uploads/2018/01/vk_1.png) 50% 50% no-repeat;
background-size: 55%;
}
.soc-links-2 .face-icon::before {
background: url(//havanagym.ru/wp-content/uploads/2018/01/face_1.png) 50% 50% no-repeat;
background-size: 30%;
}
.soc-links-2 .insta-icon::before {
background: url(//havanagym.ru/wp-content/uploads/2018/01/insta_1.png) 50% 50% no-repeat;
background-size: 50%;
}
.soc-links-2 .youtube-icon::before {
background: url(//havanagym.ru/wp-content/uploads/2018/01/youtube_1.png) 50% 50% no-repeat;
background-size: 45%;
}
header.businessup-headwidget.sticky1 {
position: fixed;
z-index: 99999;
background: rgba(0,0,0,0.96);
width: 100%;
background-size: 100% 150px;
padding-bottom: 20px;
height: 75px;
}
header.businessup-headwidget.sticky1 + * {
padding-top: 158px;
}
header.businessup-headwidget.sticky1 .hidden-xs {
display: none;
}
header.businessup-headwidget.sticky1 .head-3 span.hidden-xs, header.businessup-headwidget.sticky1 .head-2.col-sm-4 {
display: inline-block;
}
header.businessup-headwidget.sticky1 .head-5 {
display: table;
float: right;
width: 30%;
}
.sticky1 .businessup-menu-full {
float: left;
left: calc((100% - 1170px)/2 + 320px);
}
.sticky1 .businessup-menu-full>nav {
background: rgba(0,0,0,0.96);
}
.sticky1 .navbar-brand img {
height: 50px;
width: auto;
}
.sticky1 .head-3 {
text-align: left;
width: 35%;
}
.sticky1 .navbar-toggle {
display: inline-block;
position: absolute;
margin-top: -55px;
}
.sticky1 .collapse {
display: none !important;
}
.sticky1 #navbar-wp {
width: 300px;
}
.sticky1 #menu-main_menu {
margin: 0;
}
.sticky1 .navbar-nav > li {
float: none;
display: block;
text-align: left;
width: 100%;
}
.sticky1 .collapse.in {
display: block !important;
}
.sticky1 .navbar-wp {
width: 300px;
position: absolute;
right: 0;
left: auto;
}
.sticky1.businessup-headwidget .navbar-wp .navbar-nav > li > a {
width: 90%;
}
@media (min-width: 1700px) {
.logo-add {
width: 83%;
}
}
@media (min-width: 1170px) {
.gallery {	
margin-left: calc(((1170px - 100vw)/2));	
}
}	
@media (max-width: 1170px) and (min-width: 768px) {
.navbar-collapse.collapse {
display: block !important;
}
.navbar-toggle {
display: none;
}
.form-wrap {
height: 31vw;
}	
}	
@media (max-width: 1170px) {
.gallery.businessup-slider-warraper:hover .owl-controls .owl-buttons .owl-next {
right: 20px;
}	
.gallery {
margin-left: -12px;
}
#qu_form input[type="submit"] {
padding: 0;
}	
#qu_form label {
line-height: 18px;
}	
.zapis-wrap {
padding-top: 0;
}
.zapis-wrap>div {
display: none;
}
.alert-form {
right: 40px;
margin-top: 55px;
}
.form-success {
margin-right: 15px;
}
.form-success .zapis-wrap > div {
display: block;
}	
.wrapper, body.home .wrapper {
background-size: 100% 300px;
}
.form-query {
padding: 0 15px 0 20px;
}	
.container {
width: 100%;
}
.navbar-brand img {
width: 250px;
height: auto;
}
.head-1 {
margin-left: -20px;
}
.head-4 {
text-align: center;
}
.businessup-slider-warraper #businessup-slider {
width: 100%;
}
#businessup-slider .wp-caption .wp-caption-text {
display: none;
}	
}
@media (max-width: 1199px) {
.aboutHavana__top-content {
margin-right: 0;
}
.aboutHavana__title > span {
font-size: 28px;
}
.aboutHavana__general-content li {
padding-right: 20px;
}
.aboutHavana__img-wr {
left: -40px;
}
}
@media (max-width: 1100px) {
#insta_total {
display: none;	
}
#advs {
background-size: auto 200px;
height: 250px;
background-position: 50%;	
}
}
@media (max-width: 991px) {
.aboutHavana__img-wr {
left: -10px;
height: 635px;
}
.aboutHavana__img-block .aboutHavana__logo {
top: 110px;
left: 70px;
}
.aboutHavana__havana-txt, .aboutHavana__gym-txt {
font-size: 258px;
}
.aboutHavana__button-block > span br {
display: none;
}
.aboutHavana__havana-txt {
bottom: 680px;
left: -340px;
}
.aboutHavana__gym-txt {
bottom: 280px;
}
}
@media (max-width: 768px) {
article.small, article.small p, article.small .pre-p {
height: auto;	
}
.p-li + p {
width: 100%;	
}
article.small .pre-p {
padding-top: 5px;	 
}
.fil-cat-wrap {
width: 100%;
display: block;	
}
.map-blog {
margin-left: 0;	
}
.arr-d-1, .arr-d-2 {
margin-left: 280px;	
}
#content {
padding-top: 120px;
}
#main_footer {
background-size: auto 100%;
}
#main_footer .head-2 {
padding-right: 15px;	
}
#main_footer p>a {
display: block;
margin: auto;
width: 20%;	
}
.soc-wrap {
width: 106%;	
}
header.businessup-headwidget {
position: fixed;
z-index: 99999;
background: url(//havanagym.ru/wp-content/uploads/2018/01/zaliv_top.png) 50% 0 no-repeat;
background-size: auto auto;
width: 100%;
background-size: 100% 150px;
padding-bottom: 20px;
}
header.businessup-headwidget+section {
padding-top: 130px;
}
#treners.businessup-slider-warraper:hover .owl-controls .owl-buttons .owl-prev {
left: -20px;  
}
#treners.businessup-slider-warraper:hover .owl-controls .owl-buttons .owl-next {
right: -20px; 
}	
#cards figure {
padding:0; 
}
#qu_form input[type="submit"] {
width: 95%;
}	
#main_text {
background-size: 1700px 100%;
height: auto;
}
.blog-post-1 .wp-post-image {
width: 100%;
max-width: 100%;
}
article.small {
width: 100%;
padding-left: 0;
padding-top: 10px;
}
.form-wrap {
background-size: 100% 100%;
}	
#businessup-slider {
padding-top: 20px;
}
#businessup-slider h2 {
margin-top: 15px;
}	
.head-3 {
text-align: right;
}
.navbar-brand img {
width: 170px;
height: auto;
padding-top: 18px;
}
.wrapper, body.home .wrapper {
background-size: 100% 150px;
}
.navbar-toggle {
right: 10px;
}
.navbar-toggle .icon-bar {
width: 30px;
}
#menu-main_menu {
margin: 0;
}
.navbar-nav > li {
float: none;
display: block;
text-align: left;
width: 100%;
}
.businessup-headwidget .navbar-wp .navbar-nav > li > a {
padding-left: 10px;
width: 100%;
}
.aboutHavana__img-block img {
display: none;
}
.aboutHavana__title > span {
font-size: 18px;
color: #16ae50;
}
.aboutHavana p {
padding-left: 15px;
}
.aboutHavana__row {
flex-wrap: wrap;
}
.aboutHavana__row > div:first-child {
padding-left: 0;
}
.aboutHavana p {
margin-top: 22px;
font-size: 14px;
}
.aboutHavana p:first-child {
margin-top: 22px;
}
.aboutHavana__list-title {
margin-top: 100px;
}
.aboutHavana__list-title > span {
color: #ffffff;
}
.aboutHavana__img-block {
display: none;
}
.aboutHavana__logo-mob {
display: block;
float: right;
width: 108px;
}
.aboutHavana__list-title {
text-align: center;
line-height: 25px;
}
.aboutHavana__list-desc {
padding-right: 0;
}
.aboutHavana__list-desc p {
line-height: 21px;
}
.aboutHavana__general-content li {
font-size: 14px;
line-height: 18px;
}
.aboutHavana__list-img-wr {
width: 34px;
}
.aboutHavana__list-img-wr {
width: 34px;
left: 0px;
}
.aboutHavana__list-img-wr img {
max-width: 100%;
}
.aboutHavana__general-content li {
padding-left: 50px;
padding-right: 0;
}
.aboutHavana__general-content li:before {
height: 3px;
width: 62px;
left: 15px;
top: -15px;
}
.aboutHavana__button-block > span, .aboutHavana__button-block > span > span {
font-size: 16px;
}
.aboutHavana__button-block {
line-height: 22px;
}
.aboutHavana__button-block a {
line-height: 34px;
}
.aboutHavana__havana-txt, .aboutHavana__gym-txt {
font-size: 98px;
}
.aboutHavana__general-content ul {
margin-top: 40px;
}
.aboutHavana__havana-txt.second, .aboutHavana__gym-txt.second, .aboutHavana__havana-txt.third, .aboutHavana__gym-txt.third, .aboutHavana__havana-txt.fouth, .aboutHavana__gym-txt.fouth {
display: block;
}
.aboutHavana__havana-txt {
transform: rotate(0);
left: 10px;
top: 300px;
}
.aboutHavana__gym-txt {
bottom: auto;
top: 400px;
left: auto;
right: 10px;
}
.aboutHavana__havana-txt.second {
top: 660px;
}
.aboutHavana__gym-txt.second {
top: 800px;
}
.aboutHavana__havana-txt.third {
top: 960px;
}
.aboutHavana__gym-txt.third {
top: 1100px;
}
.aboutHavana__havana-txt.fouth {
top: 1250px;
}
.aboutHavana__gym-txt.fouth {
top: 1450px;
}
}
@media (max-width: 650px) { body.home header {
padding-bottom: 15px;
}
}
.article-pricing-table
{
width:100%;
}
.article-pricing-table, .article-pricing-table td, .article-pricing-table th
{
border:1px solid #CCC;
}
.article-pricing-table td, .article-pricing-table th
{
padding:2px;
}
.article-pricing-table thead td
{
text-align:center;
font-weight:bold;
}
.article-pricing-table thead th
{ text-align:center;
font-weight:bold;
}
.article-pricing-table tbody th
{
text-align:center;
font-weight:bold;
}
.article-pricing-table tbody td
{
text-align:center;
font-weight:unset;
}
.standalone-gallery
{
text-align:center;
}
.t-intro .standalone-gallery
{
text-align:left;
}
.standalone-gallery img
{
margin: 5px;
}
.havanagym-button
{
color: #fff;
width: 259px;
height: 46px;
cursor: pointer;
display: inline-block;
background: url(//havanagym.ru/wp-content/uploads/2018/01/zaliv1.png) 50% 50% repeat-y !important;
text-align: center;
line-height: 46px;
}
.havanagym-more-button
{
color:#000;
cursor:pointer;
display:inline-block;
min-width:259px;
min-height:46px;
background:url(//havanagym.ru/wp-content/uploads/2018/01/border2.png) 50% 50% no-repeat;
text-align:center;
line-height:46px;
background-size:100% 100%;
}
.havanagym-more-button:hover
{
color:#fff;
background:url(//havanagym.ru/wp-content/uploads/2018/01/zaliv1.png) 50% 50% no-repeat;
background-size:100% 100%;
}
.havanagym-more-button-2
{
color: darkgreen;
cursor: pointer;
display: inline-block;
min-width: 500px;
min-height: 46px;
text-align: center;
line-height: 46px;
background-size: 100% 100%;
font-size: 20px;
font-weight: normal;
border: 2px solid green;
}
.havanagym-more-button-2:hover
{
color: #fff;
background: url(//havanagym.ru/wp-content/uploads/2018/01/zaliv1.png) 50% 50% no-repeat;
border-color: transparent;
background-size: cover;
background-origin: border-box;
}
table.bordered th, table.bordered td
{
border: 1px solid #ccc;
padding: 0 .5em;
}
#service-home .blog-post-1.ourteam-blog-post img
{
float: none;
}
article.small-2 
{
clear: both;
padding-top: 20px;
}
.wcs3-ex1-schedule-full-layout th { text-align:center; }

@media (max-width: 1100px) {
#cards-home {
display: grid;
margin-top: 35px;
margin-bottom: 35px;
padding: 0 30px;
grid-template-columns: repeat(2, calc(50% - 15px));
grid-column-gap: 30px;
grid-row-gap: 35px;
}
#cards-home > .item {
margin: 0;
}
#cards-home > .item > .item {
display: grid;
width: 100%;
margin: 0;
padding: 0;
grid-template-columns: 221px auto;
grid-column-gap: 15px;
}
#cards-home > .item > .item > * {
width: 100%;
}
#cards-home > .item > .item > * {
padding: 0;
}
}
@media (max-width: 991px) {
#cards-home {
grid-template-columns: repeat(2, calc(50% - 30px));
grid-column-gap: 60px;
}
#cards-home > .item > .item {
grid-template-columns: 100%;
}
}
@media (max-width: 1170px) {
#businessup-slider2 .item {
display: flex;
flex-direction: column;
align-items: center;
}
}
@media (max-width: 767px) {
#businessup-slider2 .item figcaption {
height: 0;
opacity: 0;
}
}
@media (max-width: 768px) {
.businessup-footer-widget-area #businessup-slider3 {
padding: 0;
}
.businessup-footer-widget-area #businessup-slider3 .item {
display: flex;
flex-direction: column;
align-items: center;
padding: 0 15px;
}
.businessup-footer-widget-area #businessup-slider3 .item .businessup-slider-inner {
width: 100% !important;
}
.businessup-footer-widget-area #businessup-slider3 .item .businessup-slider-inner .card-title {
text-align: center;
}
.businessup-footer-widget-area #businessup-slider3 .item .businessup-slider-inner .card-link {
width: 100%;
white-space: normal;
word-break: break-word;
line-height: 1.2;
padding-top: 7px;
}
}
@media (max-width: 767px) {
.businessup-footer-widget-area {
padding-top: 0 !important;
}
} .video-container {
position: relative;
padding: 0 0 56.25%;
width: 100%;
height: 0;
overflow: hidden;
}
.video-container-wrap {
position: relative;
width: 100%;
max-width: 560px;
max-height: 315px;
margin: 0 auto;
}
.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
@media (max-width: 767px) {
#club_presentation_video .col-md-12 {
padding-bottom: 0 !important;
}
#club_presentation_video .video-container-wrap {
margin-left: -30px;
margin-right: -30px;
width: calc(100% + 60px);
max-width: unset;
max-height: unset;
}
} body > .wrapper {
overflow: hidden;
} .top-mob {
position: relative;
}
.top-mob__item--time {
position: absolute;
top: 50px;
right: 15px;
width: 129px;
height: 40px;
display: flex;
background: url(//havanagym.ru/wp-content/uploads/2018/01/border2.png) 50% 50% no-repeat;
background-size: 100% 100%;
align-items: center;
justify-content: center;
color: #fff;
}
.top-mob__item--time:hover {
color: #fff !important;
background: url(//havanagym.ru/wp-content/uploads/2018/01/zaliv1.png) 50% 50% no-repeat;
background-size: auto 100%;
text-decoration: none;
}
@media (min-width: 768px) {
.top-mob__item--time {
display: none;
}
}
@media (max-width: 359px) {
.top-mob__item {
position: absolute;
}
.top-mob__item--tel {
top: 0 !important;
right: 104px !important;
}
.top-mob__item--tour {
top: 0 !important;
right: 0 !important;
}
}
@media (max-width: 359px) {
.navbar-brand img {
object-fit: contain;
width: 120%;
height: 102px;
}
} @media screen and (min--moz-device-pixel-ratio: 0) and (max-width: 767px) {
a.form-link.border-link.pop-link.visible-xs.hidden.mobile-3dtur {
height: 41px;
}
}
@media screen and (min--moz-device-pixel-ratio: 0) and (max-width: 359px) {
.top-mob__item--tel {
right: 105px !important;
}
}.variations_form.cart table.variations tr:nth-child(1) th { display: none; }
.sticky-bottom-actions__map-btn {
left: 20px;
bottom: 20px;
z-index: 9000;
position: fixed;
}
@media (max-width: 800px) {
html body a.sticky-bottom-actions__map-btn {
left: 10px;
bottom: 10px;
}
}.sticky-bottom-actions__phone-btn {
left: 20px;
bottom: 78px;
z-index: 9000;
position: fixed;
}
@media (max-width: 800px) {
html body a.sticky-bottom-actions__phone-btn {
left: 10px;
bottom: 68px;
}
}.sticky-bottom-actions__map-btn.theme__dHMTKQkpnGsoyRKqw6PXNS,
.sticky-bottom-actions__map-icon.theme__dHMTKQkpnGsoyRKqw6PXNS {
background-color: #45a300;
}
.sticky-bottom-actions__map-btn {
border: 6px solid rgba(255, 255, 255, 0.5);
cursor: pointer;
display: inline-block;
border-radius: 100%;
}
.sticky-bottom-actions__map-btn .sticky-bottom-actions__map-icon {
width: 39px;
height: 39px;
background-clip: padding-box;
position: relative;
}
.sticky-bottom-actions__map-btn .sticky-bottom-actions__map-icon::before {
content: "";
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIIAAACCCAMAAAC93eDPAAAC8VBMVEUAAADb3d739/j29vf19vfx8fHp6uo/R1BpZl7Cw8D9/f0TGQ/9/f2nqaXw8fLo6euAhISMjIL8/Pzy8/Tx8vPt7+/y8vPs7O7k5eeWmp65vsCZn6LExsb4+Pj19vbr7O7t7u/29vfw8fLe3+Hi5OXJzNDb3d/e4ODe4OLS1NbS1Nbd3+C9wcTT1NbExsnX2dq4urtzeHmPlZonMjiippZLUVNYYl8fLDNocWwVGBTl5uj4+Pjr7Oz5+vr8/Pz8/P3q6+z4+Pj7+/vw8PL39/jz9PXj5ebc3N/k5ujz8/Xc3d/t7e/s7e7o6Ori4+Xj5Obk5ebh4uPZ293k5efP0dTk5ufT1dfIys7Z297Z2t3O0dK5vMDd3+DZ3Nzc3dvV2NjW2NmutLS8v8Kmqq6ssbHLz9Korq7Fx8tzd3+foaCysLRla3AuPDX6+vr29vfi4+b29/fv8PD6+vry8/Tl5uj4+fr29vfd3+Dq6+zl5uji4+Xv8fHu7vD09fXu7/Dn6Orr7O3o6Ovg4uPs7e7z9PXj5Obi5OXr7O3k5ebf4eLX2Nvj5efe4OLV2Nrc3d+7vsLg4uLHyM3Z2tzt7u7g4uTS1dfc3d7O0NLBw8a7vb/T1tfd4OPNztHIysy5u8Dj5eWip6uxtLrJys3DyMmTl5vMz9HX2dTGyciqrq7Lzs66wbyFjZLEx7jl5ujw8PDf4OLd3+H////8/PzW19vx8vLi4+Xu7/H29vbq6uzr7O3u7/Df4ePe4ePV1tjo6evy8/Pm5+fn6Orj5OXU1tjT1djd3+Do6ezKzdDg4uPd3uDV2NnNztLk5ufw8fG/wsXQ0tXr7O7g4eK8vsDc3uDg5OTDxsne3+Dw8PDCxMfJys339vjCxcbV1tasr7PJys2IjZSfpKqzt73CxMPBwsG8wMTY29nh4OXc2t+qrLJ6gYR7gon////7/Pz9/v78/P36+vv39/j5+vr7+/z29vbz9PXu7/Dw8fLy8vPx8vP09PX4+fnM3HG7AAAA63RSTlMA41/HzXHILgQS/QX5C/jYDgn48eri4bmzKicgHvHx6N7ZxLCqjYR2b2JbVlVNQzciGxgPDg0LCwgG/vz29fTx7unm5NvZz8/GurizqaakoZyPjIaFgXtxbWpqY15MSEdCODY1LikYFxcTEBAK/fn29fDs6+fj4+Df39/b19PT0s3NzMjExL+8u6mbl5aTkIqJgXx7eHV0b25pYFpVU1FLSUY/PDQzMikmIRsTDfbp6OXb2NfV1MrHxb++vri3tbKyr66ppaShnpubmpWSj42Mh4OCfnp4a2ViYF9cUlFKREI9OjEvLCckJB8bU5MFAAAABbFJREFUeNrt2uO722AYx/F7bs/Z2c6sM9u2bdu2bdu2bdu2bXu/pj0eXi3ZtWvo3aZJl2Rv8vkD7ut7JX3yPG1KJpPJpKdOG7PVqbK7b3hozOHnF75tT0aLtbC7gL+EHP1gIeNkixsdnBD7rC8ZY05JAW4EV9xM+lsaH3KCqpLOYqWBJ1+bkp5yhEGBGb6kmyxQJgXpJS2U6kH6mA7lkpEHBcgLdaFGUpLVPLD3ldakUlYBjPefh4gQxUnfVtVaCIZK1eQTko8qLgCf5waQUvGhWlPZhEhELcuLEQi/ZiUlqkO9wPxyCZFJ5Jf4CACfolN9yZNcwfDCSY8Joljr0oQA9r6TOpCsIfBKSwUJIt9nacKA4MGTE5FbSdxuSiXGHhofMxxujFCWIFl6vBuAAXXbkGul4YojVYOfd7t1jThwxZZEJoEv+zFJAZRoGECcFa4M/Wt+uthwYaRsAveif3QB+FLPanHaoC+CE+rT3/IlAxfbapFN4Cyry0nTw9LSbyv6COBs65Q9OoTCZ/LKJ3B53qW2A7ZS6UiyOKV0YTjHauIsceGKvVfq3PIJ3ObllULEipSXRncVB8TMdBnMBde7Hz/U+jSbEibO6letHU+QVzBT5VBpzQ2bl5NoLxscl1xrxG+ElWhZ9W7AIJ7gWQ2UyU2SL2xwZuU7SWOSNLdH8CZhNvaTZAMbG0ru3Iaz0/SDzauEKIhEkuVsbE1yKxBOCmmR0IQlNCe39uiS0JAlyJx1qsBZPg0SZrOpudUcMDtrkHCVTc1LbqWDs3YaJGRgU2UOF7XhLL8GCffZ1MTkVlU4CYulQcIqNefSlHCygzRI6KDiuZCfbWrXtUig7uxoTO5MY7k5NEmox+ZmIDd6s23KT5OE9SwhqeKv3vFIkwQKY5MTkiv+PnD2UqOE+WDuEpfHAWfFSaOELQI/jS3jZ6YiYFJrlUAJwE2kv71JBibQV7OEjj7g+j2m33JXDQZ3kDRLoBFwpUT6tflIlCtzGgdcsCXWMCGnDW583lk8DG5UJg0TaDy8kETThIIOqFabNE2gG1ArsLPGCRQDKmUirROyQp2evponUAWoYiXtE6wCVJhIOiRQFhUNJUmXBEoOpYTWOiUUjA6FppBOCfQAysQj3RKoMpRwrNcxgeJAgYykZ8IreFaedE2ghvAkxE/nBBoLefaOpHdCrK+Q1YB0T6AkAmQkJAMSaIFd7qWY/gnyb4m+tTMogQ7AjVZkVIJvDLi0iAxLoE1f4MI0MjCBsoMrR4Ym0ENWEJcMTqBJTgU9uhieQOPwJ8cGMj6BRuMPLcjYBP76MjP9nwT/wvipERmTwOUKZb+FGp1Am2xsdzQ6gXJ2BRKQkQnccwyn/5wQDVHNBDPBTDATzAQzwUzQOuERSifSKMF3OuK18iJhMYCY6RP/c0LeJhNCICpyc63aBMo8tBiAuBkC/iGhY4sJQUDQrjsJeglAjAzvPSUwKwZFF4BC9bdYvEnwWzUAgE+cOiRZUz62OCukjtUim8BZWv74W1+MmaoTVm4XpMtf32L5NStRhWBxVnjaLvIJXKfsCeyAo9QsFQlZBks3sU+m9s4Xpm2VQMBe8lxe+QTOv1mlUOBbylq5lCQ0TlUUwMB7OciVAi2qhYoVZWt8lE/g8jVKIPY7htXLKZ+Q8cRnwD5kluyCXnIqHLDFm5GIJXiSMVVhaaU2CXCT4N8s9Vcxs0ytT8SwiorSpYozLzFL8KRxitgAkmdpzxLyZK9kB4JK1SKlso0sJq3U+QEswZOnyQWxYusCyx8Jllaj2MJRYk1/HwBfbuWxsAR5ftliSgt+W/qfCSsHRherQud2IvX8Xo+TZiWbWpAnyLNm3RcEOMpWQPxUSQH0bLCRvOWfPWEwYCtTW0xQp3PGw4H4IV66NvRv/J8c+wxATFCry5wxQWUntyFNLKoYkpBMJpPJZJL3HYh1IV0iJUHLAAAAAElFTkSuQmCC);
background-repeat: no-repeat;
background-position: center center;
background-size: 66%;
box-sizing: border-box;
}.sticky-bottom-actions__phone-btn.theme__dHMTKQkpnGsoyRKqw6PXNS,
.sticky-bottom-actions__phone-icon.theme__dHMTKQkpnGsoyRKqw6PXNS {
background-color: #45a300;
}
@keyframes sticky-bottom-actions__phone-btn__pulse-border {
0% 
{ border-color: rgba(255, 255, 255, 0.8); }
50% 
{ border-color: rgba(255, 255, 255, 0.5); }
100% 
{ border-color: rgba(255, 255, 255, 0.8); }
}
.sticky-bottom-actions__phone-btn {
border: 6px solid rgba(255, 255, 255, 0.8);
cursor: pointer;
display: inline-block;
border-radius: 100%;
animation: sticky-bottom-actions__phone-btn__pulse-border 4s infinite;
}
.sticky-bottom-actions__phone-btn .sticky-bottom-actions__phone-icon {
width: 39px;
height: 39px;
background-clip: padding-box;
position: relative;
}
.sticky-bottom-actions__phone-btn .sticky-bottom-actions__phone-icon::before {
content: "";
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAAnCAMAAADTjiM/AAAAbFBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8+T+BWAAAAI3RSTlMA9wVf7tCtpQ25mUw0I9eFclNG5d+/so59FPHJxHlrYyoeGNFWlAIAAADqSURBVCjPdZLpAoIwDIN1bGycoiCHt/b939GjdZao+fkVuiTbglX52q4WX2paIrIV0NDTSwngLbHSGTae6ZLopnkSMZ315zVF9YqfiOIPrXLkSQ2Uo4yUip880wEOssQ1pdE2HfOvcvbM18ilhAa5+DwiH5gPyEfxaIBvmHdX4JWFqCLzL0DO3OEBayliA/za8sDjopT57gK8IFaOjqRqW8IgIdbWPPOcVu+FwclgKM+ZJXJBWWWz8CBT4eig3M24nVQZWjF7iJvgZU+15t30uZ+lHiSq107xUcW+HeOu/bySUIw+7fPmcad3xQsxgQ+wsFgAAAAASUVORK5CYII=);
background-repeat: no-repeat;
background-position: center center;
background-size: 30%;
box-sizing: border-box;
}
@media (min-width: 1116px) {
.sticky-bottom-actions__phone-btn {
display: none !important;
}
}
@media (max-width: 800px) {
#vk_community_messages {
right: 10px !important;
bottom: 10px !important;
margin-bottom: 0 !important;
}
}
.doc-social-announcements {
text-align: center;
color: #fff;
}
.doc-social-announcements .block-title {
font-size: 20px;
font-weight: bold;
}
.doc-social-announcements a,
footer .businessup-footer-copyright .doc-social-announcements a {
display: inline-flex;
align-items: center;
font-size: 16px;
}
.doc-social-announcements .info-icon {
margin-right: 0.5em;
}