.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: 0.75s;
animation-duration: 0.75s;
}
@-webkit-keyframes bounce {
from, 20%, 53%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
40%, 43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-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.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
40%, 43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-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(0.95, 1.05, 1);
transform: scale3d(0.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, 0.95, 1);
transform: scale3d(1.05, 0.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(0.95, 1.05, 1);
transform: scale3d(0.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, 0.95, 1);
transform: scale3d(1.05, 0.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(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
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(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
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.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.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(0.97, 0.97, 0.97);
transform: scale3d(0.97, 0.97, 0.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.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.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(0.97, 0.97, 0.97);
transform: scale3d(0.97, 0.97, 0.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.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
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.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
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.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
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.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
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.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
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.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
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.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
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.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
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(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.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(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
}
@keyframes bounceOut {
20% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.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(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.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(0.95, 0.95, 0.95);
transform: perspective(400px) scale3d(0.95, 0.95, 0.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(0.95, 0.95, 0.95);
transform: perspective(400px) scale3d(0.95, 0.95, 0.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(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
50% {
opacity: 1;
}
}
@keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
50% {
opacity: 1;
}
}
.zoomIn {
-webkit-animation-name: zoomIn;
animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
@keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomInDown {
-webkit-animation-name: zoomInDown;
animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
@keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomInLeft {
-webkit-animation-name: zoomInLeft;
animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
@keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomInRight {
-webkit-animation-name: zoomInRight;
animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
@keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomInUp {
-webkit-animation-name: zoomInUp;
animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
to {
opacity: 0;
}
}
@keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
to {
opacity: 0;
}
}
.zoomOut {
-webkit-animation-name: zoomOut;
animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
to {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
transform: scale3d(0.1, 0.1, 0.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.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
@keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
to {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
transform: scale3d(0.1, 0.1, 0.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.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomOutDown {
-webkit-animation-name: zoomOutDown;
animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
transform: scale(0.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
transform: scale(0.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(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
transform: scale(0.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
@keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
transform: scale(0.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(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
to {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
transform: scale3d(0.1, 0.1, 0.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.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
@keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
to {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
transform: scale3d(0.1, 0.1, 0.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.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 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;
}    .blend-gradient {
background: linear-gradient(90deg, rgb(237, 22, 121), rgb(227, 124, 190));
background: -webkit-linear-gradient(90deg, rgb(237, 22, 121), rgb(227, 124, 190));
}   .blend-gradient {
background: linear-gradient(90deg, rgb(237, 22, 121), rgb(227, 124, 190));
background: -webkit-linear-gradient(90deg, rgb(237, 22, 121), rgb(227, 124, 190));
}
.anchor-reset, .helpie-main-content-area a {
cursor: pointer;
border: 0;
box-shadow: none;
}
.anchor-reset:visited, .helpie-main-content-area a:visited {
border: none;
}
.anchor-reset img, .helpie-main-content-area a img {
outline: none;
border: 0;
} .ui.fluid.dropdown {
box-sizing: border-box;
}
table.xdebug-error th {
color: black;
}
body .helpie-primary,
body .helpie-primary#primary {
width: 100%;
}
body .helpie-single-page-module {
margin-bottom: 2em;
background-color: #fff;
}
body .helpie-single-page-module * {
box-sizing: border-box;
}  body.post-type-archive-pauple_helpie #footer-outer,
body.tax-helpdesk_category #footer-outer,
body.single-pauple_helpie #footer-outer {
position: relative;
}
@media screen and (min-width: 48em) {
body .helpie-primary,
body .helpie-primary#primary {
width: 100% !important;
}
}
.pauple-helpie-search-row-type2 {
z-index: 99;
position: relative;
width: 100%;
padding: 0;
background: #F4F3F3;
padding: 1px 0;
}
.pauple-helpie-search-row-type2 .search-container {
margin: 0 auto;
float: none;
}
.helpie-anchor-props, #helpie-categories-section a {
text-decoration: none;
box-shadow: none;
}
.helpie-anchor-props:hover, #helpie-categories-section a:hover {
cursor: pointer;
color: #777;
}
.post-type-archive-pauple_helpie {
font-family: "Open Sans", sans-serif;
color: #9a9a9a;
font-size: 15px;
-webkit-font-smoothing: antialiased;
}
.post-type-archive-pauple_helpie #page {
margin: 0;
max-width: 100%;
}
.post-type-archive-pauple_helpie .site-inner {
max-width: none;
}
.post-type-archive-pauple_helpie #content, .post-type-archive-pauple_helpie #content #primary {
width: 100%;
padding: 0;
}
.helpie-primary-view .full-width .helpie-main-content-area .content-section {
padding: 0 20px;
}
@media screen and (max-width: 1024px) {
.helpie-primary-view .full-width .helpie-main-content-area .content-section {
padding: 0;
}
.helpie-main-section .wrapper,
.single-pauple_helpie .wrapper,
.tax-helpdesk_category .wrapper {
padding: 0 20px;
}
}
.tax-helpdesk_category h2 {
clear: both;
font-weight: bold;
letter-spacing: -0.5px;
font-size: 20px;
text-transform: capitalize;
margin-top: 5px;
margin-bottom: 10px;
padding-top: 25px;
}
.helpie-main-content-area {
float: left;
width: 100%;
}
.helpie-main-content-area .content-section {
float: left;
width: 100%;
margin: 50px 0;
}
.helpie-main-content-area .content-section ul {
list-style: none;
float: left;
display: block;
margin: 0;
width: 100%;
padding-left: 0;
}
.helpie-main-content-area .content-section ul li {
display: block;
float: left;
width: 100%;
padding: 0;
background: white;
}
.helpie-main-content-area .content-section .helpie-article-link {
padding-right: 10px;
font-size: 13px;
}
.helpie-main-content-area .content-section#helpie-categories-section {
display: none;
}
.helpie-main-content-area #helpie-popular-section.content-section ul {
width: 100%;
text-align: left;
}
.helpie-search-listing h3 {
font-family: "Open sans", sans-serif;
font-size: 15px;
font-weight: 400;
color: #9a9a9a;
}
body.post-type-archive-pauple_helpie .site-content {
padding: 0;
margin: 0;
}
.helpie-ul, #helpie-categories-section ul {
font-family: "Open Sans", sans-serif;
color: #9a9a9a;
font-size: 15px;
-webkit-font-smoothing: antialiased;
list-style: none;
float: left;
display: block;
margin: 0;
}
.helpie-ul li, #helpie-categories-section ul li {
display: block;
float: left;
width: 100%;
padding: 0;
background: white;
}
.helpie-ul li a, #helpie-categories-section ul li a {
text-decoration: none;
box-shadow: none;
}
.helpie-ul .helpie-article-link, #helpie-categories-section ul .helpie-article-link {
padding-right: 10px;
font-size: 13px;
}
.helpie-ul li, #helpie-categories-section ul li, .helpie-ul li a, #helpie-categories-section ul li a {
color: #2D95F1;
font-size: 13px;
line-height: 1.4;
padding-bottom: 8px;
text-transform: capitalize;
}
.helpie-ul li:hover, #helpie-categories-section ul li:hover, .helpie-ul li a:hover, #helpie-categories-section ul li a:hover {
color: #777;
}
.helpie-ul li:hover i, #helpie-categories-section ul li:hover i, .helpie-ul li a:hover i, #helpie-categories-section ul li a:hover i {
color: #777;
}
.helpie-ul li.active, #helpie-categories-section ul li.active, .helpie-ul li.active a, #helpie-categories-section ul li.active a {
font-weight: 600;
color: #4e4e4e;
}
.helpie-main-section ul {
list-style: none;
}
.helpie-main-section ul li {
float: left;
display: inline-block;
padding: 10px 15px;
}
.helpie-main-section ul li.active {
border-bottom: solid 2px rgba(132, 206, 255, 0.61);
}
.helpie-main-section ul li a {
cursor: pointer;
border: 0;
box-shadow: none;
}
.helpie-main-section ul li a:visited {
border: none;
}
.helpie-main-section ul li a img {
outline: none;
border: 0;
}
.helpie-main-section ul li, .helpie-main-section ul li a {
color: #9a9a9a;
}
.helpie-main-section ul li:hover, .helpie-main-section ul li a:hover {
color: #777;
}
.helpie-main-section ul li:hover i, .helpie-main-section ul li a:hover i {
color: #777;
}
.helpie-main-section ul li.active, .helpie-main-section ul li.active a {
font-weight: 600;
color: #4e4e4e;
} .three-columned-boxed-root ul.category-list li, .helpie-categories-section-boxed .three-columned ul.category-list li {
width: 31%;
margin-right: 3.5%;
border: solid 1px #eee;
}
.three-columned-boxed-root ul.category-list li:nth-child(3n), .helpie-categories-section-boxed .three-columned ul.category-list li:nth-child(3n) {
margin-right: 0;
}
@media screen and (max-width: 1024px) {
.three-columned-boxed-root1 ul.category-list li {
width: 33%;
}
.three-columned-boxed-root1 ul.category-list li:nth-child(4n) {
border-right: solid 1px #eee;
border-bottom: solid 1px #eee;
}
.three-columned-boxed-root1 ul.category-list li:nth-child(3n) {
border-right: 0;
}
}
.pauple-helpie-components {
position: relative;
float: left;
width: 100%;
}
.helpie-element .item-content {
padding: 10px;
border: none;
margin: 0;
}
.helpie-element .meta {
display: block;
}
.ui.grid .column {
box-sizing: border-box;
} #helpiekb-main-wrapper {
width: 980px;
}
@media screen and (max-width: 699px) {
#helpiekb-main-wrapper,
.helpie-single-page-module .helpie-primary-view #primary.content-area {
padding: 0;
}
.single-pauple_helpie .wrapper, .tax-helpdesk_category .wrapper {
padding: 0 8px;
}
} .post-type-archive-pauple_helpie .helpie-single-page-module .helpie-primary-view.full-width #helpiekb-main-wrapper {
width: 100%;
}
.pauple-helpie-components.wrapper {
overflow: visible;
margin: 0 auto;
float: none;
max-width: 100%;
height: 100%;
}
.helpie-primary-view .wrapper {
overflow: visible;
}
.helpie-main-section .wrapper,
.single-pauple_helpie .wrapper,
.tax-helpdesk_category .wrapper {
max-width: 100%;
float: none;
margin: 0 auto;
box-sizing: border-box;
background: none;
}
.helpie-main-section .wrapper {
overflow: auto;
}
.single-pauple_helpie .wrapper {
overflow: visible;
} .helpiekb-container {
width: 100%;
margin: 20px 0 40px 0;
float: left;
padding-bottom: 40px;
border-bottom: solid 1px #eee;
}   .blend-gradient {
background: linear-gradient(90deg, rgb(237, 22, 121), rgb(227, 124, 190));
background: -webkit-linear-gradient(90deg, rgb(237, 22, 121), rgb(227, 124, 190));
}
.anchor-reset, .helpie-main-content-area a {
cursor: pointer;
border: 0;
box-shadow: none;
}
.anchor-reset:visited, .helpie-main-content-area a:visited {
border: none;
}
.anchor-reset img, .helpie-main-content-area a img {
outline: none;
border: 0;
}
.helpie-single-page-module {
position: relative;
float: left;
width: 100%;
}
.helpie-single-page-module .helpie-primary-view {
position: relative;
background: white;
width: 100%;
height: auto;
}
.helpie-single-page-module .helpie-primary-view .wrapper {
margin: 0 auto;
float: none;
max-width: 100%;
overflow: visible;
}
.helpie-single-page-module .helpie-primary-view #primary {
position: relative;
padding: 0 1em;
border-right: 0;
}
.helpie-single-page-module .helpie-primary-view #primary.right-sidebar {
padding-left: 0;
padding-right: 25px;
}
.helpie-single-page-module .article-title-outer {
position: relative;
}
.helpie-single-page-module .article-title-outer small.helpie-edit-button {
position: absolute;
top: 5px;
left: -20px;
}
.helpie-single-page-module .article-content-outer {
position: relative;
}
.helpie-single-page-module .article-content-outer small.helpie-edit-button {
position: absolute;
top: 5px;
left: -20px;
}
.helpie-single-page-module .helpie-edit-content {
display: none;
}
.helpie-single-page-module .helpie-wp-editor-container {
display: none;
}
.helpie-single-page-module #main {
position: relative;
padding: 0px;
width: 100%;
}
.helpie-single-page-module.page-scroll-module #primary #main {
position: relative;
width: 100%;
padding: 0px;
}
.helpie-row {
position: relative;
margin: 20px 0;
}
.helpie-row.options-row {
position: relative;
width: 100%;
text-align: right;
}
.helpie-row.options-row .wrapper {
display: inline-block;
}
.helpie-row.options-row a.button {
overflow: inherit;
}
.helpie-row.options-row .buttons .dropdown.icon.button {
height: auto;
top: 0;
}
.helpie-syntax-highlight {
position: relative;
margin: 30px 0;
overflow: visible;
}
.helpie-syntax-highlight code { -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px;
padding: 20px;
border: solid 1px transparent;
}
.helpie-syntax-highlight .helpie-copy-icon {
position: absolute;
top: -20px;
right: 15px;
}
.helpie-syntax-highlight .helpie-copy-icon i {
font-size: 15px;
color: #3abdff;
}
.helpie-syntax-highlight .helpie-copy-icon span.label {
position: absolute;
top: -22px;
left: -42px;
font-size: 10px;
color: #9a9a9a;
width: auto;
width: 103px;
text-align: center;
letter-spacing: 0.3px;
text-align: center;
font-weight: 500;
font-family: Arial;
display: none;
background: none;
}
.helpie-syntax-highlight .helpie-copy-icon:hover {
cursor: pointer;
}
.helpie-syntax-highlight .helpie-copy-icon:hover span.label {
display: inline;
}
.helpie-syntax-highlight .helpie-copy-icon:hover i {
color: #2D95F1;
cursor: pointer;
}
.helpie-single-page-module .article-tags-container {
width: 100%;
text-align: left;
}
.helpie-single-page-module .article-tags-container .tag-title {
padding-bottom: 10px;
color: #888;
}
.helpie-single-page-module .article-tags-container .single-tag {
background: #2d95f1;
padding: 3px 10px;
color: white;
border-radius: 15px;
font-size: 13px;
text-transform: capitalize;
}
.helpie-single-page-info .info-span {
display: inline-block;
width: 100%;
}
.pauple-helpie-pageviews {
float: left;
border: solid 1px #e4e4e4;
border-radius: 5px;
padding: 10px 20px;
display: inline-block;
margin-bottom: 15px;
}
.pauple-helpie-pageviews .icon.circle {
border: solid 1px #ccc;
border-radius: 40px;
width: 40px;
height: 40px;
position: relative;
}
.pauple-helpie-pageviews .icon.circle i.fa {
position: absolute;
top: 10px;
left: 11px;
}
.pauple-helpie-pageviews .value {
font-size: 17px;
font-weight: bold;
color: #333;
}
button.helpie-sp-edit-button {
margin-top: 15px;
background: #5DB6F0;
color: white;
border-radius: 4px;
-webkit-box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
border: none;
padding: 10px 15px;
font-size: 16px;
}
button.helpie-sp-edit-button:hover {
background: #4c85ab;
}
body.tax-helpdesk_category .helpie-primary-view {
background: white;
}
body.tax-helpdesk_category .helpiekb-cat-page-subheader {
text-align: center;
font-weight: bold;
font-size: 1.6em;
}
body.tax-helpdesk_category .helpiekb-cat-page-subheader i {
font-size: 17px;
padding-right: 8px;
color: #523f7f;
}
body.tax-helpdesk_category .helpie-faq .search {
width: 100%;
}
body.tax-helpdesk_category .helpie-faq .collection-title {
text-align: center;
}
.helpie-single-page-module .helpie-primary-view .content-area, .helpie-single-page-module .helpie-primary-view #primary.content-area {
font-family: "Open Sans", sans-serif;
color: #9a9a9a;
font-size: 15px;
-webkit-font-smoothing: antialiased;
float: left;
margin-right: 0;
width: 70%;
margin-top: 0;
color: #4e4e4e;
}
.helpie-single-page-module .helpie-primary-view .content-area.right-sidebar, .helpie-single-page-module .helpie-primary-view #primary.content-area.right-sidebar {
margin-right: 7%;
}
.helpie-single-page-module .helpie-primary-view .content-area.left-sidebar, .helpie-single-page-module .helpie-primary-view #primary.content-area.left-sidebar {
margin-left: 7%;
}
.helpie-single-page-module .helpie-primary-view .content-area.both-side-sidebars, .helpie-single-page-module .helpie-primary-view #primary.content-area.both-side-sidebars {
width: 47% !important;
margin-right: 3.5%;
margin-left: 3.5%;
}
.helpie-single-page-module .helpie-primary-view .content-area.full-width, .helpie-single-page-module .helpie-primary-view #primary.content-area.full-width {
width: 100% !important;
margin-left: 0;
}
.helpie-single-page-module .helpie-primary-view .content-area.boxed-width, .helpie-single-page-module .helpie-primary-view #primary.content-area.boxed-width {
width: 100%;
margin-left: 0;
}
.helpie-single-page-module .helpie-primary-view .content-area h1, .helpie-single-page-module .helpie-primary-view .content-area h3, .helpie-single-page-module .helpie-primary-view #primary.content-area h1, .helpie-single-page-module .helpie-primary-view #primary.content-area h3 {
color: #343434;
}
.helpie-single-page-module .helpie-primary-view .content-area h1, .helpie-single-page-module .helpie-primary-view #primary.content-area h1 {
margin-bottom: 25px;
font-weight: bold;
letter-spacing: -0.5px;
}
.helpie-single-page-module .helpie-primary-view .content-area .article-title h1, .helpie-single-page-module .helpie-primary-view #primary.content-area .article-title h1 {
display: inline-block;
}
.helpie-single-page-module .helpie-primary-view .content-area .added_tag, .helpie-single-page-module .helpie-primary-view #primary.content-area .added_tag {
position: relative;
padding: 2px 4px;
margin-left: 5px;
color: white;
font-size: 13px;
border-radius: 5px;
background: #2cd2a8;
display: inline-block;
}
.helpie-single-page-module .helpie-primary-view .content-area .added_tag:after, .helpie-single-page-module .helpie-primary-view #primary.content-area .added_tag:after {
content: "added";
position: absolute;
font-size: 11px;
top: 0px;
right: -40px;
color: #aaa;
visibility: hidden;
}
.helpie-single-page-module .helpie-primary-view .content-area .added_tag:hover, .helpie-single-page-module .helpie-primary-view #primary.content-area .added_tag:hover {
cursor: pointer;
}
.helpie-single-page-module .helpie-primary-view .content-area .added_tag:hover:after, .helpie-single-page-module .helpie-primary-view #primary.content-area .added_tag:hover:after {
visibility: visible;
}
.helpie-single-page-module .helpie-primary-view .content-area .updated_tag, .helpie-single-page-module .helpie-primary-view #primary.content-area .updated_tag {
position: relative;
padding: 2px 4px;
margin-left: 5px;
color: white;
font-size: 13px;
border-radius: 5px;
background: #00b9eb;
display: inline-block;
}
.helpie-single-page-module .helpie-primary-view .content-area .updated_tag:after, .helpie-single-page-module .helpie-primary-view #primary.content-area .updated_tag:after {
content: "updated";
position: absolute;
font-size: 11px;
top: 0px;
right: -50px;
color: #aaa;
visibility: hidden;
}
.helpie-single-page-module .helpie-primary-view .content-area .updated_tag:hover, .helpie-single-page-module .helpie-primary-view #primary.content-area .updated_tag:hover {
cursor: pointer;
}
.helpie-single-page-module .helpie-primary-view .content-area .updated_tag:hover:after, .helpie-single-page-module .helpie-primary-view #primary.content-area .updated_tag:hover:after {
visibility: visible;
}
.helpie-single-page-module .helpie-primary-view .content-area p, .helpie-single-page-module .helpie-primary-view #primary.content-area p {
color: #6f6f6f;
}
.helpie-single-page-module .helpie-primary-view .content-area p strong, .helpie-single-page-module .helpie-primary-view #primary.content-area p strong {
color: #555;
}
@media screen and (max-width: 1024px) {
.helpie-single-page-module .helpie-primary-view #primary.content-area {
width: 100% !important;
margin: 0;
}
.helpie-single-page-module .helpie-primary-view #primary.content-area.left-sidebar {
margin-left: 0;
}
.helpie-single-page-module .helpie-primary-view #primary.content-area.right-sidebar {
margin-right: 0;
padding-right: 0;
}
.helpie-single-page-module .helpie-primary-view #primary.content-area.both-side-sidebars {
width: 100% !important;
}
.helpie-single-page-module .helpie-primary-view #primary.content-area.full-width {
width: 100% !important;
}
.helpie-single-page-module .helpie-primary-view #primary.content-area h1 {
font-size: 28px;
}
.helpie-single-page-module .helpie-primary-view .content-area, .helpie-single-page-module .helpie-primary-view .content-area.both-side-sidebars {
width: 100% !important;
margin-left: 0 !important;
right: 0 !important;
}
}   .blend-gradient {
background: linear-gradient(90deg, rgb(237, 22, 121), rgb(227, 124, 190));
background: -webkit-linear-gradient(90deg, rgb(237, 22, 121), rgb(227, 124, 190));
}   .blend-gradient {
background: linear-gradient(90deg, rgb(237, 22, 121), rgb(227, 124, 190));
background: -webkit-linear-gradient(90deg, rgb(237, 22, 121), rgb(227, 124, 190));
}
.anchor-reset, .helpie-main-content-area a {
cursor: pointer;
border: 0;
box-shadow: none;
}
.anchor-reset:visited, .helpie-main-content-area a:visited {
border: none;
}
.anchor-reset img, .helpie-main-content-area a img {
outline: none;
border: 0;
}
#helpie-categories-section {
font-family: "Open Sans", sans-serif;
color: #9a9a9a;
font-size: 15px;
-webkit-font-smoothing: antialiased;
float: left;
width: 100%;
margin-top: 35px;
}
#helpie-categories-section .category-sidebar {
width: 27%;
}
#helpie-categories-section .category-sidebar ul.category-list {
width: 100%;
border-right: solid 1px #f1f1f1;
}
#helpie-categories-section .category-sidebar ul.category-list li {
padding: 4px 10px;
}
#helpie-categories-section .category-sidebar ul.category-list li.active {
border-bottom: 0;
}
#helpie-categories-section .category-main-content {
float: left;
margin-left: 7%;
width: 65%;
}
#helpie-categories-section .category-main-content .category-section {
display: none;
}
#helpie-categories-section .category-main-content .category-section:first-child {
display: block;
}
#helpie-categories-section .category-main-content .category-section h2 {
float: left;
color: #343434;
text-transform: uppercase;
font-size: 14px;
font-weight: 500;
margin: 15px 0 5px;
}
#helpie-categories-section .category-main-content ul.child-category-list {
float: left;
display: block;
padding: 0;
width: 100%;
margin-bottom: 10px;
}
#helpie-categories-section .category-main-content ul.child-category-list .added_tag {
position: relative;
padding: 2px 4px;
margin-left: 5px;
color: white;
font-size: 13px;
border-radius: 5px;
background: #2cd2a8;
display: inline-block;
}
#helpie-categories-section .category-main-content ul.child-category-list .added_tag:after {
content: "added";
position: absolute;
font-size: 11px;
top: 0px;
right: -40px;
color: #aaa;
visibility: hidden;
}
#helpie-categories-section .category-main-content ul.child-category-list .added_tag:hover {
cursor: pointer;
}
#helpie-categories-section .category-main-content ul.child-category-list .added_tag:hover:after {
visibility: visible;
}
#helpie-categories-section .category-main-content ul.child-category-list .updated_tag {
position: relative;
padding: 2px 4px;
margin-left: 5px;
color: white;
font-size: 13px;
border-radius: 5px;
background: #00b9eb;
display: inline-block;
}
#helpie-categories-section .category-main-content ul.child-category-list .updated_tag:after {
content: "updated";
position: absolute;
font-size: 11px;
top: 0px;
right: -50px;
color: #aaa;
visibility: hidden;
}
#helpie-categories-section .category-main-content ul.child-category-list .updated_tag:hover {
cursor: pointer;
}
#helpie-categories-section .category-main-content ul.child-category-list .updated_tag:hover:after {
visibility: visible;
}
@media screen and (max-width: 799px) {
#helpie-categories-section {
margin-top: 35px;
}
#helpie-categories-section .category-sidebar {
width: 100%;
}
#helpie-categories-section .category-sidebar ul.category-list {
padding-bottom: 25px;
border-bottom: solid 1px #f1f1f1;
border-right: 0;
}
#helpie-categories-section .category-main-content {
margin-left: 0;
width: 100%;
padding-left: 40px;
padding-top: 40px;
}
}
.helpie-categories-section-boxed {
margin-top: 35px;
}
.helpie-categories-section-boxed * {
box-sizing: border-box;
}
.helpie-categories-section-boxed .helpie-category-listing,
.helpie-categories-section-boxed .category-list {
float: left;
width: 100%;
padding-left: 0;
margin-left: 0;
}
.helpie-categories-section-boxed .category-list .column {
float: left;
min-height: 220px;
margin-bottom: 40px;
padding: 25px;
text-align: center;
list-style: none;
margin-left: 0;
}
.helpie-categories-section-boxed .category-list .column a {
border: solid 1px #eee;
display: block;
text-decoration: none;
font-size: 18px;
font-weight: 500;
padding: 35px 10px 10px;
color: #9a9a9a;
}
.helpie-categories-section-boxed .category-list .column a:hover {
color: #4e4e4e;
}
.helpie-categories-section-boxed .category-list .column a:visited {
border: solid 1px #eee;
}
.helpie-categories-section-boxed .category-list .column a .sicon {
float: none;
margin: 0 auto;
width: auto;
height: auto;
min-height: 70px;
max-height: 70px;
height: 70px;
}
.helpie-categories-section-boxed .category-list .column a .sicon img {
height: 100%;
width: auto;
margin: 0 auto;
}
.helpie-categories-section-boxed .category-list .column a i.fa {
font-size: 38px;
padding-right: 10px;
color: #888;
}
.helpie-categories-section-boxed .category-list .column a .title {
padding-top: 15px;
width: 100%;
text-transform: capitalize;
font-size: 24px;
font-weight: 600;
color: #333;
min-height: 70px;
text-align: center;
}
.helpie-categories-section-boxed .category-list .column a .description {
font-size: 16px;
line-height: 1.3;
color: #888;
min-height: 60px;
width: 100%;
}
.helpie-categories-section-boxed .category-list .column a .description p {
margin-bottom: 0;
}
.helpie-categories-section-boxed .category-list .column a button {
margin-top: 15px;
background: #5DB6F0;
color: white;
border-radius: 4px;
box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
border: none;
padding: 15px;
font-size: 16px;
} @media screen and (max-width: 1024px) {
.helpie-categories-section-boxed .category-list .title {
font-size: 16px;
}
}
@media screen and (max-width: 767px) {
.helpie-categories-section-boxed .category-list .column button {
font-size: 14px;
}
.helpie-categories-section-boxed .helpie-categories-section-boxed .category-list .column button {
font-size: 14px;
}
}
@media screen and (max-width: 599px) { .helpie-categories-section-boxed .four-columned .category-list .title, .helpie-categories-section-boxed .one-columned .category-list .title, .helpie-categories-section-boxed .three-columned .category-list .title, .helpie-categories-section-boxed .two-columned .category-list .title {
font-size: 14px;
}
}
.helpie-categories-section-boxed1 * {
box-sizing: border-box;
}
.helpie-categories-section-boxed1 .category-list {
padding-left: 0;
margin-left: 0;
}
.helpie-categories-section-boxed1 .category-list .helpie-element {
position: relative;
min-height: 250px;
border: solid 1px #f4f4f4;
box-sizing: border-box;
list-style: none;
padding: 25px;
background: white;
}
.helpie-categories-section-boxed1 .category-list .title {
color: #555;
font-size: 20px;
padding-bottom: 15px;
letter-spacing: 2.5px;
text-transform: uppercase;
font-size: 15px;
font-weight: 600;
}
.helpie-categories-section-boxed1 .category-list i.fa {
padding-right: 5px;
color: #888;
}
.helpie-categories-section-boxed1 .category-list .sicon {
float: left;
}
.helpie-categories-section-boxed1 .category-list .sicon img {
width: 35px;
margin-top: -6px;
margin-right: 10px;
}
.helpie-categories-section-boxed1 .category-list a.more {
position: absolute;
bottom: 10px;
width: 100%;
color: #555;
text-decoration: none;
text-align: right;
right: 0;
padding: 0 25px;
box-sizing: border-box;
}
.helpie-categories-section-boxed1 .category-list a.more i {
position: absolute;
top: 7px;
right: 15px;
color: #555;
font-size: 11px;
}
.helpie-categories-section-boxed1 .category-list .article-preview-list li {
width: 100%;
padding: 0;
list-style: none;
}
.helpie-categories-section-boxed1 .category-list .article-preview-list li a {
text-decoration: none;
color: #4e4e4e;
color: #777;
font-size: 13px;
letter-spacing: 0;
}
.helpie-categories-section-boxed1 .category-list .article-preview-list li a i {
padding-left: 25px;
}
.helpie-categories-section-boxed1 .category-list .article-preview-list li a:hover {
color: #555;
text-decoration: underline;
}
.helpie-categories-section-boxed1 .category-list .article-preview-list li .added_tag {
position: relative;
padding: 2px 4px;
margin-left: 5px;
color: white;
font-size: 11px;
border-radius: 5px;
background: #2cd2a8;
display: inline-block;
}
.helpie-categories-section-boxed1 .category-list .article-preview-list li .added_tag:after {
content: "added";
position: absolute;
top: 0;
right: -40px;
color: #aaa;
visibility: hidden;
}
.helpie-categories-section-boxed1 .category-list .article-preview-list li .added_tag:hover {
cursor: pointer;
}
.helpie-categories-section-boxed1 .category-list .article-preview-list li .added_tag:hover:after {
visibility: visible;
}
.helpie-categories-section-boxed1 .category-list .article-preview-list li .updated_tag {
position: relative;
padding: 2px 4px;
margin-left: 5px;
color: white;
font-size: 11px;
border-radius: 5px;
background: #00b9eb;
display: inline-block;
}
.helpie-categories-section-boxed1 .category-list .article-preview-list li .updated_tag:after {
content: "updated";
position: absolute;
top: 0;
right: -50px;
color: #aaa;
visibility: hidden;
}
.helpie-categories-section-boxed1 .category-list .article-preview-list li .updated_tag:hover {
cursor: pointer;
}
.helpie-categories-section-boxed1 .category-list .article-preview-list li .updated_tag:hover:after {
visibility: visible;
} .helpie-categories-section-modern .column .item {
display: flex;
}
.helpie-categories-section-modern .helpie-element {
border: solid 2px #f5f5f5;
padding: 15px;
background: white;
}
.helpie-categories-section-modern .helpie-element ul.article-preview-list {
display: inline-block;
margin-top: 8px;
}
.helpie-categories-section-modern .helpie-element ul.article-preview-list li {
padding: 0 0;
}
.helpie-categories-section-modern * {
box-sizing: border-box;
}
.helpie-categories-section-modern .item {
margin-top: 0;
}
.helpie-categories-section-modern .item .header, .helpie-categories-section-modern .item .meta {
color: #333;
}
.helpie-categories-section-modern .item .header, .helpie-categories-section-modern .item .header h3 {
font-size: 18px;
font-weight: bold;
float: left;
width: 100%;
margin-bottom: 0;
}
.helpie-categories-section-modern .item .content {
min-width: 0;
width: auto;
display: block;
margin-left: 0;
flex: 1 1 auto;
background: 0 0;
margin: 0;
padding: 0;
box-shadow: none;
font-size: 1em;
border: none;
border-radius: 0;
}
.helpie-categories-section-modern .item .image {
position: relative;
overflow: hidden;
display: inline-block;
text-align: center;
width: 60px;
height: 60px;
min-width: 60px;
}
.helpie-categories-section-modern .item .image i {
color: #888;
font-size: 28px;
margin-top: 13px;
}
.helpie-categories-section-modern .item .image img {
border-radius: 500rem;
display: inline;
margin: 0 auto;
height: 100%;
width: auto;
min-width: 100%;
}
@media only screen and (min-width: 991px) {
.helpie-categories-section-modern .item .content {
padding: 0 0 0 3em;
}
}
@media only screen and (max-width: 991px) and (min-width: 768px) {
.helpie-categories-section-modern .item content {
padding: 0 0 0 2em;
}
}
@media only screen and (max-width: 768px) {
.helpie-categories-section-modern .item {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
margin: 2em 0;
}
.helpie-categories-section-modern .item .image, .helpie-categories-section-modern .item .image img {
max-width: 100% !important;
max-height: 250px !important;
}
.helpie-categories-section-modern .item .image {
display: block;
margin-left: auto;
margin-right: auto;
}
}
.helpie-single-page-module .helpie-main-section .helpiekb-box-list {
float: left;
width: 47.5%;
margin-left: 0;
margin-bottom: 0;
padding: 0;
}
.helpie-single-page-module .helpie-main-section .helpiekb-box-list:nth-child(2n+1) {
margin-right: 5%;
}
.helpie-single-page-module .helpie-main-section .helpiekb-box-list li {
position: relative;
width: 100%;
box-sizing: border-box;
padding: 6px 20px;
padding-left: 0;
line-height: 1.4;
}
.helpie-single-page-module .helpie-main-section .helpiekb-box-list li a {
position: relative;
width: 100%;
display: inline-block;
color: #555459;
text-decoration: none;
}
.helpie-single-page-module .helpie-main-section .helpiekb-box-list li a::after {
font-family: "Icons";
content: "\f054";
right: 12px;
top: 16px;
font-size: 12px;
font-style: normal;
font-weight: 300;
color: #178ccc;
padding-left: 5px;
}
.helpie-single-page-module .helpie-main-section .helpiekb-box-list li a:hover {
color: #178ccc;
}
.helpie-single-page-module .helpie-main-section .helpiekb-box-list.child {
margin-left: 0;
}
.helpie-single-page-module .helpie-main-section .helpiekb-box-list.child:first-child {
margin-right: 5%;
}
@media screen and (max-width: 768px) {
.helpie-single-page-module .helpie-main-section .helpiekb-box-list {
width: 100%;
}
.helpie-single-page-module .helpie-main-section .helpiekb-box-list:first-child {
margin-right: 0;
}
.helpie-single-page-module .helpie-main-section .helpiekb-box-list li {
width: 100%;
padding-left: 0;
padding-right: 0;
}
} .helpie-single-page-module .helpie-main-section .helpiekb-box-list.boxed li {
position: relative;
width: 100%;
margin-bottom: 18px;
box-sizing: border-box;
}
.helpie-single-page-module .helpie-main-section .helpiekb-box-list.boxed li a {
position: relative;
background: white;
width: 100%;
display: inline-block;
min-height: 54px;
color: #555459;
text-decoration: none;
border: 1px solid #e3e3e3;
border-radius: 6px;
padding: 16px 40px 16px 20px;
}
.helpie-single-page-module .helpie-main-section .helpiekb-box-list.boxed li a:hover {
color: #178ccc;
border: 1px solid #178ccc;
}
.helpie-single-page-module .helpie-main-section .helpiekb-box-list.one {
width: 100%;
}   .blend-gradient {
background: linear-gradient(90deg, rgb(237, 22, 121), rgb(227, 124, 190));
background: -webkit-linear-gradient(90deg, rgb(237, 22, 121), rgb(227, 124, 190));
}
.ui.pagination.menu {
margin: 50px 0px 60px 0px;
}
.ui.pagination.menu .active.item {
border-top: 1px solid #338EDB;
border: 1px solid #338EDB;
color: #338EDB;
background-color: #ffffff;
}
.ui.pagination.menu .item {
border-radius: 0px !important;
line-height: 1 !important;
padding: 0.92857143em 1.14285714em !important;
margin-right: 10px !important;
border: 1px solid #338EDB;
background-color: #338EDB;
color: #ffffff;
}
.ui.pagination.menu .item:hover {
color: #338EDB;
}
.ui.menu {
border: none;
box-shadow: none;
}
.ui.menu a.item:hover {
background-color: #ffffff;
border: 1px solid #338EDB;
color: #338EDB;
}
@media screen and (max-width: 699px) {
.ui.pagination.menu .item {
min-width: 20px;
}
}   .blend-gradient {
background: linear-gradient(90deg, rgb(237, 22, 121), rgb(227, 124, 190));
background: -webkit-linear-gradient(90deg, rgb(237, 22, 121), rgb(227, 124, 190));
}   .blend-gradient {
background: linear-gradient(90deg, rgb(237, 22, 121), rgb(227, 124, 190));
background: -webkit-linear-gradient(90deg, rgb(237, 22, 121), rgb(227, 124, 190));
}
.anchor-reset, .helpie-main-content-area a {
cursor: pointer;
border: 0;
box-shadow: none;
}
.anchor-reset:visited, .helpie-main-content-area a:visited {
border: none;
}
.anchor-reset img, .helpie-main-content-area a img {
outline: none;
border: 0;
}
.pauple_helpie.ui.modal {
max-width: none;
z-index: 1500;
bottom: auto;
}
.pauple_helpie.ui.modal .header {
font-weight: 500;
}
.pauple_helpie.ui.modal .header .circular {
box-sizing: border-box;
}
.pauple_helpie.ui.modal .actions > .button {
height: auto;
width: auto;
}
.pauple_helpie.ui.modal .item-content {
box-sizing: border-box;
margin-top: 0;
padding: 25px;
}
.pauple_helpie.ui.modal .wrapper {
background: none;
}
.pauple_helpie.ui.modal label {
margin-bottom: 15px;
font-weight: 400;
display: inline-block;
}
.pauple_helpie.ui.modal .password-status {
display: inline-block;
padding-left: 10px;
padding-top: 10px;
text-transform: uppercase;
font-size: 11px;
font-weight: 300;
}
.pauple_helpie.ui.modal .password-status.correct {
color: rgba(41, 162, 91, 0.79);
}
.pauple_helpie.ui.modal .password-status.wrong {
color: #fe6c61;
}
.pauple_helpie.ui.modal .password-status .redirect-gif {
width: 100px;
}
.pauple_helpie.ui.modal input[type=password] {
font-size: 16px;
padding: 10px 14px;
background: #fff;
border: 1px solid #ccc;
border-radius: 3px;
width: 100%;
box-sizing: border-box;
}
.pauple_helpie.ui.modal input[type=password]:focus {
outline-color: #7dc246 !important;
}
.ui.dimmer {
z-index: 100000;
}
.helpie-accordion .item-content {
padding: 5px 10px;
}
.helpie_helpdesk {
position: relative;
float: left;
width: 100%;
margin-top: 40px;
padding: 80px 0;
z-index: 99;
background: #F4F3F3;
}
.helpie_helpdesk .item-content, .helpie_helpdesk .search-form {
text-align: center;
}
.helpie_helpdesk h1 {
font-family: "Raleway", sans-serif;
color: #03363d;
font-size: 58px;
font-weight: 500;
text-align: center;
display: block !important;
line-height: normal !important;
}
.helpie_helpdesk h4 {
color: #03363d;
font-size: 16px;
font-weight: 300;
text-align: center;
margin-bottom: 44px;
margin-top: 0;
padding-top: 0;
}
.helpie_helpdesk form {
position: relative;
}
.helpie_helpdesk .main-search-img {
position: absolute;
left: -100px;
height: 30px;
width: auto;
}
@media screen and (max-width: 1200px) {
.helpie_helpdesk h1 {
font-size: 38px;
}
}
@media screen and (max-width: 768px) {
.helpie_helpdesk h1 {
font-size: 24px;
}
}   .blend-gradient {
background: linear-gradient(90deg, rgb(237, 22, 121), rgb(227, 124, 190));
background: -webkit-linear-gradient(90deg, rgb(237, 22, 121), rgb(227, 124, 190));
}   .blend-gradient {
background: linear-gradient(90deg, rgb(237, 22, 121), rgb(227, 124, 190));
background: -webkit-linear-gradient(90deg, rgb(237, 22, 121), rgb(227, 124, 190));
}
.anchor-reset, .helpie-main-content-area a {
cursor: pointer;
border: 0;
box-shadow: none;
}
.anchor-reset:visited, .helpie-main-content-area a:visited {
border: none;
}
.anchor-reset img, .helpie-main-content-area a img {
outline: none;
border: 0;
}
form.helpie-search-form {
overflow: visible;
}
.helpie-autocomplete-suggestions .item .item-content {
text-align: left;
}
.pauple-helpie-search-box {
position: relative;
display: block;
width: 500px;
max-width: 95%;
float: none;
margin: 20px auto 30px;
}
.pauple-helpie-search-box input[type=text] {
font-family: "Open Sans", sans-serif;
font-weight: 400;
font-size: 12px;
font-weight: 300;
-webkit-box-shadow: 2px 2px 3px 0 rgba(120, 120, 120, 0.1);
-moz-box-shadow: 2px 1px 3px 0 rgba(120, 120, 120, 0.1);
box-shadow: 2px 2px 3px 0 rgba(120, 120, 120, 0.1);
width: 100%;
max-width: 100%;
padding: 10px 20px;
border: solid 1px white;
background: white !important;
height: 62px;
margin-bottom: 0;
float: none;
margin-top: 0;
}
.pauple-helpie-search-box input[type=text]:focus {
background: white;
outline: none;
}
.pauple-helpie-search-box input[type=text]::-webkit-input-placeholder {
font-family: "Open Sans", sans-serif;
font-weight: 400;
font-size: 12px;
font-weight: 300;
color: #cdcdcd;
}
.pauple-helpie-search-box input[type=text]:-moz-placeholder { font-family: "Open Sans", sans-serif;
font-weight: 400;
font-size: 12px;
font-weight: 300;
color: #cdcdcd;
}
.pauple-helpie-search-box input[type=text]::-moz-placeholder { font-family: "Open Sans", sans-serif;
font-weight: 400;
font-size: 12px;
font-weight: 300;
color: #cdcdcd;
}
.pauple-helpie-search-box input[type=text]:-ms-input-placeholder {
font-family: "Open Sans", sans-serif;
font-weight: 400;
font-size: 12px;
font-weight: 300;
color: #cdcdcd;
}
.pauple-helpie-search-box button[type=submit].input-group-addon {
position: absolute !important;
top: calc((100% - 28px) / 2);
right: 10px;
color: #b4b4b4;
color: #b4b4b4;
border: 0; background: none !important;
width: auto;
height: auto;
padding: 0px !important;
}
.pauple-helpie-search-box button[type=submit].input-group-addon i.fa {
font-size: 26px;
}
.pauple-helpie-search-box button[type=submit].input-group-addon:hover {
cursor: pointer;
}
.pauple-helpie-search-box button[type=submit].input-group-addon:hover i.fa {
color: #666;
}
.helpie-autocomplete-suggestions-container {
position: relative;
z-index: 9999;
}
.helpie-autocomplete-suggestions {
-webkit-box-shadow: 2px 2px 3px 0 rgba(120, 120, 120, 0.1);
-moz-box-shadow: 2px 1px 3px 0 rgba(120, 120, 120, 0.1);
box-shadow: 2px 2px 3px 0 rgba(120, 120, 120, 0.1);
font-family: "Open Sans", sans-serif;
color: #333333;
font-size: 1rem;
font-weight: 400;
border: solid 1px #f4f4f4;
}
.helpie-autocomplete-suggestions .item {
display: flex;
align-items: center;
padding: 1rem !important;
margin: 0px !important;
background: #ffffff !important;
color: #777;
letter-spacing: 0;
overflow-x: hidden;
}
.helpie-autocomplete-suggestions .item strong {
color: #4e4e4e;
font-weight: 600;
}
.helpie-autocomplete-suggestions .item:hover {
cursor: pointer;
background: #f4f4f4 !important;
}
.helpie-autocomplete-suggestions .item .ui.mini.image {
margin-right: 10px;
align-self: baseline;
}
.helpie-autocomplete-suggestions .item .ui.items.item {
background: #c5c5c5;
padding: 1rem;
}
.helpie-autocomplete-suggestions .item .item-content {
text-align: left;
padding-top: 0px;
}
.helpie-autocomplete-suggestions .item.item-content.description p {
margin: 0px !important;
}
.autocomplete-no-suggestion {
font-size: 16px;
}
.helpie_helpdesk .main-search {
box-sizing: border-box;
display: inline-block;
}
.helpie_helpdesk h1 {
display: block;
}
.helpie-search-listing h2 {
margin: 45px;
font-weight: bold;
}
.helpie-search-listing .helpie-element .item-content {
padding-top: 0 !important;
padding-left: 1.5em !important;
}
.helpie-search-listing .helpie-element .item-content .ui.blue.label,
.helpie-search-listing .helpie-element .item-content .ui.basic.label {
border-radius: 20px;
}
.helpie-search-listing .helpie-element .item-content .description p {
margin-bottom: 0;
}
.helpie-search-listing .helpie-element .item-content .header {
font-size: 18px;
font-weight: 500;
color: #333333;
}
.helpie-search-listing .item-content .header,
.helpie-autocomplete-suggestions .item-content .header {
font-weight: 500;
color: #333333;
}
.helpie-search-listing .item-content .header .item-title,
.helpie-autocomplete-suggestions .item-content .header .item-title {
text-transform: capitalize;
}
.helpie-search-listing .item-content .header .item-title a,
.helpie-autocomplete-suggestions .item-content .header .item-title a {
text-decoration-color: inherit;
}
.helpie-search-listing .item-content .header .item-title strong,
.helpie-autocomplete-suggestions .item-content .header .item-title strong {
font-weight: 600;
}
.helpie-search-listing .item-content .header .item-title:hover,
.helpie-autocomplete-suggestions .item-content .header .item-title:hover {
text-decoration: underline;
}
.helpie-search-listing .item-content .header span.item-in,
.helpie-autocomplete-suggestions .item-content .header span.item-in {
padding: 0 4px;
}
.helpie-search-listing .item-content .header span.item-cat_name,
.helpie-autocomplete-suggestions .item-content .header span.item-cat_name {
color: #0274be;
text-transform: capitalize;
}
.helpie-search-listing .item-content .header span.item-cat_name strong,
.helpie-autocomplete-suggestions .item-content .header span.item-cat_name strong {
color: #0274be;
font-weight: 600;
}
@media screen and (max-width: 799px) {
.ui.unstackable.items .item .image,
.ui.unstackable.items .item .image img {
width: 35px !important;
}
.helpie_helpdesk .main-search {
width: 100%;
padding: 0 20px;
}
.helpie_helpdesk .main-search button[type=submit].input-group-addon {
right: 30px;
}
.helpie-search-listing h2 {
font-size: 28px;
}
.helpie-search-listing .ui.middle.aligned.tiny.image {
margin-bottom: 10px;
}
}   .blend-gradient {
background: linear-gradient(90deg, rgb(237, 22, 121), rgb(227, 124, 190));
background: -webkit-linear-gradient(90deg, rgb(237, 22, 121), rgb(227, 124, 190));
}   .blend-gradient {
background: linear-gradient(90deg, rgb(237, 22, 121), rgb(227, 124, 190));
background: -webkit-linear-gradient(90deg, rgb(237, 22, 121), rgb(227, 124, 190));
}
.anchor-reset, .helpie-main-content-area a {
cursor: pointer;
border: 0;
box-shadow: none;
}
.anchor-reset:visited, .helpie-main-content-area a:visited {
border: none;
}
.anchor-reset img, .helpie-main-content-area a img {
outline: none;
border: 0;
}
.helpie-primary-view .helpie-main-section .helpie-articles-listing {
margin-bottom: 40px;
}
.helpie-primary-view .helpie-main-section .helpie-articles-listing h3.collection-title {
display: block;
margin-bottom: 20px;
text-align: center;
font-size: 21px;
font-weight: bold;
}
.item.helpie-element .item-content {
padding: 10px;
}
.card.helpie-element .item-content {
flex-grow: 1;
border: none;
border-top: 1px solid rgba(34, 36, 38, 0.1);
background: 0 0;
margin: 0;
padding: 1em 1em;
box-shadow: none;
font-size: 1em;
border-radius: 0;
}
.card.helpie-element .item-content > a.header {
color: rgba(0, 0, 0, 0.85);
}
.card.helpie-element .item-content > .header:not(.ui) {
font-weight: 700;
font-size: 1.28571429em;
margin-top: -0.21425em;
line-height: 1.28571429em;
}
.helpie-articles-listing .content {
font-weight: 500;
color: #9a9a9a;
}
.helpie-articles-listing .content a {
color: #9a9a9a;
}
.helpie-articles-listing.card-collection {
margin-top: 80px;
clear: both;
}
.helpie-articles-listing.card-collection h2 {
color: black;
font-size: 21px;
display: inline-block;
font-weight: 500;
padding-bottom: 10px;
margin: 20px 0;
width: 100%;
text-align: left;
}
.helpie-articles-listing.card-collection hr {
margin-top: -1px;
margin-bottom: 80px;
}
.helpie-articles-listing.list-collection {
margin-bottom: 40px;
}
.helpie-articles-listing.list-collection .item a.header {
font-weight: normal;
font-family: inherit;
}  .helpie-articles-listing.card-collection .card {
box-shadow: 0 1px 1px 0 #eee, 0 0 0 1px #eee;
}
.helpie-articles-listing.card-collection .card .image {
max-height: 200px;
overflow: hidden;
}
.helpie-articles-listing.card-collection .card .content {
min-height: 120px;
}
.helpie-element .card .content {
min-height: 120px !important;
}
.helpie-element .list .content {
min-height: auto !important;
}
.helpie-articles-listing .column {
margin: 0;
margin-left: 0;
} .helpie-category-listing .title {
height: auto;
}
.helpie-element ul.article-preview-list {
padding: 0;
margin: 0;
}
.helpie-category-listing .column {
margin: 0;
margin-left: 0;
} .helpie-category-listing .collection-title {
margin-top: 15px;
text-align: center;
}
.helpie-category-listing .description {
padding: 20px 0;
display: inline-block;
}
@media screen and (max-width: 699px) {
.helpie-category-listing .category-list {
width: 100% !important;
}
}
.pauple-helpie-module.article-voting { -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px;
float: left;
padding: 30px;
border: solid 1px #ebebeb;
clear: both;
}
.pauple-helpie-module.article-voting.light .icon-tray .voting-icon:hover {
cursor: default;
}
.pauple-helpie-module.article-voting .icon-tray, .pauple-helpie-module.article-voting .label {
float: left;
display: inline-block;
}
.pauple-helpie-module.article-voting .label {
padding-top: 4px;
}
.pauple-helpie-module.article-voting count {
position: absolute;
bottom: -30px;
left: 40%;
font-size: 11px;
color: #9a9a9a;
}
.pauple-helpie-module.article-voting .icon-tray {
margin-left: 50px;
width: 140px;
}
.pauple-helpie-module.article-voting .icon-tray .voting-icon { -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px;
position: relative;
padding: 5px;
height: 30px;
width: 30px;
display: inline-block;
text-align: center;
line-height: 30px;
margin-right: 5px;
box-sizing: border-box;
}
.pauple-helpie-module.article-voting .icon-tray .voting-icon:hover {
cursor: pointer;
}
.pauple-helpie-module.article-voting .icon-tray .voting-icon.frown:before {
content: "frown";
position: absolute;
top: -30px;
left: 0;
color: #9a9a9a;
font-size: 11px;
display: none;
}
.pauple-helpie-module.article-voting .icon-tray .voting-icon.frown:hover:before {
display: inline-block;
}
.pauple-helpie-module.article-voting .icon-tray .voting-icon.frown i.icon {
color: #F87C7C;
}
.pauple-helpie-module.article-voting .icon-tray .voting-icon.meh:before {
content: "meh!";
position: absolute;
top: -30px;
left: 0;
color: #9a9a9a;
font-size: 11px;
display: none;
}
.pauple-helpie-module.article-voting .icon-tray .voting-icon.meh:hover:before {
display: inline-block;
}
.pauple-helpie-module.article-voting .icon-tray .voting-icon.meh i.icon {
color: #FFB258;
}
.pauple-helpie-module.article-voting .icon-tray .voting-icon.smile:before {
content: "smile";
position: absolute;
top: -30px;
left: 0;
color: #9a9a9a;
font-size: 11px;
display: none;
}
.pauple-helpie-module.article-voting .icon-tray .voting-icon.smile:hover:before {
display: inline-block;
}
.pauple-helpie-module.article-voting .icon-tray .voting-icon.smile i.icon {
color: #44D084;
}
.pauple-helpie-module.article-voting .icon-tray .voting-icon.heart:before {
content: "love";
position: absolute;
top: -30px;
left: 0;
color: #9a9a9a;
font-size: 11px;
display: none;
}
.pauple-helpie-module.article-voting .icon-tray .voting-icon.heart:hover:before {
display: inline-block;
}
.pauple-helpie-module.article-voting .icon-tray .voting-icon.heart i.icon {
color: #FF5F90;
}
.pauple-helpie-module.article-voting .icon-tray .voting-icon.selected {
color: black;
}
.pauple-helpie-module.article-voting .icon-tray .voting-icon.selected i.icon {
color: black;
}
.pauple-helpie-module.article-voting .icon-tray .voting-icon i {
color: white;
font-size: 24px;
height: 20px;
line-height: 20px;
float: left;
width: 20px;
text-align: center;
}
@media screen and (max-width: 1024px) {
.pauple-helpie-module.article-voting .label {
width: 100%;
text-align: center;
}
.pauple-helpie-module.article-voting .icon-tray {
margin: 0 auto;
margin-top: 35px;
width: 100%;
text-align: center;
}
}
.pauple-helpie-module.article-voting .voting-icon.thumbs.up.outline i, .pauple-helpie-module.article-voting .voting-icon.thumbs.up.outline count {
color: #157dec;
}
.pauple-helpie-module.article-voting .voting-icon.thumbs.down.outline i, .pauple-helpie-module.article-voting .voting-icon.thumbs.down.outline count {
color: #e64e4e;
}
.helpie-frontend-stats-section {
margin-top: 60px;
}
.helpie-frontend-stats-section .collection-title {
display: block;
width: 100%;
text-align: center;
}
.helpie-frontend-stats-section .stats-wrapper {
width: 100%;
margin: 0 auto;
float: none;
}
.helpie-frontend-stats-section .single-stat {
position: relative;
padding: 25px 15px 25px 0px;
border: solid 1px #e1e1e1;
border-radius: 10px;
height: 130px;
padding: 0;
box-sizing: border-box;
white-space: nowrap;
}
.helpie-frontend-stats-section .single-stat:before {
content: "";
display: inline-block;
height: 100%;
vertical-align: middle;
margin-right: -0.25em; }
.helpie-frontend-stats-section .single-stat .stat-col {
position: relative;
width: 50%;
text-align: center;
display: inline-block;
vertical-align: middle;
}
.helpie-frontend-stats-section .single-stat .stat-col span {
position: relative;
display: inline-block;
float: left;
width: 100%;
font-size: 16px;
color: #BABABA;
}
.helpie-frontend-stats-section .single-stat .stat-col span.count {
font-size: 38px;
color: #3E3E3E;
font-weight: 600;
line-height: 1.2;
box-shadow: none;
background: #fff;
margin: 0px;
padding: 0px;
}
.helpie-frontend-stats-section .single-stat .stat-col i {
font-size: 58px;
color: #95989A;
height: auto;
}
@media screen and (max-width: 1024px) {
.helpie-frontend-stats-section {
padding: 0 20px;
}
.helpie-frontend-stats-section .single-stat {
min-width: 150px;
}
.helpie-frontend-stats-section .single-stat .stat-col {
width: 60%;
}
.helpie-frontend-stats-section .single-stat .stat-col:first-child {
width: 40%;
}
.helpie-frontend-stats-section .single-stat .stat-col span {
font-size: 14px;
}
.helpie-frontend-stats-section .single-stat .stat-col span.count {
font-size: 34px;
}
.helpie-frontend-stats-section .single-stat .stat-col i {
font-size: 32px;
color: #95989A;
}
}
@media screen and (max-width: 599px) {
.helpie-frontend-stats-section .single-stat {
width: 100%;
margin-bottom: 20px;
}
.helpie-frontend-stats-section .single-stat .stat-col.count {
font-size: 28px;
}
.helpie-frontend-stats-section .single-stat .stat-col i {
font-size: 38px;
color: #95989A;
}
}
.helpie-single-page-module .helpie-frontened-module button.helpie-buttons {
background: #2d95f1;
padding: 5px 10px;
font-size: 14px;
margin-right: 5px;
margin-top: 10px;
margin-bottom: 10px;
color: white;
}
.helpie-single-page-module .helpie-frontened-module button.helpie-buttons.cancel {
background: #333;
}
.helpie-editor-fields {
float: right;
width: 300px;
text-align: right;
}
.helpie-editor-fields .add-new-article {
background: transparent;
border: 0;
color: #19cc95;
padding: 12px;
border-radius: 3px;
border: solid 2px #19cc95;
font-size: 14px;
margin-bottom: 20px;
}
.helpie-editor-fields .add-new-article:hover {
background: #19cc95;
color: white;
cursor: pointer;
}
.helpie-editor-fields .add-new-article i {
padding-right: 5px;
}
.helpie-editor-fields .option-icon {
position: relative;
border: solid 1px #484848;
width: 30px;
height: 30px;
border-radius: 30px;
display: inline-block;
padding: 4px 8px;
}
.helpie-editor-fields .option-icon:before {
font-family: FontAwesome;
font-weight: normal;
font-style: normal;
display: inline-block;
text-decoration: inherit;
content: "\f141";
}
.helpie-editor-fields .option-icon .single-ticket-options {
position: absolute;
top: 0;
left: -150px;
box-shadow: 0 2px 4px #e8e8e8;
border: solid 1px #e8e8e8;
border-radius: 5px;
background: white;
text-align: left;
font-size: 13px;
z-index: 100;
}
.helpie-editor-fields .option-icon .single-ticket-options ul {
list-style-type: none;
padding: 15px;
margin-bottom: 0;
}
.helpie-editor-fields .option-icon .single-ticket-options ul li {
padding: 12px 8px;
width: 100px;
border-bottom: solid 1px #e8e8e8;
}
.helpie-editor-fields .option-icon .single-ticket-options ul li:last-child {
border: none;
}
.helpie-editor-fields .option-icon .single-ticket-options ul li a {
text-decoration: none;
border-bottom: none;
}
.helpie-editor-fields .option-icon .single-ticket-options ul li a:hover {
cursor: pointer;
}
.pauple_helpie.add-article .header,
.pauple_helpie.delete-article .header {
font-size: 1em !important;
text-align: center;
color: #777;
font-weight: 300 !important;
background: #f9fafb;
border-bottom: 0;
}
.pauple_helpie.add-article .header i,
.pauple_helpie.delete-article .header i {
padding-right: 5px;
font-size: 29px;
color: #2d95f1;
}
.pauple_helpie.add-article .actions,
.pauple_helpie.delete-article .actions {
border: 0;
border-top: solid 1px #eee;
background: white;
font-size: 13px;
}
.pauple_helpie.add-article .actions .buttons,
.pauple_helpie.delete-article .actions .buttons {
margin-left: 0.75em;
font-weight: 500;
font-size: 14px;
margin-top: 0.25em;
}
.pauple_helpie.add-article .actions .helpie-notice,
.pauple_helpie.delete-article .actions .helpie-notice {
padding-right: 50px;
}
.pauple_helpie.add-article .actions .helpie-notice .loading,
.pauple_helpie.delete-article .actions .helpie-notice .loading {
display: inline-block;
position: relative;
padding-left: 10px;
width: 100px;
}
.pauple_helpie.add-article .actions .helpie-notice .loading img,
.pauple_helpie.delete-article .actions .helpie-notice .loading img {
display: inline-block;
position: absolute;
left: 10px;
top: -9px;
}
.pauple_helpie.add-article .content .wrapper,
.pauple_helpie.delete-article .content .wrapper {
float: none;
margin: 0 auto;
max-width: 700px;
width: 100%;
padding: 0 3rem;
background-color: #ffffff;
}
.pauple_helpie.add-article .helpie-wp-editor-container, .pauple_helpie.add-article .article-categories-field,
.pauple_helpie.delete-article .helpie-wp-editor-container,
.pauple_helpie.delete-article .article-categories-field {
margin-top: 40px;
}
.pauple_helpie.add-article input[type=text],
.pauple_helpie.delete-article input[type=text] {
border: none;
background: none;
background-color: white !important;
border-bottom: solid 1px #ccc;
padding: 0;
padding-bottom: 2px;
padding-left: 4px;
text-transform: capitalize;
}
.pauple_helpie.add-article input:-webkit-autofill,
.pauple_helpie.delete-article input:-webkit-autofill {
-webkit-box-shadow: 0 0 0 1000px white inset !important;
}
.pauple_helpie.add-article #add-article-title,
.pauple_helpie.delete-article #add-article-title {
font-size: 1.875rem;
font-weight: 300;
color: #343434 !important;
font-family: "Open Sans", sans-serif;
line-height: 1;
text-transform: none;
padding-bottom: 10px;
height: 40px;
}
.pauple_helpie.add-article #add-article-title::placeholder, .pauple_helpie.add-article #add-article-title::-webkit-input-placeholder,
.pauple_helpie.delete-article #add-article-title::placeholder,
.pauple_helpie.delete-article #add-article-title::-webkit-input-placeholder {
color: #bbb !important;
}
.pauple_helpie.add-article #wp-add-article-editor-wrap,
.pauple_helpie.delete-article #wp-add-article-editor-wrap {
border-top: none;
box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
}
.pauple_helpie.add-article #insert-media-button,
.pauple_helpie.delete-article #insert-media-button {
position: absolute;
right: 12px;
border: none;
box-shadow: none;
border: solid 1px #ddd;
top: 14px;
}
.pauple_helpie.add-article .helpie-wp-editor-container .tmce-active .mce-tinymce .mce-toolbar-grp,
.pauple_helpie.delete-article .helpie-wp-editor-container .tmce-active .mce-tinymce .mce-toolbar-grp {
background: #f7f7f8;
border-bottom: none;
padding: 10px 0;
}
.pauple_helpie.add-article .article-categories-field .single-field,
.pauple_helpie.add-article .article-tags-field .single-field,
.pauple_helpie.delete-article .article-categories-field .single-field,
.pauple_helpie.delete-article .article-tags-field .single-field {
width: 350px;
}
.pauple_helpie.add-article .article-categories-field .dropdown,
.pauple_helpie.delete-article .article-categories-field .dropdown {
font-size: 14px;
}
.pauple_helpie.add-article .article-categories-field .dropdown .item,
.pauple_helpie.delete-article .article-categories-field .dropdown .item {
font-size: 14px;
}
.pauple_helpie.add-article .article-tags-field input[type=text],
.pauple_helpie.delete-article .article-tags-field input[type=text] {
font-size: 14px;
}
.pauple_helpie.add-article .article-tags-field input[type=text]::placeholder, .pauple_helpie.add-article .article-tags-field input[type=text]::-webkit-input-placeholder,
.pauple_helpie.delete-article .article-tags-field input[type=text]::placeholder,
.pauple_helpie.delete-article .article-tags-field input[type=text]::-webkit-input-placeholder {
color: #bbb !important;
}
.pauple_helpie.add-article .article-tags-field .single-field, .pauple_helpie.add-article .article-tags-field .tags-container,
.pauple_helpie.delete-article .article-tags-field .single-field,
.pauple_helpie.delete-article .article-tags-field .tags-container {
float: left;
}
.pauple_helpie.add-article .article-tags-field .tags-container,
.pauple_helpie.delete-article .article-tags-field .tags-container {
margin-top: 20px;
margin-left: 20px;
font-size: 13px;
}
.pauple_helpie.add-article .article-tags-field .tags-container span.single-tag-cont .label,
.pauple_helpie.delete-article .article-tags-field .tags-container span.single-tag-cont .label {
color: white;
border-radius: 5px;
background: #2d95f1;
padding: 4px;
margin-left: 5px;
}
.pauple_helpie.add-article .article-tags-field .tags-container span.single-tag-cont .label:hover,
.pauple_helpie.delete-article .article-tags-field .tags-container span.single-tag-cont .label:hover {
background: red;
cursor: pointer;
}
.pauple_helpie.add-article .article-tags-field:after,
.pauple_helpie.delete-article .article-tags-field:after {
clear: both;
}
.pauple_helpie.delete-article .header i {
color: #dd282b;
}
.pauple_helpie.delete-article .actions .positive {
background: #dd282b;
}
@media screen and (max-width: 699px) {
.pauple_helpie.add-article .actions .helpie-notice {
width: 100%;
max-width: 100%;
display: inline-block;
text-align: center;
padding: 20px 0;
}
}
#wp-content-tinymce-editor-container.wp-editor-container {
border: 2px solid #e5e5e5;
}  .helpie-article-editor .mce-object-iframe {
display: block;
}
body.helpie-editor-page header, body.helpie-editor-page footer, body.helpie-editor-page #footer {
display: none;
}
body.helpie-editor-page .content {
margin-top: 0;
}
body.helpie-editor-page .td-container-wrap {
display: none;
}
.helpie-edit-page-container {
width: 100%;
padding: 0 100px;
max-width: 100%;
margin-top: 100px;
}
.helpie-edit-page-container,
.helpie-edit-page-container * {
box-sizing: border-box;
}
.helpie-article-editor {
position: relative;
width: 980px;
max-width: 100%;
margin: 0 auto;
}
.helpie-article-editor .ui.right.dividing.rail {
width: 250px;
}
.helpie-article-editor .editor-content {
border: none;
margin-top: auto;
}
.helpie-article-editor .content-area {
position: relative;
width: calc(100% - 250px) !important;
float: left !important;
padding: 0 20px;
}
.helpie-edit-page-container .helpie-sidebar {
position: relative;
min-width: 250px;
width: 250px;
float: right;
margin-left: 0;
}
.controls-section .icon {
height: auto;
width: auto;
}
.mce-tinymce-inline.mce-panel {
background: #333 !important;
border-radius: 5px;
padding: 5px;
}
.mce-tinymce-inline.mce-panel.mce-arrow.mce-arrow-up:before, .mce-tinymce-inline.mce-panel.mce-arrow.mce-arrow-up:after {
border-bottom-color: #333 !important;
}
.mce-tinymce-inline.mce-panel.mce-arrow.mce-arrow-down:before, .mce-tinymce-inline.mce-panel.mce-arrow.mce-arrow-down:after {
border-top-color: #333 !important;
}
.mce-tinymce-inline.mce-panel .mce-btn-group .mce-btn {
background: none !important;
border: none !important;
}
.mce-tinymce-inline.mce-panel .mce-btn-group .mce-btn:hover {
border: none !important;
color: #888 !important;
}
.mce-tinymce-inline.mce-panel .mce-btn button {
background: #333 !important;
border: none;
}
.mce-tinymce-inline.mce-panel .mce-ico, .mce-tinymce-inline.mce-panel .mce-btn .mce-txt {
color: white !important;
}
.helpie-article-editor .content-area .title:focus, .helpie-article-editor .content-area .editor-content:focus {
outline: none;
}
.revision-diff-area {
display: none;
}
.helpie-article-editor.diff-mode .basic-content-area {
display: none;
}
.helpie-article-editor.diff-mode .revision-diff-area {
display: block;
}
.helpie-article-editor.diff-mode .revision-diff-area h3 {
margin: 20px 0;
}
.helpie-article-editor.diff-mode .revision-diff-area table {
table-layout: fixed;
width: 100%;
}
.helpie-article-editor.diff-mode .revision-diff-area table td {
width: 50%;
border: solid 1px #ccc;
}
.helpie-article-editor.diff-mode .revision-diff-area table tr td:nth-child(2) {
display: none;
}
.helpie-article-editor.diff-mode .revision-diff-area .content-area {
width: 48%;
float: left;
position: relative;
display: block;
}
.helpie-edit-page-container button.mobile-controls {
display: none;
}
@media screen and (max-width: 1024px) {
.helpie-edit-page-container {
width: 100%;
padding: 0 40px;
margin-top: 40px;
}
.helpie-edit-page-container button.mobile-controls {
display: inherit;
float: right;
}
.helpie-edit-page-container .helpie-article-editor .helpie-sidebar {
display: block !important;
padding: 0;
}
.helpie-article-editor {
width: 100%;
}
.helpie-article-editor .content-area {
width: 100% !important;
}
.helpie-article-editor .positive.buttons {
float: right;
margin-right: 20px;
}
.helpie-article-editor .controls-section {
position: relative;
width: 100%;
float: left;
left: auto;
right: 0;
z-index: 100;
border: none;
}
.helpie-article-editor .controls-section .sticky {
position: relative;
margin-top: 45px;
display: none;
}
.helpie-article-editor .article-publish.buttons {
position: relative;
width: auto;
}
} .helpie-article-editor #title-tinymce {
position: relative;
margin-bottom: 25px;
--x-height-multiplier: 0.342;
--baseline-multiplier: 0.22;
font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Arial, sans-serif;
letter-spacing: -0.02em;
font-weight: 700;
font-style: normal;
letter-spacing: 0;
font-size: 28px;
line-height: 1.04;
letter-spacing: -0.015em;
padding: 15px !important;
height: auto;
border: 1px solid #d8d8d8;
border-radius: 5px;
}
.helpie-article-editor #title-tinymce:empty:before {
position: relative;
}
.helpie-article-editor #title-tinymce:focus:before {
display: none;
}
.helpie-article-editor #title-tinymce:hover {
cursor: text;
}
.helpie-article-editor #title-tinymce:before {
background: none;
display: block;
height: auto;
margin: auto;
width: auto;
}
.helpie-article-editor #content-tinymce {
--x-height-multiplier: 0.375;
--baseline-multiplier: 0.17;
font-family: Georgia, Cambria, "Times New Roman", Times, serif;
letter-spacing: 0.01rem;
font-weight: 400;
font-style: normal;
font-size: 20px;
line-height: 1.58;
letter-spacing: -0.003em;
min-height: 400px;
padding: 15px !important;
border: 1px solid #d8d8d8;
border-radius: 5px;
}
.helpie-article-editor #content-tinymce p {
margin-bottom: 25px;
}
.helpie-article-editor #content-tinymce:empty:before {
position: relative;
}
.helpie-article-editor #content-tinymce:focus:before {
display: none;
}
.helpie-article-editor #content-tinymce:hover {
cursor: text;
}
@media screen and (max-width: 1024px) {
.helpie-article-editor #title-tinymce {
font-size: 24px;
}
.helpie-article-editor #content-tinymce {
font-size: 18px;
}
}
.ui.medium.image.helpie_kb_featured_image {
margin-top: 14px;
}
.helpie-accordion .item-content {
display: none;
}
.helpie-accordion .item-content.active {
display: block;
}
.helpie-article-editor .controls-section .add-category {
width: 100%;
}
.helpie-article-editor .controls-section .add-category input {
width: 100%;
flex: 0 1 auto;
padding: 12px 7px;
font-size: 13px;
}
.helpie-article-editor .controls-section .add-category button {
background: #dbd9db;
}
.helpie-article-editor .controls-section .add-category button:hover {
cursor: pointer;
}
.helpie-article-editor .controls-section .add-category + .add-field-note {
padding-bottom: 0;
}
.helpie-article-editor .controls-section .ui.accordion.menu .item .title {
border: none;
}
.helpie-article-editor .controls-section .ui.menu .ui.dropdown .menu > .item {
font-size: 0.8em !important;
}
.helpie-article-editor .controls-section .content {
border: none;
}
.helpie-article-editor .controls-section .add-field-note {
text-align: right;
color: #aaa;
font-size: 12px;
width: 100%;
display: inline-block;
padding-top: 5px;
padding-bottom: 20px;
}
.helpie-article-editor .controls-section .add-category-label .label {
margin-top: 3px;
background: white;
cursor: pointer;
}
.article-publish.ui.buttons {
width: 100%;
margin-bottom: 20px;
}
.article-publish.ui.buttons > .positive {
width: calc(100% - 40px);
}
.article-publish.ui.buttons .item.edit-article {
display: none;
}
.article-publish.ui.buttons .icon {
height: auto;
top: 0;
}
.menu .revisions.item .menu .item:hover {
border: none;
color: #888;
}
.menu .revisions.item .menu .item.active {
background-color: transparent;
font-weight: 700;
color: rgba(0, 0, 0, 0.95);
}
.menu .revisions.item .menu .item.published {
color: #6fe689;
}
.menu .revisions.item .menu .item.published i {
color: #6fe689;
}
.helpie-article-editor .controls-section .article-terms-field {
width: 100%;
}
.helpie-article-editor .controls-section .article-terms-field input {
width: 100%;
flex: 0 1 auto;
padding: 12px 7px;
font-size: 13px;
}
.helpie-article-editor .controls-section .article-terms-field .single-field {
margin-bottom: 5px;
width: 100%;
}
.helpie-article-editor .controls-section .article-terms-field .single-term-cont {
display: inline-block;
height: 30px;
margin-bottom: 5px;
}
.helpie-article-editor .controls-section .article-terms-field .single-term-cont .label {
background: #157dec;
color: white;
padding: 5px;
border-radius: 4px;
font-size: 12px;
margin-right: 5px;
}
.helpie-article-editor .controls-section .article-terms-field .single-term-cont .label:hover {
background: #ec151a;
cursor: pointer;
}  .helpie-edit-page-container .controls-section .helpie-accordion {
background: #333;
}
.helpie-edit-page-container .controls-section .helpie-accordion > .item {
border-bottom: solid 1px white;
}
.helpie-edit-page-container .controls-section .helpie-accordion > .item .item-title {
color: white;
display: inline-block;
}
.helpie-edit-page-container .controls-section .helpie-accordion .item.revisions .item-content a {
color: #eee;
}
.helpie-edit-page-container .controls-section .helpie-accordion .item.revisions .item-content a.active {
color: white;
font-weight: bold;
}
.helpie-edit-page-container .controls-section .helpie-accordion .item.revisions .item-content a.published {
color: #6fe689;
}
.helpie-edit-page-container .controls-section .helpie-accordion .single-term-cont .label {
background: #777;
padding: 5px 10px;
border-radius: 12px;
min-width: 25px;
text-align: center;
}
#helpie-scroll-style-3::-webkit-scrollbar-track, .pauple-helpie-single-sidebar.fixed-sidebar .helpie-sidebar-fixer::-webkit-scrollbar-track {
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
background-color: #f9f9f9;
}
#helpie-scroll-style-3::-webkit-scrollbar, .pauple-helpie-single-sidebar.fixed-sidebar .helpie-sidebar-fixer::-webkit-scrollbar {
width: 3px;
background-color: #f9f9f9;
}
#helpie-scroll-style-3::-webkit-scrollbar-thumb, .pauple-helpie-single-sidebar.fixed-sidebar .helpie-sidebar-fixer::-webkit-scrollbar-thumb {
background-color: #888;
}
.pauple-helpie-single-sidebar {
font-family: "Open Sans", sans-serif;
color: #9a9a9a;
font-size: 15px;
-webkit-font-smoothing: antialiased;
position: relative;
float: left;
margin-left: 0;
width: 23%;
min-height: 200px;
padding: 0;
margin-top: 0;
font-size: 14px;
background: white; }
.pauple-helpie-single-sidebar .sidebar {
margin: 0;
width: 100%;
}
.pauple-helpie-single-sidebar .page-scroll-nav, .pauple-helpie-single-sidebar .recent-articles {
float: left;
width: 100%;
margin-bottom: 20px;
}
.pauple-helpie-single-sidebar h3 {
color: #343434;
font-size: 16px;
padding: 0;
margin-bottom: 5px;
font-weight: bold;
}
.pauple-helpie-single-sidebar .helpie-sidebar-fixer {
width: 100%;
height: calc(100% - 150px);
overflow: hidden;
}
.pauple-helpie-single-sidebar .helpie-sidebar-fixer:hover {
overflow-y: auto;
}
.mobile-toc-button {
display: none;
}
@media screen and (max-width: 1024px) {
.mobile-toc-button {
position: relative;
display: table-caption;
padding: 12px;
border: solid 1px #f4f4f4;
box-shadow: 0 1px 2px #E8E8E8;
margin-top: 15px;
background: white;
clear: both; margin-bottom: 20px;
}
.mobile-toc-button:hover {
cursor: pointer;
}
.mobile-toc-button .icon {
color: #333;
}
.pauple-helpie-single-sidebar {
width: 100%;
display: none;
min-height: 30px;
max-height: 250px;
overflow: scroll;
border: solid 1px #f4f4f4;
box-shadow: 0 1px 2px #E8E8E8;
margin-top: -12px;
padding: 1em;
overflow-x: hidden;
}
.pauple-helpie-single-sidebar .helpie-sidebar-fixer {
overflow: visible;
height: 250px;
border: none;
}
.pauple-helpie-single-sidebar .helpie-sidebar-fixer:hover {
overflow: visible;
}
.pauple-helpie-single-sidebar .helpie-sidebar-fixer h3 {
text-align: center;
}
}
.pauple-helpie-single-sidebar .title {
display: inline;
}
.helpie-toc {
border: 1px solid #f1f1f1;
background: #fff;
margin-top: 2px;
}
.helpie-toc a {
text-decoration: none;
}
.helpie-toc a:hover {
text-decoration: none;
}
.helpie-toc .collection-title {
background: #f5f5f5;
}
.helpie-toc .ui.selection.list.item-content.active {
padding: 0;
margin: 0;
}
.helpie-toc .helpieBullet {
font-size: 0.9em;
}
.helpie-toc .helpie-element {
margin: 0;
}
.helpie-toc .helpie-element .item-title {
padding: 4px 0;
line-height: 1.4;
cursor: pointer;
}
.helpie-toc .helpie-element .item-title i {
float: right;
}
.helpie-toc .helpie-element .item-title a {
color: #555;
font-size: 1em;
}
.helpie-toc .helpie-element .item-title a:hover {
color: #333;
}
.helpie-toc .helpie-element .item-title .cat {
font-weight: 600;
}
.helpie-toc .helpie-element .item-title.active {
color: #333;
}
.helpie-toc .helpie-element .item-title.active a {
color: #333;
}
.helpie-toc .helpie-element .item-content {
font-size: 13px;
margin: 0px;
padding: 6px 12px;
}
.helpie-toc .helpie-element .ui.selection.list.item-content {
padding: 0 13px;
}
.helpie-toc .helpie-element .ui.selection.list.item-content.active {
padding: 0 13px;
}
.helpie-toc .no-heads {
padding: 10px;
margin: 10px;
}
.helpie-toc > .helpie-element {
padding: 6px 12px;
}
.headings-wrapper {
display: grid;
grid-template-columns: auto 100px;
}
.headings-wrapper .helpieBackToTop {
font-size: 0.9em;
line-height: 2.3em;
margin-left: 1rem;
align-self: center;
outline: none !important;
}
.headings-wrapper .helpieBackToTop a.anchor-text {
color: #007acc;
font-size: 0.8em;
}
.headings-wrapper .helpieBackToTop a.anchor-text:hover {
text-decoration: underline;
color: #007acc;
cursor: pointer;
}
.headings-wrapper .helpieBackToTop a.anchor-text i.icon.long.arrow.alternate.up {
height: 100%;
}
.ui.selection.list .item {
color: #555;
border-radius: 0;
}
.ui.selection.list .item:hover {
color: #333;
}
.ui.selection.list .item:focus {
outline: none;
}
.ui.top.attached.label {
position: relative;
border-radius: 0;
}
.ui.top.attached.label:first-child + :not(.attached) {
margin-top: 0 !important;
}
.pauple_helpie_breadcrumbs {
font-family: "Open Sans", sans-serif;
color: #9a9a9a;
font-size: 15px;
-webkit-font-smoothing: antialiased;
width: 100%;
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.4px;
color: #888888;
}
.pauple_helpie_breadcrumbs a {
color: #888888;
font-weight: 500;
}
.helpie-single-page-module .pauple_helpie_breadcrumbs {
text-align: center;
padding: 40px 0;
}
#helpie-page-controls {
width: 100%;
display: block;
}
#helpie-page-controls .button {
flex: initial;
font-size: 15px;
color: rgba(0, 0, 0, 0.6);
}
.helpiekb-last-updated {
border: solid 1px #e4e4e4;
border-radius: 5px;
padding: 10px 20px;
display: inline-block;
margin-bottom: 15px;
float: right;
color: #b4b4b4;
font-size: 13px;
}
.helpiekb-last-updated img { -webkit-border-radius: 20px; -moz-border-radius: 20px; border-radius: 20px;
width: 20px;
height: 20px;
margin: -5px 5px 0;
vertical-align: middle;
}
.helpiekb-last-updated .value {
font-size: 15px;
font-weight: bold;
color: #333;
text-transform: capitalize;
} .tax-helpdesk_category .wf-wrap:after {
content: "";
display: table;
clear: both;
} .helpie-single-page-module {
float: none;
}
.pauple-login-form-container,
.pauple-register-form-container {
float: none;
margin: 0 auto;
width: 500px;
}
.single-field {
margin-bottom: 20px;
} body.helpie-kb-search-page .modal-backdrop.in,
body.post-type-archive-pauple_helpie .modal-backdrop.in,
body.single-pauple_helpie .modal-backdrop.in,
body.tax-helpdesk_category .modal-backdrop.in {
z-index: 100;
} .helpie-categories-section-boxed .category-list .column a .sicon figure {
height: 100%;
}
.helpie-category-listing a:not([href]) {
pointer-events: auto !important;
} #helpie-page-controls i.icon.dropdown,
.helpie-article-editor i.icon.dropdown {
background-color: inherit;
}
#helpie-page-controls i.icon.window.close,
.helpie-article-editor i.icon.window.close {
margin: 0 0.8em 0 0;
}
#helpie-page-controls .edit-article.button,
#helpie-page-controls .publish.button,
#helpie-page-controls .floating.dropdown,
#helpie-page-controls #helpdesk_category,
.helpie-article-editor .edit-article.button,
.helpie-article-editor .publish.button,
.helpie-article-editor .floating.dropdown,
.helpie-article-editor #helpdesk_category {
overflow: visible;
right: 0px;
width: auto;
position: relative;
z-index: 10;
top: -15px !important;
margin: auto;
background-color: #e0e1e2;
}
#helpie-page-controls .edit-article.button.active,
#helpie-page-controls .publish.button.active,
#helpie-page-controls .floating.dropdown.active,
#helpie-page-controls #helpdesk_category.active,
.helpie-article-editor .edit-article.button.active,
.helpie-article-editor .publish.button.active,
.helpie-article-editor .floating.dropdown.active,
.helpie-article-editor #helpdesk_category.active {
background-color: #c0c1c2;
}
#helpie-page-controls #helpdesk_category,
#helpie-page-controls #helpdesk_category.active,
.helpie-article-editor #helpdesk_category,
.helpie-article-editor #helpdesk_category.active {
background-color: #fff;
z-index: 99;
}
#helpie-page-controls .single-field,
.helpie-article-editor .single-field {
margin-bottom: 0;
margin-top: 20px;
} body[class*=pauple-theme-twentytwenty] .pauple-helpie-search-row-type2, body[class*=pauple-theme-twentytwenty] .helpie_helpdesk,
body[class*=pauple-theme-hello-elementor] .pauple-helpie-search-row-type2,
body[class*=pauple-theme-hello-elementor] .helpie_helpdesk {
z-index: 1;
} body[class*=pauple-theme-astra] .pauple-helpie-search-row-type2, body[class*=pauple-theme-astra] .helpie_helpdesk {
z-index: 10;
} body.helpie-editor-page [data-elementor-type*=header] {
display: none;
}