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


[data-animation^="animated"] {
visibility:hidden;
}
.animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
visibility:visible;
}
.animated.infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.animated.fast {
-webkit-animation-duration: 0.5s;
animation-duration: 0.5s;
}
.animated.slow {
-webkit-animation-duration: 2s;
animation-duration: 2s;
}
@-webkit-keyframes bounce {
0%, 20%, 53%, 80%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
40%, 43% {
-webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0);
}
}
@keyframes bounce {
0%, 20%, 53%, 80%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
40%, 43% {
-webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0);
}
}
.bounce {
-webkit-animation-name: bounce;
animation-name: bounce;
-webkit-transform-origin: center bottom;
-ms-transform-origin: center bottom;
transform-origin: center bottom;
}
@-webkit-keyframes flash {
0%, 50%, 100% {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
@keyframes flash {
0%, 50%, 100% {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
.flash {
-webkit-animation-name: flash;
animation-name: flash;
opacity: 1;
} @-webkit-keyframes pulse {
0% {
-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);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes pulse {
0% {
-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);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.pulse {
-webkit-animation-name: pulse;
animation-name: pulse;
}
@-webkit-keyframes rubberBand {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes rubberBand {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.rubberBand {
-webkit-animation-name: rubberBand;
animation-name: rubberBand;
}
@-webkit-keyframes shake {
0%, 100% {
-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 {
0%, 100% {
-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 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);
}
100% {
-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);
}
100% {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
.swing {
-webkit-transform-origin: top center;
-ms-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing;
}
@-webkit-keyframes tada {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%, 20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes tada {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%, 20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.tada {
-webkit-animation-name: tada;
animation-name: tada;
} @-webkit-keyframes wobble {
0% {
-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);
}
100% {
-webkit-transform: none;
transform: none;
}
}
@keyframes wobble {
0% {
-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);
}
100% {
-webkit-transform: none;
transform: none;
}
}
.wobble {
-webkit-animation-name: wobble;
animation-name: wobble;
}
@-webkit-keyframes bounceIn {
0%, 20%, 40%, 60%, 80%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
100% {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes bounceIn {
0%, 20%, 40%, 60%, 80%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
100% {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.bounceIn {
-webkit-animation-name: bounceIn;
animation-name: bounceIn;
-webkit-animation-duration: .75s;
animation-duration: .75s;
}
@-webkit-keyframes bounceInDown {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
100% {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInDown {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
100% {
-webkit-transform: none;
transform: none;
}
}
.bounceInDown {
-webkit-animation-name: bounceInDown;
animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
100% {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInLeft {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
100% {
-webkit-transform: none;
transform: none;
}
}
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
100% {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInRight {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
100% {
-webkit-transform: none;
transform: none;
}
}
.bounceInRight {
-webkit-animation-name: bounceInRight;
animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -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);
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInUp {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -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);
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.bounceInUp {
-webkit-animation-name: bounceInUp;
animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
}
@keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
}
.bounceOut {
-webkit-animation-name: bounceOut;
animation-name: bounceOut;
-webkit-animation-duration: .75s;
animation-duration: .75s;
}
@-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);
}
100% {
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);
}
100% {
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);
}
100% {
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);
}
100% {
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);
}
100% {
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);
}
100% {
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);
}
100% {
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);
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.bounceOutUp {
-webkit-animation-name: bounceOutUp;
animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
0% {opacity: 0;}
100% {opacity: 1;}
}
@keyframes fadeIn {
0% {opacity: 0;}
100% {opacity: 1;}
}
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
0% {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDownBig {
0% {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDownBig {
-webkit-animation-name: fadeInDownBig;
animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeft {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
0% {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeftBig {
0% {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeftBig {
-webkit-animation-name: fadeInLeftBig;
animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
0% {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRight {
0% {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
0% {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRightBig {
0% {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRightBig {
-webkit-animation-name: fadeInRightBig;
animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 200px, 0);
transform: translate3d(0, 200px, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 200px, 0);
transform: translate3d(0, 200px, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUpBig {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUpBig {
-webkit-animation-name: fadeInUpBig;
animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
0% {opacity: 1;}
100% {opacity: 0;}
}
@keyframes fadeOut {
0% {opacity: 1;}
100% {opacity: 0;}
}
.fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes fadeOutDown {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.fadeOutDown {
-webkit-animation-name: fadeOutDown;
animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes fadeOutDownBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.fadeOutDownBig {
-webkit-animation-name: fadeOutDownBig;
animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes fadeOutLeft {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.fadeOutLeft {
-webkit-animation-name: fadeOutLeft;
animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes fadeOutLeftBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.fadeOutLeftBig {
-webkit-animation-name: fadeOutLeftBig;
animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes fadeOutRight {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.fadeOutRight {
-webkit-animation-name: fadeOutRight;
animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes fadeOutRightBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.fadeOutRightBig {
-webkit-animation-name: fadeOutRightBig;
animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes fadeOutUp {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.fadeOutUp {
-webkit-animation-name: fadeOutUp;
animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes fadeOutUpBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.fadeOutUpBig {
-webkit-animation-name: fadeOutUpBig;
animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
0% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
transform: perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
@keyframes flip {
0% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
transform: perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
100% {
-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 {
0% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-transition-timing-function: ease-in;
transition-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-transition-timing-function: ease-in;
transition-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);
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInX {
0% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-transition-timing-function: ease-in;
transition-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-transition-timing-function: ease-in;
transition-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);
}
100% {
-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 {
0% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-transition-timing-function: ease-in;
transition-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-transition-timing-function: ease-in;
transition-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);
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInY {
0% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-transition-timing-function: ease-in;
transition-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-transition-timing-function: ease-in;
transition-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);
}
100% {
-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 {
0% {
-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;
}
100% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutX {
0% {
-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;
}
100% {
-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-animation-duration: .75s;
animation-duration: .75s;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
0% {
-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;
}
100% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutY {
0% {
-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;
}
100% {
-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-animation-duration: .75s;
animation-duration: .75s;
}
@-webkit-keyframes lightSpeedIn {
0% {
-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;
}
100% {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes lightSpeedIn {
0% {
-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;
}
100% {
-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 {
0% {
opacity: 1;
}
100% {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
@keyframes lightSpeedOut {
0% {
opacity: 1;
}
100% {
-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 {
0% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
100% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateIn {
0% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
100% {
-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 {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
100% {
-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 {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
100% {
-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 {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
100% {
-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 {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
100% {
-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 {
0% {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
100% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
@keyframes rotateOut {
0% {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
100% {
-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 {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
100% {
-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 {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
100% {
-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 {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
100% {
-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 {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
100% {
-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 {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
100% {
-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 {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
100% {
-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 {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
100% {
-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 {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
100% {
-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;
}
100% {
-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;
}
100% {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
.hinge {
-webkit-animation-name: hinge;
animation-name: hinge;
} @-webkit-keyframes rollIn {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes rollIn {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.rollIn {
-webkit-animation-name: rollIn;
animation-name: rollIn;
} @-webkit-keyframes rollOut {
0% {
opacity: 1;
}
100% {
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 {
0% {
opacity: 1;
}
100% {
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 {
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
@keyframes zoomIn {
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
.zoomIn {
-webkit-animation-name: zoomIn;
animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInDown {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInDown {
-webkit-animation-name: zoomInDown;
animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInLeft {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInLeft {
-webkit-animation-name: zoomInLeft;
animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInRight {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInRight {
-webkit-animation-name: zoomInRight;
animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInUp {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInUp {
-webkit-animation-name: zoomInUp;
animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
0% {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
100% {
opacity: 0;
}
}
@keyframes zoomOut {
0% {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
100% {
opacity: 0;
}
}
.zoomOut {
-webkit-animation-name: zoomOut;
animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutDown {
-webkit-animation-name: zoomOutDown;
animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
.zoomOutLeft {
-webkit-animation-name: zoomOutLeft;
animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
@keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
.zoomOutRight {
-webkit-animation-name: zoomOutRight;
animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutUp {
-webkit-animation-name: zoomOutUp;
animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
0% {
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
visibility: visible;
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes slideInDown {
0% {
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
visibility: visible;
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
.slideInDown {
-webkit-animation-name: slideInDown;
animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
0% {
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
visibility: visible;
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes slideInLeft {
0% {
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
visibility: visible;
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
.slideInLeft {
-webkit-animation-name: slideInLeft;
animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
0% {
-webkit-transform: translateX(100%);
transform: translateX(100%);
visibility: visible;
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes slideInRight {
0% {
-webkit-transform: translateX(100%);
transform: translateX(100%);
visibility: visible;
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
.slideInRight {
-webkit-animation-name: slideInRight;
animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
0% {
-webkit-transform: translateY(100%);
transform: translateY(100%);
visibility: visible;
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes slideInUp {
0% {
-webkit-transform: translateY(100%);
transform: translateY(100%);
visibility: visible;
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
.slideInUp {
-webkit-animation-name: slideInUp;
animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
visibility: hidden;
-webkit-transform: translateY(100%);
transform: translateY(100%);
}
}
@keyframes slideOutDown {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
visibility: hidden;
-webkit-transform: translateY(100%);
transform: translateY(100%);
}
}
.slideOutDown {
-webkit-animation-name: slideOutDown;
animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
visibility: hidden;
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
}
}
@keyframes slideOutLeft {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
visibility: hidden;
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
}
}
.slideOutLeft {
-webkit-animation-name: slideOutLeft;
animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
visibility: hidden;
-webkit-transform: translateX(100%);
transform: translateX(100%);
}
}
@keyframes slideOutRight {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
visibility: hidden;
-webkit-transform: translateX(100%);
transform: translateX(100%);
}
}
.slideOutRight {
-webkit-animation-name: slideOutRight;
animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
visibility: hidden;
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
}
}
@keyframes slideOutUp {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
visibility: hidden;
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
}
}
.slideOutUp {
-webkit-animation-name: slideOutUp;
animation-name: slideOutUp;
}
 @media (min-width: 1440px) { .footer_fullwidth .content_wrap,
.copyright_wrap .content_wrap {
margin: 0 auto;
width: 1170px;
}
}
@media (min-width: 1440px) and (max-width: 1576px) { .content .widget_popular_extra_posts .extra_post .post_title { font-size: 26px; }
.content .widget_popular_extra_posts .post_title { font-size: 24px; }
.content .widget_popular_extra_posts .extra_post .post_thumb { width: 8em; }
.content .widget_popular_extra_posts .post_thumb { margin: 0 1.5em 0 0; width: 6.5em; }
.content .widget_popular_extra_posts { padding: 4.4em 4.5em; }
.content .widget_popular_extra_posts .extra_post { margin: 0 4.5em 0 0; padding: 0 4.3em 1.6em 0; }
.sidebar_show .widget_popular_extra_posts .post_info { line-height: 1.7em; }
.sidebar_show .widget_popular_extra_posts .post_info .post_counters_item { display: block; margin: 0 !important; } .post_layout_excerpt .post_title { font-size: 1.8em; }
.post_layout_excerpt .post_content { padding: 2.2em 0 0; }
.post_layout_excerpt .more-link, .widget_popular_extra_posts .more-link { margin: 2.5em 0 0; }
.content .post_layout_excerpt .excerpt_content_wrap { padding: 4em 4.5em 1em; }
}
@media (min-width: 1263px) and (max-width: 1439px) { .body_style_boxed .page_wrap {		width:1120px; }
.slider_style_boxed, .content_wrap, .content_container {	width:1000px; }
.footer_fullwidth .content_wrap,
.copyright_wrap .content_wrap { width:1000px; }
.copyright_wrap .copyright_text { padding-left: 0; } .content { width: 660px; }
.sidebar, .body_style_fullwide .sidebar { width: 310px; }
.body_style_boxed .content { width: 690px; } .body_style_fullwide.sidebar_right .content { padding-right: 310px; }
.body_style_fullwide.sidebar_right .sidebar { margin-left: -310px; }
.body_style_fullwide.sidebar_left  .content { padding-left:  310px; }
.body_style_fullwide.sidebar_left  .sidebar { margin-right:-310px; } .menu_main_nav > li > a { padding: 2.2em 2.2em 2.1em; } .slider_swiper[data-slides-per-view="1"] .slide_info .slide_title { font-size: 2em; } .post_layout_excerpt .post_title {
margin-left:0;
margin-right:0;
} .sidebar { padding: 10px 2em; }
.body_style_fullwide .sidebar { padding: 10px 2em; }
.widget_area .widget_socials .social_item { margin: 0 0.8em 0.8em 0; }
.widget_area .sc_tabs .sc_tabs_titles li + li { margin-left:2em; }
.widget_area .post_item .post_thumb {
height: 5em;
margin: 0 1em 4px 0;
width: 5em;
}
.widget_area .post_item .post_title {
font-size: 1.2em;
margin: 0 0 8px;
}
.widget_area .mc4wp_wrap input[type="submit"] { padding: 1em 1.5em; } .content .widget_popular_extra_posts { padding: 3.5em 4em; }
.content .widget_popular_extra_posts .extra_post { margin: 0 2em 0 0; padding: 0 2em 0.3em 0; }
.content .widget_popular_extra_posts .post_thumb { margin: 0 1.3em 0 0; width: 5em; }
.content .widget_popular_extra_posts .extra_post .post_thumb { width: 6em; }
.content .widget_popular_extra_posts .post_title,
.content .widget_popular_extra_posts .extra_post .post_title { font-size: 1.3em; }
.content .widget_popular_extra_posts .post_info { letter-spacing: 0; margin-left: 1px; }
.content .widget_popular_extra_posts .post_info .post_counters_item + .post_counters_item { margin-left: 1em; }
.content .widget_popular_extra_posts .post_content { margin: 2.2em 0 0; padding: 2.2em 0 0; }
.content .widget_popular_extra_posts .more-link { margin: 2em 0 0; }
.content .widget_popular_extra_posts .list_post .post_item + .post_item { margin: 3em 0 0; padding: 3em 0 0; }
.body_style_wide .content .widget_popular_extra_posts .extra_post .post_thumb,
.body_style_boxed .content .widget_popular_extra_posts .extra_post .post_thumb { width: 5em; }
.body_style_boxed .content .widget_popular_extra_posts .extra_post,
.body_style_wide .content .widget_popular_extra_posts .extra_post { margin: 0 1.8em 0 0; padding: 0 1.8em 0 0; }
.body_style_wide .content .widget_popular_extra_posts .post_thumb,
.body_style_boxed .content .widget_popular_extra_posts .post_thumb { margin: 0 1em 0 0; }
.body_style_wide .content .widget_popular_extra_posts .post_info,
.body_style_boxed .content .widget_popular_extra_posts .post_info { line-height: 1.7em; letter-spacing: 0.05em; }
.body_style_wide .content .widget_popular_extra_posts .post_info .post_counters_item,
.body_style_boxed .content .widget_popular_extra_posts .post_info .post_counters_item { margin: 0 !important; display: block; } .post_layout_excerpt .post_title { font-size: 1.7em; }
.post_layout_excerpt .post_content { padding: 2em 0 0; }
.post_layout_excerpt .more-link, .widget_popular_extra_posts .more-link { margin: 2.4em 0 0; }
.content .post_layout_excerpt .excerpt_content_wrap { padding: 3.5em 4em 1em; }
.body_style_boxed .post_layout_excerpt .post_title,
.body_style_wide .post_layout_excerpt .post_title { font-size: 1.5em; }
.body_style_boxed .post_layout_excerpt .more-link,
.body_style_wide .post_layout_excerpt .more-link { margin: 2em 0 0; }
.body_style_boxed .post_layout_excerpt .post_content,
.body_style_wide .post_layout_excerpt .post_content { padding: 1.8em 0 0; }
.body_style_boxed .post_layout_excerpt .post_featured,
.body_style_boxed .post_layout_excerpt .post_featured .slider_height_fixed,
.body_style_wide .post_layout_excerpt .post_featured,
.body_style_wide .post_layout_excerpt .post_featured .slider_height_fixed {
height: 580px;
} .relatedWrap .related_item .thumb { min-height: 9.5em; }
}
@media (min-width: 1136px) and (max-width: 1262px) { .body_style_boxed .page_wrap {		width:1030px; }
.slider_style_boxed, .content_wrap, .content_container {	width:910px; }
.footer_fullwidth .content_wrap,
.copyright_wrap .content_wrap { width:910px; }
.copyright_wrap .copyright_text { padding-left: 0; } .content { width: 610px; }
.body_style_boxed .content { width: 640px; }
body {	font-size: 14px; }
h1 { font-size:2.6em; }
h2 { font-size:2.2em; }
h3 { font-size:1.85em; }
h4 { font-size:1.25em; }
h5 { font-size:1em; }
h6 { font-size:0.95em; }
.sidebar, .body_style_fullwide .sidebar { 				 width: 270px; }
.sidebar aside { padding: 3.4em 0; } .body_style_fullwide.sidebar_right .content { padding-right: 270px; }
.body_style_fullwide.sidebar_right .sidebar { margin-left: -270px; }
.body_style_fullwide.sidebar_left  .content { padding-left:  270px; }
.body_style_fullwide.sidebar_left  .sidebar { margin-right:-270px; } .menu_main_nav > li > a { padding: 2.2em 2.1em 2.1em; }
.body_style_boxed .menu_main_nav > li > a { padding-left: 1.8em; padding-right: 1.8em; }
.menu_main_nav > li ul,
.menu_user_nav > li ul { width: 20em; }
.menu_main_nav > li > ul ul { left: 20em; }
.menu_user_nav > li > ul ul.submenu_left { left: -20em; }
.menu_main_nav > li > ul ul.submenu_left { left: -20em; }
.menu_main_nav_area { font-size: 0.84em; } .slider_swiper[data-slides-per-view="1"] .slide_info .slide_title { font-size: 2em; } .post_layout_excerpt .post_title {
margin-left:0;
margin-right:0;
} .sidebar { padding: 10px 2em; }
.body_style_fullwide .sidebar { padding: 10px 2em; }
.widget_area .widget_socials .social_item span { width: 3em; height:3em; line-height:3em; }
.widget_area .widget_socials .social_item { margin: 0 0.8em 0.8em 0; }
.widget_area .sc_tabs .sc_tabs_titles li + li { margin-left:2em; }
.widget_area .post_item .post_thumb {
height: 5em;
margin: 0 1em 4px 0;
width: 5em;
}
.widget_area .post_item .post_title {
font-size: 1.2em;
margin: 0 0 8px;
}
.widget_area .widget_calendar td .day_wrap { padding:6px 3px; }
.body_style_fullwide .widget_area .widget_aboutme .aboutme_avatar { padding: 0 1.6em; } .content .widget_popular_extra_posts { padding: 3.5em 4em; }
.content .widget_popular_extra_posts .extra_post { margin: 0 2em 0 0; padding: 0 2em 0.3em 0; }
.content .widget_popular_extra_posts .post_thumb { margin: 0 1.3em 0 0; width: 5em; }
.content .widget_popular_extra_posts .extra_post .post_thumb { width: 6em; }
.content .widget_popular_extra_posts .post_title,
.content .widget_popular_extra_posts .extra_post .post_title { font-size: 1.3em; }
.content .widget_popular_extra_posts .post_info { letter-spacing: 0; margin-left: 1px; }
.content .widget_popular_extra_posts .post_info .post_counters_item + .post_counters_item { margin-left: 1em; }
.content .widget_popular_extra_posts .post_content { margin: 2.2em 0 0; padding: 2.2em 0 0; }
.content .widget_popular_extra_posts .more-link { margin: 2em 0 0; }
.content .widget_popular_extra_posts .list_post .post_item + .post_item { margin: 3em 0 0; padding: 3em 0 0; }
.body_style_wide .content .widget_popular_extra_posts .extra_post .post_thumb,
.body_style_boxed .content .widget_popular_extra_posts .extra_post .post_thumb { width: 5em; }
.body_style_boxed .content .widget_popular_extra_posts .extra_post,
.body_style_wide .content .widget_popular_extra_posts .extra_post { margin: 0 1.8em 0 0; padding: 0 1.8em 0 0; }
.body_style_wide .content .widget_popular_extra_posts .post_thumb,
.body_style_boxed .content .widget_popular_extra_posts .post_thumb { margin: 0 1em 0 0; }
.body_style_wide .content .widget_popular_extra_posts .post_info,
.body_style_boxed .content .widget_popular_extra_posts .post_info { line-height: 1.7em; letter-spacing: 0.05em; }
.body_style_wide .content .widget_popular_extra_posts .post_info .post_counters_item,
.body_style_boxed .content .widget_popular_extra_posts .post_info .post_counters_item { margin: 0 !important; display: block; } .post_layout_excerpt .post_title { font-size: 1.6em; }
.post_layout_excerpt .post_content { padding: 2em 0 0; }
.post_layout_excerpt .more-link, .widget_popular_extra_posts .more-link { margin: 2.4em 0 0; }
.content .post_layout_excerpt .excerpt_content_wrap { padding: 3.3em 3.5em 1em; }
.body_style_boxed .post_layout_excerpt .post_title,
.body_style_wide .post_layout_excerpt .post_title { font-size: 1.5em; }
.body_style_boxed .post_layout_excerpt .more-link,
.body_style_wide .post_layout_excerpt .more-link { margin: 2em 0 0; }
.body_style_boxed .post_layout_excerpt .post_content,
.body_style_wide .post_layout_excerpt .post_content { padding: 1.8em 0 0; }
.post_layout_excerpt .post_featured,
.post_layout_excerpt .post_featured .slider_height_fixed {
height: 555px;
}
.body_style_boxed .post_layout_excerpt .post_featured,
.body_style_boxed .post_layout_excerpt .post_featured .slider_height_fixed,
.body_style_wide .post_layout_excerpt .post_featured,
.body_style_wide .post_layout_excerpt .post_featured .slider_height_fixed {
height: 540px;
} .relatedWrap .related_item .thumb { min-height: 9em; }
.widget_area .mc4wp_wrap input[type="submit"] { padding: 1em; }
.widget_area .mc4wp_wrap input[type="email"] { padding: 1em 5.9em 1em 2.9em; }
}
@media (min-width: 1024px) and (max-width: 1135px) { .body_style_boxed .page_wrap {		width:100%; }
.slider_style_boxed, .content_wrap, .content_container {	width:964px; }
.footer_fullwidth .content_wrap,
.copyright_wrap .content_wrap { width:964px; }
.copyright_wrap .copyright_text { padding-left: 0; } .content { width: 664px; }
.body_style_boxed .content { width: 664px; }
}
@media (min-width: 960px) and (max-width: 1023px) { .body_style_boxed .page_wrap {		width:100%; }
.slider_style_boxed, .content_wrap, .content_container {	width:900px; }
.footer_fullwidth .content_wrap,
.copyright_wrap .content_wrap { width:900px; }
.copyright_wrap .copyright_text { padding-left: 0; } .content { width: 600px; }
.body_style_boxed .content { width: 600px; }
}
@media (min-width: 960px) and (max-width: 1135px) {
body {	font-size: 14px; }
h1 { font-size:2.4em; }
h2 { font-size:2em; }
h3 { font-size:1.6em; }
h4 { font-size:1.1em; }
h5 { font-size:1em; }
h6 { font-size:0.95em; }
.sidebar, .body_style_fullwide .sidebar { width: 270px; }
.sidebar aside { padding: 2.7em 0; }
.body_style_boxed.sidebar_right .sidebar, .body_style_boxed.sidebar_left .sidebar { margin: 0; } .body_style_fullwide.sidebar_right .content { padding-right: 270px; }
.body_style_fullwide.sidebar_right .sidebar { margin-left: -270px; }
.body_style_fullwide.sidebar_left  .content { padding-left:  270px; }
.body_style_fullwide.sidebar_left  .sidebar { margin-right:-270px; } .post_layout_excerpt .post_title {
margin-left:0;
margin-right:0;
}
.breadcrumbs, .top_panel_title .single_date, .top_panel_title .single_cat { font-size: 0.9em; } .slider_swiper[data-slides-per-view="1"] .slide_info .slide_title { font-size: 1.7em; }
.slider_swiper.slider_titles_center[data-slides-per-view="1"] .slide_info { width: 45%; } .menu_main_nav > li > a, .body_style_boxed .menu_main_nav > li > a { padding: 1.8em 1.5em 1.7em; }
.menu_main_nav > li ul,
.menu_user_nav > li ul { width: 19em; }
.menu_user_nav > li > ul ul { left: 19em; }
.menu_main_nav > li > ul ul { left: 19em; }
.menu_user_nav > li > ul ul.submenu_left { left: -19em; }
.menu_main_nav > li > ul ul.submenu_left { left: -19em; }
.menu_main_nav_area { font-size: 0.83em; }
.menu_main_nav > li.menu-item-has-children > a::after { bottom: 0.6em; }
.menu_main_nav > li > ul { top: 5.1em; } .sidebar { padding: 10px 2em; }
.body_style_fullwide .sidebar { padding: 10px 2em; }
.widget_area .widget_aboutme .widget_title { margin-bottom: 0.8em; }
.widget_area .widget_title { font-size: 1.7em; }
.widget_area .widget_socials .social_item span { width: 3em; height:3em; line-height:3em; }
.widget_area .widget_socials .social_item { margin: 0 0.8em 0.8em 0; }
.widget_area .sc_tabs .sc_tabs_titles li + li { margin-left:2em; }
.widget_area .post_item .post_thumb {
height: 5em;
margin: 0 1em 4px 0;
width: 5em;
}
.widget_area .post_item .post_title {
font-size: 1.2em;
margin: 0 0 8px;
}
.widget_area .widget_calendar td .day_wrap { padding:6px 3px; }
.widget_area .widget_product_tag_cloud a, .widget_area .widget_tag_cloud a { margin: 0 0.5em 0.5em 0; padding: 0.9em 1em; }
.body_style_fullwide .widget_area .widget_aboutme .aboutme_avatar { padding: 0 1.6em; } .content .widget_popular_extra_posts { padding: 3em }
.content .widget_popular_extra_posts .extra_post { margin: 0 2em 0 0; padding: 0 2em 0.3em 0; }
.content .widget_popular_extra_posts .post_thumb { margin: 0 1.3em 0 0; width: 5em; }
.content .widget_popular_extra_posts .extra_post .post_thumb { width: 6em; }
.content .widget_popular_extra_posts .post_title,
.content .widget_popular_extra_posts .extra_post .post_title { font-size: 1.3em; }
.content .widget_popular_extra_posts .post_info { letter-spacing: 0; margin-left: 1px; }
.content .widget_popular_extra_posts .post_info .post_counters_item + .post_counters_item { margin-left: 1em; }
.content .widget_popular_extra_posts .post_content { margin: 2.2em 0 0; padding: 2.2em 0 0; }
.content .widget_popular_extra_posts .more-link { margin: 2em 0 0; }
.content .widget_popular_extra_posts .list_post .post_item + .post_item { margin: 3em 0 0; padding: 3em 0 0; }
.body_style_wide .content .widget_popular_extra_posts .extra_post .post_thumb,
.body_style_boxed .content .widget_popular_extra_posts .extra_post .post_thumb { width: 5em; }
.body_style_boxed .content .widget_popular_extra_posts .extra_post,
.body_style_wide .content .widget_popular_extra_posts .extra_post { margin: 0 1.8em 0 0; padding: 0 1.8em 0 0; }
.body_style_wide .content .widget_popular_extra_posts .post_thumb,
.body_style_boxed .content .widget_popular_extra_posts .post_thumb { margin: 0 1em 0 0; }
.content .widget_popular_extra_posts .post_info { line-height: 1.7em; letter-spacing: 0.05em; }
.content .widget_popular_extra_posts .post_info .post_counters_item { margin: 0 !important; display: block; } .post_item .post_categories { letter-spacing: 0.05em; line-height: 1.5em; }
.post_layout_excerpt .post_title { font-size: 1.5em; }
.post_layout_excerpt .post_content { padding: 1.8em 0 0; }
.post_layout_excerpt .more-link, .widget_popular_extra_posts .more-link { margin: 2.2em 0 0; }
.content .post_layout_excerpt .excerpt_content_wrap { padding: 3em 3em 1em; }
.body_style_boxed .post_layout_excerpt .post_title,
.body_style_wide .post_layout_excerpt .post_title { font-size: 1.5em; }
.body_style_boxed .post_layout_excerpt .more-link,
.body_style_wide .post_layout_excerpt .more-link { margin: 2em 0 0; }
.body_style_boxed .post_layout_excerpt .post_content,
.body_style_wide .post_layout_excerpt .post_content { padding: 1.8em 0 0; }
.post_layout_excerpt .post_featured,
.post_layout_excerpt .post_featured .slider_height_fixed {
height: 555px;
}
.body_style_boxed .post_layout_excerpt .post_featured,
.body_style_boxed .post_layout_excerpt .post_featured .slider_height_fixed,
.body_style_wide .post_layout_excerpt .post_featured,
.body_style_wide .post_layout_excerpt .post_featured .slider_height_fixed {
height: 540px;
} .relatedWrap .related_item .thumb { min-height: 9em; }
.widget_area .mc4wp_wrap input[type="submit"] { padding: 1em; }
.widget_area .mc4wp_wrap input[type="email"] { padding: 1em 5.9em 1em 2.9em; }
.post_layout_grid .post_title { font-size: 1.3em; }
}
@media (min-width: 768px) and (max-width: 959px) {
body {	font-size: 14px; }
h1 { font-size:2.2em; }
h2 { font-size:1.9em; }
h3 { font-size:1.5em; }
h4 { font-size:1.2em; }
h5 { font-size:1em; }
h6 { font-size:0.90em; } .body_style_boxed .page_wrap {		width:100%; }
.slider_style_boxed, .content_wrap, .content_container {	width:708px; }
.body_style_fullwide .page_content_wrap .content_wrap { display: inline-block; } .content { width: 100%; float: none; }
.body_style_boxed .content { width: 100%; }
.sidebar, .body_style_fullwide .sidebar { width: 100%; float:none; margin-top:2.3077em; padding: 0 0 1em; }
.body_style_fullwide .sidebar { margin-top: 0; padding: 0 2em 2em; }
.body_style_boxed.sidebar_right .sidebar, .body_style_boxed.sidebar_left .sidebar { margin: 0; }
.sidebar_right .content, .sidebar_left .content { float: none; }
.sidebar aside { padding: 3em 1.4em !important; }
.body_style_boxed .sidebar aside { padding: 3em 2em !important; } .body_style_fullwide.sidebar_right .content { padding-right: 0; }
.body_style_fullwide.sidebar_right .sidebar { margin-left: 0; }
.body_style_fullwide.sidebar_left  .content { padding-left:  0; }
.body_style_fullwide.sidebar_left  .sidebar { margin-right:0; }
.gallery.gallery-columns-9 .gallery-item {	width: 20% !important; }
.gallery.gallery-columns-8 .gallery-item {	width: 20% !important; }
.gallery.gallery-columns-7 .gallery-item {	width: 20% !important; }
.gallery.gallery-columns-6 .gallery-item {	width: 20% !important; } .search_wrap .search_field { padding: 0 2.5em 0 2em; width: 10em !important; border-radius: 0; box-shadow: none; border: none; }
.search_wrap .search_submit { right: 0.5em; } .slider_swiper.slider_titles_center[data-slides-per-view="1"] .slide_info { width: 45%; }
.slider_swiper[data-slides-per-view="1"] .slide_info .slide_title { font-size: 2em; }
.slider_swiper[data-slides-per-view="1"] .slide_info { padding: 2em 3em 2.3em; } .content .widget_popular_extra_posts .extra_post {
border-right: none;
margin: 0;
padding: 0;
width: 100%;
float: none;
}
.content .widget_popular_extra_posts .list_post .post_item { margin: 4em 0 0; padding: 4em 0 0; }
.content .widget_popular_extra_posts .list_post .post_item:first-child::before { display: block; }
.content .widget_popular_extra_posts .post_content { margin: 2.4em 0 0; padding: 2.4em 0 0; }
.content .widget_popular_extra_posts { padding: 4em 2.5em; }
.content .post_layout_excerpt .excerpt_content_wrap { padding: 3em 2.5em 1em; }
.post_layout_excerpt .post_title { font-size: 1.7em; }
.post_layout_excerpt .post_content { padding: 2em 0 0; }
.post_layout_excerpt .more-link, .widget_popular_extra_posts .more-link { margin: 2.3em 0 0; }
.body_style_boxed .content .widget_popular_extra_posts,
.body_style_wide .content .widget_popular_extra_posts { padding: 4em 2.5em; }
.body_style_wide .content .widget_popular_extra_posts .extra_post .header_content,
.body_style_boxed .content .widget_popular_extra_posts .extra_post .header_content { min-height: 10.667em;}
.body_style_wide .content .widget_popular_extra_posts .extra_post .post_thumb,
.body_style_boxed .content .widget_popular_extra_posts .extra_post .post_thumb { width: 10.667em; }
.body_style_wide .content .widget_popular_extra_posts .post_title,
.body_style_boxed .content .widget_popular_extra_posts .post_title { font-size: 34px; }
.body_style_wide .content .widget_popular_extra_posts .post_info,
.body_style_boxed .content .widget_popular_extra_posts .post_info { letter-spacing: 0.07em; }
.body_style_wide .content .widget_popular_extra_posts .post_thumb,
.body_style_boxed .content .widget_popular_extra_posts .post_thumb { width: 8.333em; }
.post_layout_excerpt .post_featured,
.post_layout_excerpt .post_featured .slider_height_fixed { height: 550px; } .post_layout_grid .post_title { font-size: 1.3em; } .widget_area aside:not(.column-1_1) {
display: inline-block;
float:none;
vertical-align:top;
width:48%;
margin-left:4%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.widget_area aside:nth-child(2n+1) { margin-left:0; }
.widget_area aside[class*="column-"] { margin-left:0; }
.widget_area .widget_socials .social_item { margin: 0 0.8em 0.8em 0; } .copyright_wrap .columns_wrap > div { width:100% !important; text-align:center; }
.copyright_wrap .copyright_text { padding-left: 0; } .scroll_to_top { right: 1em; }
.scroll_to_top.show { bottom: 1em; } .relatedWrap .related_item .thumb { min-height: 11em; }
.search_wrap .search_form { font-size: 0.9em; }
.post_item_404 .page_search .search_wrap { max-width: 60%; width: 100%; }
}
@media (min-width: 640px) and (max-width: 767px) { .slider_style_boxed, .content_wrap, .content_container {	width:600px; }
.widget_area aside {
width:48%;
margin-left:4%;
}
.post_layout_excerpt .post_featured,
.post_layout_excerpt .post_featured .slider_height_fixed,
.body_style_boxed .post_layout_excerpt .post_featured,
.body_style_boxed .post_layout_excerpt .post_featured .slider_height_fixed,
.body_style_wide .post_layout_excerpt .post_featured,
.body_style_wide .post_layout_excerpt .post_featured .slider_height_fixed { height: 330px; }
.post_item_404 .page_search .search_wrap { max-width: 65%; width: 100%; }
.relatedWrap .related_item .thumb { min-height: 22.38em; }
.post_item_single .post_label,
.post_item .post_label {
width:4.5em !important;
height:4.5em !important;
line-height:4.5em !important;
}
}
@media (min-width: 480px) and (max-width: 639px) { .slider_style_boxed, .content_wrap, .content_container {	width:440px; }
.widget_area aside {
width:100%;
margin-left:0;
}
.post_layout_excerpt .post_featured,
.post_layout_excerpt .post_featured .slider_height_fixed,
.body_style_boxed .post_layout_excerpt .post_featured,
.body_style_boxed .post_layout_excerpt .post_featured .slider_height_fixed,
.body_style_wide .post_layout_excerpt .post_featured,
.body_style_wide .post_layout_excerpt .post_featured .slider_height_fixed { height: 280px; }
.post_layout_grid .post_content { padding: 0.5em 1.5em 1.6em; }
.post_layout_grid .post_header { padding: 2.5em 1.5em 0; }
.post_layout_grid .post_footer { padding: 0 2.5em 1.5em; }
.widget_area .sc_tabs .sc_tabs_titles li { font-size: 1.1em !important; }
.nav-links-old > span > a { padding: 2em; }
blockquote { margin: 1em 0 1em 3em; }
.post_item_404 .page_search .search_wrap { max-width: 65%; width: 100%; }
.relatedWrap .related_item .thumb { min-height: 16.2em; }
.widget_area .widget_advert.widget_fullwidth .image_wrap { text-align: center; }
.widget_area .widget_advert .image_wrap img { width: auto; }
.likes_style { height: 50px; right: 25px; top: 25px; width: 50px; }
.likes_style .post_counters_text { font-size: 11px; height: 20px; line-height: 20px; }
.likes_style:hover .post_counters_text { top: -22px; }
.likes_style::before { padding-top: 12px; }
.post_layout_grid .post_label,
.post_layout_grid .post_label {
left: 25px;
top: 25px;
}
.post_item_single .post_label,
.post_item .post_label {
height: 4em !important;
line-height: 4em !important;
right: 25px;
width: 4em !important;
}
.comments_wrap .comments_field { padding-top: 0 !important; }
}
@media (min-width: 480px) and (max-width: 767px) {
body {	font-size: 13px; }
h1 { font-size:2.1em; }
h2 { font-size:1.9em; }
h3 { font-size:1.6em; }
h4 { font-size:1.3em; }
h5 { font-size:1.1em; }
h6 { font-size:1em; } .body_style_boxed .page_wrap {		width:100%; } .content { width: 100%; float: none; }
.sidebar { 				 width: 100%; float:none; margin-top:2.3077em; }
.body_style_boxed .content { width: 100%; }
.sidebar, .body_style_fullwide .sidebar { width: 100%; float:none; margin-top:2.3077em; padding: 0; }
.body_style_fullwide .sidebar { margin-top: 0; }
.body_style_boxed.sidebar_right .sidebar, .body_style_boxed.sidebar_left .sidebar { margin: 0; }
.sidebar_right .content, .sidebar_left .content { float: none; }
.sidebar aside { padding: 3em 1.4em !important; }
.body_style_boxed .sidebar aside { padding: 3em 2em !important; }
.body_style_fullwide .page_content_wrap { padding: 0 0 0; } .body_style_fullwide.sidebar_right .content { padding-right: 0; }
.body_style_fullwide.sidebar_right .sidebar { margin-left: 0; }
.body_style_fullwide.sidebar_left  .content { padding-left:  0; }
.body_style_fullwide.sidebar_left  .sidebar { margin-right:0; } .search_wrap .search_field { padding: 0 2.5em 0 2em; width: 10em !important; border-radius: 0; box-shadow: none; border: none; }
.search_wrap .search_submit { right: 0.5em; }
.top_user_panel_wrap .socials_wrap { padding-left: 20px; }
.search_wrap { padding-left: 10px; padding-right: 10px; }
.search_results.widget_area .post_item .post_thumb { height: 5.5em; width: 5.5em; }
.breadcrumbs, .top_panel_title .single_date, .top_panel_title .single_cat { font-size: 0.9em; } .slider_swiper.slider_titles_center[data-slides-per-view="1"] .slide_info { width: 45%; }
.slider_swiper[data-slides-per-view="1"] .slide_info .slide_title { font-size: 1.4em; }
.slider_swiper[data-slides-per-view="1"] .slide_info { padding: 1.1em 1.1em 1.8em; }  .container, .container-fluid {
padding-left:  10px;
padding-right: 10px;
}
.row, .columns_wrap {
margin-right: -20px;
}
.row > [class*="column-"], .columns_wrap > [class*="column-"] {
padding-right: 20px;
}
.row.column_padding_left, .columns_wrap.column_padding_left {
margin-left: -20px;
}
.row.column_padding_left > [class*="column-"], .columns_wrap.column_padding_left > [class*="column-"],
.row > [class*="column-"].column_padding_left, .columns_wrap > [class*="column-"].column_padding_left {
padding-left: 20px;
}
.row.column_padding_right, .columns_wrap.column_padding_right {
margin-right: -20px;
}
.row.column_padding_right > [class*="column-"], .columns_wrap.column_padding_right > [class*="column-"],
.row > [class*="column-"].column_padding_right, .columns_wrap > [class*="column-"].column_padding_right {
padding-right:20px;
}
.row.column_padding_center, .columns_wrap.column_padding_center {
margin-left: -10px;
margin-right: -10px;
}
.row.column_padding_center > [class*="column-"], .columns_wrap.column_padding_center > [class*="column-"],
.row > [class*="column-"].column_padding_center, .columns_wrap > [class*="column-"].column_padding_center {
padding-left:20px;
}
.row > [class*="column-"].column_padding_bottom, .columns_wrap > [class*="column-"].column_padding_bottom {
padding-bottom: 20px;
} .row:not(.columns_fluid) > [class*="column-"], .columns_wrap:not(.columns_fluid) > [class*="column-"] {
width:50%;
}
.row:not(.columns_fluid) > .column-1_1, .row:not(.columns_fluid) > .column-2_2, .row:not(.columns_fluid) > .column-3_3, .row:not(.columns_fluid) > .column-4_4,
.row:not(.columns_fluid) > .column-5_5,	.row:not(.columns_fluid) > .column-6_6, .row:not(.columns_fluid) > .column-7_7, .row:not(.columns_fluid) > .column-8_8,
.row:not(.columns_fluid) > .column-9_9, .row:not(.columns_fluid) > .column-10_10,
.row:not(.columns_fluid) > .column-11_11, .row:not(.columns_fluid) > .column-12_12,
.columns_wrap:not(.columns_fluid) > .column-1_1, .columns_wrap:not(.columns_fluid) > .column-2_2, .columns_wrap:not(.columns_fluid) > .column-3_3,
.columns_wrap:not(.columns_fluid) > .column-4_4, .columns_wrap:not(.columns_fluid) > .column-5_5, .columns_wrap:not(.columns_fluid) > .column-6_6,
.columns_wrap:not(.columns_fluid) > .column-7_7, .columns_wrap:not(.columns_fluid) > .column-8_8, .columns_wrap:not(.columns_fluid) > .column-9_9,
.columns_wrap:not(.columns_fluid) > .column-10_10, .columns_wrap:not(.columns_fluid) > .column-11_11, .columns_wrap:not(.columns_fluid) > .column-12_12,
.row:not(.columns_fluid) > .column-1_3:nth-child(3n), .columns_wrap:not(.columns_fluid) > .column-1_3:nth-child(3n),
.row:not(.columns_fluid) > .column-2_3, .columns_wrap:not(.columns_fluid) > .column-2_3,
.row:not(.columns_fluid) > .column-1_3.after_span_2, .columns_wrap:not(.columns_fluid) > .column-1_3.after_span_2,
.row:not(.columns_fluid) > .column-2_4, .columns_wrap:not(.columns_fluid) > .column-3_4,
.row:not(.columns_fluid) > .column-1_4.after_span_2, .columns_wrap:not(.columns_fluid) > .column-1_4.after_span_3,
.row:not(.columns_fluid) > .column-1_5:nth-child(5n), .columns_wrap:not(.columns_fluid) > .column-1_5:nth-child(5n),
.row:not(.columns_fluid) > .column-2_5, .columns_wrap:not(.columns_fluid) > .column-2_5,
.row:not(.columns_fluid) > .column-3_5, .columns_wrap:not(.columns_fluid) > .column-3_5,
.row:not(.columns_fluid) > .column-4_5, .columns_wrap:not(.columns_fluid) > .column-4_5,
.row:not(.columns_fluid) > .column-2_6, .columns_wrap:not(.columns_fluid) > .column-2_6,
.row:not(.columns_fluid) > .column-3_6, .columns_wrap:not(.columns_fluid) > .column-3_6,
.row:not(.columns_fluid) > .column-4_6, .columns_wrap:not(.columns_fluid) > .column-4_6,
.row:not(.columns_fluid) > .column-5_6, .columns_wrap:not(.columns_fluid) > .column-5_6	{
width:100%;
}
.row:not(.columns_fluid) > [class*="column-"]:nth-child(2n+3), .columns_wrap:not(.columns_fluid) > [class*="column-"]:nth-child(2n+3),
.row:not(.columns_fluid) > [class*="column-"]:nth-child(2n+4), .columns_wrap:not(.columns_fluid) > [class*="column-"]:nth-child(2n+4) {
padding-top: 20px;
}
.gallery.gallery-columns-9 .gallery-item {	width: 33.3333% !important; }
.gallery.gallery-columns-8 .gallery-item {	width: 33.3333% !important; }
.gallery.gallery-columns-7 .gallery-item {	width: 33.3333% !important; }
.gallery.gallery-columns-6 .gallery-item {	width: 33.3333% !important; }
.gallery.gallery-columns-5 .gallery-item {	width: 33.3333% !important; }
.gallery.gallery-columns-4 .gallery-item {	width: 33.3333% !important; }
.admin-bar.top_panel_over .top_panel_wrap {	top:46px; }
.admin-bar.top_panel_fixed .top_panel_wrap { top:46px; }
.admin-bar #debug_log { top:46px; } .post_layout_excerpt .post_featured { float: none !important; width: 100%; }
.post_format_video { overflow: visible !important; }
.post_format_video .post_featured { height: auto !important; }
.post_layout_excerpt .post_featured > .wp-video,
.post_layout_excerpt .post_featured > iframe {
left: 0;
position: relative;
top: 0;
transform: none;
}
.content .widget_popular_extra_posts .extra_post {
border-right: none;
margin: 0;
padding: 0;
width: 100%;
float: none;
}
.content .widget_popular_extra_posts .list_post .post_item { margin: 3.5em 0 0; padding: 3.5em 0 0; }
.content .widget_popular_extra_posts .list_post .post_item:first-child::before { display: block; }
.content .widget_popular_extra_posts .post_content { margin: 2.4em 0 0; padding: 2.4em 0 0; }
.content .widget_popular_extra_posts { padding: 4em 2.5em; }
.content .post_layout_excerpt .excerpt_content_wrap { padding: 3em 2.5em 3.5em; }
.post_layout_excerpt .post_title,
.body_style_boxed .post_layout_excerpt .post_title,
.body_style_wide .post_layout_excerpt .post_title { font-size: 1.7em; }
.post_layout_excerpt .post_content { padding: 2em 0 0; }
.post_layout_excerpt .more-link, .widget_popular_extra_posts .more-link { margin: 2.3em 0 0; }
.body_style_boxed .content .widget_popular_extra_posts,
.body_style_wide .content .widget_popular_extra_posts { padding: 4em 2.5em; }
.body_style_wide .content .widget_popular_extra_posts .extra_post .header_content,
.body_style_boxed .content .widget_popular_extra_posts .extra_post .header_content { min-height: 10.667em;}
.body_style_wide .content .widget_popular_extra_posts .extra_post .post_thumb,
.body_style_boxed .content .widget_popular_extra_posts .extra_post .post_thumb { width: 10.667em; }
.body_style_wide .content .widget_popular_extra_posts .post_title,
.body_style_boxed .content .widget_popular_extra_posts .post_title { font-size: 26px; }
.body_style_wide .content .widget_popular_extra_posts .post_info,
.body_style_boxed .content .widget_popular_extra_posts .post_info { letter-spacing: 0.07em; }
.body_style_wide .content .widget_popular_extra_posts .post_thumb,
.body_style_boxed .content .widget_popular_extra_posts .post_thumb { width: 8.333em; }
.content .widget_popular_extra_posts .extra_post .post_thumb { width: 8.333em; }
.content .widget_popular_extra_posts .extra_post .post_title,
.content .widget_popular_extra_posts .post_title { font-size: 26px; }
.widget_popular_extra_posts .post_info { font-size: 0.85em; }
.body_style_boxed .content .post_layout_excerpt:nth-child(2n+1)
.excerpt_content_wrap, .body_style_wide .content .post_layout_excerpt:nth-child(2n+1) .excerpt_content_wrap,
.body_style_boxed .content .post_layout_excerpt .excerpt_content_wrap,
.body_style_wide .content .post_layout_excerpt .excerpt_content_wrap { padding: 3em 2.5em 3.5em; } .post_layout_grid .post_title { font-size: 1.3em; } .post_featured_left > .post_featured,
.post_featured_right > .post_featured {
float: none;
margin-left: 0;
margin-bottom: 2em;
width: 100%;
} .single .nav-links a {
padding-top:1.5em;
padding-bottom:1.5em;
}
.single .nav-links .nav-previous a {
padding-left:4em;
padding-right:2em;
}
.single .nav-links .nav-next a {
padding-left:2em;
padding-right:4em;
} .comments_list_wrap ul ul { margin-left: 3.3333em; }
.comments_list_wrap ul ul ul { margin-left:0; }
.comments_list_wrap .comment_author_avatar {
position: static;
float:left;
margin: 0 2em 1em 0;
}
.comments_list_wrap .comment_content { padding-left:0; } .widget_area aside {
display: inline-block;
float:none;
vertical-align:top;
margin-bottom:1.75em;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.widget_area aside:nth-child(2n+1) { margin-left:0; }
.widget_area aside[class*="column-"] { margin-left:0; }
.sidebar aside { padding: 2.5em; }
.widget_area .widget_socials .social_item { margin: 0 0.8em 0.8em 0; }
td, th { padding:2px; }
.widget_area .post_item .post_title { margin-top:0; }
.widget_area .sc_tabs .sc_tabs_titles li + li { margin-left: 2.2em; }
.widget_area .column-1_1 #sb_instagram .sbi_item { min-width:25%; } .copyright_wrap .columns_wrap > div {
width:100% !important;
text-align:center;
}
.copyright_wrap .columns_wrap > .socials_area { padding-top:0 !important; }
.copyright_wrap .copyright_text { padding: 0; }
.copyright_wrap .copyright_text { font-size: 13px; } .scroll_to_top { right: 1em; }
.scroll_to_top.show { bottom: 1em; } .relatedWrap h3 { margin: 0 0 0.8em; }
.relatedWrap .related_item .thumb { margin-top: 20px; }
.relatedWrap .related_item .thumb img { width: 100%; }
.search_wrap .search_form { font-size: 0.85em; }
#sb_instagram.sbi_col_6.sbi_disable_mobile #sbi_images .sbi_item { width: 33.333%; }
.blog-yumprint-info-bar{ display: block !important; }
.format-audio.post_layout_excerpt .post_featured .post_audio { padding: 0 10px; }
.blog-yumprint-recipe { padding: 30px 30px; }
}
@media (max-width: 479px) {
body {	font-size: 13px; }
h1 { font-size:1.75em; }
h2 { font-size:1.65em; }
h3 { font-size:1.45em; }
h4 { font-size:1.25em; }
h5 { font-size:1em; }
h6 { font-size:1em; }
dt, b, strong, dfn, em, i { font-size: 14px; } .body_style_boxed .page_wrap {		width:100%; }
.slider_style_boxed, .content_wrap, .content_container {	width:300px; } .content { width: 100%; float: none; }
.sidebar { 				 width: 100%; float:none; margin-top:2.3077em; }
.body_style_boxed .content { width: 100%; }
.sidebar, .body_style_fullwide .sidebar { width: 100%; float:none; margin-top:2.3077em; padding: 0; }
.body_style_fullwide .sidebar { margin-top: 0; }
.body_style_boxed.sidebar_right .sidebar, .body_style_boxed.sidebar_left .sidebar { margin: 0; }
.sidebar_right .content, .sidebar_left .content { float: none; }
.sidebar aside { padding: 3em 1.4em !important; }
.body_style_boxed .sidebar aside { padding: 3em 2em !important; }
.body_style_fullwide .page_content_wrap { padding: 0 0 0; }
.page_content_wrap { padding: 3em 0 3em; }
.top_panel_title { padding: 5em 0; }
.post_layout_excerpt .post_featured,
.post_layout_excerpt .post_featured .slider_height_fixed,
.body_style_boxed .post_layout_excerpt .post_featured,
.body_style_boxed .post_layout_excerpt .post_featured .slider_height_fixed,
.body_style_wide .post_layout_excerpt .post_featured,
.body_style_wide .post_layout_excerpt .post_featured .slider_height_fixed { height: 280px; } .body_style_fullwide.sidebar_right .content { padding-right: 0; }
.body_style_fullwide.sidebar_right .sidebar { margin-left: 0; }
.body_style_fullwide.sidebar_left  .content { padding-left:  0; }
.body_style_fullwide.sidebar_left  .sidebar { margin-right:0; } .search_wrap .search_field { padding: 0 2.5em 0 2em; width: 10em !important; border-radius: 0; box-shadow: none; border: none; }
.search_wrap .search_submit { right: 0.5em; }
.top_user_panel_wrap .socials_wrap { padding-left: 20px; }
.search_wrap { padding-left: 10px; padding-right: 10px; }
.search_results.widget_area .post_item .post_thumb { height: 5.5em; width: 5.5em; }
.breadcrumbs, .top_panel_title .single_date, .top_panel_title .single_cat { font-size: 0.9em; }
.search_and_socials { float: none; }
.menu_mode_responsive .menu_user_responsive_button { margin: 0; }
.menu_mode_responsive .menu_user_nav_area { width: 100%; }
.menu_mode_responsive .menu_user_responsive_button { color: #ffffff; }
.menu_mode_responsive .menu_user_responsive_button { padding: 0.15em 0 0.1em; }
.menu_mode_responsive .menu_user_responsive_button:hover,
.menu_mode_responsive .menu_user_responsive_button.opened {
color: rgba(255,255,255,0.6) !important;
}
.top_user_panel_wrap { padding: 0 0; text-align: center; }
.logo img { max-height: 7em; } .slider_swiper.slider_titles_center[data-slides-per-view="1"] .slide_info { width: 55%; }
.slider_swiper[data-slides-per-view="1"] .slide_info .slide_title { font-size: 1.2em; }
.slider_swiper[data-slides-per-view="1"] .slide_info { padding: 1.1em 1.1em 1.4em; }
.swiper-button-prev, .swiper-container-rtl .swiper-button-next { left: 5px !important; }
.swiper-button-next, .swiper-container-rtl .swiper-button-prev { right: 5px !important; }
.slider_swiper .more-link { letter-spacing: 0.1em; margin: 1em 0 0; padding: 0.7em 1.3em; }
.slider_swiper .slide_cats, .slider_swiper .slide_date { letter-spacing: 0.5px; line-height: 1.8em; }
.slider_swiper .slider_prev, .slider_swiper .slider_next { height: 3em; line-height: 3em; width: 3em; } .menu_user_responsive a, .menu_main_responsive a { font-size: 1.2em; }
.menu_main_responsive li > a, .menu_main_responsive li li > a,
.menu_user_responsive li > a, .menu_user_responsive li li > a { padding: 0.8em 0; } .container, .container-fluid { padding-left:  5px; padding-right: 5px; }
.row, .columns_wrap {
margin-right: -10px;
}
.row > [class*="column-"], .columns_wrap > [class*="column-"] {
padding-right: 10px;
}
.row.column_padding_left, .columns_wrap.column_padding_left {
margin-left: -10px;
}
.row.column_padding_left > [class*="column-"], .columns_wrap.column_padding_left > [class*="column-"],
.row > [class*="column-"].column_padding_left, .columns_wrap > [class*="column-"].column_padding_left {
padding-left: 10px;
}
.row.column_padding_right, .columns_wrap.column_padding_right {
margin-right: -10px;
}
.row.column_padding_right > [class*="column-"], .columns_wrap.column_padding_right > [class*="column-"],
.row > [class*="column-"].column_padding_right, .columns_wrap > [class*="column-"].column_padding_right {
padding-right:10px;
}
.row.column_padding_center, .columns_wrap.column_padding_center {
margin-left: -5px;
margin-right: -5px;
}
.row.column_padding_center > [class*="column-"], .columns_wrap.column_padding_center > [class*="column-"],
.row > [class*="column-"].column_padding_center, .columns_wrap > [class*="column-"].column_padding_center {
padding-left:10px;
}
.row > [class*="column-"].column_padding_bottom, .columns_wrap > [class*="column-"].column_padding_bottom {
padding-bottom: 10px;
} .row:not(.columns_fluid) > [class*="column-"], .columns_wrap:not(.columns_fluid) > [class*="column-"] {	width:100%; }
.row.columns_fluid > [class*="column-"], .columns_wrap.columns_fluid > [class*="column-"] { width:50%; }
.row.columns_fluid > .column-1_1, .row.columns_fluid > .column-2_2, .row.columns_fluid > .column-3_3, .row.columns_fluid > .column-4_4, .row.columns_fluid > .column-5_5,
.row.columns_fluid > .column-6_6, .row.columns_fluid > .column-7_7, .row.columns_fluid > .column-8_8, .row.columns_fluid > .column-9_9, .row.columns_fluid > .column-10_10,
.row.columns_fluid > .column-11_11, .row.columns_fluid > .column-12_12,
.columns_wrap.columns_fluid > .column-1_1, .columns_wrap.columns_fluid > .column-2_2, .columns_wrap.columns_fluid > .column-3_3,
.columns_wrap.columns_fluid > .column-4_4, .columns_wrap.columns_fluid > .column-5_5, .columns_wrap.columns_fluid > .column-6_6,
.columns_wrap.columns_fluid > .column-7_7, .columns_wrap.columns_fluid > .column-8_8, .columns_wrap.columns_fluid > .column-9_9,
.columns_wrap.columns_fluid > .column-10_10, .columns_wrap.columns_fluid > .column-11_11, .columns_wrap.columns_fluid > .column-12_12,
.row.columns_fluid > .column-1_3:nth-child(3n), .columns_wrap.columns_fluid > .column-1_3:nth-child(3n),
.row.columns_fluid > .column-2_3, .columns_wrap.columns_fluid > .column-2_3,
.row.columns_fluid > .column-1_3.after_span_2, .columns_wrap.columns_fluid > .column-1_3.after_span_2,
.row.columns_fluid > .column-2_4, .columns_wrap.columns_fluid > .column-3_4,
.row.columns_fluid > .column-1_4.after_span_2, .columns_wrap.columns_fluid > .column-1_4.after_span_3,
.row.columns_fluid > .column-1_5:nth-child(5n), .columns_wrap.columns_fluid > .column-1_5:nth-child(5n),
.row.columns_fluid > .column-2_5, .columns_wrap.columns_fluid > .column-2_5,
.row.columns_fluid > .column-3_5, .columns_wrap.columns_fluid > .column-3_5,
.row.columns_fluid > .column-4_5, .columns_wrap.columns_fluid > .column-4_5,
.row.columns_fluid > .column-2_6, .columns_wrap.columns_fluid > .column-2_6,
.row.columns_fluid > .column-3_6, .columns_wrap.columns_fluid > .column-3_6,
.row.columns_fluid > .column-4_6, .columns_wrap.columns_fluid > .column-4_6,
.row.columns_fluid > .column-5_6, .columns_wrap.columns_fluid > .column-5_6	{
width:100%;
}
.row:not(.columns_fluid) > [class*="column-"]+[class*="column-"], .columns_wrap:not(.columns_fluid) > [class*="column-"]+[class*="column-"],
.row.columns_fluid > [class*="column-"]:nth-child(2n+3), .columns_wrap.columns_fluid > [class*="column-"]:nth-child(2n+3),
.row.columns_fluid > [class*="column-"]:nth-child(2n+4), .columns_wrap.columns_fluid > [class*="column-"]:nth-child(2n+4) {
padding-top: 10px;
}
.gallery.gallery-columns-9 .gallery-item {	width: 50% !important; }
.gallery.gallery-columns-8 .gallery-item {	width: 50% !important; }
.gallery.gallery-columns-7 .gallery-item {	width: 50% !important; }
.gallery.gallery-columns-6 .gallery-item {	width: 50% !important; }
.gallery.gallery-columns-5 .gallery-item {	width: 50% !important; }
.gallery.gallery-columns-4 .gallery-item {	width: 50% !important; }
.gallery.gallery-columns-3 .gallery-item {	width: 50% !important; } .admin-bar.top_panel_over .top_panel_wrap {	top:46px; }
.admin-bar.top_panel_fixed .top_panel_wrap { top:46px; }
.admin-bar #debug_log { top:46px; } .logo i { font-size:4em; } .post_featured_left > .post_featured,
.post_featured_right > .post_featured {
float: none;
margin-left: 0;
margin-bottom: 2em;
width: 100%;
}
.post_layout_grid .post_label,
.post_layout_grid .post_label {
left: 25px;
top: 25px;
}
.post_item_single .post_label,
.post_item .post_label {
height: 4em !important;
line-height: 4em !important;
right: 25px;
width: 4em !important;
}
.post_item .post_footer { text-align:center; }
.post_layout_excerpt .post_footer .post_date,
.post_layout_excerpt .post_footer .post_edit { float: none; display:inline-block; }
.post_layout_excerpt .post_footer .post_share { float:none; display:block; }
.post_item .excerpt_content_wrap .post_info { font-size: 0.85em; letter-spacing: 0.06em; }
.post_item .post_categories { font-size: 0.85em; letter-spacing: 0.06em; }
.post_item .excerpt_content_wrap .post_info .post_counters_item + .post_counters_item { margin-left: 1.25em; } .comments_list_wrap ul ul { margin-left: 3.3333em; }
.comments_list_wrap ul ul ul { margin-left:0; }
.comments_list_wrap .comment_author_avatar { position: static; float:left; margin: 0 1.2em 1em 0; }
.comments_list_wrap .comment_content { padding-left:0; }
.comments_list_wrap .comment_date, .comments_list_wrap .comment_time { margin-left: 0.6em; }
.comments_wrap .comments_field { margin-bottom: 10px; }
.comments_wrap .comments_message { margin-top: 10px; margin-bottom: 20px; } .single .nav-links a { padding-top:1.5em; padding-bottom:1.5em; }
.single .nav-links .nav-previous a { padding-left:4em; padding-right:2em; }
.single .nav-links .nav-next a { padding-left:2em; padding-right:4em; }
.single .nav-links .nav-previous, .single .nav-links .nav-next { width: 100%; padding:0; margin:0; }
.single .nav-links .nav-previous + .nav-next { margin-top:1.5em; }
.post_item_single .post_taxes,
.post_item_single .post_counters { display: block; float: none; width: 100%; margin:0 0 1em 0; }
.post_item_single .post_counters {  margin-top: 1.5em; text-align: right; }
.post_item_single .post_counters .social_items { font-size: 14px; }
.post_item_single .post_counters .social_item + .social_item { margin-left: 1em; } .post_layout_excerpt .post_featured { float: none !important; width: 100%; }
.post_format_video { overflow: visible !important; }
.post_format_video .post_featured { height: auto !important; }
.post_layout_excerpt .post_featured > .wp-video,
.post_layout_excerpt .post_featured > iframe {
left: 0;
position: relative;
top: 0;
transform: none;
}
.content .widget_popular_extra_posts .extra_post {
border-right: none;
margin: 0;
padding: 0;
width: 100%;
float: none;
}
.content .widget_popular_extra_posts .list_post .post_item { margin: 3.5em 0 0; padding: 3.5em 0 0; }
.content .widget_popular_extra_posts .list_post .post_item:first-child::before { display: block; }
.content .widget_popular_extra_posts .post_content { margin: 2.4em 0 0; padding: 2.4em 0 0; }
.content .widget_popular_extra_posts { padding: 3.2em 2em; }
.content .post_layout_excerpt .excerpt_content_wrap { padding: 2em 2em 3.5em; }
.post_layout_excerpt .post_title,
.body_style_boxed .post_layout_excerpt .post_title,
.body_style_wide .post_layout_excerpt .post_title { font-size: 1.7em; }
.post_layout_excerpt .post_content { padding: 2em 0 0; }
.post_layout_excerpt .more-link, .widget_popular_extra_posts .more-link { margin: 2.3em 0 0; }
.body_style_boxed .content .widget_popular_extra_posts,
.body_style_wide .content .widget_popular_extra_posts { padding: 3.2em 2em; }
.body_style_boxed .content .widget_popular_extra_posts .extra_post,
.body_style_wide .content .widget_popular_extra_posts .extra_post { margin: 0; padding: 0; }
.body_style_wide .content .widget_popular_extra_posts .extra_post .post_thumb,
.body_style_boxed .content .widget_popular_extra_posts .extra_post .post_thumb { margin: 0 1em 0 0; width: 6.5em; }
.body_style_wide .content .widget_popular_extra_posts .post_title,
.body_style_boxed .content .widget_popular_extra_posts .post_title { font-size: 16px; }
.body_style_wide .content .widget_popular_extra_posts .post_info,
.body_style_boxed .content .widget_popular_extra_posts .post_info { letter-spacing: 0.07em; }
.body_style_wide .content .widget_popular_extra_posts .post_thumb,
.body_style_boxed .content .widget_popular_extra_posts .post_thumb { width: 6.4em; }
.content .widget_popular_extra_posts .extra_post .post_thumb,
.content .widget_popular_extra_posts .post_thumb { margin: 0 1em 0 0; width: 6.5em; }
.content .widget_popular_extra_posts .list_post .post_item + .post_item { margin: 3em 0 0; padding: 3em 0 0; }
.content .widget_popular_extra_posts .extra_post .post_title,
.content .widget_popular_extra_posts .post_title { font-size: 16px; margin: 0 0 0.5em; }
.widget_popular_extra_posts .post_info { font-size: 0.85em; line-height: 1.5em; }
.widget_popular_extra_posts .post_info .post_counters_item { display: block; margin: 0 !important; }
.body_style_boxed .content .post_layout_excerpt:nth-child(2n+1)
.excerpt_content_wrap, .body_style_wide .content .post_layout_excerpt:nth-child(2n+1) .excerpt_content_wrap,
.body_style_boxed .content .post_layout_excerpt .excerpt_content_wrap,
.body_style_wide .content .post_layout_excerpt .excerpt_content_wrap { padding: 2em 2em 3.5em; }
.post_layout_excerpt .more-link, .widget_popular_extra_posts .more-link { letter-spacing: 0.1em; padding: 0.7em 1.2em; }
.body_style_boxed .content .widget_popular_extra_posts .extra_post,
.body_style_wide .content .widget_popular_extra_posts .extra_post { margin: 0; padding: 0; } .post_layout_grid .post_content { padding: 0.5em 1.5em 1.6em; }
.post_layout_grid .post_header { padding: 2.5em 1.5em 0; }
.post_layout_grid .post_footer { padding: 0 2.5em 1.5em; } .widget_area aside {
display: inline-block;
float:none;
vertical-align:top;
width:100%;
margin-left:0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
td, th { padding:2px; }
.widget_area .post_item .post_title { margin-top:0; }
.widget_area .sc_tabs .sc_tabs_titles li + li { margin-left:2em; }
.widget_area .column-1_1 #sb_instagram .sbi_item { min-width:25%; }
.widget_area .sc_tabs .sc_tabs_titles li { font-size: 1.1em; } .copyright_wrap { padding: 2.5em 0.5em; }
.copyright_wrap .columns_wrap > div { width: 100% !important; text-align:center; }
.copyright_wrap .columns_wrap > .socials_area { padding-top:0 !important; }
.copyright_wrap .copyright_text { padding: 0; }
.footer_wrap { padding: 3em 0 0; }
.menu_footer_nav { margin: 0 1em; }
.copyright_wrap .logo { margin: 1.5em 0 2em; } .scroll_to_top { right: 1em; }
.scroll_to_top.show { bottom: 1em; } .logo { max-height: 100%; }
#sb_instagram #sbi_load { margin: 3em 0; }
.sc_contact_form .result { border: 1px solid #eee; line-height: 1.5em; padding: 1em; }
.sc_contact_form_item { margin-bottom: 20px; padding-top: 0 !important; }
.comments_list_wrap .comments_list_title, .relatedWrap h3, .comments_wrap .comments_form_title { font-size: 2.2em; }
.relatedWrap .related_item h5 { margin: 1em 0 0; }
.relatedWrap .related_item .thumb { margin: 0 auto; max-width: 70%; min-height: 16em; }
.relatedWrap .related_item { margin-bottom: 2em; }
.search_wrap .search_form { font-size: 0.85em; }
#sb_instagram.sbi_col_6.sbi_disable_mobile #sbi_images .sbi_item { width: 33.333%; }
.blog-yumprint-info-bar{ display: block !important; }
.nav-links-old > span > a { padding: 1.5em 1em; }
blockquote { margin: 1em 0 1em 2em; }
.post_item_404 .page_search .search_wrap { max-width: 85%; width: 100%; }
.search_wrap .search_results { padding: 1em 0.5em; right: -5.5em; width: 16em; }
.format-audio.post_layout_excerpt .post_featured .post_audio { padding: 0 8px; }
.widget_area .widget_advert.widget_fullwidth .image_wrap { text-align: center; }
.widget_area .widget_advert .image_wrap img { width: auto; }
.likes_style { height: 50px; right: 25px; top: 25px; width: 50px; }
.likes_style .post_counters_text { font-size: 11px; height: 20px; line-height: 20px; }
.likes_style:hover .post_counters_text { top: -22px; }
.likes_style::before { padding-top: 12px; }
.post_item_404 .page_title { font-size: 6em; }
.post_item_404 .page_subtitle { font-size: 1.6em; line-height: 1.3em; }
.post_item_404 .page_description,
.post_item_404 .page_subtitle,
.post_item_404 .page_title { padding: 0 15px; }
.blog-yumprint-recipe .blog-yumprint-recipe-title { font-size: 18px !important; }
.blog-yumprint-recipe { padding: 20px 15px; }
.blog-yumprint-method-section { margin-top: 5px !important; }
.post_item_none_search .page_title,
.post_item_none_archive .page_title {
font-size: 3em;
}
}body{font-family:Carrois Gothic,sans-serif;	color:#57585b;	background-color:#ffffff}h1{font-family:Carrois Gothic,sans-serif}h2{font-family:Carrois Gothic,sans-serif}h3{font-family:Carrois Gothic,sans-serif}h4{font-family:Carrois Gothic,sans-serif}h5{font-family:inherit}h6{font-family:Carrois Gothic,sans-serif}h1,h2,h3,h4,h5,h6,h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{color:#222325}dt,b,strong,s,strike,del{color:#222325}dt,b,strong,dfn,em,i{font-family:Cardo,serif}a{font-family:inherit;	color:#f28837}a:hover{color:#d05007}blockquote{font-family:Cardo,serif;	color:#222325}blockquote>a,blockquote>p>a,blockquote cite{font-family:Carrois Gothic,sans-serif}blockquote:before{color:#f28837}table{color:#222325}td,th{border-color:#faf2e7}table>thead>tr,table>body>tr:first-child{color:#ffffff;	background-color:#d05007}hr{border-color:#faf2e7}figure figcaption,.wp-caption-overlay .wp-caption .wp-caption-text,.wp-caption-overlay .wp-caption .wp-caption-dd{color:#4b4c4f;	background-color:#faf2e7}ul>li:before{color:#f28837}li>ol,li>ul,.post_content ul ul>li:before,.comment ul ul>li:before{color:#8e9399}input[type="text"],input[type="number"],input[type="email"],input[type="search"],input[type="password"],.select_container,textarea{font-family:inherit;	color:#4b4c4f;	background-color:#fcf8f3}.select_container select{font-family:inherit;	color:#4b4c4f}input[type="text"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="search"]:focus,input[type="password"]:focus,.select_container:hover,textarea:focus{color:#8e9399;	background-color:#faf2e7}.select_container select:focus{color:#8e9399}.select_container:after{color:#a8aaad;	border-color:#a8aaad}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#a8aaad}input[type="radio"] + label:before,input[type="checkbox"] + label:before{border-color:#ebf2f7;	background-color:#faf2e7}.sticky .sticky_label{color:#ffffff;	background-color:#222325}.page_wrap{ background-color:#ffffff}.body_style_fullwide .page_wrap .page_content_wrap{background-color:#faf2e7}.top_panel_logo_wrap{ }.logo b{font-family:Carrois Gothic,sans-serif;	color:#a8aaad}.logo b:after{background-color:#a8aaad}.logo i{font-family:Carrois Gothic,sans-serif;	color:#a8aaad}.logo_slogan{color:#4b4c4f}.socials_wrap .social_item a{color:#f28837}.socials_wrap .social_item a:hover{color:#ffffff}.socials_wrap.socials_share .social_item a:hover{color:#d05007}.search_wrap .search_submit{color:#f28837}.search_wrap .search_submit:hover{color:#ffffff}.menu_user_nav li a,.menu_mode_responsive .menu_user_responsive_button{ color:#aaafb5}.menu_mode_responsive .menu_user_responsive_button:hover,.menu_mode_responsive .menu_user_responsive_button.opened,.menu_user_nav li>a:hover,.menu_user_nav li.sfHover>a,.menu_user_nav li.current-menu-item>a,.menu_user_nav li.current-menu-parent>a,.menu_user_nav li.current-menu-ancestor>a{color:#d05007}.menu_mode_responsive .menu_user_responsive a{color:#8e9399}.menu_mode_responsive .menu_user_responsive li.opened>a,.menu_mode_responsive .menu_user_responsive li.sfHover>a,.menu_mode_responsive .menu_user_responsive li.current-menu-item>a,.menu_mode_responsive .menu_user_responsive li.current-menu-parent>a,.menu_mode_responsive .menu_user_responsive li.current-menu-ancestor>a,.menu_mode_responsive .menu_user_responsive a:hover{color:#d05007}@media (max-width:479px){.menu_mode_responsive .menu_user_nav_area{background-color:#f28837}}.top_panel_wrap{border-color:#ebf2f7}.menu_main_wrap{ }.top_panel_fixed .menu_main_wrap{ }.menu_main_nav li>a{color:#4b4c4f}.menu_main_nav>li>a{color:#4b4c4f}.menu_main_nav>li>a,.menu_main_nav>li + li>a{border-color:#ebf2f7}.menu_main_nav>li>a:hover,.menu_main_nav>li.sfHover>a,.menu_main_nav>li.current-menu-item>a,.menu_main_nav>li.current-menu-parent>a,.menu_main_nav>li.current-menu-ancestor>a{color:#d05007}.menu_main_nav>li>a:hover:before,.menu_main_nav>li.sfHover>a:before,.menu_main_nav>li.current-menu-item>a:before,.menu_main_nav>li.current-menu-parent>a:before,.menu_main_nav>li.current-menu-ancestor>a:before{background-color:#d05007}.menu_main_nav>li li>a:hover,.menu_main_nav>li li.sfHover>a,.menu_main_nav>li li.current-menu-item>a,.menu_main_nav>li li.current-menu-parent>a,.menu_main_nav>li li.current-menu-ancestor>a{color:#d05007}.menu_main_nav>li ul{background-color:#faf2e7}.menu_mode_responsive .menu_main_responsive_button{color:#4b4c4f}.menu_mode_responsive .menu_main_responsive_button:hover{color:#d05007}.menu_mode_responsive .menu_main_responsive a{color:#8e9399}.menu_mode_responsive .menu_main_responsive a.go,.menu_mode_responsive .menu_main_responsive li.opened>a,.menu_mode_responsive .menu_main_responsive li.sfHover>a,.menu_mode_responsive .menu_main_responsive li.current-menu-item>a,.menu_mode_responsive .menu_main_responsive li.current-menu-parent>a,.menu_mode_responsive .menu_main_responsive li.current-menu-ancestor>a,.menu_mode_responsive .menu_main_responsive a:hover{color:#d05007}.slider_swiper[data-slides-per-view="1"] .slide_cats{color:#f28837}.slider_swiper.slider_multi .slide_cats a:hover,.slider_swiper.slider_multi .slide_title a:hover,.slider_swiper.slider_multi a:hover .slide_title{color:#d05007}.slider_swiper .slider_prev,.slider_swiper .slider_next{color:#ffffff;	background-color:#f28837}.slider_swiper .slider_prev:hover,.slider_swiper .slider_next:hover{background-color:#d05007;	color:#ffffff}.slider_swiper .swiper-pagination-bullet-active{background-color:#f28837}.slider_swiper .slide_date{color:#8e9399}.slider_swiper .more-link{background-color:#f28837}.slider_swiper .more-link:hover{background-color:#d05007}.post_layout_grid.post_item{color:#4b4c4f;	background-color:#faf2e7}.post_item .post_label,.post_featured .post_label{background-color:#f28837;	color:#ffffff}.post_featured .post_label.label_pinit:hover{color:#ffffff;	background-color:#d05007}.post_item a{ }.post_item .post_categories{color:#f28837}.post_item a:hover,.post_item a:hover b,.post_item a:hover sup{color:#d05007}.post_item .more-link{background-color:#f28837;	color:#ffffff}.post_item .more-link:hover{border-color:#d05007;	background-color:#d05007;	color:#ffffff}.widget_area .widget_twitter .twitter_follow{background-color:#f28837;	color:#ffffff}.widget_area .widget_twitter .twitter_follow:hover{background-color:#d05007;	color:#ffffff}.post_item .post_footer{border-color:rgba(235,242,247,0.6);	color:#a8aaad}.post_item .post_footer .post_date a,.post_item .post_footer .post_edit a{color:#a8aaad}.post_item .post_footer .post_date a:hover,.post_item .post_footer .post_edit a:hover{color:#8e9399}.post_item .post_footer .post_more a{border-color:#ebf2f7;	color:#a8aaad}.post_item:hover .post_footer .post_more a{border-color:#d05007;	color:#d05007}.post_item .post_footer .post_more a:hover{border-color:#d05007;	background-color:#d05007;	color:#ffffff}.post_item .excerpt_content_wrap .post_info,.widget_popular_extra_posts .post_info{color:#8e9399}.post_featured:after{background-color:#ffffff}.post_counters_item:before{color:#222325}.format-aside .post_content,.format-quote:not(.post_item_single) .post_content,.format-link .post_content,.format-status .post_content{background-color:#fcf8f3;	color:#222325;	font-family:Cardo,serif}.excerpt_content_wrap .icon_format{color:#f28837}.format-aside .post_content a,.format-quote:not(.post_item_single) .post_content a,.format-status .post_content a{color:#171a1b}.format-quote:not(.post_item_single) .post_content a{color:#ffffff}.format-aside .post_content a:hover,.format-quote:not(.post_item_single) .post_content a:hover,.format-status .post_content a:hover{color:#505b5e}.format-link .post_content a{color:#f28837}.format-link .post_content a:hover{color:#d05007}.format-quote.post_item_single .post_content a{color:#222325}.format-quote.post_item_single .post_content a:hover{color:#f28837}.is_stream .format-quote:not(.post_item_single) blockquote{color:#ffffff}.format-quote.post_item_single .post_content:before{color:#f28837}.format-chat p>b,.format-chat p>strong{color:#222325}.nav-links-old{background-color:#fcf8f3}.nav-links-old a{color:#222325;	background-color:#fcf8f3}.nav-links-old a:hover,.nav-links-old a:active,.nav-links-old a:focus{color:#ffffff;	background-color:#f28837}.page_links>a,.nav-links .page-numbers{color:#222325;	background-color:#faf2e7}.page_links>span:not(.page_links_title),.page_links>a:hover,.page_links>a:focus,.nav-links .page-numbers.current,.nav-links a.page-numbers:hover{color:#ffffff;	background-color:#d05007}.single .nav-links{border-color:#faf2e7}.post_item_single .post_header .post_date{color:#8e9399}.post_item_single .post_taxes .cats_label,.post_item_single .post_taxes .tags_label{color:#222325}.post_item_single .post_taxes a{color:#8e9399}.post_item_single .post_taxes a:hover{color:#222325}.post_item_single .post_counters .post_counters_item,.post_item_single .post_counters .socials_caption{color:#222325}.post_item_single .post_counters a.post_counters_item:hover,.post_item_single .post_counters .socials_caption:hover{color:#f28837}.author_info{background-color:#fcf8f3;	color:#4b4c4f}.author_info .author_title{color:#8e9399}.single .nav-links .nav-links{border-color:#faf2e7}.single .nav-links a{background-color:#faf2e7;	color:#a8aaad}.single .nav-links a:hover,.single .nav-links a:focus{background-color:#fcf8f3;	border-color:#d05007;	color:#8e9399}.single .nav-links a:after{border-color:#ebf2f7}.image-navigation .nav-previous a:after,.image-navigation .nav-next a:after{background-color:#faf2e7;	border-color:#ebf2f7;	color:#a8aaad}.image-navigation .nav-previous a:hover,.image-navigation .nav-next a:hover{background-color:#faf2e7;	border-color:#ebf2f7;	color:#f28837}.image-navigation .nav-previous a:hover:after,.image-navigation .nav-next a:hover:after{color:#f28837}.sc_contact_form,.comments_list_wrap,.comments_form_wrap{border-color:#faf2e7}.comments_list_wrap li + li,.comments_list_wrap li ul{border-color:#faf2e7}.comments_list_wrap .comment_text{color:#57585b}.comments_list_wrap .comment_date,.comments_list_wrap .comment_time{color:#8e9399}.sc_contact_form button,.comments_wrap .form-submit input[type="submit"],.comments_wrap .form-submit input[type="button"]{background-color:#f28837;	color:#ffffff}.sc_contact_form button:hover,.comments_wrap .form-submit input[type="submit"]:hover,.comments_wrap .form-submit input[type="button"]:hover,.sc_contact_form button:focus,.comments_wrap .form-submit input[type="submit"]:focus,.comments_wrap .form-submit input[type="button"]:focus{background-color:#d05007}.sc_contact_form .result{color:#ffffff;	border-color:#d05007;	background-color:#f28837}.top_panel_title{background-color:#222325}.top_panel_title .page_caption{color:#ffffff}.breadcrumbs,.top_panel_title .single_date{color:#a8aaad}.breadcrumbs a{color:#ffffff}.top_panel_title .single_cat{color:#f28837}.post_header .single_cat{color:#f28837}.sidebar{background-color:#faf2e7}.sidebar aside{color:#4b4c4f}.top_section_wrap{background-color:#fcf8f3}.widget_area input[type="text"],.widget_area input[type="number"],.widget_area input[type="email"],.widget_area input[type="search"],.widget_area input[type="password"],.widget_area .select_container,.widget_area .mc4wp_wrap,.widget_area .widget_search form,.widget_area textarea{color:#57585b;	background-color:#ffffff}.widget_area input[type="text"]:focus,.widget_area input[type="number"]:focus,.widget_area input[type="email"]:focus,.widget_area input[type="search"]:focus,.widget_area input[type="password"]:focus,.widget_area .select_container:hover,.widget_area .mc4wp_wrap:hover,.widget_area .widget_search form:hover,.widget_area textarea:focus{color:#222325;	background-color:#ffffff}.widget_area .select_container select{color:#57585b}.widget_area .select_container:hover select,.widget_area .select_container select:focus{color:#222325}.widget_area .mc4wp_wrap:after,.widget_area .widget_search form:after,.widget_area .select_container:after{color:#b5b8b9;	border-color:#b5b8b9}.widget_area input::-webkit-input-placeholder,.widget_area textarea::-webkit-input-placeholder{color:#b5b8b9}.widget_area h1,.widget_area h2,.widget_area h3,.widget_area h4,.widget_area h5,.widget_area h6,.widget_area h1 a,.widget_area h2 a,.widget_area h3 a,.widget_area h4 a,.widget_area h5 a,.widget_area h6 a,.copyright_wrap h1,.copyright_wrap h2,.copyright_wrap h3,.copyright_wrap h4,.copyright_wrap h5,.copyright_wrap h6,.copyright_wrap h1 a,.copyright_wrap h2 a,.copyright_wrap h3 a,.copyright_wrap h4 a,.copyright_wrap h5 a,.copyright_wrap h6 a{color:#222325}.widget_area a,.copyright_wrap a{color:#f28837}.widget_area a:hover,.copyright_wrap a:hover{color:#d05007}.widget_area ul li{color:#a8aaad}.widget_area ul li a{color:#57585b}.widget_area ul li a:hover{color:#d05007}.widget_area ul li:before{color:#f28837}.widget_area .widget_twitter ul li:before{color:#f28837}.widget_area .widget_twitter a{color:#f28837}.widget_area .widget_twitter a:hover{color:#d05007}.widget_area .widget_twitter ul li{color:#57585b}.search_results.widget_area .post_item + .post_item{border-color:#faf2e7}.widget_area .post_info_counters .post_counters_item{color:#8e9399}.widget_area .post_info_counters .post_counters_item:hover{color:#a8aaad}.widget_area .mc4wp_wrap input[type="submit"]{background-color:#f28837}.widget_area .mc4wp_wrap input[type="submit"]:hover{background-color:#d05007}.widget_area .mc4wp-form .mini{color:#8e9399} #sb_instagram .sbi_follow_btn a{background-color:#f28837}#sb_instagram .sbi_follow_btn a:hover,#sb_instagram .sbi_follow_btn a:focus,#sb_instagram .sbi_follow_btn a:active{background-color:#d05007}.widget_area .widget_bg_image a,.widget_area .widget_bg_image ul li a{color:#f28837}.widget_area .widget_bg_image a:hover,.widget_area .widget_bg_image ul li a:hover{color:#d05007}.widget_area .widget_product_tag_cloud a,.widget_area .widget_tag_cloud a{background-color:#ffffff;	color:#222325;	border-color:#f28837}.widget_area .widget_product_tag_cloud a:hover,.widget_area .widget_tag_cloud a:hover{background-color:#d05007;	color:#ffffff;	border-color:#d05007}.widget_area .widget_rss li{color:#4b4c4f}.widget_area .widget_rss .rss-date{color:#a8aaad}.widget_area .widget_rss li+li{border-color:rgba(235,242,247,0.6)}.widget_area .widget_rss li>a{font-family:Carrois Gothic,sans-serif;	color:#8e9399}.widget_area .widget_rss li>a:hover{color:#d05007}.widget_area .widget_recent_comments span.comment-author-link{color:#8e9399}.widget_area .widget_calendar table{color:#4b4c4f}.widget_area .widget_calendar tbody td a,.widget_area .widget_calendar th{color:#8e9399}.widget_area .widget_calendar tbody td a:after{color:#f28837}.widget_area .widget_calendar tbody td a:hover{color:#d05007}.widget_area .widget_calendar td#today{color:#ffffff}.widget_area .widget_calendar td#today:before{background-color:#f28837}.widget_area .widget_calendar td#today a,.widget_area .widget_calendar td#today a:after{color:#ffffff}.widget_area .widget_calendar #prev a,.widget_area .widget_calendar #next a{color:#8e9399}.widget_area .widget_calendar #prev a span,.widget_area .widget_calendar #next a span{border-color:#ebf2f7;	color:#4b4c4f}.widget_area .widget_calendar #prev a:hover,.widget_area .widget_calendar #next a:hover,.widget_area .widget_calendar #prev a:hover span,.widget_area .widget_calendar #next a:hover span{color:#d05007}.widget_area .widget_calendar #prev a:hover span,.widget_area .widget_calendar #next a:hover span{border-color:#d05007}.widget_area .widget_socials .social_item span,.widget_area .widget_aboutme .social_item span{background-color:#f28837;	color:#ffffff}.widget_area .widget_socials .social_item a:hover span,.widget_area .widget_aboutme .social_item a:hover span{background-color:#d05007}.post_item_single .post_counters .social_items{background-color:#faf2e7}.widget_area .sc_tabs .sc_tabs_titles li a{color:#8e9399}.widget_area .sc_tabs .sc_tabs_titles li.ui-tabs-active a{color:#222325}.widget_area .sc_tabs .sc_tabs_titles li.ui-tabs-active:after{background-color:#222325}.copyright_wrap{color:#8e9399}.footer_wrap{background-color:#ffffff;	border-color:#ebf2f7}.menu_footer_nav li a{ color:#aaafb5}.menu_footer_nav li a:hover{color:#f28837}.copyright_wrap .socials_wrap a{background-color:#f28837;	color:#ffffff}.copyright_wrap .socials_wrap a:hover{background-color:#d05007;	color:#ffffff}.copyright_wrap .copyright_text{}.scroll_to_top{background-color:#f28837;	color:#ffffff}.scroll_to_top:hover{background-color:#d05007;	color:#ffffff}.relatedWrap .related_item .thumb{background-color:#faf2e7}.relatedWrap{border-color:#faf2e7}.relatedInfo .post_counters_comments{color:#8e9399}.likes_style{background-color:#f28837;	color:#ffffff}.likes_style:hover{background-color:#d05007;	color:#ffffff}.likes_style.disabled{background-color:#f28837}.likes_style.disabled:hover{background-color:#d05007}.mejs-offscreen{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal}.mejs-container{background:#000;font-family:Helvetica,Arial,serif;position:relative;text-align:left;text-indent:0;vertical-align:top}.mejs-container,.mejs-container *{box-sizing:border-box}.mejs-container video::-webkit-media-controls,.mejs-container video::-webkit-media-controls-panel,.mejs-container video::-webkit-media-controls-panel-container,.mejs-container video::-webkit-media-controls-start-playback-button{-webkit-appearance:none;display:none!important}.mejs-fill-container,.mejs-fill-container .mejs-container{height:100%;width:100%}.mejs-fill-container{background:transparent;margin:0 auto;overflow:hidden;position:relative}.mejs-container:focus{outline:none}.mejs-iframe-overlay{height:100%;position:absolute;width:100%}.mejs-embed,.mejs-embed body{background:#000;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.mejs-fullscreen{overflow:hidden!important}.mejs-container-fullscreen{bottom:0;left:0;overflow:hidden;position:fixed;right:0;top:0;z-index:1000}.mejs-container-fullscreen .mejs-mediaelement,.mejs-container-fullscreen video{height:100%!important;width:100%!important}.mejs-background,.mejs-mediaelement{left:0;position:absolute;top:0}.mejs-mediaelement{height:100%;width:100%;z-index:0}.mejs-poster{background-position:50% 50%;background-repeat:no-repeat;background-size:cover;left:0;position:absolute;top:0;z-index:1}:root .mejs-poster-img{display:none}.mejs-poster-img{border:0;padding:0}.mejs-overlay{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;left:0;position:absolute;top:0}.mejs-layer{z-index:1}.mejs-overlay-play{cursor:pointer}.mejs-overlay-button{background:url(//reetikamitra.com/wp-includes/js/mediaelement/mejs-controls.svg) no-repeat;background-position:0 -39px;height:80px;width:80px}.mejs-overlay:hover>.mejs-overlay-button{background-position:-80px -39px}.mejs-overlay-loading{height:80px;width:80px}.mejs-overlay-loading-bg-img{-webkit-animation:a 1s linear infinite;animation:a 1s linear infinite;background:transparent url(//reetikamitra.com/wp-includes/js/mediaelement/mejs-controls.svg) -160px -40px no-repeat;display:block;height:80px;width:80px;z-index:1}@-webkit-keyframes a{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes a{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.mejs-controls{bottom:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:40px;left:0;list-style-type:none;margin:0;padding:0 10px;position:absolute;width:100%;z-index:3}.mejs-controls:not([style*="display: none"]){background:rgba(255,0,0,.7);background:-webkit-linear-gradient(transparent,rgba(0,0,0,.35));background:linear-gradient(transparent,rgba(0,0,0,.35))}.mejs-button,.mejs-time,.mejs-time-rail{font-size:10px;height:40px;line-height:10px;margin:0;width:32px}.mejs-button>button{background:transparent url(//reetikamitra.com/wp-includes/js/mediaelement/mejs-controls.svg);border:0;cursor:pointer;display:block;font-size:0;height:20px;line-height:0;margin:10px 6px;overflow:hidden;padding:0;position:absolute;text-decoration:none;width:20px}.mejs-button>button:focus{outline:1px dotted #999}.mejs-container-keyboard-inactive [role=slider],.mejs-container-keyboard-inactive [role=slider]:focus,.mejs-container-keyboard-inactive a,.mejs-container-keyboard-inactive a:focus,.mejs-container-keyboard-inactive button,.mejs-container-keyboard-inactive button:focus{outline:0}.mejs-time{box-sizing:content-box;color:#fff;font-size:11px;font-weight:700;height:24px;overflow:hidden;padding:16px 6px 0;text-align:center;width:auto}.mejs-play>button{background-position:0 0}.mejs-pause>button{background-position:-20px 0}.mejs-replay>button{background-position:-160px 0}.mejs-time-rail{direction:ltr;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;height:40px;margin:0 10px;padding-top:10px;position:relative}.mejs-time-buffering,.mejs-time-current,.mejs-time-float,.mejs-time-float-corner,.mejs-time-float-current,.mejs-time-hovered,.mejs-time-loaded,.mejs-time-marker,.mejs-time-total{border-radius:2px;cursor:pointer;display:block;height:10px;position:absolute}.mejs-time-total{background:hsla(0,0%,100%,.3);margin:5px 0 0;width:100%}.mejs-time-buffering{-webkit-animation:b 2s linear infinite;animation:b 2s linear infinite;background:-webkit-linear-gradient(135deg,hsla(0,0%,100%,.4) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.4) 0,hsla(0,0%,100%,.4) 75%,transparent 0,transparent);background:linear-gradient(-45deg,hsla(0,0%,100%,.4) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.4) 0,hsla(0,0%,100%,.4) 75%,transparent 0,transparent);background-size:15px 15px;width:100%}@-webkit-keyframes b{0%{background-position:0 0}to{background-position:30px 0}}@keyframes b{0%{background-position:0 0}to{background-position:30px 0}}.mejs-time-loaded{background:hsla(0,0%,100%,.3)}.mejs-time-current,.mejs-time-handle-content{background:hsla(0,0%,100%,.9)}.mejs-time-hovered{background:hsla(0,0%,100%,.5);z-index:10}.mejs-time-hovered.negative{background:rgba(0,0,0,.2)}.mejs-time-buffering,.mejs-time-current,.mejs-time-hovered,.mejs-time-loaded{left:0;-webkit-transform:scaleX(0);-ms-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;-webkit-transition:all .15s ease-in;transition:all .15s ease-in;width:100%}.mejs-time-buffering{-webkit-transform:scaleX(1);-ms-transform:scaleX(1);transform:scaleX(1)}.mejs-time-hovered{-webkit-transition:height .1s cubic-bezier(.44,0,1,1);transition:height .1s cubic-bezier(.44,0,1,1)}.mejs-time-hovered.no-hover{-webkit-transform:scaleX(0)!important;-ms-transform:scaleX(0)!important;transform:scaleX(0)!important}.mejs-time-handle,.mejs-time-handle-content{border:4px solid transparent;cursor:pointer;left:0;position:absolute;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);z-index:11}.mejs-time-handle-content{border:4px solid hsla(0,0%,100%,.9);border-radius:50%;height:10px;left:-7px;top:-4px;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);width:10px}.mejs-time-rail .mejs-time-handle-content:active,.mejs-time-rail .mejs-time-handle-content:focus,.mejs-time-rail:hover .mejs-time-handle-content{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.mejs-time-float{background:#eee;border:1px solid #333;bottom:100%;color:#111;display:none;height:17px;margin-bottom:9px;position:absolute;text-align:center;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:36px}.mejs-time-float-current{display:block;left:0;margin:2px;text-align:center;width:30px}.mejs-time-float-corner{border:5px solid #eee;border-color:#eee transparent transparent;border-radius:0;display:block;height:0;left:50%;line-height:0;position:absolute;top:100%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:0}.mejs-long-video .mejs-time-float{margin-left:-23px;width:64px}.mejs-long-video .mejs-time-float-current{width:60px}.mejs-broadcast{color:#fff;height:10px;position:absolute;top:15px;width:100%}.mejs-fullscreen-button>button{background-position:-80px 0}.mejs-unfullscreen>button{background-position:-100px 0}.mejs-mute>button{background-position:-60px 0}.mejs-unmute>button{background-position:-40px 0}.mejs-volume-button{position:relative}.mejs-volume-button>.mejs-volume-slider{-webkit-backface-visibility:hidden;background:rgba(50,50,50,.7);border-radius:0;bottom:100%;display:none;height:115px;left:50%;margin:0;position:absolute;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:25px;z-index:1}.mejs-volume-button:hover{border-radius:0 0 4px 4px}.mejs-volume-total{background:hsla(0,0%,100%,.5);height:100px;left:50%;margin:0;position:absolute;top:8px;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:2px}.mejs-volume-current{left:0;margin:0;width:100%}.mejs-volume-current,.mejs-volume-handle{background:hsla(0,0%,100%,.9);position:absolute}.mejs-volume-handle{border-radius:1px;cursor:ns-resize;height:6px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:16px}.mejs-horizontal-volume-slider{display:block;height:36px;position:relative;vertical-align:middle;width:56px}.mejs-horizontal-volume-total{background:rgba(50,50,50,.8);height:8px;top:16px;width:50px}.mejs-horizontal-volume-current,.mejs-horizontal-volume-total{border-radius:2px;font-size:1px;left:0;margin:0;padding:0;position:absolute}.mejs-horizontal-volume-current{background:hsla(0,0%,100%,.8);height:100%;top:0;width:100%}.mejs-horizontal-volume-handle{display:none}.mejs-captions-button,.mejs-chapters-button{position:relative}.mejs-captions-button>button{background-position:-140px 0}.mejs-chapters-button>button{background-position:-180px 0}.mejs-captions-button>.mejs-captions-selector,.mejs-chapters-button>.mejs-chapters-selector{background:rgba(50,50,50,.7);border:1px solid transparent;border-radius:0;bottom:100%;margin-right:-43px;overflow:hidden;padding:0;position:absolute;right:50%;visibility:visible;width:86px}.mejs-chapters-button>.mejs-chapters-selector{margin-right:-55px;width:110px}.mejs-captions-selector-list,.mejs-chapters-selector-list{list-style-type:none!important;margin:0;overflow:hidden;padding:0}.mejs-captions-selector-list-item,.mejs-chapters-selector-list-item{color:#fff;cursor:pointer;display:block;list-style-type:none!important;margin:0 0 6px;overflow:hidden;padding:0}.mejs-captions-selector-list-item:hover,.mejs-chapters-selector-list-item:hover{background-color:#c8c8c8!important;background-color:hsla(0,0%,100%,.4)!important}.mejs-captions-selector-input,.mejs-chapters-selector-input{clear:both;float:left;left:-1000px;margin:3px 3px 0 5px;position:absolute}.mejs-captions-selector-label,.mejs-chapters-selector-label{cursor:pointer;float:left;font-size:10px;line-height:15px;padding:4px 10px 0;width:100%}.mejs-captions-selected,.mejs-chapters-selected{color:#21f8f8}.mejs-captions-translations{font-size:10px;margin:0 0 5px}.mejs-captions-layer{bottom:0;color:#fff;font-size:16px;left:0;line-height:20px;position:absolute;text-align:center}.mejs-captions-layer a{color:#fff;text-decoration:underline}.mejs-captions-layer[lang=ar]{font-size:20px;font-weight:400}.mejs-captions-position{bottom:15px;left:0;position:absolute;width:100%}.mejs-captions-position-hover{bottom:35px}.mejs-captions-text,.mejs-captions-text *{background:hsla(0,0%,8%,.5);box-shadow:5px 0 0 hsla(0,0%,8%,.5),-5px 0 0 hsla(0,0%,8%,.5);padding:0;white-space:pre-wrap}.mejs-container.mejs-hide-cues video::-webkit-media-text-track-container{display:none}.mejs-overlay-error{position:relative}.mejs-overlay-error>img{left:0;max-width:100%;position:absolute;top:0;z-index:-1}.mejs-cannotplay,.mejs-cannotplay a{color:#fff;font-size:.8em}.mejs-cannotplay{position:relative}.mejs-cannotplay a,.mejs-cannotplay p{display:inline-block;padding:0 15px;width:100%}.mejs-container{clear:both;max-width:100%}.mejs-container *{font-family:Helvetica,Arial}.mejs-container,.mejs-container .mejs-controls,.mejs-embed,.mejs-embed body{background:#222}.mejs-time{font-weight:400;word-wrap:normal}.mejs-controls a.mejs-horizontal-volume-slider{display:table}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.mejs-controls .mejs-time-rail .mejs-time-loaded{background:#fff}.mejs-controls .mejs-time-rail .mejs-time-current{background:#0073aa}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,.mejs-controls .mejs-time-rail .mejs-time-total{background:rgba(255,255,255,.33)}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,.mejs-controls .mejs-time-rail span{border-radius:0}.mejs-overlay-loading{background:0 0}.mejs-controls button:hover{border:none;-webkit-box-shadow:none;box-shadow:none}.me-cannotplay{width:auto!important}.media-embed-details .wp-audio-shortcode{display:inline-block;max-width:400px}.audio-details .embed-media-settings{overflow:visible}.media-embed-details .embed-media-settings .setting span:not(.button-group){max-width:400px;width:auto}.media-embed-details .embed-media-settings .checkbox-setting span{display:inline-block}.media-embed-details .embed-media-settings{padding-top:0;top:28px}.media-embed-details .instructions{padding:16px 0;max-width:600px}.media-embed-details .setting .remove-setting,.media-embed-details .setting p{color:#a00;font-size:10px;text-transform:uppercase}.media-embed-details .setting .remove-setting{padding:5px 0}.media-embed-details .setting a:hover{color:#dc3232}.media-embed-details .embed-media-settings .checkbox-setting{float:none;margin:0 0 10px}.wp-video{max-width:100%;height:auto}.wp_attachment_holder .wp-audio-shortcode,.wp_attachment_holder .wp-video{margin-top:18px}.wp-video-shortcode video,video.wp-video-shortcode{max-width:100%;display:inline-block}.video-details .wp-video-holder{width:100%;max-width:640px}.wp-playlist{border:1px solid #ccc;padding:10px;margin:12px 0 18px;font-size:14px;line-height:1.5}.wp-admin .wp-playlist{margin:0 0 18px}.wp-playlist video{display:inline-block;max-width:100%}.wp-playlist audio{display:none;max-width:100%;width:400px}.wp-playlist .mejs-container{margin:0;max-width:100%}.wp-playlist .mejs-controls .mejs-button button{outline:0}.wp-playlist-light{background:#fff;color:#000}.wp-playlist-dark{color:#fff;background:#000}.wp-playlist-caption{display:block;max-width:88%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:14px;line-height:1.5}.wp-playlist-item .wp-playlist-caption{text-decoration:none;color:#000;max-width:-webkit-calc(100% - 40px);max-width:calc(100% - 40px)}.wp-playlist-item-meta{display:block;font-size:14px;line-height:1.5}.wp-playlist-item-title{font-size:14px;line-height:1.5}.wp-playlist-item-album{font-style:italic;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.wp-playlist-item-artist{font-size:12px;text-transform:uppercase}.wp-playlist-item-length{position:absolute;right:3px;top:0;font-size:14px;line-height:1.5}.rtl .wp-playlist-item-length{left:3px;right:auto}.wp-playlist-tracks{margin-top:10px}.wp-playlist-item{position:relative;cursor:pointer;padding:0 3px;border-bottom:1px solid #ccc}.wp-playlist-item:last-child{border-bottom:0}.wp-playlist-light .wp-playlist-caption{color:#333}.wp-playlist-dark .wp-playlist-caption{color:#ddd}.wp-playlist-playing{font-weight:700;background:#f7f7f7}.wp-playlist-light .wp-playlist-playing{background:#fff;color:#000}.wp-playlist-dark .wp-playlist-playing{background:#000;color:#fff}.wp-playlist-current-item{overflow:hidden;margin-bottom:10px;height:60px}.wp-playlist .wp-playlist-current-item img{float:left;max-width:60px;height:auto;margin-right:10px;padding:0;border:0}.rtl .wp-playlist .wp-playlist-current-item img{float:right;margin-left:10px;margin-right:0}.wp-playlist-current-item .wp-playlist-item-artist,.wp-playlist-current-item .wp-playlist-item-title{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.wp-audio-playlist .me-cannotplay span{padding:5px 15px}.mfp-bg {
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1042;
overflow: hidden;
position: fixed;
background: #fff;
opacity: 0.8;
filter: alpha(opacity=80); }
.mfp-wrap {
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1043;
position: fixed;
outline: none !important;
-webkit-backface-visibility: hidden; }
.mfp-container {
text-align: center;
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
padding: 0 8px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
.mfp-container:before {
content: '';
display: inline-block;
height: 100%;
vertical-align: middle; }
.mfp-align-top .mfp-container:before {
display: none; }
.mfp-content {
position: relative;
display: inline-block;
vertical-align: middle;
margin: 0 auto;
text-align: left;
z-index: 1045; }
.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
width: 100%;
cursor: auto; }
.mfp-ajax-cur {
cursor: progress; }
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
cursor: -moz-zoom-out;
cursor: -webkit-zoom-out;
cursor: zoom-out; }
.mfp-zoom {
cursor: pointer;
cursor: -webkit-zoom-in;
cursor: -moz-zoom-in;
cursor: zoom-in; }
.mfp-auto-cursor .mfp-content {
cursor: auto; }
.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
-webkit-user-select: none;
-moz-user-select: none;
user-select: none; }
.mfp-loading.mfp-figure {
display: none; }
.mfp-hide {
display: none !important; }
.mfp-preloader {
color: #cccccc;
position: absolute;
top: 50%;
width: auto;
text-align: center;
margin-top: -0.8em;
left: 8px;
right: 8px;
z-index: 1044; }
.mfp-preloader a {
color: #cccccc; }
.mfp-preloader a:hover {
color: white; }
.mfp-s-ready .mfp-preloader {
display: none; }
.mfp-s-error .mfp-content {
display: none; }
button.mfp-close, button.mfp-arrow {
overflow: visible;
cursor: pointer;
background: transparent;
border: 0;
-webkit-appearance: none;
display: block;
outline: none;
padding: 0;
z-index: 1046;
-webkit-box-shadow: none;
box-shadow: none; }
button::-moz-focus-inner {
padding: 0;
border: 0; }
.mfp-close {
width: 44px;
height: 44px;
line-height: 44px;
position: absolute;
right: 0;
top: 0;
text-decoration: none;
text-align: center;
opacity: 0.65;
filter: alpha(opacity=65);
padding: 0 0 18px 10px;
color: #222222;
font-style: normal;
font-size: 28px;
font-family: Arial, Baskerville, monospace; }
.mfp-close:hover, .mfp-close:focus {
opacity: 1;
filter: alpha(opacity=100); }
.mfp-close:active {
top: 1px; }
.mfp-close-btn-in .mfp-close {
color: #333333; }
.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
color: #222222;
right: -6px;
text-align: right;
padding-right: 6px;
width: 100%; }
.mfp-counter {
position: absolute;
top: 0;
right: 0;
color: #cccccc;
font-size: 12px;
line-height: 18px; }
.mfp-arrow {
position: absolute;
opacity: 0.65;
filter: alpha(opacity=65);
margin: 0;
top: 50%;
margin-top: -55px;
padding: 0;
width: 90px;
height: 110px;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
.mfp-arrow:active {
margin-top: -54px; }
.mfp-arrow:hover, .mfp-arrow:focus {
opacity: 1;
filter: alpha(opacity=100); }
.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
content: '';
display: block;
width: 0;
height: 0;
position: absolute;
left: 0;
top: 0;
margin-top: 35px;
margin-left: 35px;
border: medium inset transparent; }
.mfp-arrow:after, .mfp-arrow .mfp-a {
border-top-width: 13px;
border-bottom-width: 13px;
top: 8px; }
.mfp-arrow:before, .mfp-arrow .mfp-b {
border-top-width: 21px;
border-bottom-width: 21px;
opacity: 0.7; }
.mfp-arrow-left {
left: 0; }
.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
border-right: 17px solid white;
margin-left: 31px; }
.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
margin-left: 25px;
border-right: 27px solid #3f3f3f; }
.mfp-arrow-right {
right: 0; }
.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
border-left: 17px solid white;
margin-left: 39px; }
.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
border-left: 27px solid #3f3f3f; }
.mfp-iframe-holder {
padding-top: 40px;
padding-bottom: 40px; }
.mfp-iframe-holder .mfp-content {
line-height: 0;
width: 100%;
max-width: 900px; }
.mfp-iframe-holder .mfp-close {
top: -40px; }
.mfp-iframe-scaler {
width: 100%;
height: 0;
overflow: hidden;
padding-top: 56.25%; }
.mfp-iframe-scaler iframe {
position: absolute;
display: block;
top: 0;
left: 0;
width: 100%;
height: 100%;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
background: black; } img.mfp-img {
width: auto;
max-width: 100%;
height: auto;
display: block;
line-height: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 40px 0 40px;
margin: 0 auto; } .mfp-figure {
line-height: 0; }
.mfp-figure:after {
content: '';
position: absolute;
left: 0;
top: 40px;
bottom: 40px;
display: block;
right: 0;
width: auto;
height: auto;
z-index: -1;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
background: #444444; }
.mfp-figure small {
color: #bdbdbd;
display: block;
font-size: 12px;
line-height: 14px; }
.mfp-figure figure {
margin: 0; }
.mfp-bottom-bar {
margin-top: -36px;
position: absolute;
top: 100%;
left: 0;
width: 100%;
cursor: auto; }
.mfp-title {
text-align: left;
line-height: 18px;
color: #222222;
word-wrap: break-word;
padding-right: 36px; }
.mfp-image-holder .mfp-content {
max-width: 100%; }
.mfp-gallery .mfp-image-holder .mfp-figure {
cursor: pointer; }
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) { .mfp-img-mobile .mfp-image-holder {
padding-left: 0;
padding-right: 0; }
.mfp-img-mobile img.mfp-img {
padding: 0; }
.mfp-img-mobile .mfp-figure:after {
top: 0;
bottom: 0; }
.mfp-img-mobile .mfp-figure small {
display: inline;
margin-left: 5px; }
.mfp-img-mobile .mfp-bottom-bar {
background: rgba(0, 0, 0, 0.6);
bottom: 0;
margin: 0;
top: auto;
padding: 3px 5px;
position: fixed;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
.mfp-img-mobile .mfp-bottom-bar:empty {
padding: 0; }
.mfp-img-mobile .mfp-counter {
right: 5px;
top: 3px; }
.mfp-img-mobile .mfp-close {
top: 0;
right: 0;
width: 35px;
height: 35px;
line-height: 35px;
background: rgba(0, 0, 0, 0.6);
position: fixed;
text-align: center;
padding: 0; } }
@media all and (max-width: 900px) {
.mfp-arrow {
-webkit-transform: scale(0.75);
transform: scale(0.75); }
.mfp-arrow-left {
-webkit-transform-origin: 0;
transform-origin: 0; }
.mfp-arrow-right {
-webkit-transform-origin: 100%;
transform-origin: 100%; }
.mfp-container {
padding-left: 6px;
padding-right: 6px; } }
.mfp-ie7 .mfp-img {
padding: 0; }
.mfp-ie7 .mfp-bottom-bar {
width: 600px;
left: 50%;
margin-left: -300px;
margin-top: 5px;
padding-bottom: 5px; }
.mfp-ie7 .mfp-container {
padding: 0; }
.mfp-ie7 .mfp-content {
padding-top: 44px; }
.mfp-ie7 .mfp-close {
top: 0;
right: 0;
padding-top: 0; } .mfp-zoom-in {
}
.mfp-zoom-in .mfp-with-anim {
opacity: 0;
transform: scale(0.8);
-webkit-transform: scale(0.8);
transition: all 0.2s ease-in-out 0s;
-webkit-transition: all 0.2s ease-in-out 0s;
}
.mfp-zoom-in.mfp-bg {
opacity: 0;
transition: all 0.3s ease-out 0s;
-webkit-transition: all 0.3s ease-out 0s;
}
.mfp-zoom-in.mfp-ready .mfp-with-anim {
opacity: 1;
transform: scale(1);
-webkit-transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg {
opacity: 0.9;
}
.mfp-zoom-in.mfp-removing .mfp-with-anim {
opacity: 0;
transform: scale(0.8);
-webkit-transform: scale(0.8);
}
.mfp-zoom-in.mfp-removing.mfp-bg {
opacity: 0;
}button, hr, input {
overflow: visible; }
audio, canvas, progress, video {
display: inline-block; }
progress, sub, sup {
vertical-align: baseline; }
[type=checkbox], [type=radio], legend {
box-sizing: border-box;
padding: 0; }
html {
font-family: sans-serif;
line-height: 1.15;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%; }
body {
margin: 0; }
article, aside, details, figcaption, figure, footer, header, main, menu, nav, section {
display: block; }
h1 {
font-size: 2em;
margin: .67em 0; }
figure {
margin: 1em 40px; }
hr {
box-sizing: content-box;
height: 0; }
code, kbd, pre, samp {
font-family: monospace,monospace;
font-size: 1em; }
a {
background-color: transparent;
-webkit-text-decoration-skip: objects; }
a:active, a:hover {
outline-width: 0; }
abbr[title] {
border-bottom: none;
text-decoration: underline;
-webkit-text-decoration: underline dotted;
text-decoration: underline dotted; }
b, strong {
font-weight: bolder; }
dfn {
font-style: italic; }
mark {
background-color: #ff0;
color: #000; }
small {
font-size: 80%; }
sub, sup {
font-size: 75%;
line-height: 0;
position: relative; }
sub {
bottom: -.25em; }
sup {
top: -.5em; }
audio:not([controls]) {
display: none;
height: 0; }
img {
border-style: none; }
svg:not(:root) {
overflow: hidden; }
button, input, optgroup, select, textarea {
font-family: sans-serif;
font-size: 100%;
line-height: 1.15;
margin: 0; }
button, select {
text-transform: none; }
[type=reset], [type=submit], button, html [type=button] {
-webkit-appearance: button; }
[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
border-style: none;
padding: 0; }
[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
outline: ButtonText dotted 1px; }
fieldset {
border: 1px solid silver;
margin: 0 2px;
padding: .35em .625em .75em; }
legend {
color: inherit;
display: table;
max-width: 100%;
white-space: normal; }
textarea {
overflow: auto; }
[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
height: auto; }
[type=search] {
-webkit-appearance: textfield;
outline-offset: -2px; }
[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
-webkit-appearance: none; }
::-webkit-file-upload-button {
-webkit-appearance: button;
font: inherit; }
summary {
display: list-item; }
[hidden], template {
display: none; }
.tasty-recipes {
margin: 10px;
max-width: 500px;
border: 1px solid #e9e9e5;
padding-left: 20px;
padding-right: 20px;
padding-bottom: 20px; }
@media print {
.tasty-recipes {
max-width: none; } }
h4 {
text-transform: uppercase; }
.tasty-recipes-print-button {
margin-top: 10px;
margin-left: 10px; }
.tasty-recipes-source-link {
font-style: italic; }