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

 .animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.animated.infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.animated.hinge {
-webkit-animation-duration: 2s;
animation-duration: 2s;
}
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
-webkit-animation-duration: .75s;
animation-duration: .75s;
}
@-webkit-keyframes bounce {
from, 20%, 53%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
40%, 43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0);
}
}
@keyframes bounce {
from, 20%, 53%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
40%, 43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0);
}
}
.bounce {
-webkit-animation-name: bounce;
animation-name: bounce;
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
}
@-webkit-keyframes flash {
from, 50%, to {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
@keyframes flash {
from, 50%, to {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
.flash {
-webkit-animation-name: flash;
animation-name: flash;
} @-webkit-keyframes pulse {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes pulse {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.pulse {
-webkit-animation-name: pulse;
animation-name: pulse;
}
@-webkit-keyframes rubberBand {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes rubberBand {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.rubberBand {
-webkit-animation-name: rubberBand;
animation-name: rubberBand;
}
@-webkit-keyframes shake {
from, to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
@keyframes shake {
from, to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
.shake {
-webkit-animation-name: shake;
animation-name: shake;
}
@-webkit-keyframes headShake {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
6.5% {
-webkit-transform: translateX(-6px) rotateY(-9deg);
transform: translateX(-6px) rotateY(-9deg);
}
18.5% {
-webkit-transform: translateX(5px) rotateY(7deg);
transform: translateX(5px) rotateY(7deg);
}
31.5% {
-webkit-transform: translateX(-3px) rotateY(-5deg);
transform: translateX(-3px) rotateY(-5deg);
}
43.5% {
-webkit-transform: translateX(2px) rotateY(3deg);
transform: translateX(2px) rotateY(3deg);
}
50% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes headShake {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
6.5% {
-webkit-transform: translateX(-6px) rotateY(-9deg);
transform: translateX(-6px) rotateY(-9deg);
}
18.5% {
-webkit-transform: translateX(5px) rotateY(7deg);
transform: translateX(5px) rotateY(7deg);
}
31.5% {
-webkit-transform: translateX(-3px) rotateY(-5deg);
transform: translateX(-3px) rotateY(-5deg);
}
43.5% {
-webkit-transform: translateX(2px) rotateY(3deg);
transform: translateX(2px) rotateY(3deg);
}
50% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
.headShake {
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
-webkit-animation-name: headShake;
animation-name: headShake;
}
@-webkit-keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
to {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
@keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
to {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
.swing {
-webkit-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing;
}
@-webkit-keyframes tada {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%, 20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes tada {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%, 20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.tada {
-webkit-animation-name: tada;
animation-name: tada;
} @-webkit-keyframes wobble {
from {
-webkit-transform: none;
transform: none;
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes wobble {
from {
-webkit-transform: none;
transform: none;
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
-webkit-transform: none;
transform: none;
}
}
.wobble {
-webkit-animation-name: wobble;
animation-name: wobble;
}
@-webkit-keyframes jello {
from, 11.1%, to {
-webkit-transform: none;
transform: none;
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
@keyframes jello {
from, 11.1%, to {
-webkit-transform: none;
transform: none;
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
.jello {
-webkit-animation-name: jello;
animation-name: jello;
-webkit-transform-origin: center;
transform-origin: center;
}
@-webkit-keyframes bounceIn {
from, 20%, 40%, 60%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes bounceIn {
from, 20%, 40%, 60%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.bounceIn {
-webkit-animation-name: bounceIn;
animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInDown {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInDown {
-webkit-animation-name: bounceInDown;
animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInLeft {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInRight {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInRight {
-webkit-animation-name: bounceInRight;
animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInUp {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.bounceInUp {
-webkit-animation-name: bounceInUp;
animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
}
@keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
}
.bounceOut {
-webkit-animation-name: bounceOut;
animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.bounceOutDown {
-webkit-animation-name: bounceOutDown;
animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.bounceOutLeft {
-webkit-animation-name: bounceOutLeft;
animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.bounceOutRight {
-webkit-animation-name: bounceOutRight;
animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.bounceOutUp {
-webkit-animation-name: bounceOutUp;
animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDownBig {
-webkit-animation-name: fadeInDownBig;
animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeftBig {
-webkit-animation-name: fadeInLeftBig;
animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRightBig {
-webkit-animation-name: fadeInRightBig;
animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUpBig {
-webkit-animation-name: fadeInUpBig;
animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
.fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.fadeOutDown {
-webkit-animation-name: fadeOutDown;
animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.fadeOutDownBig {
-webkit-animation-name: fadeOutDownBig;
animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.fadeOutLeft {
-webkit-animation-name: fadeOutLeft;
animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.fadeOutLeftBig {
-webkit-animation-name: fadeOutLeftBig;
animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.fadeOutRight {
-webkit-animation-name: fadeOutRight;
animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.fadeOutRightBig {
-webkit-animation-name: fadeOutRightBig;
animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.fadeOutUp {
-webkit-animation-name: fadeOutUp;
animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.fadeOutUpBig {
-webkit-animation-name: fadeOutUpBig;
animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
transform: perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
@keyframes flip {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
transform: perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
.animated.flip {
-webkit-backface-visibility: visible;
backface-visibility: visible;
-webkit-animation-name: flip;
animation-name: flip;
}
@-webkit-keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInX {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInX;
animation-name: flipInX;
}
@-webkit-keyframes flipInY {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInY {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInY;
animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutX {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
.flipOutX {
-webkit-animation-name: flipOutX;
animation-name: flipOutX;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutY {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
.flipOutY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipOutY;
animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
from {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1;
}
to {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes lightSpeedIn {
from {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1;
}
to {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.lightSpeedIn {
-webkit-animation-name: lightSpeedIn;
animation-name: lightSpeedIn;
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
from {
opacity: 1;
}
to {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
@keyframes lightSpeedOut {
from {
opacity: 1;
}
to {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
.lightSpeedOut {
-webkit-animation-name: lightSpeedOut;
animation-name: lightSpeedOut;
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
from {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateIn {
from {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateIn {
-webkit-animation-name: rotateIn;
animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInDownLeft {
-webkit-animation-name: rotateInDownLeft;
animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInDownRight {
-webkit-animation-name: rotateInDownRight;
animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInUpLeft {
-webkit-animation-name: rotateInUpLeft;
animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInUpRight {
-webkit-animation-name: rotateInUpRight;
animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
from {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
@keyframes rotateOut {
from {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
.rotateOut {
-webkit-animation-name: rotateOut;
animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
@keyframes rotateOutDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
.rotateOutDownLeft {
-webkit-animation-name: rotateOutDownLeft;
animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutDownRight {
-webkit-animation-name: rotateOutDownRight;
animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutUpLeft {
-webkit-animation-name: rotateOutUpLeft;
animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
@keyframes rotateOutUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
.rotateOutUpRight {
-webkit-animation-name: rotateOutUpRight;
animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%, 80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
@keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%, 80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
.hinge {
-webkit-animation-name: hinge;
animation-name: hinge;
} @-webkit-keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.rollIn {
-webkit-animation-name: rollIn;
animation-name: rollIn;
} @-webkit-keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
@keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
.rollOut {
-webkit-animation-name: rollOut;
animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
@keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
.zoomIn {
-webkit-animation-name: zoomIn;
animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInDown {
-webkit-animation-name: zoomInDown;
animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInLeft {
-webkit-animation-name: zoomInLeft;
animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInRight {
-webkit-animation-name: zoomInRight;
animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInUp {
-webkit-animation-name: zoomInUp;
animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
to {
opacity: 0;
}
}
@keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
to {
opacity: 0;
}
}
.zoomOut {
-webkit-animation-name: zoomOut;
animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutDown {
-webkit-animation-name: zoomOutDown;
animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
.zoomOutLeft {
-webkit-animation-name: zoomOutLeft;
animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
@keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
.zoomOutRight {
-webkit-animation-name: zoomOutRight;
animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutUp {
-webkit-animation-name: zoomOutUp;
animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInDown {
-webkit-animation-name: slideInDown;
animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInLeft {
-webkit-animation-name: slideInLeft;
animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInRight {
-webkit-animation-name: slideInRight;
animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInUp {
-webkit-animation-name: slideInUp;
animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.slideOutDown {
-webkit-animation-name: slideOutDown;
animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.slideOutLeft {
-webkit-animation-name: slideOutLeft;
animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.slideOutRight {
-webkit-animation-name: slideOutRight;
animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.slideOutUp {
-webkit-animation-name: slideOutUp;
animation-name: slideOutUp;
}.lvca-container, .lvca-grid-container {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.lvca-container *, .lvca-container *::after, .lvca-container *::before, .lvca-grid-container *, .lvca-grid-container *::after, .lvca-grid-container *::before {
-webkit-box-sizing: inherit;
box-sizing: inherit; }
.lvca-container ol, .lvca-container ul, .lvca-container ol > li, .lvca-container ul > li, .lvca-container ol:hover, .lvca-container ul:hover, .lvca-container ul > li:hover, .lvca-container ol > li:hover, .lvca-container ol > li > a, .lvca-container ul > li > a, .lvca-container ol > li > a:hover, .lvca-container ul > li > a:hover, .lvca-container img, .lvca-grid-container ol, .lvca-grid-container ul, .lvca-grid-container ol > li, .lvca-grid-container ul > li, .lvca-grid-container ol:hover, .lvca-grid-container ul:hover, .lvca-grid-container ul > li:hover, .lvca-grid-container ol > li:hover, .lvca-grid-container ol > li > a, .lvca-grid-container ul > li > a, .lvca-grid-container ol > li > a:hover, .lvca-grid-container ul > li > a:hover, .lvca-grid-container img {
padding: 0;
margin: 0;
border: none;
-webkit-box-shadow: none;
box-shadow: none;
list-style: none;
background: none; }
.lvca-container ol:before, .lvca-container ol:after, .lvca-container ul:before, .lvca-container ul:after, .lvca-container ol > li:before, .lvca-container ol > li:after, .lvca-container ul > li:before, .lvca-container ul > li:after, .lvca-container ol:hover:before, .lvca-container ol:hover:after, .lvca-container ul:hover:before, .lvca-container ul:hover:after, .lvca-container ul > li:hover:before, .lvca-container ul > li:hover:after, .lvca-container ol > li:hover:before, .lvca-container ol > li:hover:after, .lvca-container ol > li > a:before, .lvca-container ol > li > a:after, .lvca-container ul > li > a:before, .lvca-container ul > li > a:after, .lvca-container ol > li > a:hover:before, .lvca-container ol > li > a:hover:after, .lvca-container ul > li > a:hover:before, .lvca-container ul > li > a:hover:after, .lvca-container img:before, .lvca-container img:after, .lvca-grid-container ol:before, .lvca-grid-container ol:after, .lvca-grid-container ul:before, .lvca-grid-container ul:after, .lvca-grid-container ol > li:before, .lvca-grid-container ol > li:after, .lvca-grid-container ul > li:before, .lvca-grid-container ul > li:after, .lvca-grid-container ol:hover:before, .lvca-grid-container ol:hover:after, .lvca-grid-container ul:hover:before, .lvca-grid-container ul:hover:after, .lvca-grid-container ul > li:hover:before, .lvca-grid-container ul > li:hover:after, .lvca-grid-container ol > li:hover:before, .lvca-grid-container ol > li:hover:after, .lvca-grid-container ol > li > a:before, .lvca-grid-container ol > li > a:after, .lvca-grid-container ul > li > a:before, .lvca-grid-container ul > li > a:after, .lvca-grid-container ol > li > a:hover:before, .lvca-grid-container ol > li > a:hover:after, .lvca-grid-container ul > li > a:hover:before, .lvca-grid-container ul > li > a:hover:after, .lvca-grid-container img:before, .lvca-grid-container img:after {
display: none; }
.lvca-container a, .lvca-grid-container a {
text-decoration: initial; }
.lvca-container img, .lvca-grid-container img {
max-width: 100%;
width: auto;
height: auto; } .lvca-container {
margin-left: auto;
margin-right: auto; }
.lvca-container::after {
clear: both;
content: "";
display: block; }
.panel-grid .widget {
border: 0; }
.lvca-center {
text-align: center; }
.lvca-grid-container {
margin-left: -20px;
margin-right: -20px;
width: calc(100% + 40px); }
.lvca-grid-container::after {
clear: both;
content: "";
display: block; }
.lvca-grid-container .lvca-grid-item {
min-height: 1px; }
@media (max-width: 479px) {
.lvca-grid-container.lvca-grid-mobile-2 .lvca-grid-item:nth-child(2n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-mobile-3 .lvca-grid-item:nth-child(3n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-mobile-4 .lvca-grid-item:nth-child(4n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-mobile-5 .lvca-grid-item:nth-child(5n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-mobile-6 .lvca-grid-item:nth-child(6n+1) {
clear: left; } }
@media (min-width: 480px) and (max-width: 800px) {
.lvca-grid-container.lvca-grid-tablet-2 .lvca-grid-item:nth-child(2n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-tablet-3 .lvca-grid-item:nth-child(3n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-tablet-4 .lvca-grid-item:nth-child(4n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-tablet-5 .lvca-grid-item:nth-child(5n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-tablet-6 .lvca-grid-item:nth-child(6n+1) {
clear: left; } }
@media only screen and (min-width: 801px) {
.lvca-grid-container.lvca-grid-desktop-2 .lvca-grid-item:nth-child(2n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-desktop-3 .lvca-grid-item:nth-child(3n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-desktop-4 .lvca-grid-item:nth-child(4n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-desktop-5 .lvca-grid-item:nth-child(5n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-desktop-6 .lvca-grid-item:nth-child(6n+1) {
clear: left; } }
.lvca-grid-container.lvca-grid-mobile-1 .lvca-grid-item {
width: calc(100% - 40px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-mobile-2 .lvca-grid-item {
width: calc(50% - 30px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-mobile-3 .lvca-grid-item {
width: calc(33.33333% - 26.66667px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-mobile-4 .lvca-grid-item {
width: calc(25% - 25px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-mobile-5 .lvca-grid-item {
width: calc(20% - 24px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-mobile-6 .lvca-grid-item {
width: calc(16.66667% - 23.33333px);
float: left;
margin-left: 20px; }
@media only screen and (min-width: 480px) {
.lvca-grid-container.lvca-grid-tablet-1 .lvca-grid-item {
width: calc(100% - 40px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-tablet-2 .lvca-grid-item {
width: calc(50% - 30px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-tablet-3 .lvca-grid-item {
width: calc(33.33333% - 26.66667px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-tablet-4 .lvca-grid-item {
width: calc(25% - 25px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-tablet-5 .lvca-grid-item {
width: calc(20% - 24px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-tablet-6 .lvca-grid-item {
width: calc(16.66667% - 23.33333px);
float: left;
margin-left: 20px; } }
@media only screen and (min-width: 801px) {
.lvca-grid-container.lvca-grid-desktop-1 .lvca-grid-item {
width: calc(100% - 40px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-desktop-2 .lvca-grid-item {
width: calc(50% - 30px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-desktop-3 .lvca-grid-item {
width: calc(33.33333% - 26.66667px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-desktop-4 .lvca-grid-item {
width: calc(25% - 25px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-desktop-5 .lvca-grid-item {
width: calc(20% - 24px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-desktop-6 .lvca-grid-item {
width: calc(16.66667% - 23.33333px);
float: left;
margin-left: 20px; } } .lvca-gapless-grid .lvca-grid-container {
margin-left: 0;
margin-right: 0;
width: auto; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-mobile-1 .lvca-grid-item {
width: calc(100%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-mobile-2 .lvca-grid-item {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-mobile-3 .lvca-grid-item {
width: calc(33.33333%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-mobile-4 .lvca-grid-item {
width: calc(25%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-mobile-5 .lvca-grid-item {
width: calc(20%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-mobile-6 .lvca-grid-item {
width: calc(16.66667%);
float: left;
margin-left: 0px; }
@media only screen and (min-width: 480px) {
.lvca-gapless-grid .lvca-grid-container.lvca-grid-tablet-1 .lvca-grid-item {
width: calc(100%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-tablet-2 .lvca-grid-item {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-tablet-3 .lvca-grid-item {
width: calc(33.33333%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-tablet-4 .lvca-grid-item {
width: calc(25%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-tablet-5 .lvca-grid-item {
width: calc(20%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-tablet-6 .lvca-grid-item {
width: calc(16.66667%);
float: left;
margin-left: 0px; } }
@media only screen and (min-width: 801px) {
.lvca-gapless-grid .lvca-grid-container.lvca-grid-desktop-1 .lvca-grid-item {
width: calc(100%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-desktop-2 .lvca-grid-item {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-desktop-3 .lvca-grid-item {
width: calc(33.33333%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-desktop-4 .lvca-grid-item {
width: calc(25%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-desktop-5 .lvca-grid-item {
width: calc(20%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-desktop-6 .lvca-grid-item {
width: calc(16.66667%);
float: left;
margin-left: 0px; } } .lvca-gapless-grid .lvca-masonry { }
.lvca-gapless-grid .lvca-masonry .lvca-grid-item {
clear: none !important; }
.lvca-gapless-grid .lvca-masonry .lvca-grid-sizer {
width: calc(8.33333%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-mobile-1 .lvca-grid-item.lvca-wide {
width: calc(100%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-mobile-2 .lvca-grid-item.lvca-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-mobile-3 .lvca-grid-item.lvca-wide {
width: calc(66.66667%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-mobile-4 .lvca-grid-item.lvca-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-mobile-5 .lvca-grid-item.lvca-wide {
width: calc(40%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-mobile-6 .lvca-grid-item.lvca-wide {
width: calc(33.33333%);
float: left;
margin-left: 0px; }
@media only screen and (min-width: 480px) {
.lvca-gapless-grid .lvca-masonry.lvca-grid-tablet-1 .lvca-grid-item.lvca-wide {
width: calc(100%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-tablet-2 .lvca-grid-item.lvca-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-tablet-3 .lvca-grid-item.lvca-wide {
width: calc(66.66667%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-tablet-4 .lvca-grid-item.lvca-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-tablet-5 .lvca-grid-item.lvca-wide {
width: calc(40%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-tablet-6 .lvca-grid-item.lvca-wide {
width: calc(33.33333%);
float: left;
margin-left: 0px; } }
@media only screen and (min-width: 801px) {
.lvca-gapless-grid .lvca-masonry.lvca-grid-desktop-1 .lvca-grid-item.lvca-wide {
width: calc(100%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-desktop-2 .lvca-grid-item.lvca-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-desktop-3 .lvca-grid-item.lvca-wide {
width: calc(66.66667%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-desktop-4 .lvca-grid-item.lvca-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-desktop-5 .lvca-grid-item.lvca-wide {
width: calc(40%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-desktop-6 .lvca-grid-item.lvca-wide {
width: calc(33.33333%);
float: left;
margin-left: 0px; } } .lvca-container .lvca-thumbnailslider.lvca-flexslider {
margin-top: 15px; }
.lvca-container .lvca-thumbnailslider.lvca-flexslider .lvca-slide {
margin: 0 5px 0 0; }
.lvca-container .lvca-thumbnailslider.lvca-flexslider .lvca-slide img {
display: block;
opacity: .5;
cursor: pointer; }
.lvca-container .lvca-thumbnailslider.lvca-flexslider .lvca-slide img:hover {
opacity: 1; }
.lvca-container .lvca-thumbnailslider.lvca-flexslider .lvca-slide.lvca-flex-active-slide img {
opacity: 1;
cursor: default; }
.lvca-container .lvca-flex-direction-nav {
padding: 0 !important;
margin: 0 !important; }
.lvca-container .lvca-flex-direction-nav li {
position: initial; }
.lvca-container .lvca-flex-direction-nav a, .lvca-container .lvca-flex-direction-nav a:hover {
opacity: 1;
text-shadow: none;
background: none;
color: #888;
font-family: 'lvca-icomoon' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 24px;
width: 28px;
height: 28px;
margin: -14px 0 0;
bottom: initial;
left: initial;
right: initial;
top: 50%;
text-indent: 0;
text-align: center;
color: #aaa;
-webkit-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
outline: none; }
.lvca-container .lvca-flex-direction-nav a:before, .lvca-container .lvca-flex-direction-nav a:hover:before, .lvca-container .lvca-flex-direction-nav a:hover:before, .lvca-container .lvca-flex-direction-nav a:hover:hover:before {
margin: 2px;
vertical-align: middle;
display: inline;
font-family: inherit !important;
opacity: 1; }
.lvca-container .lvca-flex-direction-nav a:hover, .lvca-container .lvca-flex-direction-nav a:hover:hover {
color: #888; }
.lvca-dark-bg .lvca-container .lvca-flex-direction-nav a, .lvca-dark-bg .lvca-container .lvca-flex-direction-nav a:hover {
color: #888; }
.lvca-dark-bg .lvca-container .lvca-flex-direction-nav a:hover, .lvca-dark-bg .lvca-container .lvca-flex-direction-nav a:hover:hover {
color: #aaa; }
@media only screen and (max-width: 960px) {
.lvca-container .lvca-flex-direction-nav a, .lvca-container .lvca-flex-direction-nav a:hover {
display: none; } }
.lvca-container .lvca-flex-direction-nav a.lvca-flex-prev {
left: -30px; }
.lvca-container .lvca-flex-direction-nav a.lvca-flex-prev:before {
content: "\e900"; }
.lvca-container .lvca-flex-direction-nav a.lvca-flex-next {
right: -30px; }
.lvca-container .lvca-flex-direction-nav a.lvca-flex-next:before {
content: "\e901"; }
.lvca-container .lvca-flex-control-nav {
width: 100%;
position: absolute;
bottom: -40px;
text-align: center;
padding: 0 !important;
margin: 0 !important; }
.lvca-container .lvca-flex-control-nav li, .lvca-container .lvca-flex-control-nav li:hover {
margin: 0 8px 0 0;
padding: 0;
border: none;
-webkit-box-shadow: none;
box-shadow: none; }
.lvca-container .lvca-flex-control-nav li a, .lvca-container .lvca-flex-control-nav li a:hover {
background: #aaa;
border: 1px solid #aaa;
border-radius: 50%;
width: 12px;
height: 12px;
-webkit-box-shadow: none;
box-shadow: none;
-webkit-transition: all 0.2s ease-in 0s;
transition: all 0.2s ease-in 0s;
display: inline-block;
vertical-align: middle;
outline: none; }
.lvca-dark-bg .lvca-container .lvca-flex-control-nav li a, .lvca-dark-bg .lvca-container .lvca-flex-control-nav li a:hover {
background: #ccc;
border-color: #ccc; }
.lvca-container .lvca-flex-control-nav li a.lvca-flex-active, .lvca-container .lvca-flex-control-nav li a:hover.lvca-flex-active, .lvca-container .lvca-flex-control-nav li a:hover {
background: none; }
.lvca-container .lvca-flex-control-nav li a.lvca-flex-active, .lvca-container .lvca-flex-control-nav li a:hover.lvca-flex-active {
width: 14px;
height: 14px; }
.lvca-container .lvca-flex-control-thumbs {
bottom: -120px; }
@media only screen and (max-width: 600px) {
.lvca-container .lvca-flex-control-thumbs {
bottom: -80px; } }
.lvca-container .lvca-flex-control-thumbs li {
width: auto;
float: none; }
.lvca-container .lvca-flex-control-thumbs li img {
max-width: 100%;
width: 150px; }
@media only screen and (max-width: 600px) {
.lvca-container .lvca-flex-control-thumbs li img {
width: 100px; } } .slick-loading .slick-list {
background: #fff url(https://camaralucida.cl/wp-content/plugins/addons-for-visual-composer/assets/css/ajax-loader.gif) center center no-repeat; }
@media only screen and (max-width: 1024px) {
.slick-slider {
padding: 0 10px; } }
.lvca-container .slick-prev, .lvca-container .slick-next {
position: absolute;
bottom: initial;
left: initial;
right: initial;
top: 50%;
width: 28px;
height: 28px;
margin: -14px 0 0; }
.rtl .lvca-container .slick-prev, .rtl .lvca-container .slick-next {
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
direction: ltr; }
.lvca-container .slick-prev, .lvca-container .slick-prev:before, .lvca-container .slick-prev:after, .lvca-container .slick-next, .lvca-container .slick-next:before, .lvca-container .slick-next:after {
text-shadow: none;
background: none;
border: none;
padding: 0;
opacity: 1;
font-family: 'lvca-icomoon' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 24px;
color: #aaa;
overflow: hidden;
-webkit-box-shadow: none;
box-shadow: none;
outline: none;
text-indent: 0;
text-align: center;
-webkit-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s; }
.lvca-container .slick-prev:before, .lvca-container .slick-next:before {
margin: 2px;
vertical-align: middle; }
.lvca-container .slick-prev:hover:before, .lvca-container .slick-prev:hover:after, .lvca-container .slick-next:hover:before, .lvca-container .slick-next:hover:after {
color: #888; }
.lvca-dark-bg .lvca-container .slick-prev:before, .lvca-dark-bg .lvca-container .slick-prev:after, .lvca-dark-bg .lvca-container .slick-next:before, .lvca-dark-bg .lvca-container .slick-next:after {
color: #888; }
.lvca-dark-bg .lvca-container .slick-prev:hover:before, .lvca-dark-bg .lvca-container .slick-prev:hover:after, .lvca-dark-bg .lvca-container .slick-next:hover:before, .lvca-dark-bg .lvca-container .slick-next:hover:after {
color: #aaa;
background: none; }
.lvca-container .slick-prev {
left: -40px; }
.lvca-container .slick-prev:before {
content: "\e900"; }
.lvca-container .slick-next {
right: -40px; }
.lvca-container .slick-next:before {
content: "\e901"; }
.lvca-container ul.slick-dots {
width: 100%;
position: absolute;
bottom: -30px;
text-align: center;
padding: 0;
margin: 0; }
.lvca-container ul.slick-dots li {
margin: 0 8px 0 0;
padding: 0;
display: inline-block;
font-size: 0; }
.lvca-container ul.slick-dots li button {
padding: 0;
background: #aaa;
border: 1px solid #aaa;
border-radius: 50%;
width: 12px;
height: 12px;
-webkit-box-shadow: none;
box-shadow: none;
-webkit-transition: background 0.3s ease-in-out 0s;
transition: background 0.3s ease-in-out 0s;
font-size: 0;
outline: none; }
.lvca-container ul.slick-dots li button:before {
display: none; }
.lvca-dark-bg .lvca-container ul.slick-dots li button {
background: #888;
border-color: #888; }
.lvca-container ul.slick-dots li button:hover, .lvca-container ul.slick-dots li.slick-active button {
background: none;
border-color: #aaa; }
.lvca-container ul.slick-dots li.slick-active button {
width: 14px;
height: 14px; } .lvca-widget-heading {
font-size: 18px;
line-height: 26px;
letter-spacing: 1px;
font-weight: bold;
color: #333;
text-transform: uppercase;
clear: none;
margin-top: 0;
margin-bottom: 10px;
font-size: 40px;
line-height: 52px;
text-align: center; }
@media only screen and (max-width: 767px) {
.lvca-widget-heading {
font-size: 32px;
line-height: 44px; } } .lvca-spacer {
clear: both; } input.lvca-button, button.lvca-button, a.lvca-button, .lvca-button:active, .lvca-button:visited {
display: inline-block;
text-align: center;
line-height: 1;
cursor: pointer;
-webkit-appearance: none;
vertical-align: middle;
border: 1px solid transparent;
border-radius: 3px;
padding: 16px 40px;
margin: 0;
font-size: 12px;
font-weight: normal;
text-transform: uppercase;
letter-spacing: 2px;
background-color: #f94213;
color: #fefefe;
outline: none;
-webkit-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s; }
input.lvca-button.lvca-rounded, button.lvca-button.lvca-rounded, a.lvca-button.lvca-rounded, .lvca-button:active.lvca-rounded, .lvca-button:visited.lvca-rounded {
border-radius: 999px; }
input.lvca-button.lvca-large, button.lvca-button.lvca-large, a.lvca-button.lvca-large, .lvca-button:active.lvca-large, .lvca-button:visited.lvca-large {
padding: 20px 60px; }
input.lvca-button.lvca-small, button.lvca-button.lvca-small, a.lvca-button.lvca-small, .lvca-button:active.lvca-small, .lvca-button:visited.lvca-small {
padding: 12px 25px;
font-size: 11px; }
input.lvca-button:hover, button.lvca-button:hover, a.lvca-button:hover, .lvca-button:active:hover, .lvca-button:visited:hover {
background-color: #f9633e;
color: #fefefe; }
input.lvca-button img, input.lvca-button span.lvca-icon, button.lvca-button img, button.lvca-button span.lvca-icon, a.lvca-button img, a.lvca-button span.lvca-icon, .lvca-button:active img, .lvca-button:active span.lvca-icon, .lvca-button:visited img, .lvca-button:visited span.lvca-icon {
margin-right: 10px; }
.lvca-button.lvca-black {
background-color: #363636; }
.lvca-button.lvca-black:hover {
background-color: #434343; }
.lvca-button.lvca-blue {
background-color: #46a5d5; }
.lvca-button.lvca-blue:hover {
background-color: #5bafda; }
.lvca-button.lvca-cyan {
background-color: #57c0dc; }
.lvca-button.lvca-cyan:hover {
background-color: #6cc8e0; }
.lvca-button.lvca-green {
background-color: #00a57d; }
.lvca-button.lvca-green:hover {
background-color: #00bf90; }
.lvca-button.lvca-orange {
background-color: #e87151; }
.lvca-button.lvca-orange:hover {
background-color: #eb8368; }
.lvca-button.lvca-pink {
background-color: #dd5679; }
.lvca-button.lvca-pink:hover {
background-color: #e16b8a; }
.lvca-button.lvca-red {
background-color: #da4f49; }
.lvca-button.lvca-red:hover {
background-color: #de635e; }
.lvca-button.lvca-teal {
background-color: #28c2ba; }
.lvca-button.lvca-teal:hover {
background-color: #2fd4cc; }
.lvca-button.lvca-trans {
color: #333;
background-color: transparent; background-color: rgba(0, 0, 0, 0);
border: 2px solid #a5a5a5; }
.lvca-button.lvca-trans:hover {
background-color: #fff;
color: #333 !important;
border-color: #fff; }
.lvca-button.lvca-semitrans {
color: #fff;
background-color: transparent; background-color: rgba(125, 125, 125, 0.5); }
.lvca-button.lvca-semitrans:hover {
background-color: #fff;
color: #333 !important; } .lvca-post-link-overlay {
position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
width: 100%;
z-index: 1; }
.lvca-terms a, .lvca-post-title a {
-webkit-transition: all 0.5s ease-out 0s;
transition: all 0.5s ease-out 0s; }
.lvca-read-more {
position: relative;
display: inline-block;
font-size: 0.75rem;
line-height: 1;
text-decoration: none;
padding: 8px 15px;
margin-top: 15px;
-webkit-transition: all 0.5s ease-out 0s;
transition: all 0.5s ease-out 0s;
transition: all 0.5s ease-out 0s; }
.lvca-post-featured-img-bg {
position: relative;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
margin-bottom: 15px; }@font-face {
font-family: 'lvca-icomoon';
src:    url(//camaralucida.cl/wp-content/plugins/addons-for-visual-composer/assets/css/fonts/icomoon/icomoon.eot?qq9b0v);
src:    url(//camaralucida.cl/wp-content/plugins/addons-for-visual-composer/assets/css/fonts/icomoon/icomoon.eot?qq9b0v#iefix) format('embedded-opentype'),
url(//camaralucida.cl/wp-content/plugins/addons-for-visual-composer/assets/css/fonts/icomoon/icomoon.ttf?qq9b0v) format('truetype'),
url(//camaralucida.cl/wp-content/plugins/addons-for-visual-composer/assets/css/fonts/icomoon/icomoon.woff?qq9b0v) format('woff'),
url(//camaralucida.cl/wp-content/plugins/addons-for-visual-composer/assets/css/fonts/icomoon/icomoon.svg?qq9b0v#icomoon) format('svg');
font-weight: normal;
font-style: normal;
}
[class^="lvca-icon-"], [class*=" lvca-icon-"] { font-family: 'lvca-icomoon' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.lvca-icon-arrow-left:before {
content: "\e900";
}
.lvca-icon-arrow-right:before {
content: "\e901";
}
.lvca-icon-aim:before {
content: "\e902";
}
.lvca-icon-behance:before {
content: "\e903";
}
.lvca-icon-dribbble:before {
content: "\e904";
}
.lvca-icon-facebook:before {
content: "\e905";
}
.lvca-icon-flickr:before {
content: "\e906";
}
.lvca-icon-googleplus:before {
content: "\e907";
}
.lvca-icon-linkedin:before {
content: "\e908";
}
.lvca-icon-pinterest:before {
content: "\e909";
}
.lvca-icon-skype:before {
content: "\e90a";
}
.lvca-icon-twitter:before {
content: "\e90b";
}
.lvca-icon-vimeo:before {
content: "\e90c";
}
.lvca-icon-zerply:before {
content: "\e90d";
}
.lvca-icon-quote:before {
content: "\e90e";
}
.lvca-icon-video-play:before {
content: "\e90f";
}
.lvca-icon-email:before {
content: "\e910";
}
.lvca-icon-close:before {
content: "\e911";
}
.lvca-icon-plus:before {
content: "\e912";
}
.lvca-icon-arrow-right-toggle:before {
content: "\e913";
}
.lvca-icon-menu:before {
content: "\e914";
}
.lvca-icon-menu-2:before {
content: "\e915";
}
.lvca-icon-fit-to:before {
content: "\e916";
}
.lvca-icon-full-screen:before {
content: "\e917";
}
.lvca-icon-arrow-left2:before {
content: "\e918";
}
.lvca-icon-arrow-left3:before {
content: "\e919";
}
.lvca-icon-arrow-right2:before {
content: "\e91a";
}
.lvca-icon-arrow-right3:before {
content: "\e91b";
}
.lvca-icon-start:before {
content: "\e91c";
}
.lvca-icon-instagram:before {
content: "\ea92";
}
.lvca-icon-angle-left:before {
content: "\f104";
}
.lvca-icon-angle-right:before {
content: "\f105";
}.wpcf7 .screen-reader-response {
position: absolute;
overflow: hidden;
clip: rect(1px, 1px, 1px, 1px);
clip-path: inset(50%);
height: 1px;
width: 1px;
margin: -1px;
padding: 0;
border: 0;
word-wrap: normal !important;
}
.wpcf7 .hidden-fields-container {
display: none;
}
.wpcf7 form .wpcf7-response-output {
margin: 2em 0.5em 1em;
padding: 0.2em 1em;
border: 2px solid #00a0d2; }
.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
display: none;
}
.wpcf7 form.sent .wpcf7-response-output {
border-color: #46b450; }
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
border-color: #dc3232; }
.wpcf7 form.spam .wpcf7-response-output {
border-color: #f56e28; }
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
border-color: #ffb900; }
.wpcf7-form-control-wrap {
position: relative;
}
.wpcf7-not-valid-tip {
color: #dc3232; font-size: 1em;
font-weight: normal;
display: block;
}
.use-floating-validation-tip .wpcf7-not-valid-tip {
position: relative;
top: -2ex;
left: 1em;
z-index: 100;
border: 1px solid #dc3232;
background: #fff;
padding: .2em .8em;
width: 24em;
}
.wpcf7-list-item {
display: inline-block;
margin: 0 0 0 1em;
}
.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
content: " ";
}
.wpcf7-spinner {
visibility: hidden;
display: inline-block;
background-color: #23282d; opacity: 0.75;
width: 24px;
height: 24px;
border: none;
border-radius: 100%;
padding: 0;
margin: 0 24px;
position: relative;
}
form.submitting .wpcf7-spinner {
visibility: visible;
}
.wpcf7-spinner::before {
content: '';
position: absolute;
background-color: #fbfbfc; top: 4px;
left: 4px;
width: 6px;
height: 6px;
border: none;
border-radius: 100%;
transform-origin: 8px 8px;
animation-name: spin;
animation-duration: 1000ms;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
@media (prefers-reduced-motion: reduce) {
.wpcf7-spinner::before {
animation-name: blink;
animation-duration: 2000ms;
}
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@keyframes blink {
from {
opacity: 0;
}
50% {
opacity: 1;
}
to {
opacity: 0;
}
}
.wpcf7 [inert] {
opacity: 0.5;
}
.wpcf7 input[type="file"] {
cursor: pointer;
}
.wpcf7 input[type="file"]:disabled {
cursor: default;
}
.wpcf7 .wpcf7-submit:disabled {
cursor: not-allowed;
}
.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
direction: ltr;
}
.wpcf7-reflection > output {
display: list-item;
list-style: none;
}
.wpcf7-reflection > output[hidden] {
display: none;
}#respond textarea,
.qodef-style-form textarea,
#respond input[type='text'],
input[type='text'],
input[type='email'],
input[type='password'],
.post-password-form input[type='password'],
.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-number,
.wpcf7-form-control.wpcf7-date,
.wpcf7-form-control.wpcf7-textarea,
.wpcf7-form-control.wpcf7-select,
.wpcf7-form-control.wpcf7-quiz {
width: 100%;
margin: 0 0 20px;
padding: 15px 18px;
font-family: inherit;
font-size: 14px;
line-height: 20px;
font-weight: inherit;
color: #959595;
background-color: transparent;
border: 1px solid #dad8d8;
border-radius: 0;
text-align: left;
outline: 0;
-webkit-appearance: none;
cursor: pointer;
box-sizing: border-box;
-webkit-transition: border-color 0.2s ease-in-out;
-moz-transition: border-color 0.2s ease-in-out;
transition: border-color 0.2s ease-in-out;
}
#respond textarea:focus,
.qodef-style-form textarea:focus,
#respond input[type='text']:focus,
input[type='text']:focus,
input[type='email']:focus,
input[type='password']:focus,
.wpcf7-form-control.wpcf7-text:focus,
.wpcf7-form-control.wpcf7-number:focus,
.wpcf7-form-control.wpcf7-date:focus,
.wpcf7-form-control.wpcf7-textarea:focus,
.wpcf7-form-control.wpcf7-select:focus,
.wpcf7-form-control.wpcf7-quiz:focus {
color: #696969;
border-color: #959595;
}
#respond textarea::-webkit-input-placeholder,
.qodef-style-form textarea::-webkit-input-placeholder,
#respond input[type='text']::-webkit-input-placeholder,
input[type='text']::-webkit-input-placeholder,
input[type='email']::-webkit-input-placeholder,
input[type='password']::-webkit-input-placeholder,
.post-password-form input[type='password']::-webkit-input-placeholder,
.wpcf7-form-control.wpcf7-text::-webkit-input-placeholder,
.wpcf7-form-control.wpcf7-number::-webkit-input-placeholder,
.wpcf7-form-control.wpcf7-date::-webkit-input-placeholder,
.wpcf7-form-control.wpcf7-textarea::-webkit-input-placeholder,
.wpcf7-form-control.wpcf7-select::-webkit-input-placeholder,
.wpcf7-form-control.wpcf7-quiz::-webkit-input-placeholder {
color: #959595;
}
#respond textarea:-moz-placeholder,
.qodef-style-form textarea:-moz-placeholder,
#respond input[type='text']:-moz-placeholder,
input[type='text']:-moz-placeholder,
input[type='email']:-moz-placeholder,
input[type='password']:-moz-placeholder,
.wpcf7-form-control.wpcf7-text:-moz-placeholder,
.wpcf7-form-control.wpcf7-number:-moz-placeholder,
.wpcf7-form-control.wpcf7-date:-moz-placeholder,
.wpcf7-form-control.wpcf7-textarea:-moz-placeholder,
.wpcf7-form-control.wpcf7-select:-moz-placeholder,
.wpcf7-form-control.wpcf7-quiz:-moz-placeholder {
color: #959595;
}
#respond textarea::-moz-placeholder,
.qodef-style-form textarea::-moz-placeholder,
#respond input[type='text']::-moz-placeholder,
input[type='text']::-moz-placeholder,
input[type='email']::-moz-placeholder,
input[type='password']::-moz-placeholder,
.post-password-form input[type='password']::-moz-placeholder,
.wpcf7-form-control.wpcf7-text::-moz-placeholder,
.wpcf7-form-control.wpcf7-number::-moz-placeholder,
.wpcf7-form-control.wpcf7-date::-moz-placeholder,
.wpcf7-form-control.wpcf7-textarea::-moz-placeholder,
.wpcf7-form-control.wpcf7-select::-moz-placeholder,
.wpcf7-form-control.wpcf7-quiz::-moz-placeholder {
color: #959595;
}
#respond textarea:-ms-input-placeholder,
.qodef-style-form textarea:-ms-input-placeholder,
#respond input[type='text']:-ms-input-placeholder,
input[type='text']:-ms-input-placeholder,
input[type='email']:-ms-input-placeholder,
input[type='password']:-ms-input-placeholder,
.wpcf7-form-control.wpcf7-text:-ms-input-placeholder,
.wpcf7-form-control.wpcf7-number:-ms-input-placeholder,
.wpcf7-form-control.wpcf7-date:-ms-input-placeholder,
.wpcf7-form-control.wpcf7-textarea:-ms-input-placeholder,
.wpcf7-form-control.wpcf7-select:-ms-input-placeholder,
.wpcf7-form-control.wpcf7-quiz:-ms-input-placeholder {
color: #959595;
}     html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
background: transparent;
border: 0;
margin: 0;
padding: 0;
vertical-align: baseline;
outline: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section {
display: block;
}
del {
text-decoration: line-through;
} table {
border-collapse: collapse;
border-spacing: 0;
border: medium none;
vertical-align: middle;
}
table th {
border: 0;
padding: 5px 7px;
text-align: center;
}
table td {
padding: 5px 10px;
text-align: center;
}
a img {
border: none;
}
img,
.wp-caption {
max-width: 100%;
height: auto;
}
iframe {
max-width: 100%;
}  .clearfix:before,
.clearfix:after {
content: " ";
display: table;
}
.clearfix:after {
clear: both;
}
.clearfix {
*zoom: 1;
}
.clear:after {
clear: both;
content: "";
display: block;
}
html {
overflow-y: scroll !important; }
body {
font-family: "Poppins", sans-serif;
font-size: 14px;
line-height: 24px;
font-weight: 400;
color: #959595;
background-color: #fff;
overflow-x: hidden !important;
-webkit-font-smoothing: antialiased;
text-align: justify;
}
h1 {
font-size: 60px;
line-height: 1.085em;
font-family: "Poppins", sans-serif;
letter-spacing: -.03em;
font-weight: 600;
}
h2 {
font-size: 36px;
line-height: 1.15em;
font-family: "Poppins", sans-serif;
letter-spacing: -.03em;
font-weight: 600;
}
h3 {
font-size: 19px;
line-height: 1.3em;
font-family: "Poppins", sans-serif;
letter-spacing: -.05em;
font-weight: 600;
}
h4 {
font-size: 17px;
line-height: 1.3em;
font-family: "Oswald", sans-serif;
font-weight: 700;
letter-spacing: .05em;
}
h5 {
font-size: 14px;
line-height: 1.3em;
font-family: "Poppins", sans-serif;
letter-spacing: -.03em;
font-weight: 600;
}
h6 {
font-size: 12px;
line-height: 1.3em;
font-family: "Oswald", sans-serif;
letter-spacing: .1em;
font-weight: 700;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 20px 0;
color: #121212;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
color: inherit;
font-family: inherit;
font-size: inherit;
font-weight: inherit;
font-style: inherit;
line-height: inherit;
letter-spacing: inherit;
text-transform: inherit;
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
color: #fe6c61;
}
a,
p a {
color: #000;
text-decoration: none;
-webkit-transition: color 0.2s ease-out;
-moz-transition: color 0.2s ease-out;
transition: color 0.2s ease-out;
text-align: justify;
}
a:hover,
p a:hover {
color: #fe6c61;
}
p {
margin: 10px 0;
text-align: justify;
}
input[type='submit'] {
-webkit-appearance: none;
}
ul,
ol {
color: #000;
list-style-position: inside;
margin: 15px 0;
}
ul ul,
ol ol,
ol ul,
ul ol {
margin: 0;
padding: 0 0 0 15px;
}
pre {
background-color: #fff;
padding: 15px;
max-width: 100%;
white-space: pre-wrap;
word-wrap: break-word;
margin: 15px 0;
}
dt {
font-size: 15px;
font-weight: bold;
margin-bottom: 10px;
}
dd {
margin-bottom: 15px;
}
sub,
sup {
font-size: 75%;
height: 0;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sub {
top: 0.5ex;
}
sup {
bottom: 0.5ex;
}
.wp-caption-text {
margin: 0;
font-style: italic;
}
table {
width: 100%;
}
table thead tr,
table tbody tr {
border: 1px solid #ebebeb;
}
table tbody th {
border-right: 1px solid #ebebeb;
}
blockquote {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
margin: 10px 0;
padding: 0;
font-size: 18px;
line-height: 30px;
text-align: center;
quotes: none;
box-sizing: border-box;
}
blockquote > * {
color: inherit;
font-family: inherit;
font-size: inherit;
font-weight: inherit;
font-style: inherit;
line-height: inherit;
letter-spacing: inherit;
text-transform: inherit;
margin: 0;
}
blockquote:before,
blockquote:after {
content: '';
}
blockquote cite {
font-style: normal;
font-weight: 400;
} ::selection {
background: #fe6c61;
color: #fff;
} ::-moz-selection {
background: #fe6c61;
color: #fff;
}
.wp-caption,
.wp-caption-text,
.sticky,
.gallery-caption,
.bypostauthor {
opacity: 1;
}
.alignleft {
display: inline;
float: left;
margin: 0 20px 20px 0;
}
.alignright {
display: inline;
float: right;
margin: 0 0 20px 20px;
}
.aligncenter {
clear: both;
display: block;
margin: 10px auto;
}
.text-align-right {
text-align: right;
}
.text-align-left {
text-align: left;
}
.text-align-center {
text-align: center;
}
.qodef-wrapper {
position: relative;
left: 0;
z-index: 1000;
}
.qodef-wrapper .qodef-wrapper-inner {
width: 100%;
overflow: hidden;
}
.qodef-content {
position: relative;
margin-top: 0;
z-index: 101;
background-color: #fff; }
.qodef-boxed {
overflow: hidden !important; }
.qodef-boxed .qodef-wrapper {
display: inline-block;
vertical-align: middle;
width: 100%;
}
.touch .qodef-boxed .qodef-wrapper {
background-repeat: repeat;
}
.qodef-boxed .qodef-wrapper .qodef-wrapper-inner {
width: 1150px;
overflow: visible;
margin: auto;
}
.qodef-boxed .qodef-content {
overflow: hidden;
}
.qodef-boxed .qodef-footer-inner {
width: 1150px;
margin: auto;
}
.qodef-boxed .qodef-page-header .qodef-sticky-header,
.qodef-boxed .qodef-page-header .qodef-fixed-wrapper.fixed {
width: 1150px;
left: auto;
}
.qodef-paspartu-enabled .qodef-wrapper {
padding: 10px;
background-color: #fff;
box-sizing: border-box;
}
.qodef-paspartu-enabled.qodef-top-paspartu-disabled .qodef-wrapper {
padding-top: 0 !important;
}
.qodef-smooth-transition-loader {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 2000;
background-color: #fff;
}
.qodef-container {
position: relative;
padding: 0;
width: 100%;
z-index: 100;
}
.qodef-container:before {
content: " ";
display: table;
}
.qodef-container:after {
content: " ";
display: table;
clear: both;
}
.qodef-container-inner {
width: 1100px;
margin: 0 auto;
}
.qodef-full-width {
position: relative;
z-index: 100;
}
.qodef-content .qodef-content-inner > .qodef-container > .qodef-container-inner,
.qodef-content .qodef-content-inner > .qodef-full-width > .qodef-full-width-inner {
padding-top: 40px;
}
@media only screen and (min-width: 1600px) {
.qodef-grid-1400 .qodef-grid,
.qodef-grid-1400 .qodef-container-inner,
.qodef-grid-1400 .qodef-row-grid-section,
.qodef-grid-1400 .qodef-footer-top-border-holder.qodef-in-grid,
.qodef-grid-1400 .qodef-footer-bottom-border-holder.qodef-in-grid {
width: 1400px;
}
.qodef-grid-1400.qodef-boxed .qodef-footer-inner,
.qodef-grid-1400.qodef-boxed .qodef-wrapper-inner {
width: 1540px;
}
.qodef-grid-1400.qodef-boxed .qodef-page-header .qodef-sticky-header,
.qodef-grid-1400.qodef-boxed .qodef-page-header .qodef-fixed-wrapper.fixed {
width: 1540px;
left: auto;
}
}
@media only screen and (min-width: 1400px) {
.qodef-grid-1300 .qodef-grid,
.qodef-grid-1300 .qodef-container-inner,
.qodef-grid-1300 .qodef-row-grid-section {
width: 1300px;
}
.qodef-grid-1300.qodef-boxed .qodef-footer-inner,
.qodef-grid-1300.qodef-boxed .qodef-wrapper-inner {
width: 1350px;
}
.qodef-grid-1300.qodef-boxed .qodef-page-header .qodef-sticky-header,
.qodef-grid-1300.qodef-boxed .qodef-page-header .qodef-fixed-wrapper.fixed {
width: 1350px;
left: auto;
}
}
@media only screen and (min-width: 1300px) {
.qodef-grid-1200 .qodef-grid,
.qodef-grid-1200 .qodef-container-inner,
.qodef-grid-1200 .qodef-row-grid-section {
width: 1200px;
}
.qodef-grid-1200.qodef-boxed .qodef-footer-inner,
.qodef-grid-1200.qodef-boxed .qodef-wrapper-inner {
width: 1250px;
}
.qodef-grid-1200.qodef-boxed .qodef-page-header .qodef-sticky-header,
.qodef-grid-1200.qodef-boxed .qodef-page-header .qodef-fixed-wrapper.fixed {
width: 1250px;
left: auto;
}
}
@media only screen and (min-width: 1200px) {
.qodef-grid-1000 .qodef-grid,
.qodef-grid-1000 .qodef-container-inner,
.qodef-grid-1000 .qodef-row-grid-section {
width: 1000px;
}
.qodef-grid-1000.qodef-boxed .qodef-footer-inner,
.qodef-grid-1000.qodef-boxed .qodef-wrapper-inner {
width: 1050px;
}
.qodef-grid-1000.qodef-boxed .qodef-page-header .qodef-sticky-header,
.qodef-grid-1000.qodef-boxed .qodef-page-header .qodef-fixed-wrapper.fixed {
width: 1050px;
left: auto;
}
}
@media only screen and (min-width: 1024px) {
.qodef-grid-800 .qodef-grid,
.qodef-grid-800 .qodef-container-inner,
.qodef-grid-800 .qodef-row-grid-section {
width: 800px;
}
.qodef-grid-800.qodef-boxed .qodef-footer-inner,
.qodef-grid-800.qodef-boxed .qodef-wrapper-inner {
width: 850px;
}
.qodef-grid-800.qodef-boxed .qodef-page-header .qodef-sticky-header,
.qodef-grid-800.qodef-boxed .qodef-page-header .qodef-fixed-wrapper.fixed {
width: 850px;
left: auto;
}
} @-webkit-keyframes preload-background {
from {
background-position: 0 0;
}
to {
background-position: 100% 0;
}
}
@keyframes preload-background {
from {
background-position: 0 0;
}
to {
background-position: 100% 0;
}
}
.qodef-preload-background {
background: transparent url(//camaralucida.cl/wp-content/themes/ebullient/assets/img/preload_pattern.png) repeat scroll inherit !important;
-webkit-animation-name: preload-background;
-webkit-animation-duration: 40s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-webkit-animation-delay: 0s;
-webkit-animation-fill-mode: forwards; animation-name: preload-background;
animation-duration: 40s;
animation-iteration-count: infinite;
animation-timing-function: linear;
animation-delay: 0s;
animation-fill-mode: forwards; }
.qodef-grid {
width: 1100px;
margin: 0 auto;
}
.qodef-vertical-align-containers {
position: relative;
height: 100%;
width: 100%;
padding: 0 20px;
box-sizing: border-box;
}
.qodef-vertical-align-containers.qodef-25-50-25 .qodef-position-left,
.qodef-vertical-align-containers.qodef-25-50-25 .qodef-position-right {
width: 25%;
}
.qodef-vertical-align-containers.qodef-25-50-25 .qodef-position-center {
width: 50%;
left: 50%;
-webkit-transform: translateX(-50%);
-moz-transform: translateX(-50%);
transform: translateX(-50%);
}
.qodef-vertical-align-containers.qodef-33-33-33 .qodef-position-left,
.qodef-vertical-align-containers.qodef-33-33-33 .qodef-position-center,
.qodef-vertical-align-containers.qodef-33-33-33 .qodef-position-right {
width: 33.33%;
}
.qodef-vertical-align-containers.qodef-33-33-33 .qodef-position-center {
width: 50%;
left: 50%;
-webkit-transform: translateX(-50%);
-moz-transform: translateX(-50%);
transform: translateX(-50%);
}
.qodef-vertical-align-containers.qodef-50-50 .qodef-position-left,
.qodef-vertical-align-containers.qodef-50-50 .qodef-position-right {
width: 50%;
}
.qodef-vertical-align-containers.qodef-33-66 .qodef-position-left {
width: 33.33%;
}
.qodef-vertical-align-containers.qodef-33-66 .qodef-position-right {
width: 66.66%;
}
.qodef-vertical-align-containers.qodef-66-33 .qodef-position-left {
width: 66.66%;
}
.qodef-vertical-align-containers.qodef-66-33 .qodef-position-right {
width: 33.33%;
}
.qodef-vertical-align-containers .qodef-position-left {
position: relative;
float: left;
z-index: 2;
height: 100%;
}
.qodef-vertical-align-containers .qodef-position-center {
height: 100%;
width: 100%;
position: absolute;
left: 0;
text-align: center;
z-index: 1;
}
.qodef-vertical-align-containers .qodef-position-right {
position: relative;
float: right;
z-index: 2;
height: 100%;
text-align: right;
}
.qodef-vertical-align-containers .qodef-position-left-inner,
.qodef-vertical-align-containers .qodef-position-center-inner,
.qodef-vertical-align-containers .qodef-position-right-inner {
vertical-align: middle;
display: inline-block;
}
.qodef-vertical-align-containers .qodef-position-right.qodef-has-widget .qodef-position-right-inner {
height: 100%;
}
.qodef-vertical-align-containers .qodef-position-left:before,
.qodef-vertical-align-containers .qodef-position-center:before,
.qodef-vertical-align-containers .qodef-position-right:before {
content: "";
display: inline-block;
vertical-align: middle;
height: 100%;
margin-right: 0; } .wpb_row,
.wpb_content_element,
ul.wpb_thumbnails-fluid > li,
.last_toggle_el_margin,
.wpb_button {
margin-bottom: 0 !important;
}
.vc_row .wpb_gmaps_widget .wpb_wrapper {
padding: 0;
background-color: transparent;
}
.qodef-row-grid-section {
position: relative;
width: 1100px;
margin: 0 auto;
z-index: 20;
}
.qodef-content-aligment-left {
text-align: left;
}
.qodef-content-aligment-center {
text-align: center;
}
.qodef-content-aligment-right {
text-align: right;
}
@media only screen and (max-width: 1280px) {
.qodef-disabled-bg-image-bellow-1280 {
background-image: none !important;
}
}
@media only screen and (max-width: 1024px) {
.qodef-disabled-bg-image-bellow-1024 {
background-image: none !important;
}
}
@media only screen and (max-width: 768px) {
.qodef-disabled-bg-image-bellow-768 {
background-image: none !important;
}
}
@media only screen and (max-width: 680px) {
.qodef-disabled-bg-image-bellow-680 {
background-image: none !important;
}
}
@media only screen and (max-width: 480px) {
.qodef-disabled-bg-image-bellow-480 {
background-image: none !important;
}
}
.qodef-parallax-row-holder {
position: static;
padding: 0;
background-repeat: no-repeat;
background-color: transparent;
background-position: center 0;
background-attachment: fixed;
overflow: hidden;
}
@media only screen and (max-width: 1024px) {
.qodef-parallax-row-holder {
height: auto !important;
min-height: 200px !important;
background-position: center top !important;
background-attachment: scroll;
background-size: cover;
}
}  .qodef-rev-has-paspartu {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
height: 100vh;
margin: 0;
box-sizing: border-box;
}
.admin-bar .qodef-rev-has-paspartu {
height: calc(100vh - 32px);
}
.qodef-rev-has-paspartu.qodef-side-paspartu-disabled {
padding-left: 0 !important;
padding-right: 0 !important;
}
.qodef-rev-has-paspartu.qodef-paspartu-tiny {
padding: 10px;
}
.qodef-rev-has-paspartu.qodef-paspartu-tiny.qodef-top-paspartu-disabled {
padding-top: 0;
}
.qodef-rev-has-paspartu.qodef-paspartu-tiny.qodef-top-paspartu-disabled .forcefullwidth_wrapper_tp_banner .tp-fullwidth-forcer {
height: calc(100vh - 10px) !important;
}
.admin-bar .qodef-rev-has-paspartu.qodef-paspartu-tiny.qodef-top-paspartu-disabled .forcefullwidth_wrapper_tp_banner .tp-fullwidth-forcer {
height: calc(100vh - 42px) !important;
}
.qodef-rev-has-paspartu.qodef-paspartu-tiny .forcefullwidth_wrapper_tp_banner .tp-fullwidth-forcer {
height: calc(100vh - 20px) !important;
}
.admin-bar .qodef-rev-has-paspartu.qodef-paspartu-tiny .forcefullwidth_wrapper_tp_banner .tp-fullwidth-forcer {
height: calc(100vh - 52px) !important;
}
.qodef-rev-has-paspartu.qodef-paspartu-small {
padding: 20px;
}
.qodef-rev-has-paspartu.qodef-paspartu-small.qodef-top-paspartu-disabled {
padding-top: 0;
}
.qodef-rev-has-paspartu.qodef-paspartu-small.qodef-top-paspartu-disabled .forcefullwidth_wrapper_tp_banner .tp-fullwidth-forcer {
height: calc(100vh - 20px) !important;
}
.admin-bar .qodef-rev-has-paspartu.qodef-paspartu-small.qodef-top-paspartu-disabled .forcefullwidth_wrapper_tp_banner .tp-fullwidth-forcer {
height: calc(100vh - 52px) !important;
}
.qodef-rev-has-paspartu.qodef-paspartu-small .forcefullwidth_wrapper_tp_banner .tp-fullwidth-forcer {
height: calc(100vh - 40px) !important;
}
.admin-bar .qodef-rev-has-paspartu.qodef-paspartu-small .forcefullwidth_wrapper_tp_banner .tp-fullwidth-forcer {
height: calc(100vh - 72px) !important;
}
.qodef-rev-has-paspartu.qodef-paspartu-normal {
padding: 30px;
}
.qodef-rev-has-paspartu.qodef-paspartu-normal.qodef-top-paspartu-disabled {
padding-top: 0;
}
.qodef-rev-has-paspartu.qodef-paspartu-normal.qodef-top-paspartu-disabled .forcefullwidth_wrapper_tp_banner .tp-fullwidth-forcer {
height: calc(100vh - 30px) !important;
}
.admin-bar .qodef-rev-has-paspartu.qodef-paspartu-normal.qodef-top-paspartu-disabled .forcefullwidth_wrapper_tp_banner .tp-fullwidth-forcer {
height: calc(100vh - 62px) !important;
}
.qodef-rev-has-paspartu.qodef-paspartu-normal .forcefullwidth_wrapper_tp_banner .tp-fullwidth-forcer {
height: calc(100vh - 60px) !important;
}
.admin-bar .qodef-rev-has-paspartu.qodef-paspartu-normal .forcefullwidth_wrapper_tp_banner .tp-fullwidth-forcer {
height: calc(100vh - 92px) !important;
}
@media only screen and (max-width: 680px) {
.qodef-rev-has-paspartu.qodef-paspartu-normal {
padding: 20px;
}
.qodef-rev-has-paspartu.qodef-paspartu-normal.qodef-top-paspartu-disabled {
padding-top: 0;
}
.qodef-rev-has-paspartu.qodef-paspartu-normal.qodef-top-paspartu-disabled .forcefullwidth_wrapper_tp_banner .tp-fullwidth-forcer {
height: calc(100vh - 20px) !important;
}
.admin-bar .qodef-rev-has-paspartu.qodef-paspartu-normal.qodef-top-paspartu-disabled .forcefullwidth_wrapper_tp_banner .tp-fullwidth-forcer {
height: calc(100vh - 52px) !important;
}
.qodef-rev-has-paspartu.qodef-paspartu-normal .forcefullwidth_wrapper_tp_banner .tp-fullwidth-forcer {
height: calc(100vh - 40px) !important;
}
.admin-bar .qodef-rev-has-paspartu.qodef-paspartu-normal .forcefullwidth_wrapper_tp_banner .tp-fullwidth-forcer {
height: calc(100vh - 72px) !important;
}
}
.qodef-rev-has-paspartu.qodef-paspartu-large {
padding: 50px;
}
.qodef-rev-has-paspartu.qodef-paspartu-large.qodef-top-paspartu-disabled {
padding-top: 0;
}
.qodef-rev-has-paspartu.qodef-paspartu-large.qodef-top-paspartu-disabled .forcefullwidth_wrapper_tp_banner .tp-fullwidth-forcer {
height: calc(100vh - 50px) !important;
}
.admin-bar .qodef-rev-has-paspartu.qodef-paspartu-large.qodef-top-paspartu-disabled .forcefullwidth_wrapper_tp_banner .tp-fullwidth-forcer {
height: calc(100vh - 82px) !important;
}
.qodef-rev-has-paspartu.qodef-paspartu-large .forcefullwidth_wrapper_tp_banner .tp-fullwidth-forcer {
height: calc(100vh - 100px) !important;
}
.admin-bar .qodef-rev-has-paspartu.qodef-paspartu-large .forcefullwidth_wrapper_tp_banner .tp-fullwidth-forcer {
height: calc(100vh - 132px) !important;
}
@media only screen and (max-width: 680px) {
.qodef-rev-has-paspartu.qodef-paspartu-large {
padding: 20px;
}
.qodef-rev-has-paspartu.qodef-paspartu-large.qodef-top-paspartu-disabled {
padding-top: 0;
}
.qodef-rev-has-paspartu.qodef-paspartu-large.qodef-top-paspartu-disabled .forcefullwidth_wrapper_tp_banner .tp-fullwidth-forcer {
height: calc(100vh - 20px) !important;
}
.admin-bar .qodef-rev-has-paspartu.qodef-paspartu-large.qodef-top-paspartu-disabled .forcefullwidth_wrapper_tp_banner .tp-fullwidth-forcer {
height: calc(100vh - 52px) !important;
}
.qodef-rev-has-paspartu.qodef-paspartu-large .forcefullwidth_wrapper_tp_banner .tp-fullwidth-forcer {
height: calc(100vh - 40px) !important;
}
.admin-bar .qodef-rev-has-paspartu.qodef-paspartu-large .forcefullwidth_wrapper_tp_banner .tp-fullwidth-forcer {
height: calc(100vh - 72px) !important;
}
}
.qodef-rev-has-paspartu .forcefullwidth_wrapper_tp_banner {
width: 100% !important;
left: 0 !important;
}
.qodef-rev-has-paspartu .forcefullwidth_wrapper_tp_banner .rev_slider_wrapper {
left: 0 !important;
width: 100% !important;
height: 100% !important;
}
.qodef-rev-has-paspartu .forcefullwidth_wrapper_tp_banner .tp-fullwidth-forcer {
height: 100vh !important;
}
.admin-bar .qodef-rev-has-paspartu .forcefullwidth_wrapper_tp_banner .tp-fullwidth-forcer {
height: calc(100vh - 32px) !important;
}   .screen-reader-text {
clip: rect(1px, 1px, 1px, 1px);
position: absolute !important;
height: 1px;
width: 1px;
overflow: hidden;
}
.screen-reader-text:focus {
clip: auto !important;
display: block;
top: 5px;
left: 5px;
width: auto;
height: auto;
padding: 15px 23px 14px;
color: #21759b;
font-size: 14px;
font-weight: bold;
line-height: normal;
text-decoration: none;
background-color: #f1f1f1;
border-radius: 3px;
box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
z-index: 100000; }  .qodef-two-columns-form-without-space .qodef-column-left {
display: table-cell;
width: 99%;
vertical-align: top;
}
.qodef-two-columns-form-without-space .qodef-column-right {
display: table-cell;
width: 1%;
text-align: left;
vertical-align: top;
}
.qodef-two-columns-form-with-space .qodef-column-left {
display: table-cell;
width: 99%;
vertical-align: top;
padding: 0 10px 0 0;
box-sizing: border-box;
}
.qodef-two-columns-form-with-space .qodef-column-right {
display: table-cell;
width: 1%;
text-align: left;
vertical-align: top;
padding: 0 0 0 10px;
box-sizing: border-box;
} .qodef-no-space.qodef-disable-bottom-space {
margin-bottom: 0;
}
.qodef-no-space .qodef-outer-space {
margin: 0;
}
.qodef-no-space .qodef-outer-space .qodef-item-space {
padding: 0 0px;
margin: 0 0 0px;
}
.qodef-no-space.qodef-disable-item-bottom-space .qodef-item-space {
margin: 0;
}
.qodef-tiny-space.qodef-disable-bottom-space {
margin-bottom: -10px;
}
.qodef-tiny-space .qodef-outer-space {
margin: 0 -5px;
}
.qodef-tiny-space .qode
.qodef-news-holder .qodef-blog-like .qodef-like span,.qodef-news-holder .qodef-post-info-comments-holder span{font-size:11px;font-family:Oswald,sans-serif;text-transform:uppercase;letter-spacing:.05em;font-weight:500}.qodef-news-holder .qodef-news-item .qodef-news-item-inner,.qodef-news-holder .qodef-post-image{position:relative}.qodef-layout5-item .qodef-ni-info-bottom .qodef-post-info-author-link,.qodef-news-holder .qodef-news-item:hover .qodef-post-title a,.qodef-news-holder .qodef-ni-info>div.qodef-post-info-author a{text-decoration:underline}.qodef-news-holder{position:relative;display:inline-block;width:100%;vertical-align:middle}.qodef-news-holder .qodef-news-block-part-featured,.qodef-news-holder .qodef-news-block-part-non-featured,.qodef-news-holder .qodef-news-item{display:inline-block;vertical-align:top;box-sizing:border-box}.qodef-news-holder.qodef-news-separator-between-items .qodef-news-item .qodef-ni-content{padding-bottom:14px;border-bottom:1px solid #ebebeb}.qodef-news-holder.qodef-news-columns-1 .qodef-news-item:last-child .qodef-ni-content{border-bottom:none}.qodef-news-holder.qodef-layout1 .qodef-news-list-title-holder{margin:0 0 17px}.qodef-news-holder.qodef-layout1.qodef-news-columns-1 .qodef-news-item .qodef-ni-content{margin-bottom:6px}.qodef-news-holder.qodef-layout1.qodef-news-columns-1 .qodef-news-item:last-child .qodef-ni-content{margin-bottom:0}.qodef-news-holder.qodef-layout5,.qodef-news-holder.qodef-layout5 .qodef-news-list-inner{height:100%}.qodef-news-holder .qodef-post-title a{color:inherit;word-spacing:.1em}.qodef-news-holder .qodef-blog-like .qodef-like i{color:#b6b6b6}.qodef-news-holder .qodef-blog-like .qodef-like.liked i{color:#969696}.qodef-news-holder .qodef-news-list-inner{opacity:1;-webkit-transition:opacity .2s ease-out .1s;-moz-transition:opacity .2s ease-out .1s;transition:opacity .2s ease-out .1s}.qodef-news-holder.qodef-news-columns-1 .qodef-news-item{width:100%}.qodef-news-holder.qodef-news-columns-2 .qodef-news-item{width:50%}.qodef-news-holder.qodef-news-columns-3 .qodef-news-item{width:33.33333%}.qodef-news-holder.qodef-news-columns-4 .qodef-news-item{width:25%}.qodef-news-holder.qodef-news-columns-5 .qodef-news-item{width:20%}.qodef-news-holder.qodef-news-columns-6 .qodef-news-item{width:16.66667%}.qodef-news-holder .qodef-news-block-part-featured .qodef-news-item,.qodef-news-holder .qodef-news-block-part-non-featured .qodef-news-item{width:100%}.qodef-news-holder.qodef-news-block-pp-two-half .qodef-news-block-part-featured,.qodef-news-holder.qodef-news-block-pp-two-half .qodef-news-block-part-non-featured{width:50%}.qodef-news-holder.qodef-news-block-pp-two-third-one-third .qodef-news-block-part-featured{width:66.67%}.qodef-news-holder.qodef-news-block-pp-one-third-two-third .qodef-news-block-part-featured,.qodef-news-holder.qodef-news-block-pp-two-third-one-third .qodef-news-block-part-non-featured{width:33.33%}.qodef-news-holder.qodef-news-block-pp-one-third-two-third .qodef-news-block-part-non-featured{width:66.67%}.qodef-news-holder.qodef-news-block-pp-three-fourths-one-fourth .qodef-news-block-part-featured{width:75%}.qodef-news-holder.qodef-news-block-pp-three-fourths-one-fourth .qodef-news-block-part-non-featured{width:25%}.qodef-news-holder.qodef-news-skin-light .qodef-ni-info.qodef-ni-info-top>div,.qodef-news-holder.qodef-news-skin-light .qodef-post-title a{color:#fff}.qodef-news-holder.qodef-news-skin-light .qodef-ni-info.qodef-ni-info-top>div a{color:inherit}.qodef-news-holder.qodef-news-skin-light .qodef-ni-info.qodef-ni-info-bottom>div,.qodef-news-holder.qodef-news-skin-light .qodef-ni-info.qodef-ni-info-top>div a:hover{color:#b6b6b6}.qodef-news-holder.qodef-news-skin-light .qodef-ni-info.qodef-ni-info-bottom>div a{color:inherit}.qodef-news-holder.qodef-news-skin-light .qodef-ni-info.qodef-ni-info-bottom>div a:hover{color:rgba(255,255,255,.8)}.qodef-news-holder.qodef-news-skin-light .qodef-ni-info .qodef-blog-like .qodef-like.liked i{color:rgba(255,255,255,.8)!important}.qodef-news-holder.qodef-news-skin-light .qodef-post-excerpt-holder p,.qodef-news-holder.qodef-news-skin-light .qodef-read-more-link{color:#fff}.qodef-news-holder.qodef-news-holder-border-top .qodef-news-list-inner .qodef-news-item:first-child .qodef-ni-inner{padding-top:22px;border-top:1px solid #ebebeb}.qodef-post-single-image-full .qodef-post-info-bottom,.qodef-post-single-image-in-grid .qodef-post-info-bottom{border-top:0}.qodef-news-holder .qodef-news-item:hover .qodef-post-image-overlay{opacity:.45}.qodef-news-holder .qodef-news-item.qodef-grayscale-hover .qodef-post-image-overlay{display:none}.qodef-news-holder .qodef-post-image img{display:block}.qodef-news-holder .qodef-post-image .qodef-post-image-overlay{position:absolute;display:block;width:100%;height:100%;top:0;left:0;opacity:0;background-color:rgba(255,255,255,.5);-webkit-transition:opacity .45s cubic-bezier(.165,.84,.44,1);-moz-transition:opacity .45s cubic-bezier(.165,.84,.44,1);transition:opacity .45s cubic-bezier(.165,.84,.44,1)}.qodef-news-holder .qodef-post-image-background{position:relative;display:inline-block;width:100%;vertical-align:middle;height:100%;background-position:center;background-size:cover}.qodef-news-holder .qodef-post-image-background .qodef-post-image-overlay{position:absolute;display:block;width:100%;height:100%;top:0;left:0;opacity:0;background-color:rgba(255,255,255,.5);-webkit-transition:opacity .45s cubic-bezier(.165,.84,.44,1);-moz-transition:opacity .45s cubic-bezier(.165,.84,.44,1);transition:opacity .45s cubic-bezier(.165,.84,.44,1)}.qodef-news-holder .qodef-post-image-background a{position:absolute;display:block;width:100%;height:100%;top:0;left:0}.qodef-news-holder .qodef-post-excerpt-holder p,.qodef-news-holder .qodef-post-title{margin:0}.qodef-news-holder .qodef-ni-info{display:block;line-height:1}.qodef-news-holder .qodef-ni-info>div{position:relative;display:inline-block;vertical-align:top;margin-right:16px;font-size:12px;line-height:20px;color:#959595}.qodef-news-holder .qodef-ni-info>div.qodef-blog-like span,.qodef-news-holder .qodef-ni-info>div.qodef-post-info-comments-holder span{font-size:11px;font-family:Oswald,sans-serif;font-weight:500;text-transform:uppercase;letter-spacing:.05em}.qodef-news-holder .qodef-ni-info>div:last-child{margin-right:0}.qodef-news-holder .qodef-ni-info>div.qodef-post-info-category{text-transform:uppercase}.qodef-news-holder .qodef-ni-info>div.qodef-post-info-category a{color:inherit}.qodef-news-holder .qodef-ni-info>div.qodef-post-info-category a:hover{color:#b6b6b6}.qodef-news-holder .qodef-ni-info>div.qodef-post-info-date a{color:inherit}.qodef-news-holder .qodef-ni-info>div.qodef-post-info-date a:hover{color:#121212}.qodef-news-holder .qodef-ni-info>div.qodef-blog-like i{margin-right:6px;color:#b6b6b6}.qodef-news-holder .qodef-ni-info>div.qodef-post-info-comments-holder i{color:#b6b6b6;position:relative;top:-1px}.qodef-news-holder .qodef-ni-info>div i{margin-right:3px;font-size:13px;line-height:inherit}.qodef-news-holder .qodef-ni-info-top>div{margin-right:0;padding-right:10px}.qodef-news-holder .qodef-ni-info-top>div:after{content:'/';position:absolute;top:0;right:2px}.qodef-news-holder .qodef-ni-info-top>div:last-child{padding-right:0}.qodef-news-holder .qodef-ni-info-top>div:last-child:after{content:''}.qodef-news-holder .qodef-read-more-link{display:inline-block;margin-top:33px}.qodef-news-holder .qodef-owl-slider{width:auto}.qodef-news-holder .qodef-owl-slider .qodef-news-item{width:100%}.qodef-ni-video-button:hover{color:#b6b6b6}.qodef-news-list-title-holder{position:relative;display:inline-block;vertical-align:middle;margin:0 0 17px}.qodef-news-list-title-holder>*{margin:0}.qodef-news-list-title-holder span{color:#121212;font-size:18px;line-height:30px;font-weight:600}.qodef-news-holder .qodef-news-filter .qodef-news-active-filter .qodef-news-filter-item-text,.qodef-news-holder .qodef-news-filter .qodef-news-filter-item:hover{color:#000}.qodef-post-info-hot-trending{position:absolute;left:0;bottom:0}.qodef-post-info-hot-trending>div{display:inline-block;vertical-align:top;float:left;margin-left:20px;padding:2px 12px 2px 4px;font-size:12px;line-height:20px;color:#000;text-transform:uppercase;letter-spacing:.05em;font-weight:500;font-family:Oswald,sans-serif;background-color:#fff}.qodef-post-info-hot-trending>div:first-child{margin-left:0}.qodef-post-info-hot-trending>div .qodef-news-ht-icon{display:inline-block;vertical-align:top;width:15px;height:20px;margin-right:4px;background-position:center;background-repeat:no-repeat}.qodef-post-info-hot-trending .qodef-news-trending{background-image:url(//camaralucida.cl/wp-content/plugins/select-news/assets/img/trending.png)}.qodef-post-info-hot-trending .qodef-news-hot{background-image:url(//camaralucida.cl/wp-content/plugins/select-news/assets/img/hot.png)}.qodef-news-holder.qodef-news-filter-activated .qodef-news-list-inner{opacity:0}.qodef-news-holder .qodef-news-filter{margin:0 -10px 9px;display:inline-block;float:right}.qodef-news-holder .qodef-news-filter .qodef-news-filter-item{padding:0 10px}.qodef-news-holder .qodef-news-filter .qodef-news-filter-item .qodef-news-filter-item-text{font-weight:700;font-family:Oswald,sans-serif;text-transform:uppercase;letter-spacing:.05em;position:relative}.qodef-news-holder .qodef-news-filter .qodef-news-filter-item .qodef-news-filter-item-text:after,.qodef-news-holder .qodef-news-filter .qodef-news-filter-item .qodef-news-filter-item-text:before{content:"";position:absolute;bottom:-2px;right:0;left:auto;width:0;height:2px;background-color:#000;-webkit-transition:all .25s ease-in-out;-moz-transition:all .25s ease-in-out;transition:all .25s ease-in-out}.qodef-news-holder .qodef-news-filter .qodef-news-filter-item:hover .qodef-news-filter-item-text:after,.qodef-news-holder .qodef-news-filter .qodef-news-filter-item:hover .qodef-news-filter-item-text:before{width:100%;left:0}.qodef-news-holder .qodef-news-filter .qodef-news-active-filter{cursor:default}.qodef-news-holder .qodef-news-filter .qodef-news-active-filter .qodef-news-filter-item-text:after,.qodef-news-holder .qodef-news-filter .qodef-news-active-filter .qodef-news-filter-item-text:before{width:100%;left:0}.qodef-news-filter-loading{position:absolute;top:0;left:0;width:100%;height:100%;display:none;text-align:center}.qodef-news-filter-loading .qodef-news-filter-loading-table{position:relative;display:table;table-layout:fixed;height:100%;width:100%}.qodef-news-filter-loading .qodef-news-filter-loading-table-cell{position:relative;display:table-cell;height:100%;width:100%;vertical-align:middle;text-align:center}.qodef-news-filter-loading .qodef-news-filter-loading-table-cell>span{display:block;width:51px;height:51px;margin:auto;background-color:#121212;-webkit-animation:rotateplane 1.2s infinite cubic-bezier(.165,.84,.44,1);animation:rotateplane 1.2s infinite cubic-bezier(.165,.84,.44,1)}.qodef-news-filter-loading.qodef-news-activate{display:block}.qodef-news-holder.qodef-news-pag-standard .qodef-news-list-inner{opacity:1;-webkit-transition:opacity .2s ease-out;-moz-transition:opacity .2s ease-out;transition:opacity .2s ease-out}.qodef-news-holder.qodef-news-pag-standard.qodef-news-standard-pag-animate .qodef-news-list-inner,.qodef-news-standard-pagination ul li.qodef-news-pag-prev a{opacity:0}.qodef-news-standard-pagination{position:relative;display:inline-block;width:100%;vertical-align:middle;margin:20px 0;clear:both}.qodef-news-standard-pagination ul{position:relative;display:inline-block;width:100%;vertical-align:middle;padding:0;margin:0;list-style:none;text-align:center}.qodef-news-standard-pagination ul li{position:relative;display:inline-block;vertical-align:top;margin:0 12px;padding:0}.qodef-news-standard-pagination ul li a{position:relative;display:inline-block;vertical-align:middle;margin:0;padding:0}.qodef-news-standard-pagination ul li.qodef-news-pag-active a{color:#fe6c61}.qodef-news-standard-pagination ul li.qodef-news-pag-next,.qodef-news-standard-pagination ul li.qodef-news-pag-prev{position:absolute;top:0}.qodef-news-standard-pagination ul li.qodef-news-pag-next a,.qodef-news-standard-pagination ul li.qodef-news-pag-prev a{font-size:30px;-webkit-transition:color .2s ease-out,opacity .2s ease-out;-moz-transition:color .2s ease-out,opacity .2s ease-out;transition:color .2s ease-out,opacity .2s ease-out}.qodef-news-pag-loading,.qodef-post-single-image-full article .qodef-post-info-top>div a{font-size:12px;color:#121212;font-family:Oswald,sans-serif;text-transform:uppercase}.qodef-news-standard-pagination ul li.qodef-news-pag-next a span,.qodef-news-standard-pagination ul li.qodef-news-pag-next a span:before,.qodef-news-standard-pagination ul li.qodef-news-pag-prev a span,.qodef-news-standard-pagination ul li.qodef-news-pag-prev a span:before{display:block;line-height:inherit}.qodef-news-standard-pagination ul li.qodef-news-pag-prev{left:0}.qodef-news-standard-pagination ul li.qodef-news-pag-next{right:0}.qodef-news-standard-pagination ul li.qodef-news-pag-next a{opacity:1}.qodef-news-standard-pagination ul li.qodef-news-pag-first-page a{opacity:0}.qodef-news-standard-pagination ul li.qodef-news-pag-last-page a{opacity:1}.qodef-news-load-more-pagination{position:relative;display:inline-block;width:100%;vertical-align:middle;margin:40px 0 30px;text-align:center}.qodef-news-pag-loading{position:relative;display:none;width:100%;margin:40px 0 20px;line-height:2em;letter-spacing:.1em;font-weight:700;text-align:center}.qodef-post-single-image-full .qodef-post-info-below-title,.qodef-post-single-image-in-grid .qodef-post-info-below-title{margin-top:11px;margin-bottom:33px}.qodef-news-pag-loading>span{padding:12px 46px}.qodef-news-pag-loading.qodef-news-pag-standard-trigger{position:absolute;top:50px;left:0}.qodef-news-pag-loading.qodef-showing{display:block}.qodef-post-single-image-full .qodef-sidebar-holder{padding-left:25px}.qodef-post-single-image-full article .qodef-post-info-top{margin-bottom:1px}.qodef-post-single-image-full article .qodef-post-info-top>div a{font-weight:750;letter-spacing:.05em}.qodef-post-single-image-full .qodef-post-info-below-title .qodef-post-info-date a,.qodef-post-single-image-full article .qodef-post-info-top>div a:hover{color:#b6b6b6}.qodef-post-single-image-full .qodef-post-info-below-title>div{display:inline-block;font-size:11px;font-family:Oswald,sans-serif;text-transform:uppercase;color:#b6b6b6;letter-spacing:.05em;font-weight:500}.qodef-post-single-image-full .qodef-post-info-below-title .qodef-post-info-author a,.qodef-post-single-image-full .qodef-post-info-below-title .qodef-post-info-date a:hover{color:#121212}.qodef-post-single-image-full .qodef-post-info-below-title .qodef-post-info-author a:hover,.qodef-post-single-image-full .qodef-post-info-below-title .qodef-post-info-comments-holder a{color:#b6b6b6}.qodef-post-single-image-full .qodef-post-info-below-title .qodef-views-holder{margin-left:13px}.qodef-post-single-image-full .qodef-post-info-below-title .qodef-views-holder .fa-eye{font-size:12px;position:relative;top:-1px}.qodef-post-single-image-full .qodef-tags-holder .qodef-tags-text,.qodef-post-single-image-full .qodef-tags-holder a{font-size:17px;font-family:Oswald,sans-serif;letter-spacing:.05em;text-transform:uppercase}.qodef-post-single-image-full .qodef-post-info-below-title .qodef-post-info-comments-holder{margin-left:5px}.qodef-post-single-image-full .qodef-post-info-below-title .qodef-post-info-comments-holder i{position:relative;top:-1px}.qodef-post-single-image-full .qodef-tags-holder .qodef-tags-text{color:#000}.qodef-post-single-image-full .qodef-tags-holder a{color:#b6b6b6}.qodef-post-single-image-full .qodef-post-info-bottom-right>div{display:inline-block;font-size:11px;color:#b6b6b6}.qodef-post-single-image-full .qodef-post-info-bottom-right .qodef-blog-like span{font-family:Oswald,sans-serif;font-weight:500;margin-left:4px}.qodef-post-single-image-full .qodef-post-info-bottom-right .qodef-blog-like i,.qodef-post-single-image-full .qodef-post-info-bottom-right .qodef-blog-like span{color:#b6b6b6}.qodef-post-single-image-full .qodef-news-post-top-holder{position:relative;margin-bottom:33px}.qodef-post-single-image-full .qodef-news-post-top-holder .qodef-top-part-post-image{width:100%;text-align:center}.qodef-post-single-image-full .qodef-news-post-top-holder .qodef-top-part-post-image img{vertical-align:middle}.qodef-post-single-image-full .qodef-news-post-top-holder .qodef-npt-info-bottom{position:absolute;bottom:0;left:0;width:100%}.qodef-post-single-image-full .qodef-news-post-top-holder .qodef-npt-info-bottom .qodef-npt-info-bottom-inner{display:inline-block;vertical-align:middle;background-color:#fff;padding:3px 7px}.qodef-post-single-image-in-grid .qodef-sidebar-holder{padding-left:25px}.qodef-post-single-image-in-grid article .qodef-post-info-top{margin-bottom:1px}.qodef-post-single-image-in-grid article .qodef-post-info-top>div a{font-size:12px;font-family:Oswald,sans-serif;font-weight:500;text-transform:uppercase;letter-spacing:.05em;color:#000}.qodef-post-single-image-in-grid .qodef-post-info-below-title .qodef-post-info-date a,.qodef-post-single-image-in-grid article .qodef-post-info-top>div a:hover{color:#b6b6b6}.qodef-post-single-image-in-grid .qodef-post-info-below-title>div{display:inline-block;font-size:11px;font-family:Oswald,sans-serif;text-transform:uppercase;color:#b6b6b6;letter-spacing:.05em;font-weight:500}.qodef-post-single-image-in-grid .qodef-post-info-below-title .qodef-post-info-author a,.qodef-post-single-image-in-grid .qodef-post-info-below-title .qodef-post-info-date a:hover{color:#121212}.qodef-post-single-image-in-grid .qodef-post-info-below-title .qodef-post-info-author a:hover,.qodef-post-single-image-in-grid .qodef-post-info-below-title .qodef-post-info-comments-holder a{color:#b6b6b6}.qodef-post-single-image-in-grid .qodef-post-info-below-title .qodef-views-holder{margin-left:13px}.qodef-post-single-image-in-grid .qodef-post-info-below-title .qodef-views-holder .fa-eye{font-size:12px;position:relative;top:-1px}.qodef-post-single-image-in-grid .qodef-post-info-below-title .qodef-post-info-comments-holder{margin-left:5px}.qodef-post-single-image-in-grid .qodef-post-info-below-title .qodef-post-info-comments-holder i{position:relative;top:-1px}.qodef-post-single-image-in-grid .qodef-tags-holder .qodef-tags-text{font-family:Oswald,sans-serif;font-size:17px;text-transform:uppercase;color:#000;letter-spacing:.05em}.qodef-post-single-image-in-grid .qodef-tags-holder a{font-family:Oswald,sans-serif;font-size:17px;text-transform:uppercase;color:#b6b6b6;letter-spacing:.05em}.qodef-post-single-image-in-grid .qodef-post-info-bottom-right>div{display:inline-block;font-size:11px;color:#b6b6b6}.qodef-post-single-image-in-grid .qodef-post-info-bottom-right .qodef-blog-like span{font-family:Oswald,sans-serif;font-weight:500;margin-left:4px}.qodef-post-single-image-in-grid .qodef-post-info-bottom-right .qodef-blog-like i,.qodef-post-single-image-in-grid .qodef-post-info-bottom-right .qodef-blog-like span{color:#b6b6b6}.qodef-post-single-image-in-grid .qodef-news-post-top-holder{position:relative;margin-bottom:33px}.qodef-post-single-image-in-grid .qodef-news-post-top-holder .qodef-top-part-post-image{width:100%;text-align:center}.qodef-post-single-image-in-grid .qodef-news-post-top-holder .qodef-top-part-post-image img{vertical-align:middle}.qodef-post-single-image-in-grid .qodef-news-post-top-holder .qodef-npt-info-bottom{position:absolute;bottom:0;left:0;width:100%}.qodef-post-single-image-in-grid .qodef-news-post-top-holder .qodef-npt-info-bottom .qodef-npt-info-bottom-inner{display:inline-block;vertical-align:middle;background-color:#fff;padding:3px 7px}.qodef-post-single-info-in-left-corner .qodef-sidebar-holder{padding-left:25px}.qodef-post-single-info-in-left-corner .qodef-post-info-hot-trending{right:0;bottom:0;left:inherit;top:inherit}.qodef-post-single-info-in-left-corner .qodef-post-info-below-title{margin-top:11px}.qodef-post-single-info-in-left-corner .qodef-post-info-below-title>div{display:inline-block;font-size:11px;font-family:Oswald,sans-serif;text-transform:uppercase;color:#b6b6b6;letter-spacing:.05em;font-weight:500}.qodef-post-single-info-in-left-corner .qodef-post-info-below-title .qodef-post-info-author a{color:#121212}.qodef-post-single-info-in-left-corner .qodef-post-info-below-title .qodef-post-info-author a:hover,.qodef-post-single-info-in-left-corner .qodef-post-info-below-title .qodef-post-info-date a{color:#b6b6b6}.qodef-post-single-info-in-left-corner .qodef-post-info-below-title .qodef-post-info-date a:hover{color:#121212}.qodef-post-single-info-in-left-corner .qodef-post-info-below-title .qodef-views-holder{margin-left:13px}.qodef-post-single-info-in-left-corner .qodef-post-info-below-title .qodef-views-holder .fa-eye{font-size:12px;position:relative;top:-1px}.qodef-post-single-info-in-left-corner .qodef-post-info-below-title .qodef-post-info-comments-holder{margin-left:3px}.qodef-post-single-info-in-left-corner .qodef-post-info-below-title .qodef-post-info-comments-holder i{position:relative;top:-1px}.qodef-post-single-info-in-left-corner .qodef-post-info-below-title .qodef-post-info-comments-holder a{color:#b6b6b6}.qodef-post-single-info-in-left-corner article .qodef-post-info-top{margin-bottom:0;margin-top:12px}.qodef-post-single-info-in-left-corner article .qodef-post-info-top>div a{font-size:12px;font-family:Oswald,sans-serif;font-weight:500;text-transform:uppercase;letter-spacing:.05em;color:#000}.qodef-post-single-info-in-left-corner article .qodef-post-info-bottom{padding-top:70px}.qodef-post-single-info-in-left-corner article .qodef-post-text{padding:0 0 29px}.qodef-post-single-info-in-left-corner .qodef-news-post-top-holder{position:relative;margin-bottom:40px}.qodef-post-single-info-in-left-corner .qodef-news-post-top-holder .qodef-top-part-post-image{width:100%;text-align:center}.qodef-post-single-info-in-left-corner .qodef-news-post-top-holder .qodef-top-part-post-image img{vertical-align:middle}.qodef-post-single-info-in-left-corner .qodef-news-post-top-holder .qodef-news-post-top-info-holder{position:absolute;top:0;left:0;width:100%;height:100%}.qodef-post-single-info-in-left-corner .qodef-news-post-top-holder .qodef-news-post-top-table{position:relative;display:table;table-layout:fixed;height:100%;width:100%}.qodef-post-single-info-in-left-corner .qodef-news-post-top-holder .qodef-news-post-top-table-cell{padding:24px 60px 0 0;position:absolute;bottom:-7px;left:0;text-align:left;background-color:#fff;color:#000;width:60%}.qodef-post-single-info-in-left-corner .qodef-news-post-top-holder .qodef-post-title{margin:0 0 13px}.qodef-post-single-info-in-left-corner .qodef-news-post-top-holder .qodef-blog-like i,.qodef-post-single-info-in-left-corner .qodef-news-post-top-holder .qodef-post-info-comments-holder i{margin-right:5px}.qodef-post-single-info-in-left-corner .qodef-news-post-top-holder .qodef-news-post-single-info>div{display:inline-block;vertical-align:middle;padding:0 4px}.qodef-post-single-info-in-left-corner .qodef-news-post-top-holder .qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown-opener .qodef-social-share-title,.qodef-post-single-info-in-left-corner .qodef-news-post-top-holder .qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown-opener i{color:#fff}.qodef-post-single-info-in-left-corner .qodef-news-post-top-holder .qodef-post-info-date a{font-size:11px;font-family:Oswald,sans-serif;text-transform:uppercase;color:#b6b6b6;letter-spacing:.05em;font-weight:500}.qodef-post-single-info-in-left-corner .qodef-news-post-top-holder .qodef-post-info-date a:hover{color:#121212}.qodef-post-single-info-in-left-corner .qodef-news-post-top-holder .qodef-post-info-category a{font-size:12px;font-family:Oswald,sans-serif;letter-spacing:.05em;font-weight:500;text-transform:uppercase;color:#121212}.qodef-post-single-info-in-left-corner .qodef-news-post-top-holder .qodef-post-info-category a:hover{color:#b6b6b6}.qodef-post-single-info-in-left-corner .qodef-news-post-top-holder .qodef-npt-info-bottom{position:absolute;bottom:0;left:0;background-color:#fff}.qodef-post-single-info-in-left-corner .qodef-news-post-top-holder .qodef-npt-info-bottom .qodef-post-info-hot-trending{padding:3px 7px 3px 0}.qodef-post-single-info-in-left-corner .qodef-post-text p{margin-top:0}@media only screen and (max-width:480px){.qodef-post-single-info-in-left-corner .qodef-news-post-top-holder{margin-bottom:20px}.qodef-post-single-info-in-left-corner .qodef-news-post-top-holder .qodef-news-post-top-info-holder{display:block;position:relative}.qodef-post-single-info-in-left-corner .qodef-news-post-top-holder .qodef-post-info-hot-trending{bottom:auto;top:0}.qodef-post-single-info-in-left-corner .qodef-news-post-top-holder .qodef-news-post-top-table-cell{position:relative;bottom:inherit;left:inherit;padding:24px 0 0;width:80%}}.qodef-post-single-info-on-image .qodef-sidebar-holder{padding-left:25px}.qodef-post-single-info-on-image .qodef-news-post-single-info-top>div{display:inline-block}.qodef-post-single-info-on-image .qodef-news-post-single-info-top>div a{color:#fff;font-size:12px;text-transform:uppercase;font-family:Oswald,sans-serif;font-weight:500}.qodef-post-single-info-on-image .qodef-news-post-single-info-top>div a:hover{color:rgba(255,255,255,.8)}.qodef-post-single-info-on-image .qodef-news-post-single-info-top .qodef-post-info-date{top:0!important}.qodef-post-single-info-on-image .qodef-post-quote-holder{margin-bottom:11px}.qodef-post-single-info-on-image .qodef-post-mark{font-size:42px;color:#fff}.qodef-post-single-info-on-image .qodef-post-mark .qodef-link-mark{font-size:22px}.qodef-post-single-info-on-image .qodef-quote-author{font-size:11px;color:#fff}.qodef-post-single-info-on-image .qodef-news-post-top-holder{position:relative;margin-bottom:37px}@media only screen and (max-width:480px){.qodef-post-single-info-on-image .qodef-post-mark,.qodef-post-single-info-on-image .qodef-quote-author{display:none}.qodef-post-single-info-on-image .qodef-news-post-top-holder{margin-bottom:20px}.qodef-post-single-info-on-image .qodef-news-post-top-holder.qodef-news-post-link .qodef-post-mark{display:none}}.qodef-post-single-info-on-image .qodef-news-post-top-holder .qodef-news-post-overlay-holder{position:absolute;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.3)}.qodef-post-single-info-on-image .qodef-news-post-top-holder.qodef-news-post-link .qodef-post-mark{margin-bottom:14px}.qodef-post-single-info-on-image .qodef-news-post-top-holder.qodef-news-post-link .qodef-news-post-single-info-top div:first-child:after{content:"/";color:#fff}.qodef-post-single-info-on-image .qodef-news-post-top-holder.qodef-news-post-quote .qodef-news-post-single-info-top div:first-child:after{content:"/";color:#fff}@media only screen and (max-width:480px){.qodef-post-single-info-on-image .qodef-news-post-top-holder.qodef-news-post-link .qodef-news-post-single-info-top,.qodef-post-single-info-on-image .qodef-news-post-top-holder.qodef-news-post-quote .qodef-news-post-single-info-top{display:none}}.qodef-post-single-info-on-image .qodef-news-post-top-holder .qodef-top-part-post-image{width:100%;text-align:center}.qodef-post-single-info-on-image .qodef-news-post-top-holder .qodef-top-part-post-image img{vertical-align:middle}.qodef-post-single-info-on-image .qodef-news-post-top-holder .qodef-news-post-top-info-holder{position:absolute;top:0;left:0;width:100%;height:100%}.qodef-post-single-info-on-image .qodef-news-post-top-holder .qodef-news-post-top-table{position:relative;display:table;table-layout:fixed;height:100%;width:100%}.qodef-post-single-info-on-image .qodef-news-post-top-holder .qodef-news-post-top-table-cell{position:relative;display:table-cell;height:100%;width:100%;vertical-align:middle;text-align:center}.qodef-post-single-info-on-image .qodef-news-post-top-holder .qodef-post-title{color:#fff;margin:0 10% 14px}@media only screen and (max-width:768px){.qodef-post-single-info-on-image .qodef-news-post-top-holder .qodef-post-title{margin:0 5% 14px}}.qodef-post-single-info-on-image .qodef-news-post-top-holder .qodef-post-link-holder .qodef-post-title:hover a{color:rgba(255,255,255,.8)}.qodef-post-single-info-on-image .qodef-news-post-top-holder .qodef-blog-like i,.qodef-post-single-info-on-image .qodef-news-post-top-holder .qodef-post-info-comments-holder i{margin-right:5px}.qodef-post-single-info-on-image .qodef-news-post-top-holder .qodef-blog-like span,.qodef-post-single-info-on-image .qodef-news-post-top-holder .qodef-post-info-comments-holder span{font-size:11px;font-family:Oswald,sans-serif}.qodef-post-single-info-on-image .qodef-news-post-top-holder .qodef-news-post-single-info>div .qodef-post-info-author-link,.qodef-post-single-info-on-image .qodef-news-post-top-holder .qodef-news-post-single-info>div>span{font-size:11px;font-family:Oswald,sans-serif;letter-spacing:.05em;text-transform:uppercase;font-weight:500}.qodef-post-single-info-on-image .qodef-news-post-top-holder .qodef-post-info-comments-holder i{position:relative;top:-1px}.qodef-post-single-info-on-image .qodef-news-post-top-holder .qodef-news-post-single-info{text-transform:uppercase}@media only screen and (max-width:480px){.qodef-post-single-info-on-image .qodef-news-post-top-holder .qodef-news-post-single-info{display:none}}.qodef-post-single-info-on-image .qodef-news-post-top-holder .qodef-news-post-single-info>div{display:inline-block;vertical-align:middle;color:#fff;padding:0 4px}.qodef-post-single-info-on-image .qodef-news-post-top-holder .qodef-news-post-single-info>div>span{margin-left:5px}.qodef-post-single-info-on-image .qodef-news-post-top-holder .qodef-news-post-single-info>div a{color:inherit}.qodef-post-single-info-on-image .qodef-news-post-top-holder .qodef-news-post-single-info>div a:hover,.qodef-post-single-info-on-image .qodef-news-post-top-holder .qodef-news-post-single-info>div.qodef-blog-share .qodef-social-share-dropdown-opener:hover,.qodef-post-single-info-on-image .qodef-news-post-top-holder .qodef-news-post-single-info>div.qodef-post-info-author a:hover{color:rgba(255,255,255,.8)}.qodef-post-single-info-on-image .qodef-news-post-top-holder .qodef-news-post-single-info>div i{font-size:11px}.qodef-post-single-info-on-image .qodef-news-post-top-holder .qodef-post-info-category a{font-size:12px;font-family:Oswald,sans-serif;letter-spacing:.05em;font-weight:500;text-transform:uppercase}.qodef-post-single-info-on-image .qodef-news-post-top-holder .qodef-post-info-date{font-size:11px;text-transform:none;top:1px;position:relative}.qodef-post-single-info-on-image .qodef-news-post-top-holder .qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown-opener .qodef-social-share-title{margin-left:5px;font-size:11px}.qodef-post-single-info-on-image .qodef-news-post-top-holder .qodef-npt-info-bottom{position:absolute;bottom:0;left:0;background-color:#fff}.qodef-post-single-info-on-image .qodef-news-post-top-holder .qodef-npt-info-bottom .qodef-post-info-hot-trending{padding:3px 7px 3px 0}.qodef-post-single-info-on-image .qodef-post-text p{margin-top:0}.qodef-news-reactions-title{text-transform:uppercase;margin-top:42px;margin-bottom:30px}.qodef-news-reactions{position:relative;display:table;table-layout:fixed;height:100%;width:100%}.qodef-news-reactions .qodef-news-reaction-term{display:inline-block;vertical-align:middle;width:60px;text-align:center;margin-right:20px;margin-bottom:20px}.qodef-news-reactions .qodef-news-reaction-term .qodef-rt-name,.qodef-news-reactions .qodef-news-reaction-term .qodef-rt-value{font-size:10px;font-family:Oswald,sans-serif;font-weight:500;text-transform:uppercase}.qodef-news-reactions .qodef-news-reaction-term .qodef-rt-name{color:#fff;line-height:13px}.qodef-news-reactions .qodef-news-reaction-term .qodef-rt-value{color:#b5b5b5}.qodef-news-reactions .qodef-news-reaction-term .qodef-reaction{display:block;padding:10px 8px 5px;background-color:#000;border:1px solid #ebebeb;box-sizing:border-box;-webkit-transition:background-color .2s ease-out;-moz-transition:background-color .2s ease-out;transition:background-color .2s ease-out}.qodef-news-reactions .qodef-news-reaction-term .reacted{cursor:default;pointer-events:none}.qodef-news-reviews-holder .qodef-news-review-title-holder{position:relative;display:table;table-layout:fixed;height:100%;width:100%;border:1px solid #ebebeb;box-sizing:border-box}.qodef-news-reviews-holder .qodef-news-review-title{position:relative;display:table-cell;height:100%;width:100%;vertical-align:middle;padding:20px 28px 18px}.qodef-news-reviews-holder .qodef-news-review-average{position:relative;display:table-cell;height:100%;width:100%;vertical-align:middle;text-align:right;padding:15px 22px}.qodef-news-reviews-holder .qodef-news-review-average .qodef-news-review-no{margin-right:5px;font-size:13px;font-weight:600;color:#000;letter-spacing:-.03em}.qodef-layout10-item .qodef-ni-info-top .qodef-post-info-category,.qodef-layout2-item .qodef-ni-info-top{letter-spacing:.1em;font-family:Oswald,sans-serif;font-weight:500}.qodef-news-reviews-holder .qodef-news-reviews{padding:10px 28px 13px;border-width:0 1px 1px;border-color:#ebebeb;border-style:solid}.qodef-news-reviews-holder .qodef-news-review-item{padding:8px 0}.qodef-news-reviews-holder .qodef-news-review-item .qodef-review-item-title{display:inline-block;vertical-align:middle;margin-right:7px;width:70px;font-size:12px}.qodef-news-reviews-holder .qodef-news-review-item .qodef-review-item-value{display:inline-block;vertical-align:middle}.qodef-news-reviews-holder .qodef-news-review-summary-holder{padding:25px 28px;border-width:0 1px 1px;border-color:#ebebeb;border-style:solid}.qodef-news-reviews-holder .qodef-news-review-summary-holder .qodef-news-summary-title{margin-top:0;margin-bottom:15px}.qodef-layout1-item .qodef-ni-info-bottom,.qodef-layout1-item .qodef-post-excerpt-holder{margin-top:18px}.qodef-news-review-stars-holder{position:relative;display:inline-block;vertical-align:top;line-height:inherit}.qodef-news-review-stars-holder .qodef-news-review-stars{position:absolute;top:0;left:0;color:#000;font-size:0;white-space:nowrap;overflow:hidden}.qodef-news-skin-light .qodef-news-review-stars-holder .qodef-news-review-stars{color:#b6b6b6}.qodef-news-review-stars-holder .qodef-news-review-stars-all{font-size:0}.qodef-news-review-stars-holder .qodef-news-review-stars .qodef-nr-star,.qodef-news-review-stars-holder .qodef-news-review-stars-all .qodef-nr-star{padding:0 3px;vertical-align:top;font-size:13px;line-height:inherit}.qodef-news-holder.qodef-block1 .qodef-news-block-part-non-featured .qodef-news-item{width:100%}.qodef-news-holder.qodef-block1 .qodef-layout3-item .qodef-ni-inner>div{vertical-align:middle}.qodef-news-holder.qodef-block1 .qodef-layout3-item .qodef-ni-content{padding-left:13px}@media only screen and (min-width:1920px){.qodef-news-holder.qodef-block1 .qodef-layout3-item .qodef-ni-content{padding-right:50px}}.qodef-news-holder.qodef-block1 .qodef-layout3-item .qodef-ni-info-bottom .qodef-ni-info-bottom-right *,.qodef-news-holder.qodef-block1 .qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown ul li .qodef-social-network-name{font-weight:500}.qodef-news-holder.qodef-block1 .qodef-ni-info-bottom .qodef-ni-info-bottom-right>div:not(:last-child){margin-right:8px}.qodef-block2.qodef-no-space .qodef-news-block-part-non-featured .qodef-news-list-title-holder{padding:0}.qodef-block2.qodef-tiny-space .qodef-news-block-part-non-featured .qodef-news-list-title-holder{padding:0 0 0 5px}.qodef-block2.qodef-small-space .qodef-news-block-part-non-featured .qodef-news-list-title-holder{padding:0 0 0 10px}.qodef-block2.qodef-normal-space .qodef-news-block-part-non-featured .qodef-news-list-title-holder{padding:0 0 0 15px}.qodef-block2.qodef-medium-space .qodef-news-block-part-non-featured .qodef-news-list-title-holder{padding:0 0 0 20px}.qodef-block2.qodef-large-space .qodef-news-block-part-non-featured .qodef-news-list-title-holder{padding:0 0 0 25px}.qodef-block2.qodef-huge-space .qodef-news-block-part-non-featured .qodef-news-list-title-holder{padding:0 0 0 40px}.qodef-news-holder.qodef-block3 .qodef-news-block-part-non-featured .qodef-news-item{width:50%}@media only screen and (max-width:480px){.qodef-news-holder.qodef-block1 .qodef-layout3-item .qodef-ni-inner .qodef-ni-image-holder{margin-bottom:20px}.qodef-news-holder.qodef-block1 .qodef-ni-info-bottom .qodef-ni-info-bottom-left,.qodef-news-holder.qodef-block1 .qodef-ni-info-bottom .qodef-ni-info-bottom-right{width:50%}.qodef-news-holder.qodef-block1 .qodef-ni-info-bottom .qodef-ni-info-bottom-right{text-align:right}.qodef-news-holder.qodef-block3 .qodef-news-block-part-non-featured .qodef-news-item{width:100%}}.qodef-layout1-item .qodef-ni-image-holder{position:relative;display:inline-block;width:100%;vertical-align:middle;margin-bottom:13px}.qodef-layout1-item .qodef-ni-image-holder .qodef-views-holder{position:absolute;top:9px;right:9px;background-color:#fff;padding:0 7px;line-height:21px}.qodef-layout1-item .qodef-ni-image-holder .qodef-views-holder i{font-size:12px;color:#000;margin-right:5px}.qodef-layout1-item .qodef-ni-image-holder .qodef-views-holder .qodef-views{font-size:10px;font-family:Oswald,sans-serif;font-weight:500;color:#000}.qodef-layout1-item .qodef-ni-content{position:relative;display:inline-block;width:100%;vertical-align:middle}@media only screen and (min-width:1920px){.qodef-layout1-item .qodef-ni-content .qodef-post-title{width:80%}}.qodef-layout1-item .qodef-ni-info>div{margin-right:8px}.qodef-layout1-item .qodef-post-info-comments-holder i{position:relative;top:-1px}.qodef-layout1-item .qodef-ni-info-top{margin-bottom:3px}.qodef-layout1-item .qodef-ni-info-bottom *{color:#b6b6b6}.qodef-layout10-item .qodef-ni-image-holder,.qodef-layout10-item .qodef-ni-inner{position:relative;display:inline-block;width:100%;vertical-align:middle}.qodef-layout10-item .qodef-blog-share,.qodef-layout10-item .qodef-views-holder{background-color:#fff;padding:0 7px;display:inline-block;line-height:21px}.qodef-layout5-item .qodef-ni-info-top .qodef-post-info-category,.qodef-layout8-item .qodef-color-category-holder .qodef-post-info-category{line-height:33px}.qodef-layout10-item .qodef-blog-share .qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown-opener,.qodef-layout10-item .qodef-blog-share .qodef-social-share-holder.qodef-dropdown ul li .qodef-social-network-name{color:#121212}.qodef-layout10-item .qodef-ni-view-share-holder{position:absolute;top:9px;right:9px}.qodef-layout10-item .qodef-ni-view-share-holder .qodef-social-share-title{display:none!important}.qodef-layout10-item .qodef-views-holder i{font-size:12px;color:#000;margin-right:5px}.qodef-layout10-item .qodef-views-holder .qodef-views{font-size:10px;font-family:Oswald,sans-serif;font-weight:500;color:#000}.qodef-layout10-item .qodef-ni-info>div{margin-right:8px;color:#121212}.qodef-layout10-item .qodef-ni-info>div.qodef-blog-like .qodef-like i,.qodef-layout10-item .qodef-ni-info>div.qodef-post-info-comments-holder i{color:#121212}.qodef-layout10-item .qodef-ni-content{position:absolute;left:0;bottom:0;width:100%;padding:30px 40px 14px;background:rgba(255,255,255,.6);background:-moz-linear-gradient(bottom,rgba(255,255,255,.65) 0,rgba(255,255,255,.45) 34%,transparent 100%);background:-webkit-linear-gradient(bottom,rgba(255,255,255,.65) 0,rgba(255,255,255,.45) 34%,transparent 100%);background:linear-gradient(to top,rgba(255,255,255,.65) 0,rgba(255,255,255,.45) 34%,transparent 100%);box-sizing:border-box}.qodef-news-skin-light .qodef-layout10-item .qodef-ni-content{background:rgba(0,0,0,.6);background:-moz-linear-gradient(bottom,rgba(0,0,0,.65) 0,rgba(0,0,0,.45) 34%,transparent 100%);background:-webkit-linear-gradient(bottom,rgba(0,0,0,.65) 0,rgba(0,0,0,.45) 34%,transparent 100%);background:linear-gradient(to top,rgba(0,0,0,.65) 0,rgba(0,0,0,.45) 34%,transparent 100%)}.qodef-layout10-item .qodef-ni-info>div.qodef-post-info-comments-holder i{position:relative;top:-1px}.qodef-layout10-item .qodef-ni-info-top{margin-bottom:8px}.qodef-layout10-item .qodef-ni-info-top>div{padding-right:0}.qodef-layout10-item .qodef-ni-info-top>div:after{display:none}.qodef-layout2-item .qodef-ni-image-holder,.qodef-layout2-item .qodef-ni-inner{position:relative;display:inline-block;width:100%;vertical-align:middle}.qodef-layout10-item .qodef-ni-info-top .qodef-post-info-date{font-size:11px}.qodef-layout10-item .qodef-ni-info-bottom{margin-top:18px;margin-bottom:15px}.qodef-news-holder.qodef-news-skin-light.qodef-layout10 .qodef-layout10-item .qodef-ni-info>div{color:#fff}.qodef-news-holder.qodef-news-skin-light.qodef-layout10 .qodef-layout10-item .qodef-ni-info>div a:hover{color:rgba(255,255,255,.8)}.qodef-news-holder.qodef-news-skin-light.qodef-layout10 .qodef-layout10-item .qodef-ni-info>div.qodef-blog-like .qodef-like i,.qodef-news-holder.qodef-news-skin-light.qodef-layout10 .qodef-layout10-item .qodef-ni-info>div.qodef-post-info-comments-holder i{color:#fff}.qodef-layout2-item .qodef-ni-inner{margin-bottom:0}.qodef-layout2-item .qodef-ni-info>div{margin-right:8px}.qodef-layout2-item .qodef-ni-content{position:absolute;bottom:-5px;left:0;width:66%;padding:20px 35px 0 0;background-color:#fff;box-sizing:border-box}.qodef-news-skin-light .qodef-layout2-item .qodef-ni-content{background-color:#121212}.qodef-layout2-item .qodef-ni-info-top{margin-bottom:8px;font-size:12px}.qodef-layout2-item .qodef-ni-info-top>div{color:#000}.qodef-layout2-item .qodef-ni-info-bottom{position:relative;margin-top:12px}.qodef-layout2-item .qodef-ni-info-bottom a span{color:#b6b6b6}.qodef-layout2-item .qodef-ni-info-bottom .qodef-post-info-date{font-family:Oswald,sans-serif;text-transform:uppercase;color:#b6b6b6;letter-spacing:.05em;font-weight:500;font-size:11px;vertical-align:baseline}@media only screen and (max-width:480px){.qodef-layout2-item .qodef-ni-content{position:relative;width:100%;padding:17px 35px 0 0}}.qodef-layout3-item{float:left}.qodef-layout3-item .qodef-ni-inner{display:table;width:100%;table-layout:fixed}.qodef-layout3-item .qodef-ni-inner>div{position:relative;display:table-cell;vertical-align:middle;width:50%}.qodef-layout3-item.qodef-image-disabled .qodef-ni-content{padding-left:0!important}.qodef-layout3-item .qodef-ni-image-holder{padding-right:18px}.qodef-layout3-item .qodef-ni-image-inner{position:relative}.qodef-layout3-item .qodef-ni-content{padding-left:11px}@media only screen and (min-width:1920px){.qodef-layout3-item .qodef-ni-content{padding-right:50px}}.qodef-layout3-item .qodef-ni-info-top{margin-bottom:8px}.qodef-layout3-item .qodef-ni-info-top .qodef-post-info-category{font-family:Oswald,sans-serif;font-size:12px;font-weight:500;letter-spacing:.05em;color:#000}.qodef-layout3-item .qodef-ni-info-bottom{margin-top:23px}.qodef-layout3-item .qodef-ni-info-bottom>div{margin-right:0}.qodef-layout3-item .qodef-ni-info-bottom .qodef-ni-info-bottom-left{display:inline-block;width:50%}.qodef-layout3-item .qodef-ni-info-bottom .qodef-ni-info-bottom-left *{font-family:Oswald,sans-serif;text-transform:uppercase;color:#b6b6b6;letter-spacing:.05em;font-weight:500;display:inline-block;font-size:11px}.qodef-layout3-item .qodef-ni-info-bottom .qodef-ni-info-bottom-left .qodef-post-info-author a,.qodef-layout3-item .qodef-ni-info-bottom .qodef-ni-info-bottom-left a:hover{color:#121212}.qodef-layout3-item .qodef-ni-info-bottom .qodef-ni-info-bottom-left .qodef-post-info-author a:hover,.qodef-layout3-item .qodef-ni-info-bottom .qodef-ni-info-bottom-right *{color:#b6b6b6}.qodef-layout3-item .qodef-ni-info-bottom .qodef-ni-info-bottom-right{width:50%;display:inline-block;float:right;text-align:right}.qodef-layout3-item .qodef-ni-info-bottom .qodef-ni-info-bottom-right>div{display:inline-block}.qodef-layout3-item .qodef-ni-info-bottom .qodef-ni-info-bottom-right>div:not(:last-child){margin-right:6px}.qodef-layout3-item .qodef-ni-info-bottom .qodef-ni-info-bottom-right .qodef-blog-like span,.qodef-layout3-item .qodef-ni-info-bottom .qodef-ni-info-bottom-right .qodef-post-info-comments-holder span{font-family:Oswald,sans-serif;font-size:11px}.qodef-layout3-item .qodef-post-info-comments-holder i{position:relative;top:-1px}.qodef-layout3-item .qodef-post-excerpt-holder{margin-top:7px}.qodef-layout3-item .qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown-opener .qodef-social-share-title{font-size:11px}@media only screen and (max-width:768px){.archive .qodef-layout3-item .qodef-ni-inner .qodef-ni-image-holder{margin-bottom:20px}.archive .qodef-layout3-item .qodef-ni-inner>div{display:block;padding:0!important;width:100%}}@media only screen and (max-width:480px){.qodef-layout3-item .qodef-ni-inner .qodef-ni-image-holder{margin-bottom:20px}.qodef-layout3-item .qodef-ni-inner>div{display:block;padding:0!important;width:100%}}.qodef-news-holder.qodef-news-skin-light.qodef-layout3 .qodef-layout3-item .qodef-ni-info-bottom .qodef-ni-info-bottom-left a:hover{color:rgba(255,255,255,.8)}.qodef-layout4-item .qodef-ni-image-holder,.qodef-layout4-item .qodef-ni-inner{position:relative;display:inline-block;width:100%;vertical-align:middle}.qodef-layout4-item .qodef-ni-content{position:absolute;left:0;bottom:0;width:100%;height:100%;padding:14px 40px;background:rgba(255,255,255,.6);background:-moz-linear-gradient(bottom,rgba(255,255,255,.65) 0,rgba(255,255,255,.45) 34%,transparent 100%);background:-webkit-linear-gradient(bottom,rgba(255,255,255,.65) 0,rgba(255,255,255,.45) 34%,transparent 100%);background:linear-gradient(to top,rgba(255,255,255,.65) 0,rgba(255,255,255,.45) 34%,transparent 100%);box-sizing:border-box}.qodef-news-skin-light .qodef-layout4-item .qodef-ni-content{background:rgba(0,0,0,.6);background:-moz-linear-gradient(bottom,rgba(0,0,0,.65) 0,rgba(0,0,0,.45) 34%,transparent 100%);background:-webkit-linear-gradient(bottom,rgba(0,0,0,.65) 0,rgba(0,0,0,.45) 34%,transparent 100%);background:linear-gradient(to top,rgba(0,0,0,.65) 0,rgba(0,0,0,.45) 34%,transparent 100%)}.qodef-layout4-item .qodef-ni-content .qodef-ni-content-inner{display:table;height:100%;width:100%}.qodef-layout4-item .qodef-ni-content .qodef-ni-center-align{display:table-cell;vertical-align:middle;text-align:center}.qodef-layout4-item .qodef-ni-info-top>div{padding-right:0}.qodef-layout4-item .qodef-ni-info-top>div:after{display:none}.qodef-layout4-item .qodef-ni-info-top .qodef-post-info-category{font-family:Oswald,sans-serif;font-weight:500;letter-spacing:.1em}.qodef-layout4-item .qodef-ni-info-top .qodef-post-info-date{font-size:11px}.qodef-layout4-item .qodef-ni-info>div{margin-right:8px;color:#121212}.qodef-layout4-item .qodef-ni-info>div.qodef-blog-like .qodef-like i,.qodef-layout4-item .qodef-ni-info>div.qodef-post-info-comments-holder i,.qodef-layout4-item .qodef-ni-info>div.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown-opener{color:#121212}.qodef-layout4-item .qodef-post-info-comments-holder i{position:relative;top:-1px}.qodef-layout4-item .qodef-ni-info-bottom{margin-top:19px}.qodef-news-holder.qodef-news-skin-light.qodef-layout4 .qodef-layout4-item .qodef-ni-info>div{color:#fff}.qodef-news-holder.qodef-news-skin-light.qodef-layout4 .qodef-layout4-item .qodef-ni-info>div a:hover{color:rgba(255,255,255,.8)}.qodef-news-holder.qodef-news-skin-light.qodef-layout4 .qodef-layout4-item .qodef-ni-info>div.qodef-blog-like .qodef-like i,.qodef-news-holder.qodef-news-skin-light.qodef-layout4 .qodef-layout4-item .qodef-ni-info>div.qodef-post-info-comments-holder i,.qodef-news-holder.qodef-news-skin-light.qodef-layout4 .qodef-layout4-item .qodef-ni-info>div.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown-opener{color:#fff}.qodef-news-holder.qodef-news-skin-light.qodef-layout4 .qodef-layout4-item .qodef-ni-info>div.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown-opener:hover{color:rgba(255,255,255,.8)}.qodef-layout5-item{float:left}.qodef-layout5-item.qodef-background-image-responsive{height:100%}.qodef-layout5-item.qodef-background-image-responsive .qodef-ni-item-inner{width:100%;height:100%}.qodef-layout5-item.qodef-grayscale-hover .qodef-post-image img{-webkit-filter:grayscale(100%);filter:grayscale(100%);filter:gray;-webkit-transition:.3s cubic-bezier(.165,.84,.44,1);-moz-transition:.3s cubic-bezier(.165,.84,.44,1);transition:.3s cubic-bezier(.165,.84,.44,1)}.qodef-layout5-item.qodef-grayscale-hover:hover .qodef-post-image img{-webkit-filter:grayscale(0);filter:grayscale(0);filter:none}.qodef-layout5-item .qodef-ni-item-inner{position:relative;display:inline-block;vertical-align:top;min-height:200px;width:100%;background-color:#f6f6f6}.qodef-layout5-item .qodef-ni-content{position:absolute;display:block;width:100%;height:100%;top:0;left:0;padding:30px 25px 19px;background-color:rgba(0,0,0,.1);box-sizing:border-box}.qodef-layout5-item .qodef-ni-content a{position:relative;z-index:1}.qodef-layout5-item .qodef-ni-content-wrapper{position:relative;display:table;table-layout:fixed;height:100%;width:100%;text-align:left}.qodef-layout5-item .qodef-ni-content-inner{position:relative;display:table-cell;height:100%;width:100%;vertical-align:bottom}.qodef-layout5-item .qodef-post-title{color:#fff;margin-bottom:9px;width:60%}.qodef-layout5-item .qodef-ni-info>div{color:#fff}.qodef-layout5-item .qodef-ni-info>div a{color:inherit}.qodef-layout5-item .qodef-ni-info>div a:hover{color:rgba(255,255,255,.8)!important}.qodef-layout5-item .qodef-ni-info>div a span:not(.qodef-social-network-icon){color:#fff!important}.qodef-layout5-item .qodef-ni-info-top a,.qodef-layout5-item .qodef-post-info-date a{color:#fff;text-transform:uppercase;font-family:Oswald,sans-serif;font-weight:500;letter-spacing:.05em}.qodef-layout5-item .qodef-ni-info-top{position:absolute;top:0;right:0;margin-bottom:14px}.qodef-layout5-item .qodef-ni-info-top a{padding:0 27px;font-size:12px;display:block;box-sizing:border-box}.qodef-layout5-item .qodef-ni-info-bottom{margin-top:22px}.qodef-layout5-item .qodef-ni-info-bottom>div{margin-right:28px}.qodef-layout5-item .qodef-ni-info-bottom>div:last-child{margin-right:0}.qodef-layout5-item .qodef-post-info-date a{font-size:11px}.qodef-layout5-item .qodef-post-info-date a:hover{color:rgba(255,255,255,.8)}.qodef-layout5-item .qodef-ni-item-link{position:absolute;display:block;width:100%;height:100%;top:0;left:0}@media only screen and (max-width:1440px){.qodef-layout5-item .qodef-post-title{width:70%}}@media only screen and (max-width:768px){.qodef-layout5-item .qodef-ni-inner>div{display:block;padding:0;width:100%}}@media only screen and (max-width:480px){.qodef-layout5-item .qodef-post-title{width:90%}}.qodef-layout6-item .qodef-ni-item-inner{position:relative;display:table;width:100%}.qodef-layout6-item .qodef-ni-item-inner>div{display:table-cell;vertical-align:middle}.qodef-layout6-item .qodef-ni-info.qodef-ni-info-top{font-size:11px;color:#b5b5b5;margin-bottom:4px}.qodef-layout6-item .qodef-post-image img{max-width:initial}.qodef-layout6-item .qodef-ni-content{width:100%;padding-left:20px;vertical-align:middle}@media only screen and (min-width:1920px){.qodef-layout6-item .qodef-ni-content{padding-right:50px}}.qodef-layout6-item .qodef-post-title{margin:0 0 2px}.qodef-layout6-item .qodef-ni-info-bottom{margin-top:4px}.qodef-layout7-item .qodef-ni-content{position:relative;display:inline-block;width:100%;vertical-align:middle}.qodef-layout7-item .qodef-ni-info-top{margin-bottom:2px}.qodef-layout8-item .qodef-ni-image-holder{margin-bottom:20px}.qodef-news-widget.qodef-news-post-carousel1-widget .qodef-layout8-item .qodef-ni-image-holder{margin-bottom:12px}.qodef-layout8-item .qodef-ni-image-inner{position:relative}.qodef-layout8-item .qodef-color-category-holder{position:absolute;top:0;right:0;margin-bottom:14px}.qodef-layout8-item .qodef-color-category-holder a{padding:0 27px;color:#fff!important;font-size:12px;text-transform:uppercase;font-family:Oswald,sans-serif;font-weight:500;letter-spacing:.05em;display:block;box-sizing:border-box}.qodef-layout8-item .qodef-ni-info-top{margin-bottom:8px}.qodef-layout8-item .qodef-ni-info-top .qodef-post-info-category{font-family:Oswald,sans-serif;font-size:12px;font-weight:500;letter-spacing:.05em;color:#000}.qodef-layout8-item .qodef-ni-info-bottom{margin-top:15px}.qodef-layout8-item .qodef-ni-info-bottom>div{margin-right:0}.qodef-layout8-item .qodef-ni-info-bottom .qodef-ni-info-bottom-left{display:inline-block;width:40%}.qodef-layout8-item .qodef-ni-info-bottom .qodef-ni-info-bottom-left *{font-size:11px;font-family:Oswald,sans-serif;text-transform:uppercase;color:#b6b6b6;letter-spacing:.05em;font-weight:500}.qodef-layout8-item .qodef-ni-info-bottom .qodef-ni-info-bottom-left a:hover{color:#121212}.qodef-layout8-item .qodef-ni-info-bottom .qodef-ni-info-bottom-right{width:60%;display:inline-block;float:right;text-align:right}.qodef-layout8-item .qodef-ni-info-bottom .qodef-ni-info-bottom-right>div{display:inline-block}.qodef-layout8-item .qodef-ni-info-bottom .qodef-ni-info-bottom-right>div:not(:last-child){margin-right:6px}.qodef-layout8-item .qodef-ni-info-bottom .qodef-ni-info-bottom-right>div.qodef-post-info-comments-holder i{position:relative;top:-1px}.qodef-layout8-item .qodef-ni-info-bottom .qodef-ni-info-bottom-right *{color:#b6b6b6}.qodef-layout8-item .qodef-post-excerpt-holder{margin-top:7px}@media only screen and (min-width:1920px){.qodef-layout8-item .qodef-post-excerpt-holder,.qodef-layout8-item .qodef-post-title{padding-right:50px;box-sizing:border-box}}.qodef-news-holder.qodef-news-skin-light.qodef-layout8 .qodef-layout8-item .qodef-ni-info-bottom .qodef-ni-info-bottom-left a:hover{color:rgba(255,255,255,.8)}.qodef-layout9-item .qodef-ni-content{position:relative;display:inline-block;width:100%;vertical-align:middle;text-align:left}.qodef-layout9-item .qodef-ni-info>div{font-size:10px}.qodef-layout9-item .qodef-ni-info-top{margin-bottom:5px;font-size:10px}.qodef-layout9-item .qodef-post-excerpt-holder{margin-top:8px}.qodef-masonry-layout-item.qodef-news-masonry-post-size-large-height .qodef-ni-image-holder,.qodef-masonry-layout-item.qodef-news-masonry-post-size-large-width .qodef-ni-image-holder{height:100%;width:100%;overflow:hidden}.qodef-masonry-layout-item.qodef-news-masonry-post-size-large-height .qodef-ni-inner,.qodef-masonry-layout-item.qodef-news-masonry-post-size-large-height .qodef-post-image,.qodef-masonry-layout-item.qodef-news-masonry-post-size-large-width .qodef-ni-inner,.qodef-masonry-layout-item.qodef-news-masonry-post-size-large-width .qodef-post-image{height:100%}.qodef-masonry-layout-item.qodef-news-masonry-post-size-large-height img{height:100%;width:auto;max-width:initial}.qodef-masonry-layout-item .qodef-ni-inner{position:relative;display:inline-block;width:100%;vertical-align:middle}.qodef-masonry-layout-item .qodef-ni-info>div{font-size:11px}.qodef-masonry-layout-item .qodef-ni-image-holder{position:relative;display:inline-block;width:100%;vertical-align:middle;margin-bottom:17px}.qodef-masonry-layout-item .qodef-ni-image-holder .qodef-post-info-category{position:absolute;top:0;right:0;line-height:33px}.qodef-masonry-layout-item .qodef-ni-image-holder .qodef-post-info-category a{padding:0 27px;color:#fff;font-size:12px;text-transform:uppercase;font-family:Oswald,sans-serif;font-weight:500;letter-spacing:.05em;display:block}.qodef-masonry-layout-item .qodef-ni-content{position:relative;display:inline-block;width:100%;vertical-align:middle}.qodef-masonry-layout-item .qodef-ni-info-bottom .qodef-blog-like span,.qodef-news-skin-light .qodef-masonry-layout-item .qodef-ni-info-bottom .qodef-blog-like span,.qodef-slider1-item .qodef-ni-info-top>div:after{display:none}.qodef-masonry-layout-item .qodef-post-excerpt-holder{margin-top:18px}.qodef-masonry-layout-item .qodef-ni-info-top{margin-top:8px}.qodef-masonry-layout-item .qodef-ni-info-top>div a:hover{color:rgba(255,255,255,.8)!important}.qodef-masonry-layout-item .qodef-ni-info-bottom{position:absolute;right:15px;bottom:12px}.qodef-masonry-layout-item .qodef-ni-info-bottom .qodef-blog-like .qodef-like i{font-size:22px;margin-right:1px;color:#fff!important}.qodef-masonry-layout-item .qodef-post-info-date,.qodef-post-carousel2 .qodef-post-info-author>*{font-size:11px;letter-spacing:.05em;font-weight:500;font-family:Oswald,sans-serif;text-transform:uppercase}.qodef-masonry-layout-item .qodef-ni-info-bottom .qodef-blog-like .qodef-like.liked i{color:#b6b6b6!important}.qodef-masonry-layout-item .qodef-post-info-date{color:#b6b6b6}.qodef-masonry-layout .qodef-news-list-inner{opacity:0;-webkit-transition:opacity .2s ease-in-out;-moz-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out}.qodef-masonry-layout .qodef-news-list-inner.qodef-masonry-appeared{opacity:1}.qodef-masonry-layout .qodef-news-list-inner .qodef-ni-image-holder{margin-bottom:0}.qodef-masonry-layout .qodef-news-list-inner .qodef-ni-content{position:absolute;left:0;bottom:0;width:100%;padding:22px 25px;background:rgba(0,0,0,.6);background:-moz-linear-gradient(bottom,rgba(0,0,0,.65) 0,rgba(0,0,0,.45) 34%,transparent 100%);background:-webkit-linear-gradient(bottom,rgba(0,0,0,.65) 0,rgba(0,0,0,.45) 34%,transparent 100%);background:linear-gradient(to top,rgba(0,0,0,.65) 0,rgba(0,0,0,.45) 34%,transparent 100%);box-sizing:border-box}.qodef-masonry-layout.qodef-news-columns-1 .qodef-news-item.qodef-news-masonry-post-size-large-width,.qodef-masonry-layout.qodef-news-columns-1 .qodef-news-item.qodef-news-masonry-post-size-large-width-height{width:200%}.qodef-masonry-layout.qodef-news-columns-1 .qodef-masonry-layout-sizer,.qodef-masonry-layout.qodef-news-columns-2 .qodef-news-item.qodef-news-masonry-post-size-large-width,.qodef-masonry-layout.qodef-news-columns-2 .qodef-news-item.qodef-news-masonry-post-size-large-width-height{width:100%}.qodef-masonry-layout.qodef-news-columns-2 .qodef-masonry-layout-sizer{width:50%}.qodef-masonry-layout.qodef-news-columns-3 .qodef-news-item.qodef-news-masonry-post-size-large-width,.qodef-masonry-layout.qodef-news-columns-3 .qodef-news-item.qodef-news-masonry-post-size-large-width-height{width:66.66667%}.qodef-masonry-layout.qodef-news-columns-3 .qodef-masonry-layout-sizer{width:33.33333%}.qodef-masonry-layout.qodef-news-columns-4 .qodef-news-item.qodef-news-masonry-post-size-large-width,.qodef-masonry-layout.qodef-news-columns-4 .qodef-news-item.qodef-news-masonry-post-size-large-width-height{width:50%}.qodef-masonry-layout.qodef-news-columns-4 .qodef-masonry-layout-sizer{width:25%}.qodef-masonry-layout.qodef-news-columns-5 .qodef-news-item.qodef-news-masonry-post-size-large-width,.qodef-masonry-layout.qodef-news-columns-5 .qodef-news-item.qodef-news-masonry-post-size-large-width-height{width:40%}.qodef-masonry-layout.qodef-news-columns-5 .qodef-masonry-layout-sizer{width:20%}.qodef-masonry-layout.qodef-news-columns-6 .qodef-news-item.qodef-news-masonry-post-size-large-width,.qodef-masonry-layout.qodef-news-columns-6 .qodef-news-item.qodef-news-masonry-post-size-large-width-height{width:33.33333%}.qodef-masonry-layout.qodef-news-columns-6 .qodef-masonry-layout-sizer{width:16.66667%}.qodef-masonry-layout .qodef-masonry-layout-gutter{width:0}.qodef-news-skin-light .qodef-masonry-layout-item .qodef-ni-info-bottom .qodef-blog-like .qodef-like.liked i{color:#f66060!important}.qodef-post-carousel1 .qodef-slick-slider{visibility:hidden}.qodef-post-carousel1 .slick-track{cursor:-webkit-grab;cursor:grab}.qodef-post-carousel1.qodef-news-skin-light .qodef-owl-slider .owl-nav .owl-next,.qodef-post-carousel1.qodef-news-skin-light .qodef-owl-slider .owl-nav .owl-prev{color:#fff}.qodef-post-carousel1 .qodef-owl-slider.qodef-slider-has-both-nav .owl-nav .owl-next,.qodef-post-carousel1 .qodef-owl-slider.qodef-slider-has-both-nav .owl-nav .owl-prev{-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);transform:translateY(-50%)}.qodef-post-carousel1 .qodef-owl-slider .owl-dots{position:absolute;left:0;bottom:20px;width:100%;margin:0;z-index:1}.qodef-post-carousel2 .qodef-ni-info>div,.qodef-video-layout1-item .qodef-ni-info>div{margin-right:8px}.qodef-post-carousel1 .qodef-owl-slider .owl-dots .owl-dot span{background-color:rgba(255,255,255,.6)}.qodef-post-carousel1 .qodef-owl-slider .owl-dots .owl-dot.active span,.qodef-post-carousel1 .qodef-owl-slider .owl-dots .owl-dot:hover span{background-color:#fff}.qodef-post-carousel2{z-index:9999}.qodef-post-carousel2 .qodef-blog-share .qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown-opener,.qodef-post-carousel2 .qodef-blog-share .qodef-social-share-holder.qodef-dropdown ul li .qodef-social-network-name{color:#121212}.qodef-post-carousel2 .qodef-post-info-author>*{color:#121212}.qodef-post-carousel2 .qodef-news-review-stars-holder .qodef-news-review-stars .qodef-nr-star,.qodef-post-carousel2 .qodef-news-review-stars-holder .qodef-news-review-stars-all .qodef-nr-star,.qodef-post-carousel2 .qodef-ni-info>div i{font-size:13px}.qodef-post-carousel2 .qodef-ni-info>div .qodef-post-info-author a{text-decoration:none}.qodef-post-carousel2 .qodef-ni-info-bottom{margin-top:9px}.qodef-post-carousel2 .qodef-post-info-comments-holder i{position:relative;top:-1px}.qodef-post-carousel2 .qodef-owl-slider .owl-nav .owl-next,.qodef-post-carousel2 .qodef-owl-slider .owl-nav .owl-prev{bottom:inherit;top:50%;height:60px;background-color:#fff;color:#2a2627;line-height:58px;font-size:29px;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);transform:translateY(-50%)}.qodef-post-carousel2 .qodef-owl-slider .owl-nav .owl-prev{left:0}.qodef-post-carousel2 .qodef-owl-slider .owl-nav .owl-next{right:0}.qodef-post-carousel2.qodef-news-skin-light .qodef-owl-slider .owl-dots .owl-dot span{background-color:rgba(18,18,18,.6)}.qodef-post-carousel2.qodef-news-skin-light .qodef-owl-slider .owl-dots .owl-dot.active span,.qodef-post-carousel2.qodef-news-skin-light .qodef-owl-slider .owl-dots .owl-dot:hover span{background-color:#121212}.qodef-news-holder.qodef-news-skin-light.qodef-post-carousel2 .qodef-ni-info.qodef-ni-info-top>div a:hover{color:rgba(255,255,255,.8)}.qodef-news-holder.qodef-news-skin-light.qodef-post-carousel2 .qodef-ni-info.qodef-ni-info-bottom .qodef-ni-info>div,.qodef-news-holder.qodef-news-skin-light.qodef-post-carousel2 .qodef-ni-info.qodef-ni-info-bottom .qodef-ni-info>div.qodef-post-info-author>*{color:#fff}.qodef-news-holder.qodef-news-skin-light.qodef-post-carousel2 .qodef-ni-info.qodef-ni-info-bottom .qodef-ni-info>div.qodef-post-info-author a:hover{color:rgba(255,255,255,.8)}.qodef-news-holder.qodef-news-skin-light.qodef-post-carousel2 .qodef-ni-info.qodef-ni-info-bottom .qodef-ni-info>div.qodef-blog-like .qodef-like i,.qodef-news-holder.qodef-news-skin-light.qodef-post-carousel2 .qodef-ni-info.qodef-ni-info-bottom .qodef-ni-info>div.qodef-post-info-comments-holder i{color:#fff}.qodef-post-carousel3 .qodef-layout5-item .qodef-ni-content-wrapper{width:90%}.qodef-post-carousel3 .qodef-layout5-item .qodef-post-title{width:100%}@media only screen and (min-width:1920px){.qodef-post-carousel2 .qodef-layout10-item .qodef-ni-content{padding-right:90px}.qodef-post-carousel3 .qodef-layout5-item .qodef-post-title{padding-right:50px}}.qodef-post-carousel3.qodef-news-skin-light .qodef-owl-slider .owl-dots .owl-dot span{background-color:rgba(18,18,18,.6)}.qodef-post-carousel3.qodef-news-skin-light .qodef-owl-slider .owl-dots .owl-dot.active span,.qodef-post-carousel3.qodef-news-skin-light .qodef-owl-slider .owl-dots .owl-dot:hover span{background-color:#121212}.qodef-slider1-item{height:0}.qodef-slider1-item.qodef-slider-size-landscape{padding-top:50%}.qodef-slider1-item.qodef-slider-size-square{padding-top:100%}.qodef-slider1-item.qodef-slider-size-full-screen{padding-top:100vh}.qodef-slider1-item .qodef-news-item-image-holder{position:absolute;top:0;left:0;width:100%;height:100%;background-size:cover;background-position:center;z-index:-1}.qodef-slider1-item .qodef-post-info-category{font-family:Oswald,sans-serif;letter-spacing:.05em;font-weight:500}.qodef-slider1-item .qodef-post-info-category a:hover{color:rgba(255,255,255,.8)}.qodef-slider1-item .qodef-ni-content{position:absolute;top:0;left:0;width:100%;height:100%;z-index:5}.qodef-slider1-item .qodef-ni-content .qodef-ni-content-table{position:relative;display:table;table-layout:fixed;height:100%;width:100%;width:50%;max-width:650px;margin-left:8.5%}.qodef-slider1-item .qodef-ni-content .qodef-ni-content-table-cell{position:relative;display:table-cell;height:100%;width:100%;vertical-align:middle}.qodef-slider1-item .qodef-ni-info-top{color:#fff;margin-bottom:10px}.qodef-slider1-item .qodef-ni-info-top>div{display:inline-block;vertical-align:middle;color:#fff}.qodef-slider1-item .qodef-ni-info-top>div a{color:inherit}.qodef-slider1-item .qodef-ni-info-top>div a:hover,.qodef-slider1-item .qodef-ni-info-top>div.qodef-post-info-category a:hover,.qodef-slider1-item .qodef-ni-info-top>div.qodef-post-info-date a:hover{color:rgba(255,255,255,.8)}.qodef-slider1-item .qodef-ni-info-top>div.qodef-post-info-date a{font-size:11px}.qodef-slider1-item .qodef-post-title{color:#fff;margin-top:0;margin-bottom:17px;text-decoration:none!important}.qodef-slider1-item .qodef-post-title a:hover{text-decoration:underline!important}.qodef-slider1-item .qodef-news-info-holder{color:#fff;font-size:14px}.qodef-slider1-item .qodef-news-info-holder a{color:inherit}.qodef-slider1-item .qodef-news-info-holder a:hover{color:rgba(255,255,255,.9)}.qodef-slider1-item .qodef-news-info-holder .qodef-post-info-author-link{text-decoration:underline}.qodef-slider1-item .qodef-post-excerpt-holder{color:#fff;font-size:18px;line-height:1.67em;font-weight:400}.qodef-slider1-item .qodef-post-excerpt-holder .qodef-post-excerpt{margin-top:23px}.qodef-slider1-item .qodef-ni-info-bottom{position:relative;top:58px}.qodef-slider1-item .qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown-opener{display:inline-block;vertical-align:middle;width:66px;height:66px;line-height:70px;color:#fff;border-radius:50%;background-color:rgba(0,0,0,.3);text-align:center}.qodef-slider1-item .qodef-social-share-holder.qodef-dropdown .qodef-social-icon{color:#fff;font-size:18px}.qodef-slider1-item .qodef-social-share-holder.qodef-dropdown ul li{width:48px;border:none;background-color:transparent;text-align:center}.qodef-slider1-item .qodef-social-share-holder.qodef-dropdown ul li .qodef-share-link .qodef-social-network-icon{color:#fff;font-size:12px;width:42px;height:42px;line-height:42px;background-color:rgba(0,0,0,.3)}.qodef-slider1-item .qodef-social-share-holder.qodef-dropdown ul li:nth-child(1){bottom:25px;left:70px}.qodef-slider1-item .qodef-social-share-holder.qodef-dropdown ul li:nth-child(2){bottom:25px;left:118px}.qodef-slider1-item .qodef-social-share-holder.qodef-dropdown ul li:nth-child(3){bottom:25px;left:166px}.qodef-slider1-item .qodef-social-share-holder.qodef-dropdown ul li:nth-child(4){bottom:25px;left:214px}.qodef-slider1-item .qodef-social-share-holder.qodef-dropdown ul li:nth-child(5){bottom:25px;left:262px}.qodef-slider1-item .qodef-social-share-holder.qodef-dropdown ul li:nth-child(6){bottom:25px;left:310px}.qodef-slider1-item .qodef-social-share-holder.qodef-dropdown ul li:nth-child(7){bottom:25px;left:358px}.qodef-slider1 .qodef-news-slider1-sidebar{position:absolute;top:0;right:0;height:100%;width:30%;z-index:5}.qodef-slider1 .qodef-news-slider1-sidebar .qodef-news-slider1-sidebar-table{position:relative;display:table;table-layout:fixed;height:100%;width:100%;width:59%}.qodef-slider1 .qodef-news-slider1-sidebar .qodef-news-slider1-sidebar-table-cell{position:relative;display:table-cell;height:100%;width:100%;vertical-align:middle}.qodef-slider1 .qodef-news-slider1-sidebar .widget{color:#fff;background-color:transparent;border:none;margin-bottom:0}.qodef-slider1 .qodef-news-slider1-sidebar .widget a{color:inherit}.qodef-slider1 .qodef-news-slider1-sidebar .widget .qodef-ni-info>div,.qodef-slider1 .qodef-news-slider1-sidebar .widget .qodef-post-title,.qodef-slider1 .qodef-news-slider1-sidebar .widget ul li a{color:#fff}.qodef-slider1-owl .owl-stage{-webkit-transition-duration:1.2s!important;transition-duration:1.2s!important;-webkit-transition-timing-function:cubic-bezier(.77,0,.175,1)!important;transition-timing-function:cubic-bezier(.77,0,.175,1)!important}.qodef-slider1-owl .owl-dots{position:absolute;top:50%;left:32px;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);transform:translateY(-50%)}.qodef-slider1-owl .owl-dots .owl-dot{color:rgba(255,255,255,.3);font-size:12px;font-weight:500;line-height:3em;font-family:Oswald,sans-serif;-webkit-transition:color .2s ease-in-out;-moz-transition:color .2s ease-in-out;transition:color .2s ease-in-out}.qodef-slider1-owl .owl-dots .owl-dot.active,.qodef-slider1-owl .owl-dots .owl-dot:hover{color:#fff}.qodef-slider1-owl .owl-dots .owl-dot:last-child:after{display:none}@-webkit-keyframes qodefFadeOutSliderContent{0%{opacity:1}100%{opacity:0}}@keyframes qodefFadeOutSliderContent{0%{opacity:1}100%{opacity:0}}@-webkit-keyframes qodefFadeInSliderContent{0%{opacity:0}100%{opacity:1}}@keyframes qodefFadeInSliderContent{0%{opacity:0}100%{opacity:1}}.qodef-slider1-owl .owl-item .qodef-ni-content{opacity:0;-webkit-animation:qodefFadeOutSliderContent .5s;-moz-animation:qodefFadeOutSliderContent .5s;animation:qodefFadeOutSliderContent .5s}.qodef-slider1-owl .owl-item.active .qodef-ni-content{-webkit-animation:qodefFadeInSliderContent 1s cubic-bezier(.77,0,.175,1) .5s both;-moz-animation:qodefFadeInSliderContent 1s cubic-bezier(.77,0,.175,1) .5s both;animation:qodefFadeInSliderContent 1s cubic-bezier(.77,0,.175,1) .5s both}@media only screen and (max-width:480px){.qodef-slider1-owl .owl-dots{display:none}}.qodef-video-layout1-item .qodef-news-video-holder,.qodef-video-layout1-item .qodef-ni-content,.qodef-video-layout2-item .qodef-ni-image-holder{display:inline-block;width:100%;position:relative;vertical-align:middle}.qodef-video-layout1-item .qodef-news-video-holder{margin-bottom:0}.qodef-video-layout1-item .qodef-ni-info-top{margin-top:16px}.qodef-video-layout1-item .qodef-post-title{margin-top:13px}.qodef-video-layout1-item .qodef-ni-info-bottom,.qodef-video-layout1-item .qodef-post-excerpt-holder{margin-top:11px}.qodef-video-layout1-item .qodef-ni-info-bottom a span{color:#b6b6b6}.qodef-video-layout1-item .qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown-opener .social_share{position:relative;top:2px}.qodef-video-layout2-item .qodef-ni-image-holder{margin-bottom:0}.qodef-video-layout2-item .qodef-ni-image-holder .qodef-ni-video-button-play{width:40px;height:40px;background-color:#fff;color:#121212;border-radius:50%;text-align:center;line-height:40px;display:block;-webkit-transition:color .2s ease-out;-moz-transition:color .2s ease-out;transition:color .2s ease-out}.qodef-video-layout2-item .qodef-ni-image-holder .qodef-ni-video-button-play:hover{color:#b2b2b2}.qodef-video-layout2-item .qodef-ni-image-holder .qodef-ni-video-button-play>span{right:-2px;position:relative}.qodef-video-layout2-item .qodef-ni-image-holder .qodef-news-image-info-holder{position:absolute;top:14px;right:14px;background-color:#fff;padding:0 15px}.qodef-video-layout2-item .qodef-ni-image-holder .qodef-news-image-info-holder .qodef-ni-video-duration{font-size:10px;font-family:Oswald,sans-serif;font-weight:500;letter-spacing:.1em;color:#000;line-height:22px}.qodef-video-layout2-item .qodef-ni-video-button{position:relative;display:inline-block;width:100%;vertical-align:middle}.qodef-video-layout2-item .qodef-ni-button-title-holder{position:absolute;bottom:0;left:0;padding-left:25px;padding-bottom:25px;box-sizing:border-box}.qodef-video-layout2-item .qodef-ni-button-title-holder .qodef-post-title{width:60%}.qodef-video-layout2-item .qodef-ni-button-title-holder .qodef-post-title a{color:#fff}.qodef-video-layout2-item .qodef-ni-content{position:relative;display:inline-block;width:100%;vertical-align:middle;margin-top:21px}.qodef-video-layout2-item .qodef-ni-info-top{margin-top:0}.qodef-video-layout2-item .qodef-post-title{margin-top:13px}.qodef-video-layout2-item .qodef-ni-info-bottom,.qodef-video-layout2-item .qodef-post-excerpt-holder{margin-top:8px}.qodef-video-layout3-item .qodef-ni-image-holder{position:relative;display:inline-block;width:100%;vertical-align:middle;margin-bottom:0}.qodef-video-layout3-item .qodef-ni-image-holder .qodef-ni-video-button-play{width:40px;height:40px;background-color:#fff;border-radius:50%;text-align:center;line-height:40px;display:block}.qodef-video-layout3-item .qodef-ni-image-holder .qodef-ni-video-button-play>span{right:-2px;position:relative}.qodef-video-layout3-item .qodef-ni-image-holder .qodef-news-image-info-holder{position:absolute;top:14px;right:14px;background-color:#fff;padding:0 15px}.qodef-video-layout3-item .qodef-ni-image-holder .qodef-news-image-info-holder .qodef-ni-video-duration{font-size:10px;font-family:Oswald,sans-serif;font-weight:500;letter-spacing:.1em;color:#000;line-height:22px}.qodef-video-layout3-item .qodef-ni-video-button{position:relative;display:inline-block;width:100%;vertical-align:middle}.qodef-video-layout3-item .qodef-post-image a:after{content:'';position:absolute;display:block;width:100%;height:100%;top:0;left:0;opacity:0;background-color:rgba(255,255,255,.5);-webkit-transition:opacity .45s cubic-bezier(.165,.84,.44,1);-moz-transition:opacity .45s cubic-bezier(.165,.84,.44,1);transition:opacity .45s cubic-bezier(.165,.84,.44,1)}.qodef-video-layout3-item:hover .qodef-post-image a:after{opacity:.45}.qodef-video-layout3-item .qodef-ni-button-title-holder{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-moz-transform:translate(-50%,-50%);transform:translate(-50%,-50%);box-sizing:border-box}.qodef-video-layout3-item .qodef-ni-button-title-holder .qodef-post-title a{color:#fff}.qodef-video-layout3-item .qodef-ni-content{position:relative;display:inline-block;width:100%;vertical-align:middle;margin-top:0}.qodef-video-layout3-item .qodef-ni-info-top{margin-top:0}.qodef-video-layout3-item .qodef-post-title{margin-top:13px;margin-bottom:10px}@media only screen and (min-width:1920px){.qodef-video-layout3-item .qodef-post-title{padding-right:50px}}.qodef-video-layout3-item .qodef-ni-info-bottom,.qodef-video-layout3-item .qodef-post-excerpt-holder{margin-top:8px}.qodef-news-blog-cr-widget{position:relative;display:inline-block;vertical-align:middle;height:100%;cursor:pointer}.qodef-news-blog-cr-widget:before{content:'';display:inline-block;vertical-align:middle;height:100%;margin-left:-4px}.qodef-news-blog-cr-widget .qodef-news-bcr-opener-holder{position:relative;display:inline-block;vertical-align:middle;padding:0 10px}.qodef-news-blog-cr-widget .qodef-news-bcr-opener-holder .qodef-news-bcr-opener{position:relative;width:6px;height:27px}.qodef-news-blog-cr-widget .qodef-news-bcr-opener-holder .qodef-bcr-circle{display:inline-block;vertical-align:middle;width:100%;height:6px;background-color:#b8bfc1;border-radius:50%}.qodef-news-blog-cr-widget .qodef-news-bcr-opener-holder .qodef-bcr-circle:first-child{position:absolute;top:0;left:0}.qodef-news-blog-cr-widget .qodef-news-bcr-opener-holder .qodef-bcr-circle:last-child{position:absolute;bottom:1px;left:0}.qodef-news-blog-cr-widget .qodef-news-bcr-dropdown{position:absolute;top:100%;right:0;width:620px;opacity:0;background-color:#fff;visibility:hidden;text-align:left;padding:30px 30px 20px;box-sizing:border-box;-webkit-transition:opacity .25s ease-in-out;-moz-transition:opacity .25s ease-in-out;transition:opacity .25s ease-in-out}.qodef-news-blog-cr-widget .qodef-news-bcr-dropdown.opened{opacity:1;visibility:visible}.qodef-news-blog-cr-widget .qodef-news-blog-cr-title-holder{margin-bottom:20px}.qodef-news-blog-cr-widget .qodef-news-blog-cr-title-holder .qodef-news-bcr-title{margin:0}.qodef-news-blog-cr-widget .qodef-news-bcr-cats{font-size:0}.qodef-news-blog-cr-widget .qodef-news-bcr-cats:not(:only-child){padding-bottom:20px}.qodef-news-blog-cr-widget .qodef-news-bcr-cats .qodef-news-bcr-category{display:inline-block;vertical-align:middle;width:25%;font-size:14px}.qodef-news-blog-cr-widget .qodef-news-bcr-reacts:not(:only-child){padding-top:20px;border-top:1px solid #ebebeb}.qodef-news-blog-cr-widget .qodef-news-bcr-reacts .qodef-news-bcr-reaction{display:inline-block;vertical-align:middle;max-width:75px;padding:0 10px;text-align:center}.widget.qodef-news-latest-news-widget{display:inline-block;vertical-align:middle;visibility:hidden}.widget.qodef-news-latest-news-widget .qodef-news-lnw-title-holder{display:inline-block;vertical-align:middle}.widget.qodef-news-latest-news-widget .qodef-news-lnw-title-holder .qodef-fm-lines{position:relative;display:inline-block;vertical-align:middle;width:10px;height:16px;margin-right:14px}.widget.qodef-news-latest-news-widget .qodef-news-lnw-title-holder .qodef-fm-lines .qodef-fm-line{position:absolute;left:0;height:2px;width:100%;background-color:#fff;-webkit-transition:-webkit-transform .3s ease,top .2s ease-out,background-color .2s ease-out;-moz-transition:-moz-transform .3s ease,top .2s ease-out,background-color .2s ease-out;transition:transform .3s ease,top .2s ease-out,background-color .2s ease-out}.widget.qodef-news-latest-news-widget .qodef-news-lnw-title-holder .qodef-fm-lines .qodef-fm-line.qodef-line-1{top:0;outline:transparent solid 1px}.widget.qodef-news-latest-news-widget .qodef-news-lnw-title-holder .qodef-fm-lines .qodef-fm-line.qodef-line-2{top:calc(50% - 2px);outline:transparent solid 1px}.widget.qodef-news-latest-news-widget .qodef-news-lnw-title-holder .qodef-fm-lines .qodef-fm-line.qodef-line-3{top:calc(100% - 4px);outline:transparent solid 1px}.widget.qodef-news-latest-news-widget .qodef-news-lnw-slider-holder{position:relative;display:inline-block;vertical-align:middle;overflow:hidden;max-width:300px}.widget.qodef-news-latest-news-widget .qodef-news-lnw-title{vertical-align:middle;font-size:12px;font-weight:500;text-transform:uppercase;font-family:Oswald,sans-serif;letter-spacing:.1em;color:#fafafa;margin-right:7px}.widget.qodef-news-latest-news-widget .qodef-news-lnw-slider{position:relative}.widget.qodef-news-latest-news-widget .qodef-news-lnw-slider .qodef-news-lnw-slide{float:left;position:relative;white-space:nowrap;padding:8px 0}.widget.qodef-news-latest-news-widget .qodef-news-lnw-slider .qodef-news-lnw-slide>a{color:rgba(250,250,250,.5);font-size:12px;line-height:1.2em}.widget.qodef-news-latest-news-widget .qodef-news-lnw-slider .qodef-news-lnw-slide>a:hover{color:#fff;text-decoration:underline}.widget.qodef-news-latest-news-widget .qodef-news-lnw-slider .qodef-news-lnw-slide:after{content:'|';display:inline-block;color:inherit;margin:0 7px}.widget.qodef-news-latest-news-widget .qodef-news-lnw-slider.qodef-news-clone{position:absolute;top:0}.widget.qodef-news-latest-news-widget.qodef-lnw-skin-light .qodef-news-lnw-title-holder{color:#fff}.widget.qodef-news-latest-news-widget.qodef-lnw-skin-light .qodef-news-lnw-slider .qodef-news-lnw-slide a{color:#fff;line-height:1.2em}.widget.qodef-news-latest-news-widget.qodef-lnw-skin-dark .qodef-news-lnw-slider .qodef-news-lnw-slide a,.widget.qodef-news-latest-news-widget.qodef-lnw-skin-dark .qodef-news-lnw-title-holder{color:#000}.qodef-plw-tabs{position:relative;display:inline-block;width:100%;vertical-align:middle}.qodef-drop-down .qodef-plw-tabs .qodef-plw-tabs-inner .qodef-plw-tabs-tabs-holder .qodef-plw-tabs-tab{padding-left:16px;margin:0}.qodef-drop-down .qodef-plw-tabs .qodef-plw-tabs-inner .qodef-plw-tabs-tabs-holder .qodef-plw-tabs-tab a{position:relative;display:block;height:auto;padding:6px 0;font-size:12px;line-height:19px;font-family:Oswald,sans-serif;float:none;-webkit-transition:color .15s ease-in-out;-moz-transition:color .15s ease-in-out;transition:color .15s ease-in-out}.qodef-drop-down .qodef-plw-tabs .qodef-plw-tabs-inner .qodef-plw-tabs-tabs-holder .qodef-plw-tabs-tab a .item_text{color:#b6b6b6!important}.qodef-drop-down .qodef-plw-tabs .qodef-plw-tabs-inner .qodef-plw-tabs-tabs-holder .qodef-plw-tabs-tab a:hover .item_text,.qodef-drop-down .qodef-plw-tabs .qodef-plw-tabs-inner .qodef-plw-tabs-tabs-holder .qodef-plw-tabs-tab.qodef-plw-tabs-active-item a .item_text{color:#fff!important}.qodef-plw-tabs .qodef-plw-tabs-tab:first-child a{padding-top:0}.qodef-plw-tabs .qodef-plw-tabs-inner{padding:0;margin:0 -15px}.qodef-plw-tabs .qodef-plw-tabs-tabs-holder{width:19%;display:inline-block;position:relative;float:left;padding:0 15px 0 0;vertical-align:middle;box-sizing:border-box}.qodef-plw-tabs .qodef-plw-tabs-tabs-holder .qodef-plw-tabs-tab a .item_text{position:relative;display:block;padding:0 30px 0 0;margin:0;overflow:hidden;-webkit-transition:padding .2s ease-in-out;-moz-transition:padding .2s ease-in-out;transition:padding .2s ease-in-out}.qodef-plw-tabs .qodef-plw-tabs-content-holder{position:relative;float:right;width:81%}.qodef-plw-tabs .qodef-plw-tabs-content-holder .qodef-plw-tabs-content{opacity:0;display:inline-block;float:left;padding:0 15px 0 0;vertical-align:middle;box-sizing:border-box;position:absolute;width:100%;max-width:100%;z-index:1;-webkit-transition:opacity .23s;-moz-transition:opacity .23s;transition:opacity .23s}.qodef-plw-tabs .qodef-plw-tabs-content-holder .qodef-plw-tabs-content.qodef-plw-tabs-active-item{opacity:1;z-index:2}.qodef-plw-tabs .qodef-plw-tabs-content-holder .qodef-plw-tabs-content .qodef-layout8-item .qodef-ni-image-holder{margin-bottom:10px}.qodef-plw-tabs .qodef-plw-tabs-content-holder .qodef-plw-tabs-content .qodef-layout8-item .qodef-ni-info-bottom{margin-top:6px;margin-bottom:10px}.qodef-plw-tabs .qodef-plw-tabs-content-holder .qodef-plw-tabs-content .qodef-layout8-item .qodef-ni-info-bottom .qodef-post-info-date a{font-family:Oswald,sans-serif;text-transform:uppercase;font-size:10px;font-weight:500}.qodef-plw-tabs .qodef-pt-six-item{margin:0 0 5px}.qodef-plw-tabs .qodef-pt-six-item .qodef-pt-six-info-section>div{color:#a8a7a7}.qodef-page-header>div .qodef-plw-tabs .qodef-plw-tabs-inner .qodef-plw-tabs-tabs-holder .qodef-plw-tabs-tab a .item_text{color:#b6b6b6!important}.qodef-page-header>div .qodef-plw-tabs .qodef-plw-tabs-inner .qodef-plw-tabs-tabs-holder .qodef-plw-tabs-tab a:hover .item_text{color:#fff!important}.widget.qodef-news-weather-widget{font-family:Oswald,sans-serif;font-weight:500;font-size:12px;letter-spacing:.05em;text-transform:uppercase}.widget.qodef-news-weather-widget.qodef-news-weather-simple .qodef-weather-date,.widget.qodef-news-weather-widget.qodef-news-weather-simple .qodef-weather-temperature{display:inline-block;vertical-align:middle}.widget.qodef-news-weather-widget.qodef-news-weather-simple.qodef-news-weather-days-1 .qodef-news-weather-single{display:inline-block;vertical-align:middle;position:relative;top:-1px}.widget.qodef-news-weather-widget.qodef-news-weather-simple.qodef-news-weather-days-1 .qodef-weather-city{display:inline-block;vertical-align:middle;margin-right:7px}.widget.qodef-news-weather-widget.qodef-news-weather-skin-dark{color:#000}.widget.qodef-news-weather-widget.qodef-news-weather-skin-light{color:#fff}.widget.qodef-news-weather-widget .qodef-ws-more{position:relative;display:table;table-layout:fixed;height:100%;width:100%}.widget.qodef-news-weather-widget .qodef-ws-more .qodef-news-ws-left{display:table-cell;vertical-align:top;width:40%}.widget.qodef-news-weather-widget .qodef-ws-more .qodef-news-ws-right{display:table-cell;vertical-align:top}.widget.qodef-news-weather-widget .qodef-ws-more .qodef-news-weather-icon:before{content:'';font-size:50px;font-family:IonIcons}.widget.qodef-news-weather-widget .qodef-ws-more .qodef-news-ws-mist:before{content:"\f475"}.widget.qodef-news-weather-widget .qodef-ws-more .qodef-news-ws-light-snow:before,.widget.qodef-news-weather-widget .qodef-ws-more .qodef-news-ws-snow:before{content:"\f4ae"}.widget.qodef-news-weather-widget .qodef-ws-more .qodef-news-ws-thunderstorm:before{content:"\f4bc"}.widget.qodef-news-weather-widget .qodef-ws-more .qodef-news-ws-drizzle:before,.widget.qodef-news-weather-widget .qodef-ws-more .qodef-news-ws-light-intensity-drizzle:before,.widget.qodef-news-weather-widget .qodef-ws-more .qodef-news-ws-light-intensity-shower-rain:before,.widget.qodef-news-weather-widget .qodef-ws-more .qodef-news-ws-light-rain:before,.widget.qodef-news-weather-widget .qodef-ws-more .qodef-news-ws-moderate-rain:before,.widget.qodef-news-weather-widget .qodef-ws-more .qodef-news-ws-rain:before{content:"\f494"}.widget.qodef-news-weather-widget .qodef-ws-more .qodef-news-ws-shower-rain:before{content:"\f495"}.widget.qodef-news-weather-widget .qodef-ws-more .qodef-news-ws-broken-clouds:before{content:"\f410"}.widget.qodef-news-weather-widget .qodef-ws-more .qodef-news-ws-few-clouds:before,.widget.qodef-news-weather-widget .qodef-ws-more .qodef-news-ws-scattered-clouds:before{content:"\f40f"}.widget.qodef-news-weather-widget .qodef-ws-more .qodef-news-ws-clear-sky:before,.widget.qodef-news-weather-widget .qodef-ws-more .qodef-news-ws-sun:before{content:"\f4b6"}.widget.qodef-news-weather-widget .qodef-ws-more .qodef-weather-top-part{margin-bottom:15px}.widget.qodef-news-weather-widget .qodef-ws-more .qodef-weather-top-part .qodef-weather-city{color:#000}.widget.qodef-news-weather-widget .qodef-news-weather-other-days{position:relative;display:table;table-layout:fixed;height:100%;width:100%;margin-top:15px}.widget.qodef-news-weather-widget .qodef-news-weather-other-days .qodef-news-weather-single{display:table-cell;vertical-align:bottom;text-align:center}@media only screen and (max-width:1200px){.qodef-container-inner,.qodef-grid,.qodef-row-grid-section{width:950px}}@media only screen and (max-width:1024px){body:not(.qodef-content-is-behind-header):not(.error404) .qodef-content{margin-top:0!important}.qodef-hide-on-tablet{display:none!important}.qodef-container-inner,.qodef-grid,.qodef-row-grid-section{width:768px}}@media only screen and (max-width:768px){.qodef-container-inner,.qodef-grid,.qodef-row-grid-section{width:600px}}@media only screen and (max-width:680px){.qodef-hide-on-mobile{display:none!important}.qodef-container-inner,.qodef-grid,.qodef-row-grid-section{width:420px}}@media only screen and (max-width:480px){.qodef-container-inner,.qodef-grid,.qodef-row-grid-section{width:300px}}@media only screen and (max-width:320px){.qodef-container-inner,.qodef-grid,.qodef-row-grid-section{width:90%}}@media only screen and (max-width:1200px){.qodef-boxed .qodef-wrapper .qodef-footer-inner,.qodef-boxed .qodef-wrapper .qodef-wrapper-inner{width:1000px}}@media only screen and (max-width:1024px){.qodef-boxed .qodef-wrapper .qodef-footer-inner,.qodef-boxed .qodef-wrapper .qodef-wrapper-inner{width:818px}}@media only screen and (max-width:768px){.qodef-boxed .qodef-wrapper .qodef-footer-inner,.qodef-boxed .qodef-wrapper .qodef-wrapper-inner{width:650px}}@media only screen and (max-width:680px){.qodef-boxed .qodef-wrapper .qodef-footer-inner,.qodef-boxed .qodef-wrapper .qodef-wrapper-inner{width:470px}}@media only screen and (max-width:480px){.qodef-boxed .qodef-wrapper .qodef-footer-inner,.qodef-boxed .qodef-wrapper .qodef-wrapper-inner{width:350px}}@media only screen and (max-width:320px){.qodef-boxed .qodef-wrapper .qodef-footer-inner,.qodef-boxed .qodef-wrapper .qodef-wrapper-inner{width:92%}}@media only screen and (max-width:1600px) and (min-width:1200px){.qodef-grid-1400.qodef-boxed .qodef-wrapper .qodef-footer-inner,.qodef-grid-1400.qodef-boxed .qodef-wrapper .qodef-wrapper-inner{width:1180px}}@media only screen and (max-width:1200px){.qodef-instagram-feed:not(.qodef-instagram-carousel) li img{width:100%}.qodef-instagram-feed:not(.qodef-instagram-carousel).qodef-col-6 li,.qodef-instagram-feed:not(.qodef-instagram-carousel).qodef-col-9 li{width:25%}}@media only screen and (max-width:768px){.qodef-instagram-feed:not(.qodef-instagram-carousel).qodef-col-6 li,.qodef-instagram-feed:not(.qodef-instagram-carousel).qodef-col-9 li{width:33.33333%}}@media only screen and (max-width:680px){.qodef-instagram-feed:not(.qodef-instagram-carousel) li{width:50%!important}}@media only screen and (max-width:1440px){.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-five-columns .qodef-blog-masonry-grid-sizer,.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-five-columns article{width:25%}.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-five-columns article.qodef-post-size-large-width,.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-five-columns article.qodef-post-size-large-width-height{width:50%}}@media only screen and (max-width:1280px){.qodef-huge-space.qodef-disable-bottom-space{margin-bottom:-50px}.qodef-huge-space .qodef-outer-space{margin:0 -25px}.qodef-huge-space .qodef-outer-space .qodef-item-space{padding:0 25px;margin:0 0 50px}.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-four-columns .qodef-blog-masonry-grid-sizer,.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-four-columns article{width:33.33333%}.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-four-columns article.qodef-post-size-large-width,.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-four-columns article.qodef-post-size-large-width-height{width:66.66667%}.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-five-columns .qodef-blog-masonry-grid-sizer,.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-five-columns article{width:33.33333%}.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-five-columns article.qodef-post-size-large-width,.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-five-columns article.qodef-post-size-large-width-height{width:66.66667%}}@media only screen and (max-width:1024px){.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-three-columns .qodef-blog-masonry-grid-sizer,.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-three-columns article{width:50%}.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-three-columns article.qodef-post-size-large-width,.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-three-columns article.qodef-post-size-large-width-height{width:100%}.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-four-columns .qodef-blog-masonry-grid-sizer,.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-four-columns article{width:50%}.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-four-columns article.qodef-post-size-large-width,.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-four-columns article.qodef-post-size-large-width-height{width:100%}.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-five-columns .qodef-blog-masonry-grid-sizer,.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-five-columns article{width:50%}.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-five-columns article.qodef-post-size-large-width,.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-five-columns article.qodef-post-size-large-width-height{width:100%}}@media only screen and (max-width:680px){.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-five-columns .qodef-blog-masonry-grid-sizer,.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-five-columns article,.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-five-columns article.qodef-post-size-large-width,.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-five-columns article.qodef-post-size-large-width-height,.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-four-columns .qodef-blog-masonry-grid-sizer,.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-four-columns article,.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-four-columns article.qodef-post-size-large-width,.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-four-columns article.qodef-post-size-large-width-height,.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-three-columns .qodef-blog-masonry-grid-sizer,.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-three-columns article,.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-three-columns article.qodef-post-size-large-width,.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-three-columns article.qodef-post-size-large-width-height,.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-two-columns .qodef-blog-masonry-grid-sizer,.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-two-columns article,.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-two-columns article.qodef-post-size-large-width,.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-two-columns article.qodef-post-size-large-width-height{width:100%}}@media only screen and (max-width:768px){.qodef-related-posts-holder .qodef-related-post{width:100%!important}.qodef-blog-holder.qodef-blog-single article .qodef-post-info-bottom .qodef-post-info-bottom-left,.qodef-blog-holder.qodef-blog-single article .qodef-post-info-bottom .qodef-post-info-bottom-right{width:100%;float:none}.qodef-blog-holder.qodef-blog-single article .qodef-post-info-bottom .qodef-post-info-bottom-right{text-align:inherit;margin:10px 0 0}}@media only screen and (max-width:1024px) and (min-width:681px){.qodef-page-footer .qodef-column-content.qodef-grid-col-3{width:50%;float:left}.qodef-page-footer .qodef-column-content.qodef-grid-col-3:nth-child(2n+1){clear:both}.qodef-page-footer .qodef-column-content.qodef-grid-col-3:nth-child(3),.qodef-page-footer .qodef-column-content.qodef-grid-col-3:nth-child(4){margin-top:35px}.qodef-page-footer .qodef-column-content.qodef-grid-col-4{width:33.33333333333333%;float:left}}@media only screen and (max-width:768px) and (min-width:681px){.qodef-page-footer .qodef-column-content.qodef-grid-col-3,.qodef-page-footer .qodef-column-content.qodef-grid-col-4{width:100%}.qodef-page-footer .qodef-column-content.qodef-grid-col-3:not(:first-child),.qodef-page-footer .qodef-column-content.qodef-grid-col-4:not(:first-child){margin-top:35px}}@media only screen and (max-width:680px){.qodef-page-footer .qodef-column-content:not(:first-child){margin-top:35px}}@media only screen and (max-width:1200px){.qodef-drop-down .wide .second>.inner>ul{width:950px}}@media only screen and (max-width:1024px){.qodef-page-header{display:none}.qodef-drop-down .wide .second>.inner>ul{width:768px}.qodef-header-vertical .qodef-vertical-menu-area{display:none}.qodef-header-vertical .qodef-content,.qodef-header-vertical footer{padding-left:0}}@media only screen and (max-width:1200px){.qodef-boxed .qodef-page-header .qodef-fixed-wrapper.fixed{width:1000px}}@media only screen and (min-width:1025px){.qodef-header-vertical .qodef-404-page .qodef-content{margin:0!important}}@media only screen and (max-width:1440px){.qodef-header-vertical .qodef-container-inner,.qodef-header-vertical .qodef-grid,.qodef-header-vertical .qodef-row-grid-section{width:950px}}@media only screen and (max-width:1200px){.qodef-header-vertical .qodef-container-inner,.qodef-header-vertical .qodef-grid,.qodef-header-vertical .qodef-row-grid-section{width:768px}}@media only screen and (max-width:1024px){.qodef-header-vertical .qodef-container-inner,.qodef-header-vertical .qodef-grid,.qodef-header-vertical .qodef-row-grid-section{width:768px}.qodef-mobile-header{display:block}}@media only screen and (max-width:768px){.qodef-header-vertical .qodef-container-inner,.qodef-header-vertical .qodef-grid,.qodef-header-vertical .qodef-row-grid-section{width:600px}}@media only screen and (max-width:680px){.qodef-header-vertical .qodef-container-inner,.qodef-header-vertical .qodef-grid,.qodef-header-vertical .qodef-row-grid-section{width:420px}}@media only screen and (max-width:480px){.qodef-header-vertical .qodef-container-inner,.qodef-header-vertical .qodef-grid,.qodef-header-vertical .qodef-row-grid-section{width:300px}}@media only screen and (max-width:320px){.qodef-header-vertical .qodef-container-inner,.qodef-header-vertical .qodef-grid,.qodef-header-vertical .qodef-row-grid-section{width:90%}}@media only screen and (max-width:1200px){.qodef-boxed .qodef-page-header .qodef-sticky-header{width:1000px}}@media only screen and (max-width:1024px){.qodef-boxed.qodef-sticky-up-mobile-header .mobile-header-appear .qodef-mobile-header-inner{width:818px;left:auto}.qodef-top-bar{display:none}}@media only screen and (max-width:768px){.qodef-boxed.qodef-sticky-up-mobile-header .mobile-header-appear .qodef-mobile-header-inner{width:650px}}@media only screen and (max-width:680px){.qodef-boxed.qodef-sticky-up-mobile-header .mobile-header-appear .qodef-mobile-header-inner{width:470px}}@media only screen and (max-width:480px){.qodef-boxed.qodef-sticky-up-mobile-header .mobile-header-appear .qodef-mobile-header-inner{width:350px}}@media only screen and (max-width:320px){.qodef-boxed.qodef-sticky-up-mobile-header .mobile-header-appear .qodef-mobile-header-inner{width:92%}}@media only screen and (max-width:1280px){.qodef-top-bar-in-grid-padding .qodef-top-bar .qodef-grid .qodef-vertical-align-containers,.qodef-top-bar>.qodef-vertical-align-containers{padding:0 40px}}@media only screen and (max-width:1024px){.qodef-search-page-holder article .qodef-post-image{width:80px;vertical-align:top}.qodef-search-page-holder article .qodef-post-title-area{min-height:80px;width:calc(100% - 80px);vertical-align:top}}@media only screen and (max-width:680px){.qodef-search-page-holder article .qodef-post-image{width:100%;display:block}.qodef-search-page-holder article .qodef-post-title-area{padding:0;width:100%;display:block;margin-top:25px}}@media only screen and (max-width:1280px){.qodef-title-holder.qodef-title-full-width .qodef-grid{padding:0 40px}}@media only screen and (max-width:1024px){.qodef-title-holder.qodef-has-bg-image{height:auto!important;padding:0!important;background-image:none!important}.qodef-title-holder.qodef-has-bg-image .qodef-title-image{display:block}.qodef-title-holder.qodef-has-bg-image .qodef-title-wrapper{position:absolute;top:50%;left:0;height:100%!important;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);transform:translateY(-50%)}.qodef-title-holder.qodef-centered-type .qodef-page-subtitle{padding:0!important}}@media only screen and (max-width:480px){.qodef-title-holder.qodef-centered-type .qodef-page-subtitle{display:none}}@media only screen and (max-width:1024px){.qodef-title-holder.qodef-standard-with-breadcrumbs-type .qodef-breadcrumbs-info,.qodef-title-holder.qodef-standard-with-breadcrumbs-type .qodef-title-info{display:block;width:100%}.qodef-title-holder.qodef-standard-with-breadcrumbs-type .qodef-breadcrumbs-info{margin:10px 0 0;text-align:initial;white-space:inherit}}@media only screen and (max-width:480px){.qodef-title-holder.qodef-standard-with-breadcrumbs-type .qodef-breadcrumbs-info{display:none}}@media only screen and (min-width:1201px) and (max-width:1300px){.qodef-call-to-action-holder .qodef-grid{width:1100px}}@media only screen and (max-width:1200px){.qodef-btn.qodef-btn-huge,.qodef-btn.qodef-btn-large{padding:11px 46px 13px}.qodef-call-to-action-holder.qodef-four-fifths-columns .qodef-cta-text-holder,.qodef-call-to-action-holder.qodef-three-quarters-columns .qodef-cta-text-holder{width:66.66666666666667%}.qodef-call-to-action-holder.qodef-four-fifths-columns .qodef-cta-button-holder,.qodef-call-to-action-holder.qodef-three-quarters-columns .qodef-cta-button-holder{width:33.33333333333333%}.qodef-countdown .countdown-row .countdown-section .countdown-amount{font-size:60px}}@media only screen and (max-width:768px){.qodef-call-to-action-holder.qodef-normal-layout .qodef-cta-button-holder,.qodef-call-to-action-holder.qodef-normal-layout .qodef-cta-inner,.qodef-call-to-action-holder.qodef-normal-layout .qodef-cta-text-holder{display:block}.qodef-call-to-action-holder.qodef-normal-layout .qodef-cta-button-holder{margin:28px 0 0;text-align:initial}.qodef-call-to-action-holder.qodef-four-fifths-columns .qodef-cta-button-holder,.qodef-call-to-action-holder.qodef-four-fifths-columns .qodef-cta-text-holder,.qodef-call-to-action-holder.qodef-three-quarters-columns .qodef-cta-button-holder,.qodef-call-to-action-holder.qodef-three-quarters-columns .qodef-cta-text-holder,.qodef-call-to-action-holder.qodef-two-halves-columns .qodef-cta-button-holder,.qodef-call-to-action-holder.qodef-two-halves-columns .qodef-cta-text-holder,.qodef-call-to-action-holder.qodef-two-thirds-columns .qodef-cta-button-holder,.qodef-call-to-action-holder.qodef-two-thirds-columns .qodef-cta-text-holder{width:100%}}@media only screen and (max-width:1280px){.qodef-carousel-holder.qodef-responsive-mode-1280 .qodef-eh-item{width:100%!important;height:auto;display:inline-block}.qodef-carousel-holder.qodef-responsive-mode-1280.qodef-one-column-alignment-left .qodef-eh-item .qodef-eh-item-content{text-align:left}.qodef-carousel-holder.qodef-responsive-mode-1280.qodef-one-column-alignment-right .qodef-eh-item .qodef-eh-item-content{text-align:right}.qodef-carousel-holder.qodef-responsive-mode-1280.qodef-one-column-alignment-center .qodef-eh-item .qodef-eh-item-content{text-align:center}}@media only screen and (max-width:1024px){.qodef-carousel-holder.qodef-responsive-mode-1024 .qodef-eh-item{width:100%!important;height:auto;display:inline-block}.qodef-carousel-holder.qodef-responsive-mode-1024.qodef-one-column-alignment-left .qodef-eh-item .qodef-eh-item-content{text-align:left}.qodef-carousel-holder.qodef-responsive-mode-1024.qodef-one-column-alignment-right .qodef-eh-item .qodef-eh-item-content{text-align:right}.qodef-carousel-holder.qodef-responsive-mode-1024.qodef-one-column-alignment-center .qodef-eh-item .qodef-eh-item-content{text-align:center}}@media only screen and (max-width:768px){.qodef-carousel-holder.qodef-responsive-mode-768 .qodef-eh-item{width:100%!important;height:auto;display:inline-block}.qodef-carousel-holder.qodef-responsive-mode-768.qodef-one-column-alignment-left .qodef-eh-item .qodef-eh-item-content{text-align:left}.qodef-carousel-holder.qodef-responsive-mode-768.qodef-one-column-alignment-right .qodef-eh-item .qodef-eh-item-content{text-align:right}.qodef-carousel-holder.qodef-responsive-mode-768.qodef-one-column-alignment-center .qodef-eh-item .qodef-eh-item-content{text-align:center}}@media only screen and (max-width:680px){.qodef-carousel-holder.qodef-responsive-mode-680 .qodef-eh-item{width:100%!important;height:auto;display:inline-block}.qodef-carousel-holder.qodef-responsive-mode-680.qodef-one-column-alignment-left .qodef-eh-item .qodef-eh-item-content{text-align:left}.qodef-carousel-holder.qodef-responsive-mode-680.qodef-one-column-alignment-right .qodef-eh-item .qodef-eh-item-content{text-align:right}.qodef-carousel-holder.qodef-responsive-mode-680.qodef-one-column-alignment-center .qodef-eh-item .qodef-eh-item-content{text-align:center}}@media only screen and (max-width:480px){.qodef-carousel-holder.qodef-responsive-mode-480 .qodef-eh-item{width:100%!important;height:auto;display:inline-block}.qodef-carousel-holder.qodef-responsive-mode-480.qodef-one-column-alignment-left .qodef-eh-item .qodef-eh-item-content{text-align:left}.qodef-carousel-holder.qodef-responsive-mode-480.qodef-one-column-alignment-right .qodef-eh-item .qodef-eh-item-content{text-align:right}.qodef-carousel-holder.qodef-responsive-mode-480.qodef-one-column-alignment-center .qodef-eh-item .qodef-eh-item-content{text-align:center}.qodef-carousel-holder .qodef-eh-item-content{padding:0}}@media only screen and (max-width:768px){.qodef-countdown .countdown-row.countdown-show4 .countdown-section,.qodef-countdown .countdown-row.countdown-show5 .countdown-section,.qodef-countdown .countdown-row.countdown-show6 .countdown-section{width:33.33333333333333%}.qodef-countdown .countdown-row .countdown-section .countdown-amount{font-size:50px}.qodef-custom-font-holder.qodef-disable-title-break br{display:none}}@media only screen and (max-width:1280px){.qodef-elements-holder.qodef-responsive-mode-1280.qodef-five-columns .qodef-eh-item,.qodef-elements-holder.qodef-responsive-mode-1280.qodef-four-columns .qodef-eh-item,.qodef-elements-holder.qodef-responsive-mode-1280.qodef-six-columns .qodef-eh-item,.qodef-elements-holder.qodef-responsive-mode-1280.qodef-three-columns .qodef-eh-item,.qodef-elements-holder.qodef-responsive-mode-1280.qodef-two-columns .qodef-eh-item{width:100%;height:auto;display:inline-block}.qodef-elements-holder.qodef-responsive-mode-1280.qodef-one-column-alignment-left .qodef-eh-item .qodef-eh-item-content{text-align:left}.qodef-elements-holder.qodef-responsive-mode-1280.qodef-one-column-alignment-right .qodef-eh-item .qodef-eh-item-content{text-align:right}.qodef-elements-holder.qodef-responsive-mode-1280.qodef-one-column-alignment-center .qodef-eh-item .qodef-eh-item-content{text-align:center}}@media only screen and (max-width:1024px){.qodef-elements-holder.qodef-responsive-mode-1024.qodef-five-columns .qodef-eh-item,.qodef-elements-holder.qodef-responsive-mode-1024.qodef-four-columns .qodef-eh-item,.qodef-elements-holder.qodef-responsive-mode-1024.qodef-six-columns .qodef-eh-item,.qodef-elements-holder.qodef-responsive-mode-1024.qodef-three-columns .qodef-eh-item,.qodef-elements-holder.qodef-responsive-mode-1024.qodef-two-columns .qodef-eh-item{width:100%;height:auto;display:inline-block}.qodef-elements-holder.qodef-responsive-mode-1024.qodef-one-column-alignment-left .qodef-eh-item .qodef-eh-item-content{text-align:left}.qodef-elements-holder.qodef-responsive-mode-1024.qodef-one-column-alignment-right .qodef-eh-item .qodef-eh-item-content{text-align:right}.qodef-elements-holder.qodef-responsive-mode-1024.qodef-one-column-alignment-center .qodef-eh-item .qodef-eh-item-content{text-align:center}}@media only screen and (max-width:768px){.qodef-elements-holder.qodef-responsive-mode-768.qodef-five-columns .qodef-eh-item,.qodef-elements-holder.qodef-responsive-mode-768.qodef-four-columns .qodef-eh-item,.qodef-elements-holder.qodef-responsive-mode-768.qodef-six-columns .qodef-eh-item,.qodef-elements-holder.qodef-responsive-mode-768.qodef-three-columns .qodef-eh-item,.qodef-elements-holder.qodef-responsive-mode-768.qodef-two-columns .qodef-eh-item{width:100%;height:auto;display:inline-block}.qodef-elements-holder.qodef-responsive-mode-768.qodef-one-column-alignment-left .qodef-eh-item .qodef-eh-item-content{text-align:left}.qodef-elements-holder.qodef-responsive-mode-768.qodef-one-column-alignment-right .qodef-eh-item .qodef-eh-item-content{text-align:right}.qodef-elements-holder.qodef-responsive-mode-768.qodef-one-column-alignment-center .qodef-eh-item .qodef-eh-item-content{text-align:center}}@media only screen and (max-width:680px){.qodef-countdown .countdown-row .countdown-section .countdown-amount{font-size:40px}.qodef-elements-holder.qodef-responsive-mode-680.qodef-five-columns .qodef-eh-item,.qodef-elements-holder.qodef-responsive-mode-680.qodef-four-columns .qodef-eh-item,.qodef-elements-holder.qodef-responsive-mode-680.qodef-six-columns .qodef-eh-item,.qodef-elements-holder.qodef-responsive-mode-680.qodef-three-columns .qodef-eh-item,.qodef-elements-holder.qodef-responsive-mode-680.qodef-two-columns .qodef-eh-item{width:100%;height:auto;display:inline-block}.qodef-elements-holder.qodef-responsive-mode-680.qodef-one-column-alignment-left .qodef-eh-item .qodef-eh-item-content{text-align:left}.qodef-elements-holder.qodef-responsive-mode-680.qodef-one-column-alignment-right .qodef-eh-item .qodef-eh-item-content{text-align:right}.qodef-elements-holder.qodef-responsive-mode-680.qodef-one-column-alignment-center .qodef-eh-item .qodef-eh-item-content{text-align:center}}@media only screen and (max-width:480px){.qodef-elements-holder.qodef-responsive-mode-480.qodef-five-columns .qodef-eh-item,.qodef-elements-holder.qodef-responsive-mode-480.qodef-four-columns .qodef-eh-item,.qodef-elements-holder.qodef-responsive-mode-480.qodef-six-columns .qodef-eh-item,.qodef-elements-holder.qodef-responsive-mode-480.qodef-three-columns .qodef-eh-item,.qodef-elements-holder.qodef-responsive-mode-480.qodef-two-columns .qodef-eh-item{width:100%;height:auto;display:inline-block}.qodef-elements-holder.qodef-responsive-mode-480.qodef-one-column-alignment-left .qodef-eh-item .qodef-eh-item-content{text-align:left}.qodef-elements-holder.qodef-responsive-mode-480.qodef-one-column-alignment-right .qodef-eh-item .qodef-eh-item-content{text-align:right}.qodef-elements-holder.qodef-responsive-mode-480.qodef-one-column-alignment-center .qodef-eh-item .qodef-eh-item-content{text-align:center}.qodef-elements-holder .qodef-eh-item-content{padding:0 10px}}@media only screen and (max-width:1440px){#qodef-hero-marquee-section .qodef-hms-images .qodef-hms-image-col:first-child{width:11%}#qodef-hero-marquee-section .qodef-hms-images .qodef-hms-image-col:nth-child(2){width:38%;padding:0 10%}#qodef-hero-marquee-section .qodef-hms-images .qodef-hms-image-col:nth-child(3){width:25%}#qodef-hero-marquee-section .qodef-hms-images .qodef-hms-image-col:last-child{width:26%;padding-left:7%}}@media only screen and (max-width:1024px){.qodef-google-map-overlay{display:block}#qodef-hero-marquee-section .qodef-hms-images .qodef-hms-image-col:nth-child(2){width:40%;padding:0 10%}#qodef-hero-marquee-section .qodef-hms-images .qodef-hms-image-col:nth-child(3){width:27%}#qodef-hero-marquee-section .qodef-hms-images .qodef-hms-image-col:last-child{width:22%;padding-left:3%}}@media screen and (max-width:812px) and (orientation:landscape){#qodef-hero-marquee-section .qodef-hms-images .qodef-hms-image-col{display:none}}@media only screen and (max-width:768px){#qodef-hero-marquee-section .qodef-hms-images .qodef-hms-image-col:first-child,#qodef-hero-marquee-section .qodef-hms-images .qodef-hms-image-col:last-child{display:none}#qodef-hero-marquee-section .qodef-hms-images .qodef-hms-image-col:nth-child(2),#qodef-hero-marquee-section .qodef-hms-images .qodef-hms-image-col:nth-child(3){padding:0 5%;width:50%;justify-content:space-between}#qodef-hero-marquee-section .qodef-hms-images .qodef-hms-image-col:nth-child(2) .qodef-hms-image-item,#qodef-hero-marquee-section .qodef-hms-images .qodef-hms-image-col:nth-child(3) .qodef-hms-image-item{top:0}}@media only screen and (min-width:1025px) and (max-width:1366px){#qodef-hero-marquee-section .qodef-hms-tagline-holder{margin:28px auto 30px}}@media only screen and (max-width:1440px) and (min-width:1281px){.qodef-image-gallery .qodef-ig-grid.qodef-ig-six-columns .qodef-ig-image:nth-child(6n+1){clear:none}.qodef-image-gallery .qodef-ig-grid.qodef-ig-six-columns .qodef-ig-image:nth-child(5n+1){clear:both}}@media only screen and (max-width:1440px){#qodef-hero-marquee-section .qodef-hms-content-bgrnd-holder{height:34%;height:34vmax;width:50%;width:50vmax}#qodef-hero-marquee-section .qodef-hms-tagline{display:none}.qodef-image-gallery .qodef-ig-grid.qodef-ig-six-columns .qodef-ig-image,.qodef-image-gallery .qodef-ig-masonry.qodef-ig-six-columns .qodef-ig-grid-sizer,.qodef-image-gallery .qodef-ig-masonry.qodef-ig-six-columns .qodef-ig-image{width:20%}}@media only screen and (max-width:1280px) and (min-width:1025px){.qodef-image-gallery .qodef-ig-grid.qodef-ig-five-columns .qodef-ig-image:nth-child(4n+1),.qodef-image-gallery .qodef-ig-grid.qodef-ig-six-columns .qodef-ig-image:nth-child(4n+1){clear:both}}@media only screen and (max-width:1280px){.qodef-image-gallery .qodef-ig-grid.qodef-ig-five-columns .qodef-ig-image,.qodef-image-gallery .qodef-ig-grid.qodef-ig-six-columns .qodef-ig-image,.qodef-image-gallery .qodef-ig-masonry.qodef-ig-five-columns .qodef-ig-grid-sizer,.qodef-image-gallery .qodef-ig-masonry.qodef-ig-five-columns .qodef-ig-image{width:25%}.qodef-image-gallery .qodef-ig-masonry.qodef-ig-five-columns .qodef-ig-image.qodef-large-masonry-item{width:50%}.qodef-image-gallery .qodef-ig-masonry.qodef-ig-six-columns .qodef-ig-grid-sizer,.qodef-image-gallery .qodef-ig-masonry.qodef-ig-six-columns .qodef-ig-image{width:25%}.qodef-image-gallery .qodef-ig-masonry.qodef-ig-six-columns .qodef-ig-image.qodef-large-masonry-item{width:50%}}@media only screen and (max-width:1024px) and (min-width:769px){.qodef-image-gallery .qodef-ig-grid.qodef-ig-five-columns .qodef-ig-image:nth-child(3n+1),.qodef-image-gallery .qodef-ig-grid.qodef-ig-six-columns .qodef-ig-image:nth-child(3n+1){clear:both}}@media only screen and (max-width:1024px) and (min-width:681px){.qodef-image-gallery .qodef-ig-grid.qodef-ig-four-columns .qodef-ig-image:nth-child(4n+1),.qodef-image-gallery .qodef-ig-grid.qodef-ig-three-columns .qodef-ig-image:nth-child(3n+1),.qodef-image-gallery .qodef-ig-grid.qodef-ig-two-columns .qodef-ig-image:nth-child(2n+1){clear:both}}@media only screen and (max-width:1024px){.qodef-image-gallery .qodef-ig-grid.qodef-ig-five-columns .qodef-ig-image,.qodef-image-gallery .qodef-ig-grid.qodef-ig-six-columns .qodef-ig-image{width:33.33333%}.qodef-image-gallery .qodef-ig-grid.qodef-ig-four-columns .qodef-ig-image{width:50%}.qodef-image-gallery .qodef-ig-masonry.qodef-ig-five-columns .qodef-ig-grid-sizer,.qodef-image-gallery .qodef-ig-masonry.qodef-ig-five-columns .qodef-ig-image{width:33.33333%}.qodef-image-gallery .qodef-ig-masonry.qodef-ig-five-columns .qodef-ig-image.qodef-large-masonry-item{width:66.66667%}.qodef-image-gallery .qodef-ig-masonry.qodef-ig-six-columns .qodef-ig-grid-sizer,.qodef-image-gallery .qodef-ig-masonry.qodef-ig-six-columns .qodef-ig-image{width:33.33333%}.qodef-image-gallery .qodef-ig-masonry.qodef-ig-six-columns .qodef-ig-image.qodef-large-masonry-item{width:66.66667%}.qodef-image-gallery .qodef-ig-masonry.qodef-ig-four-columns .qodef-ig-grid-sizer,.qodef-image-gallery .qodef-ig-masonry.qodef-ig-four-columns .qodef-ig-image{width:50%}.qodef-image-gallery .qodef-ig-masonry.qodef-ig-four-columns .qodef-ig-image.qodef-large-masonry-item{width:100%}.qodef-section-title-holder.qodef-st-two-columns{padding:0!important}}@media only screen and (max-width:768px) and (min-width:681px){.qodef-image-gallery .qodef-ig-grid.qodef-ig-five-columns .qodef-ig-image:nth-child(2n+1),.qodef-image-gallery .qodef-ig-grid.qodef-ig-six-columns .qodef-ig-image:nth-child(2n+1){clear:both}}@media only screen and (max-width:768px){.qodef-image-gallery .qodef-ig-grid.qodef-ig-five-columns .qodef-ig-image,.qodef-image-gallery .qodef-ig-grid.qodef-ig-six-columns .qodef-ig-image{width:50%}.qodef-image-gallery .qodef-ig-grid.qodef-ig-three-columns .qodef-ig-image{width:100%}.qodef-image-gallery .qodef-ig-masonry.qodef-ig-five-columns .qodef-ig-grid-sizer,.qodef-image-gallery .qodef-ig-masonry.qodef-ig-five-columns .qodef-ig-image{width:50%}.qodef-image-gallery .qodef-ig-masonry.qodef-ig-five-columns .qodef-ig-image.qodef-large-masonry-item{width:100%}.qodef-image-gallery .qodef-ig-masonry.qodef-ig-six-columns .qodef-ig-grid-sizer,.qodef-image-gallery .qodef-ig-masonry.qodef-ig-six-columns .qodef-ig-image{width:50%}.qodef-image-gallery .qodef-ig-masonry.qodef-ig-six-columns .qodef-ig-image.qodef-large-masonry-item,.qodef-image-gallery .qodef-ig-masonry.qodef-ig-three-columns .qodef-ig-grid-sizer,.qodef-image-gallery .qodef-ig-masonry.qodef-ig-three-columns .qodef-ig-image,.qodef-image-gallery .qodef-ig-masonry.qodef-ig-three-columns .qodef-ig-image.qodef-large-masonry-item{width:100%}.qodef-image-marquee-holder:not(.qodef-im-full-height) .qodef-image img{max-width:300vmin}}@media only screen and (max-width:680px){#qodef-hero-marquee-section .qodef-hms-tagline-holder{margin:22px auto 0}.qodef-image-gallery .qodef-ig-grid.qodef-ig-five-columns .qodef-ig-image,.qodef-image-gallery .qodef-ig-grid.qodef-ig-four-columns .qodef-ig-image,.qodef-image-gallery .qodef-ig-grid.qodef-ig-six-columns .qodef-ig-image,.qodef-image-gallery .qodef-ig-grid.qodef-ig-three-columns .qodef-ig-image,.qodef-image-gallery .qodef-ig-grid.qodef-ig-two-columns .qodef-ig-image,.qodef-image-gallery .qodef-ig-masonry.qodef-ig-five-columns .qodef-ig-grid-sizer,.qodef-image-gallery .qodef-ig-masonry.qodef-ig-five-columns .qodef-ig-image,.qodef-image-gallery .qodef-ig-masonry.qodef-ig-five-columns .qodef-ig-image.qodef-large-masonry-item,.qodef-image-gallery .qodef-ig-masonry.qodef-ig-four-columns .qodef-ig-grid-sizer,.qodef-image-gallery .qodef-ig-masonry.qodef-ig-four-columns .qodef-ig-image,.qodef-image-gallery .qodef-ig-masonry.qodef-ig-four-columns .qodef-ig-image.qodef-large-masonry-item,.qodef-image-gallery .qodef-ig-masonry.qodef-ig-six-columns .qodef-ig-grid-sizer,.qodef-image-gallery .qodef-ig-masonry.qodef-ig-six-columns .qodef-ig-image,.qodef-image-gallery .qodef-ig-masonry.qodef-ig-six-columns .qodef-ig-image.qodef-large-masonry-item,.qodef-image-gallery .qodef-ig-masonry.qodef-ig-three-columns .qodef-ig-grid-sizer,.qodef-image-gallery .qodef-ig-masonry.qodef-ig-three-columns .qodef-ig-image,.qodef-image-gallery .qodef-ig-masonry.qodef-ig-three-columns .qodef-ig-image.qodef-large-masonry-item,.qodef-image-gallery .qodef-ig-masonry.qodef-ig-two-columns .qodef-ig-grid-sizer,.qodef-image-gallery .qodef-ig-masonry.qodef-ig-two-columns .qodef-ig-image,.qodef-image-gallery .qodef-ig-masonry.qodef-ig-two-columns .qodef-ig-image.qodef-large-masonry-item{width:100%}}@media only screen and (max-width:768px){.qodef-section-title-holder{padding:0!important}.qodef-section-title-holder.qodef-st-two-columns .qodef-st-text,.qodef-section-title-holder.qodef-st-two-columns .qodef-st-title{width:100%;float:none!important;text-align:initial!important}.qodef-section-title-holder.qodef-st-two-columns .qodef-st-text{margin:14px 0 0}.qodef-section-title-holder.qodef-st-disable-title-break .qodef-st-title br{display:none}}@media only screen and (max-width:1024px){.qodef-split-scrolling-section .qodef-sss-ms-left{width:100%;float:left;position:relative}.qodef-split-scrolling-section .qodef-sss-ms-left .qodef-sss-ms-section{padding:0!important}.qodef-split-scrolling-section .qodef-sss-ms-right{width:100%;float:left;margin:38px 0 0}.qodef-split-scrolling-section .qodef-sss-ms-right .qodef-sss-ms-section{padding:0!important}.qodef-tabs.qodef-tabs-standard .qodef-tabs-nav li a{padding:7px 21px}.qodef-tabs.qodef-tabs-boxed .qodef-tabs-nav li{margin:0 8px 0 0}.qodef-tabs.qodef-tabs-boxed .qodef-tabs-nav li a{padding:7px 18px}.qodef-tabs.qodef-tabs-simple .qodef-tabs-nav li{margin:0 26px 0 0}.qodef-tabs.qodef-tabs-vertical .qodef-tabs-nav{width:180px}.qodef-tabs.qodef-tabs-vertical .qodef-tab-container{width:calc(100% - 180px);padding:0 0 0 30px}}@media only screen and (max-width:768px){.qodef-tabs.qodef-tabs-boxed .qodef-tabs-nav li a,.qodef-tabs.qodef-tabs-standard .qodef-tabs-nav li a{width:100%}.qodef-tabs.qodef-tabs-standard .qodef-tabs-nav li{display:block;float:none}.qodef-tabs.qodef-tabs-boxed .qodef-tabs-nav li{display:block;float:none;margin:0 0 8px}.qodef-tabs.qodef-tabs-simple .qodef-tabs-nav li{margin:0 20px 0 0}.qodef-tabs.qodef-tabs-vertical .qodef-tab-container,.qodef-tabs.qodef-tabs-vertical .qodef-tabs-nav{display:inline-block;width:100%;height:auto}.qodef-tabs.qodef-tabs-vertical .qodef-tabs-nav{border-right:0}.qodef-tabs.qodef-tabs-vertical .qodef-tabs-nav li{float:left;margin:0 20px 0 0}.qodef-tabs.qodef-tabs-vertical .qodef-tab-container{padding:31px 0 0}}@media only screen and (max-width:680px){.qodef-tabs.qodef-tabs-simple .qodef-tabs-nav li,.qodef-tabs.qodef-tabs-vertical .qodef-tabs-nav li{display:block;float:none;margin:0 0 20px}.qodef-tabs.qodef-tabs-simple .qodef-tabs-nav{padding:0 0 20px}.qodef-tabs.qodef-tabs-simple .qodef-tabs-nav li a,.qodef-tabs.qodef-tabs-vertical .qodef-tabs-nav li a{padding:0;width:100%}}@media only screen and (max-width:1440px){.qodef-news-holder.qodef-news-columns-5:not(.qodef-layout1) .qodef-news-item,.qodef-news-holder.qodef-news-columns-6:not(.qodef-layout1) .qodef-news-item{width:33.33%}.qodef-news-holder.qodef-layout6.qodef-news-columns-5 .qodef-news-item,.qodef-news-holder.qodef-layout6.qodef-news-columns-6 .qodef-news-item,.qodef-news-holder.qodef-layout7.qodef-news-columns-5 .qodef-news-item,.qodef-news-holder.qodef-layout7.qodef-news-columns-6 .qodef-news-item,.qodef-news-holder.qodef-layout8.qodef-news-columns-5 .qodef-news-item,.qodef-news-holder.qodef-layout8.qodef-news-columns-6 .qodef-news-item,.qodef-news-holder.qodef-layout9.qodef-news-columns-5 .qodef-news-item,.qodef-news-holder.qodef-layout9.qodef-news-columns-6 .qodef-news-item{width:25%}}@media only screen and (max-width:1024px){.qodef-news-holder.qodef-layout2.qodef-news-columns-3 .qodef-news-item,.qodef-news-holder.qodef-layout2.qodef-news-columns-4 .qodef-news-item,.qodef-news-holder.qodef-layout2.qodef-news-columns-5 .qodef-news-item,.qodef-news-holder.qodef-layout2.qodef-news-columns-6 .qodef-news-item,.qodef-news-holder.qodef-layout7.qodef-news-columns-3 .qodef-news-item,.qodef-news-holder.qodef-layout7.qodef-news-columns-4 .qodef-news-item,.qodef-news-holder.qodef-layout7.qodef-news-columns-5 .qodef-news-item,.qodef-news-holder.qodef-layout7.qodef-news-columns-6 .qodef-news-item,.qodef-news-holder.qodef-layout8.qodef-news-columns-3 .qodef-news-item,.qodef-news-holder.qodef-layout8.qodef-news-columns-4 .qodef-news-item,.qodef-news-holder.qodef-layout8.qodef-news-columns-5 .qodef-news-item,.qodef-news-holder.qodef-layout8.qodef-news-columns-6 .qodef-news-item,.qodef-news-holder.qodef-layout9.qodef-news-columns-3 .qodef-news-item,.qodef-news-holder.qodef-layout9.qodef-news-columns-4 .qodef-news-item,.qodef-news-holder.qodef-layout9.qodef-news-columns-5 .qodef-news-item,.qodef-news-holder.qodef-layout9.qodef-news-columns-6 .qodef-news-item,.qodef-news-holder.qodef-news-columns-4 .qodef-news-item,.qodef-news-holder.qodef-news-columns-5 .qodef-news-item,.qodef-news-holder.qodef-news-columns-6 .qodef-news-item{width:50%}.qodef-news-holder.qodef-layout3.qodef-news-columns-2 .qodef-news-item,.qodef-news-holder.qodef-layout3.qodef-news-columns-3 .qodef-news-item,.qodef-news-holder.qodef-layout3.qodef-news-columns-4 .qodef-news-item,.qodef-news-holder.qodef-layout3.qodef-news-columns-5 .qodef-news-item,.qodef-news-holder.qodef-layout3.qodef-news-columns-6 .qodef-news-item,.qodef-news-holder.qodef-layout4.qodef-news-columns-2 .qodef-news-item,.qodef-news-holder.qodef-layout4.qodef-news-columns-3 .qodef-news-item,.qodef-news-holder.qodef-layout4.qodef-news-columns-4 .qodef-news-item,.qodef-news-holder.qodef-layout4.qodef-news-columns-5 .qodef-news-item,.qodef-news-holder.qodef-layout4.qodef-news-columns-6 .qodef-news-item,.qodef-news-holder.qodef-news-block-pp-one-third-two-third .qodef-news-block-part-featured,.qodef-news-holder.qodef-news-block-pp-one-third-two-third .qodef-news-block-part-non-featured,.qodef-news-holder.qodef-news-block-pp-two-half .qodef-news-block-part-featured,.qodef-news-holder.qodef-news-block-pp-two-half .qodef-news-block-part-non-featured{width:100%}}@media only screen and (max-width:768px){.qodef-news-holder.qodef-news-columns-2 .qodef-news-item,.qodef-news-holder.qodef-news-columns-3 .qodef-news-item,.qodef-news-holder.qodef-news-columns-4 .qodef-news-item,.qodef-news-holder.qodef-news-columns-5 .qodef-news-item,.qodef-news-holder.qodef-news-columns-6 .qodef-news-item{width:100%}.qodef-news-holder.qodef-layout3.qodef-news-columns-2 .qodef-news-item,.qodef-news-holder.qodef-layout3.qodef-news-columns-3 .qodef-news-item,.qodef-news-holder.qodef-layout3.qodef-news-columns-4 .qodef-news-item,.qodef-news-holder.qodef-layout3.qodef-news-columns-5 .qodef-news-item,.qodef-news-holder.qodef-layout3.qodef-news-columns-6 .qodef-news-item,.qodef-news-holder.qodef-layout8.qodef-news-columns-2 .qodef-news-item,.qodef-news-holder.qodef-layout8.qodef-news-columns-3 .qodef-news-item,.qodef-news-holder.qodef-layout8.qodef-news-columns-4 .qodef-news-item,.qodef-news-holder.qodef-layout8.qodef-news-columns-5 .qodef-news-item,.qodef-news-holder.qodef-layout8.qodef-news-columns-6 .qodef-news-item,.qodef-news-holder.qodef-layout9.qodef-news-columns-2 .qodef-news-item,.qodef-news-holder.qodef-layout9.qodef-news-columns-3 .qodef-news-item,.qodef-news-holder.qodef-layout9.qodef-news-columns-4 .qodef-news-item,.qodef-news-holder.qodef-layout9.qodef-news-columns-5 .qodef-news-item,.qodef-news-holder.qodef-layout9.qodef-news-columns-6 .qodef-news-item{width:100%!important}.qodef-news-holder.qodef-layout2.qodef-news-columns-3 .qodef-news-item,.qodef-news-holder.qodef-layout2.qodef-news-columns-4 .qodef-news-item,.qodef-news-holder.qodef-layout2.qodef-news-columns-5 .qodef-news-item,.qodef-news-holder.qodef-layout2.qodef-news-columns-6 .qodef-news-item,.qodef-news-holder.qodef-news-block-pp-three-fourths-one-fourth .qodef-news-block-part-featured,.qodef-news-holder.qodef-news-block-pp-three-fourths-one-fourth .qodef-news-block-part-non-featured,.qodef-news-holder.qodef-news-block-pp-two-third-one-third .qodef-news-block-part-featured,.qodef-news-holder.qodef-news-block-pp-two-third-one-third .qodef-news-block-part-non-featured{width:100%}.qodef-slider1-item .qodef-ni-content .qodef-post-excerpt-holder{font-size:16px}}@media only screen and (max-width:480px){.qodef-news-holder .qodef-news-filter{float:inherit}.qodef-news-holder.qodef-news-columns-2 .qodef-news-item,.qodef-news-holder.qodef-news-columns-3 .qodef-news-item,.qodef-news-holder.qodef-news-columns-4 .qodef-news-item,.qodef-news-holder.qodef-news-columns-5 .qodef-news-item,.qodef-news-holder.qodef-news-columns-6 .qodef-news-item{width:100%!important}}@media only screen and (max-width:1440px){.qodef-news-video-layout3-widget .qodef-news-holder.qodef-video-layout3.qodef-news-columns-5 .qodef-news-item{width:20%}.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-4 .qodef-news-item.qodef-news-masonry-post-size-large-width,.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-4 .qodef-news-item.qodef-news-masonry-post-size-large-width-height{width:66.67%}.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-4 .qodef-masonry-layout-sizer,.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-4 .qodef-news-item{width:33.33%}.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-5 .qodef-news-item.qodef-news-masonry-post-size-large-width,.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-5 .qodef-news-item.qodef-news-masonry-post-size-large-width-height{width:66.67%}.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-5 .qodef-masonry-layout-sizer,.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-5 .qodef-news-item{width:33.33%}.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-6 .qodef-news-item.qodef-news-masonry-post-size-large-width,.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-6 .qodef-news-item.qodef-news-masonry-post-size-large-width-height{width:66.67%}.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-6 .qodef-masonry-layout-sizer,.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-6 .qodef-news-item{width:33.33%}.qodef-slider1-item .qodef-ni-info-bottom{top:33px}}@media only screen and (max-width:1024px){.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-4 .qodef-news-item.qodef-news-masonry-post-size-large-width,.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-4 .qodef-news-item.qodef-news-masonry-post-size-large-width-height{width:100%}.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-4 .qodef-masonry-layout-sizer,.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-4 .qodef-news-item{width:50%}.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-5 .qodef-news-item.qodef-news-masonry-post-size-large-width,.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-5 .qodef-news-item.qodef-news-masonry-post-size-large-width-height{width:100%}.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-5 .qodef-masonry-layout-sizer,.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-5 .qodef-news-item{width:50%}.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-6 .qodef-news-item.qodef-news-masonry-post-size-large-width,.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-6 .qodef-news-item.qodef-news-masonry-post-size-large-width-height{width:100%}.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-6 .qodef-masonry-layout-sizer,.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-6 .qodef-news-item{width:50%}}@media only screen and (max-width:680px){.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-2 .qodef-masonry-layout-sizer,.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-2 .qodef-news-item,.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-2 .qodef-news-item.qodef-news-masonry-post-size-large-height,.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-3 .qodef-masonry-layout-sizer,.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-3 .qodef-news-item,.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-3 .qodef-news-item.qodef-news-masonry-post-size-large-height,.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-4 .qodef-masonry-layout-sizer,.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-4 .qodef-news-item,.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-4 .qodef-news-item.qodef-news-masonry-post-size-large-height,.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-5 .qodef-masonry-layout-sizer,.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-5 .qodef-news-item,.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-5 .qodef-news-item.qodef-news-masonry-post-size-large-height,.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-6 .qodef-masonry-layout-sizer,.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-6 .qodef-news-item,.qodef-news-holder.qodef-masonry-layout.qodef-news-columns-6 .qodef-news-item.qodef-news-masonry-post-size-large-height{width:100%}}@media only screen and (max-width:1024px){.qodef-slider1-item .qodef-ni-content .qodef-ni-content-table{width:80%;margin-left:10%}.qodef-slider1-item .qodef-ni-info-bottom{top:17px}.qodef-slider1 .qodef-news-slider1-sidebar{display:none}}@media only screen and (max-width:768px){.qodef-slider1-item .qodef-ni-info-bottom{display:none}.qodef-slider1 .owl-dots{left:20px}}@media only screen and (max-width:480px){.qodef-slider1-item .qodef-ni-content .qodef-news-info-holder,.qodef-slider1-item .qodef-ni-content .qodef-ni-info-top,.qodef-slider1-item .qodef-ni-content .qodef-post-excerpt-holder,.qodef-slider1-item .qodef-ni-content .qodef-read-more-link{display:none}.qodef-slider1-item .qodef-ni-content .qodef-ni-content-table{margin-left:12%}.qodef-slider1-item .qodef-ni-content .qodef-post-title{margin-bottom:0}.qodef-slider1 .owl-dots{left:10px}.qodef-slider1 .owl-dots .owl-dot{font-size:12px}.qodef-slider1 .owl-dots .owl-dot:after{margin:3px auto}}.wpmenucart-icon-shopping-cart-0:before{font-family:WPMenuCart;speak:none;font-style:normal;font-weight:400;display:inline;width:auto;height:auto;line-height:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;vertical-align:baseline;background-image:none;background-position:0 0;background-repeat:repeat;margin-top:0;margin-right:.25em}.wpmenucart-icon-shopping-cart-0:before{content:"\f07a"}