@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 .qodef-outer-space .qodef-item-space {
padding: 0 5px;
margin: 0 0 10px;
}
.qodef-tiny-space.qodef-disable-item-bottom-space .qodef-item-space {
margin: 0;
}
.qodef-small-space.qodef-disable-bottom-space {
margin-bottom: -20px;
}
.qodef-small-space .qodef-outer-space {
margin: 0 -10px;
}
.qodef-small-space .qodef-outer-space .qodef-item-space {
padding: 0 10px;
margin: 0 0 20px;
}
.qodef-small-space.qodef-disable-item-bottom-space .qodef-item-space {
margin: 0;
}
.qodef-normal-space.qodef-disable-bottom-space {
margin-bottom: -30px;
}
.qodef-normal-space .qodef-outer-space {
margin: 0 -15px;
}
.qodef-normal-space .qodef-outer-space .qodef-item-space {
padding: 0 15px;
margin: 0 0 30px;
}
.qodef-normal-space.qodef-disable-item-bottom-space .qodef-item-space {
margin: 0;
}
.qodef-medium-space.qodef-disable-bottom-space {
margin-bottom: -40px;
}
.qodef-medium-space .qodef-outer-space {
margin: 0 -20px;
}
.qodef-medium-space .qodef-outer-space .qodef-item-space {
padding: 0 20px;
margin: 0 0 40px;
}
.qodef-medium-space.qodef-disable-item-bottom-space .qodef-item-space {
margin: 0;
}
.qodef-large-space.qodef-disable-bottom-space {
margin-bottom: -50px;
}
.qodef-large-space .qodef-outer-space {
margin: 0 -25px;
}
.qodef-large-space .qodef-outer-space .qodef-item-space {
padding: 0 25px;
margin: 0 0 50px;
}
.qodef-large-space.qodef-disable-item-bottom-space .qodef-item-space {
margin: 0;
}
.qodef-huge-space.qodef-disable-bottom-space {
margin-bottom: -80px;
}
.qodef-huge-space .qodef-outer-space {
margin: 0 -40px;
}
.qodef-huge-space .qodef-outer-space .qodef-item-space {
padding: 0 40px;
margin: 0 0 80px;
}
.qodef-huge-space.qodef-disable-item-bottom-space .qodef-item-space {
margin: 0;
}  .qodef-grid-row {
margin-left: -15px;
margin-right: -15px;
}
.qodef-grid-row:before,
.qodef-grid-row:after {
content: " "; display: table; }
.qodef-grid-row:after {
clear: both;
}
.qodef-grid-row {
*zoom: 1;
}
.qodef-grid-no-gutter {
margin-left: -0px;
margin-right: -0px;
}
.qodef-grid-no-gutter > div {
padding-left: 0px;
padding-right: 0px;
}
.qodef-grid-tiny-gutter {
margin-left: -5px;
margin-right: -5px;
}
.qodef-grid-tiny-gutter > div {
padding-left: 5px;
padding-right: 5px;
}
.qodef-grid-small-gutter {
margin-left: -10px;
margin-right: -10px;
}
.qodef-grid-small-gutter > div {
padding-left: 10px;
padding-right: 10px;
}
.qodef-grid-normal-gutter {
margin-left: -15px;
margin-right: -15px;
}
.qodef-grid-normal-gutter > div {
padding-left: 15px;
padding-right: 15px;
}
.qodef-grid-medium-gutter {
margin-left: -20px;
margin-right: -20px;
}
.qodef-grid-medium-gutter > div {
padding-left: 20px;
padding-right: 20px;
}
.qodef-grid-large-gutter {
margin-left: -25px;
margin-right: -25px;
}
.qodef-grid-large-gutter > div {
padding-left: 25px;
padding-right: 25px;
}
.qodef-grid-huge-gutter {
margin-left: -40px;
margin-right: -40px;
}
.qodef-grid-huge-gutter > div {
padding-left: 40px;
padding-right: 40px;
}
.qodef-grid-col-1 {
position: relative;
float: left;
width: 8.33333%;
min-height: 1px;
padding-left: 15px;
padding-right: 15px;
box-sizing: border-box;
}
.qodef-grid-col-1:before,
.qodef-grid-col-1:after {
content: " "; display: table; }
.qodef-grid-col-1:after {
clear: both;
}
.qodef-grid-col-1 {
*zoom: 1;
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-1 {
width: 100%;
float: none;
}
}
.qodef-grid-col-2 {
position: relative;
float: left;
width: 16.66667%;
min-height: 1px;
padding-left: 15px;
padding-right: 15px;
box-sizing: border-box;
}
.qodef-grid-col-2:before,
.qodef-grid-col-2:after {
content: " "; display: table; }
.qodef-grid-col-2:after {
clear: both;
}
.qodef-grid-col-2 {
*zoom: 1;
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-2 {
width: 100%;
float: none;
}
}
.qodef-grid-col-3 {
position: relative;
float: left;
width: 25%;
min-height: 1px;
padding-left: 15px;
padding-right: 15px;
box-sizing: border-box;
}
.qodef-grid-col-3:before,
.qodef-grid-col-3:after {
content: " "; display: table; }
.qodef-grid-col-3:after {
clear: both;
}
.qodef-grid-col-3 {
*zoom: 1;
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-3 {
width: 100%;
float: none;
}
}
.qodef-grid-col-4 {
position: relative;
float: left;
width: 33.33333%;
min-height: 1px;
padding-left: 15px;
padding-right: 15px;
box-sizing: border-box;
}
.qodef-grid-col-4:before,
.qodef-grid-col-4:after {
content: " "; display: table; }
.qodef-grid-col-4:after {
clear: both;
}
.qodef-grid-col-4 {
*zoom: 1;
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-4 {
width: 100%;
float: none;
}
}
.qodef-grid-col-5 {
position: relative;
float: left;
width: 41.66667%;
min-height: 1px;
padding-left: 15px;
padding-right: 15px;
box-sizing: border-box;
}
.qodef-grid-col-5:before,
.qodef-grid-col-5:after {
content: " "; display: table; }
.qodef-grid-col-5:after {
clear: both;
}
.qodef-grid-col-5 {
*zoom: 1;
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-5 {
width: 100%;
float: none;
}
}
.qodef-grid-col-6 {
position: relative;
float: left;
width: 50%;
min-height: 1px;
padding-left: 15px;
padding-right: 15px;
box-sizing: border-box;
}
.qodef-grid-col-6:before,
.qodef-grid-col-6:after {
content: " "; display: table; }
.qodef-grid-col-6:after {
clear: both;
}
.qodef-grid-col-6 {
*zoom: 1;
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-6 {
width: 100%;
float: none;
}
}
.qodef-grid-col-7 {
position: relative;
float: left;
width: 58.33333%;
min-height: 1px;
padding-left: 15px;
padding-right: 15px;
box-sizing: border-box;
}
.qodef-grid-col-7:before,
.qodef-grid-col-7:after {
content: " "; display: table; }
.qodef-grid-col-7:after {
clear: both;
}
.qodef-grid-col-7 {
*zoom: 1;
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-7 {
width: 100%;
float: none;
}
}
.qodef-grid-col-8 {
position: relative;
float: left;
width: 66.66667%;
min-height: 1px;
padding-left: 15px;
padding-right: 15px;
box-sizing: border-box;
}
.qodef-grid-col-8:before,
.qodef-grid-col-8:after {
content: " "; display: table; }
.qodef-grid-col-8:after {
clear: both;
}
.qodef-grid-col-8 {
*zoom: 1;
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-8 {
width: 100%;
float: none;
}
}
.qodef-grid-col-9 {
position: relative;
float: left;
width: 75%;
min-height: 1px;
padding-left: 15px;
padding-right: 15px;
box-sizing: border-box;
}
.qodef-grid-col-9:before,
.qodef-grid-col-9:after {
content: " "; display: table; }
.qodef-grid-col-9:after {
clear: both;
}
.qodef-grid-col-9 {
*zoom: 1;
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-9 {
width: 100%;
float: none;
}
}
.qodef-grid-col-10 {
position: relative;
float: left;
width: 83.33333%;
min-height: 1px;
padding-left: 15px;
padding-right: 15px;
box-sizing: border-box;
}
.qodef-grid-col-10:before,
.qodef-grid-col-10:after {
content: " "; display: table; }
.qodef-grid-col-10:after {
clear: both;
}
.qodef-grid-col-10 {
*zoom: 1;
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-10 {
width: 100%;
float: none;
}
}
.qodef-grid-col-11 {
position: relative;
float: left;
width: 91.66667%;
min-height: 1px;
padding-left: 15px;
padding-right: 15px;
box-sizing: border-box;
}
.qodef-grid-col-11:before,
.qodef-grid-col-11:after {
content: " "; display: table; }
.qodef-grid-col-11:after {
clear: both;
}
.qodef-grid-col-11 {
*zoom: 1;
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-11 {
width: 100%;
float: none;
}
}
.qodef-grid-col-12 {
position: relative;
float: left;
width: 100%;
min-height: 1px;
padding-left: 15px;
padding-right: 15px;
box-sizing: border-box;
}
.qodef-grid-col-12:before,
.qodef-grid-col-12:after {
content: " "; display: table; }
.qodef-grid-col-12:after {
clear: both;
}
.qodef-grid-col-12 {
*zoom: 1;
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-12 {
width: 100%;
float: none;
}
}
.qodef-grid-col-push-1 {
left: 8.33333%;
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-push-1 {
left: 0;
}
}
.qodef-grid-col-pull-1 {
right: 8.33333%;
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-pull-1 {
right: 0;
}
}
.qodef-grid-col-push-2 {
left: 16.66667%;
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-push-2 {
left: 0;
}
}
.qodef-grid-col-pull-2 {
right: 16.66667%;
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-pull-2 {
right: 0;
}
}
.qodef-grid-col-push-3 {
left: 25%;
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-push-3 {
left: 0;
}
}
.qodef-grid-col-pull-3 {
right: 25%;
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-pull-3 {
right: 0;
}
}
.qodef-grid-col-push-4 {
left: 33.33333%;
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-push-4 {
left: 0;
}
}
.qodef-grid-col-pull-4 {
right: 33.33333%;
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-pull-4 {
right: 0;
}
}
.qodef-grid-col-push-5 {
left: 41.66667%;
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-push-5 {
left: 0;
}
}
.qodef-grid-col-pull-5 {
right: 41.66667%;
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-pull-5 {
right: 0;
}
}
.qodef-grid-col-push-6 {
left: 50%;
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-push-6 {
left: 0;
}
}
.qodef-grid-col-pull-6 {
right: 50%;
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-pull-6 {
right: 0;
}
}
.qodef-grid-col-push-7 {
left: 58.33333%;
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-push-7 {
left: 0;
}
}
.qodef-grid-col-pull-7 {
right: 58.33333%;
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-pull-7 {
right: 0;
}
}
.qodef-grid-col-push-8 {
left: 66.66667%;
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-push-8 {
left: 0;
}
}
.qodef-grid-col-pull-8 {
right: 66.66667%;
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-pull-8 {
right: 0;
}
}
.qodef-grid-col-push-9 {
left: 75%;
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-push-9 {
left: 0;
}
}
.qodef-grid-col-pull-9 {
right: 75%;
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-pull-9 {
right: 0;
}
}
.qodef-grid-col-push-10 {
left: 83.33333%;
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-push-10 {
left: 0;
}
}
.qodef-grid-col-pull-10 {
right: 83.33333%;
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-pull-10 {
right: 0;
}
}
.qodef-grid-col-push-11 {
left: 91.66667%;
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-push-11 {
left: 0;
}
}
.qodef-grid-col-pull-11 {
right: 91.66667%;
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-pull-11 {
right: 0;
}
}
.qodef-grid-col-push-12 {
left: 100%;
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-push-12 {
left: 0;
}
}
.qodef-grid-col-pull-12 {
right: 100%;
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-pull-12 {
right: 0;
}
}
@media only screen and (max-width: 1440px) {
.qodef-grid-col-laptop-landscape-large-1 {
width: 8.33333%;
float: left;
}
}
@media only screen and (max-width: 1280px) {
.qodef-grid-col-laptop-landscape-medium-1 {
width: 8.33333%;
float: left;
}
}
@media only screen and (max-width: 1200px) {
.qodef-grid-col-laptop-landscape-1 {
width: 8.33333%;
float: left;
}
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-ipad-landscape-1 {
width: 8.33333%;
float: left;
}
}
@media only screen and (max-width: 768px) {
.qodef-grid-col-ipad-portrait-1 {
width: 8.33333%;
float: left;
}
}
@media only screen and (max-width: 680px) {
.qodef-grid-col-phone-landscape-1 {
width: 8.33333%;
float: left;
}
}
@media only screen and (max-width: 480px) {
.qodef-grid-col-phone-portrait-1 {
width: 8.33333%;
float: left;
}
}
@media only screen and (max-width: 320px) {
.qodef-grid-col-smaller-phone-portrait-1 {
width: 8.33333%;
float: left;
}
}
@media only screen and (max-width: 1440px) {
.qodef-grid-col-laptop-landscape-large-2 {
width: 16.66667%;
float: left;
}
}
@media only screen and (max-width: 1280px) {
.qodef-grid-col-laptop-landscape-medium-2 {
width: 16.66667%;
float: left;
}
}
@media only screen and (max-width: 1200px) {
.qodef-grid-col-laptop-landscape-2 {
width: 16.66667%;
float: left;
}
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-ipad-landscape-2 {
width: 16.66667%;
float: left;
}
}
@media only screen and (max-width: 768px) {
.qodef-grid-col-ipad-portrait-2 {
width: 16.66667%;
float: left;
}
}
@media only screen and (max-width: 680px) {
.qodef-grid-col-phone-landscape-2 {
width: 16.66667%;
float: left;
}
}
@media only screen and (max-width: 480px) {
.qodef-grid-col-phone-portrait-2 {
width: 16.66667%;
float: left;
}
}
@media only screen and (max-width: 320px) {
.qodef-grid-col-smaller-phone-portrait-2 {
width: 16.66667%;
float: left;
}
}
@media only screen and (max-width: 1440px) {
.qodef-grid-col-laptop-landscape-large-3 {
width: 25%;
float: left;
}
}
@media only screen and (max-width: 1280px) {
.qodef-grid-col-laptop-landscape-medium-3 {
width: 25%;
float: left;
}
}
@media only screen and (max-width: 1200px) {
.qodef-grid-col-laptop-landscape-3 {
width: 25%;
float: left;
}
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-ipad-landscape-3 {
width: 25%;
float: left;
}
}
@media only screen and (max-width: 768px) {
.qodef-grid-col-ipad-portrait-3 {
width: 25%;
float: left;
}
}
@media only screen and (max-width: 680px) {
.qodef-grid-col-phone-landscape-3 {
width: 25%;
float: left;
}
}
@media only screen and (max-width: 480px) {
.qodef-grid-col-phone-portrait-3 {
width: 25%;
float: left;
}
}
@media only screen and (max-width: 320px) {
.qodef-grid-col-smaller-phone-portrait-3 {
width: 25%;
float: left;
}
}
@media only screen and (max-width: 1440px) {
.qodef-grid-col-laptop-landscape-large-4 {
width: 33.33333%;
float: left;
}
}
@media only screen and (max-width: 1280px) {
.qodef-grid-col-laptop-landscape-medium-4 {
width: 33.33333%;
float: left;
}
}
@media only screen and (max-width: 1200px) {
.qodef-grid-col-laptop-landscape-4 {
width: 33.33333%;
float: left;
}
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-ipad-landscape-4 {
width: 33.33333%;
float: left;
}
}
@media only screen and (max-width: 768px) {
.qodef-grid-col-ipad-portrait-4 {
width: 33.33333%;
float: left;
}
}
@media only screen and (max-width: 680px) {
.qodef-grid-col-phone-landscape-4 {
width: 33.33333%;
float: left;
}
}
@media only screen and (max-width: 480px) {
.qodef-grid-col-phone-portrait-4 {
width: 33.33333%;
float: left;
}
}
@media only screen and (max-width: 320px) {
.qodef-grid-col-smaller-phone-portrait-4 {
width: 33.33333%;
float: left;
}
}
@media only screen and (max-width: 1440px) {
.qodef-grid-col-laptop-landscape-large-5 {
width: 41.66667%;
float: left;
}
}
@media only screen and (max-width: 1280px) {
.qodef-grid-col-laptop-landscape-medium-5 {
width: 41.66667%;
float: left;
}
}
@media only screen and (max-width: 1200px) {
.qodef-grid-col-laptop-landscape-5 {
width: 41.66667%;
float: left;
}
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-ipad-landscape-5 {
width: 41.66667%;
float: left;
}
}
@media only screen and (max-width: 768px) {
.qodef-grid-col-ipad-portrait-5 {
width: 41.66667%;
float: left;
}
}
@media only screen and (max-width: 680px) {
.qodef-grid-col-phone-landscape-5 {
width: 41.66667%;
float: left;
}
}
@media only screen and (max-width: 480px) {
.qodef-grid-col-phone-portrait-5 {
width: 41.66667%;
float: left;
}
}
@media only screen and (max-width: 320px) {
.qodef-grid-col-smaller-phone-portrait-5 {
width: 41.66667%;
float: left;
}
}
@media only screen and (max-width: 1440px) {
.qodef-grid-col-laptop-landscape-large-6 {
width: 50%;
float: left;
}
}
@media only screen and (max-width: 1280px) {
.qodef-grid-col-laptop-landscape-medium-6 {
width: 50%;
float: left;
}
}
@media only screen and (max-width: 1200px) {
.qodef-grid-col-laptop-landscape-6 {
width: 50%;
float: left;
}
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-ipad-landscape-6 {
width: 50%;
float: left;
}
}
@media only screen and (max-width: 768px) {
.qodef-grid-col-ipad-portrait-6 {
width: 50%;
float: left;
}
}
@media only screen and (max-width: 680px) {
.qodef-grid-col-phone-landscape-6 {
width: 50%;
float: left;
}
}
@media only screen and (max-width: 480px) {
.qodef-grid-col-phone-portrait-6 {
width: 50%;
float: left;
}
}
@media only screen and (max-width: 320px) {
.qodef-grid-col-smaller-phone-portrait-6 {
width: 50%;
float: left;
}
}
@media only screen and (max-width: 1440px) {
.qodef-grid-col-laptop-landscape-large-7 {
width: 58.33333%;
float: left;
}
}
@media only screen and (max-width: 1280px) {
.qodef-grid-col-laptop-landscape-medium-7 {
width: 58.33333%;
float: left;
}
}
@media only screen and (max-width: 1200px) {
.qodef-grid-col-laptop-landscape-7 {
width: 58.33333%;
float: left;
}
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-ipad-landscape-7 {
width: 58.33333%;
float: left;
}
}
@media only screen and (max-width: 768px) {
.qodef-grid-col-ipad-portrait-7 {
width: 58.33333%;
float: left;
}
}
@media only screen and (max-width: 680px) {
.qodef-grid-col-phone-landscape-7 {
width: 58.33333%;
float: left;
}
}
@media only screen and (max-width: 480px) {
.qodef-grid-col-phone-portrait-7 {
width: 58.33333%;
float: left;
}
}
@media only screen and (max-width: 320px) {
.qodef-grid-col-smaller-phone-portrait-7 {
width: 58.33333%;
float: left;
}
}
@media only screen and (max-width: 1440px) {
.qodef-grid-col-laptop-landscape-large-8 {
width: 66.66667%;
float: left;
}
}
@media only screen and (max-width: 1280px) {
.qodef-grid-col-laptop-landscape-medium-8 {
width: 66.66667%;
float: left;
}
}
@media only screen and (max-width: 1200px) {
.qodef-grid-col-laptop-landscape-8 {
width: 66.66667%;
float: left;
}
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-ipad-landscape-8 {
width: 66.66667%;
float: left;
}
}
@media only screen and (max-width: 768px) {
.qodef-grid-col-ipad-portrait-8 {
width: 66.66667%;
float: left;
}
}
@media only screen and (max-width: 680px) {
.qodef-grid-col-phone-landscape-8 {
width: 66.66667%;
float: left;
}
}
@media only screen and (max-width: 480px) {
.qodef-grid-col-phone-portrait-8 {
width: 66.66667%;
float: left;
}
}
@media only screen and (max-width: 320px) {
.qodef-grid-col-smaller-phone-portrait-8 {
width: 66.66667%;
float: left;
}
}
@media only screen and (max-width: 1440px) {
.qodef-grid-col-laptop-landscape-large-9 {
width: 75%;
float: left;
}
}
@media only screen and (max-width: 1280px) {
.qodef-grid-col-laptop-landscape-medium-9 {
width: 75%;
float: left;
}
}
@media only screen and (max-width: 1200px) {
.qodef-grid-col-laptop-landscape-9 {
width: 75%;
float: left;
}
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-ipad-landscape-9 {
width: 75%;
float: left;
}
}
@media only screen and (max-width: 768px) {
.qodef-grid-col-ipad-portrait-9 {
width: 75%;
float: left;
}
}
@media only screen and (max-width: 680px) {
.qodef-grid-col-phone-landscape-9 {
width: 75%;
float: left;
}
}
@media only screen and (max-width: 480px) {
.qodef-grid-col-phone-portrait-9 {
width: 75%;
float: left;
}
}
@media only screen and (max-width: 320px) {
.qodef-grid-col-smaller-phone-portrait-9 {
width: 75%;
float: left;
}
}
@media only screen and (max-width: 1440px) {
.qodef-grid-col-laptop-landscape-large-10 {
width: 83.33333%;
float: left;
}
}
@media only screen and (max-width: 1280px) {
.qodef-grid-col-laptop-landscape-medium-10 {
width: 83.33333%;
float: left;
}
}
@media only screen and (max-width: 1200px) {
.qodef-grid-col-laptop-landscape-10 {
width: 83.33333%;
float: left;
}
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-ipad-landscape-10 {
width: 83.33333%;
float: left;
}
}
@media only screen and (max-width: 768px) {
.qodef-grid-col-ipad-portrait-10 {
width: 83.33333%;
float: left;
}
}
@media only screen and (max-width: 680px) {
.qodef-grid-col-phone-landscape-10 {
width: 83.33333%;
float: left;
}
}
@media only screen and (max-width: 480px) {
.qodef-grid-col-phone-portrait-10 {
width: 83.33333%;
float: left;
}
}
@media only screen and (max-width: 320px) {
.qodef-grid-col-smaller-phone-portrait-10 {
width: 83.33333%;
float: left;
}
}
@media only screen and (max-width: 1440px) {
.qodef-grid-col-laptop-landscape-large-11 {
width: 91.66667%;
float: left;
}
}
@media only screen and (max-width: 1280px) {
.qodef-grid-col-laptop-landscape-medium-11 {
width: 91.66667%;
float: left;
}
}
@media only screen and (max-width: 1200px) {
.qodef-grid-col-laptop-landscape-11 {
width: 91.66667%;
float: left;
}
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-ipad-landscape-11 {
width: 91.66667%;
float: left;
}
}
@media only screen and (max-width: 768px) {
.qodef-grid-col-ipad-portrait-11 {
width: 91.66667%;
float: left;
}
}
@media only screen and (max-width: 680px) {
.qodef-grid-col-phone-landscape-11 {
width: 91.66667%;
float: left;
}
}
@media only screen and (max-width: 480px) {
.qodef-grid-col-phone-portrait-11 {
width: 91.66667%;
float: left;
}
}
@media only screen and (max-width: 320px) {
.qodef-grid-col-smaller-phone-portrait-11 {
width: 91.66667%;
float: left;
}
}
@media only screen and (max-width: 1440px) {
.qodef-grid-col-laptop-landscape-large-12 {
width: 100%;
float: none;
}
}
@media only screen and (max-width: 1280px) {
.qodef-grid-col-laptop-landscape-medium-12 {
width: 100%;
float: none;
}
}
@media only screen and (max-width: 1200px) {
.qodef-grid-col-laptop-landscape-12 {
width: 100%;
float: none;
}
}
@media only screen and (max-width: 1024px) {
.qodef-grid-col-ipad-landscape-12 {
width: 100%;
float: none;
}
}
@media only screen and (max-width: 768px) {
.qodef-grid-col-ipad-portrait-12 {
width: 100%;
float: none;
}
}
@media only screen and (max-width: 680px) {
.qodef-grid-col-phone-landscape-12 {
width: 100%;
float: none;
}
}
@media only screen and (max-width: 480px) {
.qodef-grid-col-phone-portrait-12 {
width: 100%;
float: none;
}
}
@media only screen and (max-width: 320px) {
.qodef-grid-col-smaller-phone-portrait-12 {
width: 100%;
float: none;
}
}  @-webkit-keyframes element-from-left {
0% {
opacity: 0;
transform: translate(-20%, 0);
}
100% {
opacity: 1;
transform: translate(0, 0);
}
}
@keyframes element-from-left {
0% {
opacity: 0;
transform: translate(-20%, 0);
}
100% {
opacity: 1;
transform: translate(0, 0);
}
}
@-webkit-keyframes element-from-right {
0% {
opacity: 0;
transform: translate(20%, 0);
}
100% {
opacity: 1;
transform: translate(0, 0);
}
}
@keyframes element-from-right {
0% {
opacity: 0;
transform: translate(20%, 0);
}
100% {
opacity: 1;
transform: translate(0, 0);
}
}
@-webkit-keyframes element-from-top {
0% {
opacity: 0;
transform: translate(0, -30%);
}
100% {
opacity: 1;
transform: translate(0, 0);
}
}
@keyframes element-from-top {
0% {
opacity: 0;
transform: translate(0, -30%);
}
100% {
opacity: 1;
transform: translate(0, 0);
}
}
@-webkit-keyframes element-from-bottom {
0% {
opacity: 0;
transform: translate(0, 30%);
}
100% {
opacity: 1;
transform: translate(0, 0);
}
}
@keyframes element-from-bottom {
0% {
opacity: 0;
transform: translate(0, 30%);
}
100% {
opacity: 1;
transform: translate(0, 0);
}
}
.qodef-element-from-left,
.qodef-element-from-right,
.qodef-element-from-top,
.qodef-element-from-bottom,
.qodef-element-from-fade {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
}
.qodef-element-from-left > div,
.qodef-element-from-right > div,
.qodef-element-from-top > div,
.qodef-element-from-bottom > div,
.qodef-element-from-fade > div {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
opacity: 0;
}
.qodef-element-from-fade.qodef-element-from-fade-on > div {
opacity: 1;
-webkit-transition: opacity 0.8s ease 0s;
-moz-transition: opacity 0.8s ease 0s;
transition: opacity 0.8s ease 0s;
}
.qodef-element-from-left.qodef-element-from-left-on > div {
-webkit-animation: element-from-left 0.55s 1 ease;
-moz-animation: element-from-left 0.55s 1 ease;
animation: element-from-left 0.55s 1 ease;
opacity: 1;
}
.qodef-element-from-right.qodef-element-from-right-on > div {
-webkit-animation: element-from-right 0.55s 1 ease;
-moz-animation: element-from-right 0.55s 1 ease;
animation: element-from-right 0.55s 1 ease;
opacity: 1;
}
.qodef-element-from-top.qodef-element-from-top-on > div {
-webkit-animation: element-from-top 0.55s 1 ease;
-moz-animation: element-from-top 0.55s 1 ease;
animation: element-from-top 0.55s 1 ease;
opacity: 1;
}
.qodef-element-from-bottom.qodef-element-from-bottom-on > div {
-webkit-animation: element-from-bottom 0.55s 1 ease;
-moz-animation: element-from-bottom 0.55s 1 ease;
animation: element-from-bottom 0.55s 1 ease;
opacity: 1;
}
.qodef-flip-in {
opacity: 0;
-webkit-transform: perspective(1000px) rotateY(25deg);
-moz-transform: perspective(1000px) rotateY(25deg);
transform: perspective(1000px) rotateY(25deg);
-webkit-transition: all 1.1s ease-in-out;
-moz-transition: all 1.1s ease-in-out;
transition: all 1.1s ease-in-out;
}
.qodef-flip-in.qodef-flip-in-on {
opacity: 1;
-webkit-transform: rotateY(0deg);
-moz-transform: rotateY(0deg);
transform: rotateY(0deg);
}
.qodef-grow-in {
opacity: 0;
-webkit-transform: scale(0.8);
-moz-transform: scale(0.8);
transform: scale(0.8);
-webkit-transition: all 1s cubic-bezier(0, 1, 0.5, 1);
-moz-transition: all 1s cubic-bezier(0, 1, 0.5, 1);
transition: all 1s cubic-bezier(0, 1, 0.5, 1);
}
.qodef-grow-in.qodef-grow-in-on {
opacity: 1;
-webkit-transform: scale(1);
-moz-transform: scale(1);
transform: scale(1);
}
.qodef-z-rotate {
opacity: 0;
-webkit-transform: rotateZ(7deg);
-moz-transform: rotateZ(7deg);
transform: rotateZ(7deg);
-webkit-transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
-moz-transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
-webkit-transform-origin: top right;
-moz-transform-origin: top right;
transform-origin: top right;
}
.qodef-z-rotate.qodef-z-rotate-on {
opacity: 1;
-webkit-transform: rotateZ(0deg);
-moz-transform: rotateZ(0deg);
transform: rotateZ(0deg);
}
.qodef-x-rotate {
opacity: 0;
-webkit-transform: perspective(900px) rotateX(-45deg);
-moz-transform: perspective(900px) rotateX(-45deg);
transform: perspective(900px) rotateX(-45deg);
-webkit-transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
-moz-transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.qodef-x-rotate.qodef-x-rotate-on {
opacity: 1;
-webkit-transform: rotateX(0deg);
-moz-transform: rotateX(0deg);
transform: rotateX(0deg);
}
.qodef-y-translate {
opacity: 0;
-webkit-transform: translate(0, 30px);
-moz-transform: translate(0, 30px);
transform: translate(0, 30px);
-webkit-transition: all 700ms cubic-bezier(0.68, -0.65, 0.265, 1.65);
-moz-transition: all 700ms cubic-bezier(0.68, -0.65, 0.265, 1.65);
transition: all 700ms cubic-bezier(0.68, -0.65, 0.265, 1.65);
}
.qodef-y-translate.qodef-y-translate-on {
opacity: 1;
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
transform: translate(0, 0);
}
.qodef-fade-in-down {
opacity: 0;
-webkit-transform: translate(0, -25px);
-moz-transform: translate(0, -25px);
transform: translate(0, -25px);
-webkit-transition: all 0.9s cubic-bezier(0, 1, 0.5, 1);
-moz-transition: all 0.9s cubic-bezier(0, 1, 0.5, 1);
transition: all 0.9s cubic-bezier(0, 1, 0.5, 1);
}
.qodef-fade-in-down.qodef-fade-in-down-on {
opacity: 1;
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
transform: translate(0, 0);
}
.qodef-fade-in-left-x-rotate {
opacity: 0;
-webkit-transform: rotateZ(-5deg) translate(-30px, 0);
-moz-transform: rotateZ(-5deg) translate(-30px, 0);
transform: rotateZ(-5deg) translate(-30px, 0);
-webkit-transition: all 0.4s ease;
-moz-transition: all 0.4s ease;
transition: all 0.4s ease;
}
.qodef-fade-in-left-x-rotate.qodef-fade-in-left-x-rotate-on {
opacity: 1;
-webkit-transform: rotateZ(0deg) translate(0, 0);
-moz-transform: rotateZ(0deg) translate(0, 0);
transform: rotateZ(0deg) translate(0, 0);
}
.qodef-fade-in {
opacity: 0;
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
transition: all 1s ease;
}
.qodef-fade-in.qodef-fade-in-on {
opacity: 1;
} .qodef-st-loader {
position: absolute;
top: 50%;
left: 50%;
z-index: 2100;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.qodef-st-loader1 {
position: relative;
display: inline-block;
width: 100%;
height: 100%;
}
.qodef-st-loader2 {
margin: -50% 0 0 -50%;
} .qodef-rotate-circles {
width: 60px;
height: 20px;
}
.qodef-rotate-circles > div {
background-color: #333;
display: inline-block;
width: 12px;
height: 12px;
margin: 4px;
border-radius: 100%;
opacity: 0;
-webkit-animation: ball-fall 1.5s ease infinite;
animation: ball-fall 1.5s ease infinite;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.qodef-rotate-circles > div:nth-child(1) {
-webkit-animation-delay: -200ms;
animation-delay: -200ms;
}
.qodef-rotate-circles > div:nth-child(2) {
-webkit-animation-delay: -100ms;
animation-delay: -100ms;
}
.qodef-rotate-circles > div:nth-child(3) {
-webkit-animation-delay: 0ms;
animation-delay: 0ms;
}
@-webkit-keyframes ball-fall {
0% {
opacity: 0;
-webkit-transform: translateY(-145%);
-moz-transform: translateY(-145%);
transform: translateY(-145%);
}
10% {
opacity: .5;
}
20% {
opacity: 1;
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
transform: translateY(0);
}
80% {
opacity: 1;
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
transform: translateY(0);
}
90% {
opacity: .5;
}
100% {
opacity: 0;
-webkit-transform: translateY(145%);
-moz-transform: translateY(145%);
transform: translateY(145%);
}
}
@keyframes ball-fall {
0% {
opacity: 0;
-webkit-transform: translateY(-145%);
-moz-transform: translateY(-145%);
transform: translateY(-145%);
}
10% {
opacity: .5;
}
20% {
opacity: 1;
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
transform: translateY(0);
}
80% {
opacity: 1;
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
transform: translateY(0);
}
90% {
opacity: .5;
}
100% {
opacity: 0;
-webkit-transform: translateY(145%);
-moz-transform: translateY(145%);
transform: translateY(145%);
}
}  .qodef-st-loader .pulse {
width: 32px;
height: 32px;
margin: -16px 0 0 -16px;
background-color: #fe6c61;
border-radius: 16px;
-webkit-animation: scaleout 1.0s infinite ease-in-out;
animation: scaleout 1.0s infinite ease-in-out;
}
@-webkit-keyframes scaleout {
0% {
-webkit-transform: scale(0);
}
100% {
-webkit-transform: scale(1);
opacity: 0;
}
}
@-moz-keyframes scaleout {
0% {
-moz-transform: scale(0);
}
100% {
-moz-transform: scale(1);
opacity: 0;
}
}
@-ms-keyframes scaleout {
0% {
-ms-transform: scale(0);
}
100% {
-ms-transform: scale(1);
opacity: 0;
}
}
@-o-keyframes scaleout {
0% {
-o-transform: scale(0);
}
100% {
-o-transform: scale(1);
opacity: 0;
}
}
@keyframes scaleout {
0% {
transform: scale(0);
-webkit-transform: scale(0);
}
100% {
transform: scale(1);
-webkit-transform: scale(1);
opacity: 0;
}
}  .qodef-st-loader .double_pulse {
width: 40px;
height: 40px;
margin: -20px 0 0 -20px;
position: relative;
}
.qodef-st-loader .double_pulse .double-bounce1,
.qodef-st-loader .double_pulse .double-bounce2 {
width: 100%;
height: 100%;
border-radius: 50%;
background-color: #fe6c61;
opacity: 0.6;
position: absolute;
top: 0;
left: 0;
-webkit-animation: bounce 2.0s infinite ease-in-out;
animation: bounce 2.0s infinite ease-in-out;
}
.qodef-st-loader .double_pulse .double-bounce2 {
-webkit-animation-delay: -1.0s;
animation-delay: -1.0s;
}
@-webkit-keyframes bounce {
0%, 100% {
-webkit-transform: scale(0);
}
50% {
-webkit-transform: scale(1);
}
}
@keyframes bounce {
0%, 100% {
transform: scale(0);
-webkit-transform: scale(0);
}
50% {
transform: scale(1);
-webkit-transform: scale(1);
}
}  .qodef-st-loader .cube {
width: 60px;
height: 60px;
margin: -30px 0 0 -30px;
background-color: #fe6c61;
-webkit-animation: rotateplane 1.2s infinite ease-in-out;
animation: rotateplane 1.2s infinite ease-in-out;
}
@-webkit-keyframes rotateplane {
0% {
-webkit-transform: perspective(120px);
}
50% {
-webkit-transform: perspective(120px) rotateY(180deg);
}
100% {
-webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
}
}
@keyframes rotateplane {
0% {
transform: perspective(120px) rotateX(0deg) rotateY(0deg);
-webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
}
50% {
transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
-webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
}
100% {
transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
-webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
}
}  .qodef-st-loader .rotating_cubes {
width: 32px;
height: 32px;
margin: -16px 0 0 -16px;
position: relative;
}
.qodef-st-loader .rotating_cubes .cube1,
.qodef-st-loader .rotating_cubes .cube2 {
background-color: #fe6c61;
width: 10px;
height: 10px;
position: absolute;
top: 0;
left: 0;
-webkit-animation: cubemove 1.8s infinite ease-in-out;
animation: cubemove 1.8s infinite ease-in-out;
}
.qodef-st-loader .rotating_cubes .cube2 {
-webkit-animation-delay: -0.9s;
animation-delay: -0.9s;
}
@-webkit-keyframes cubemove {
25% {
-webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
}
50% {
-webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
}
75% {
-webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
}
100% {
-webkit-transform: rotate(-360deg);
}
}
@keyframes cubemove {
25% {
transform: translateX(42px) rotate(-90deg) scale(0.5);
-webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
}
50% {
transform: translateX(42px) translateY(42px) rotate(-179deg);
-webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
}
50.1% {
transform: translateX(42px) translateY(42px) rotate(-180deg);
-webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
}
75% {
transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
-webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
}
100% {
transform: rotate(-360deg);
-webkit-transform: rotate(-360deg);
}
}  .qodef-st-loader .stripes {
width: 50px;
height: 60px;
margin: -30px 0 0 -25px;
text-align: center;
font-size: 10px;
}
.qodef-st-loader .stripes > div {
background-color: #fe6c61;
height: 100%;
width: 6px;
display: inline-block;
margin: 0 3px 0 0;
-webkit-animation: stretchdelay 1.2s infinite ease-in-out;
animation: stretchdelay 1.2s infinite ease-in-out;
}
.qodef-st-loader .stripes .rect2 {
-webkit-animation-delay: -1.1s;
animation-delay: -1.1s;
}
.qodef-st-loader .stripes .rect3 {
-webkit-animation-delay: -1.0s;
animation-delay: -1.0s;
}
.qodef-st-loader .stripes .rect4 {
-webkit-animation-delay: -0.9s;
animation-delay: -0.9s;
}
.qodef-st-loader .stripes .rect5 {
-webkit-animation-delay: -0.8s;
animation-delay: -0.8s;
}
@-webkit-keyframes stretchdelay {
0%, 40%, 100% {
-webkit-transform: scaleY(0.4);
}
20% {
-webkit-transform: scaleY(1);
}
}
@keyframes stretchdelay {
0%, 40%, 100% {
transform: scaleY(0.4);
-webkit-transform: scaleY(0.4);
}
20% {
transform: scaleY(1);
-webkit-transform: scaleY(1);
}
}  .qodef-st-loader .wave {
width: 72px;
text-align: center;
margin: -9px 0 0 -36px;
}
.qodef-st-loader .wave > div {
width: 18px;
height: 18px;
background-color: #fe6c61;
margin: 0 3px 0 0;
border-radius: 100%;
display: inline-block;
-webkit-animation: bouncedelay 1.4s infinite ease-in-out;
animation: bouncedelay 1.4s infinite ease-in-out; -webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.qodef-st-loader .wave .bounce1 {
-webkit-animation-delay: -0.32s;
animation-delay: -0.32s;
}
.qodef-st-loader .wave .bounce2 {
-webkit-animation-delay: -0.16s;
animation-delay: -0.16s;
}
@-webkit-keyframes bouncedelay {
0%, 80%, 100% {
-webkit-transform: scale(0);
}
40% {
-webkit-transform: scale(1);
}
}
@keyframes bouncedelay {
0%, 80%, 100% {
transform: scale(0);
-webkit-transform: scale(0);
}
40% {
transform: scale(1);
-webkit-transform: scale(1);
}
}  .qodef-st-loader .two_rotating_circles {
width: 40px;
height: 40px;
margin: -20px 0 0 -20px;
position: relative;
text-align: center;
-webkit-animation: rotatecircles 2.0s infinite linear;
animation: rotatecircles 2.0s infinite linear;
}
.qodef-st-loader .two_rotating_circles .dot1,
.qodef-st-loader .two_rotating_circles .dot2 {
width: 60%;
height: 60%;
display: inline-block;
position: absolute;
top: 0;
background-color: #fe6c61;
border-radius: 100%;
-webkit-animation: bounce 2.0s infinite ease-in-out;
animation: bounce 2.0s infinite ease-in-out;
}
.qodef-st-loader .two_rotating_circles .dot2 {
top: auto;
bottom: 0;
-webkit-animation-delay: -1.0s;
animation-delay: -1.0s;
}
@-webkit-keyframes rotatecircles {
100% {
-webkit-transform: rotate(360deg);
}
}
@keyframes rotatecircles {
100% {
transform: rotate(360deg);
-webkit-transform: rotate(360deg);
}
}  .qodef-st-loader .five_rotating_circles {
width: 60px;
height: 60px;
margin: -30px 0 0 -30px;
position: relative;
}
.qodef-st-loader .five_rotating_circles .container1 > div,
.qodef-st-loader .five_rotating_circles .container2 > div,
.qodef-st-loader .five_rotating_circles .container3 > div {
width: 12px;
height: 12px;
background-color: #fe6c61;
border-radius: 100%;
position: absolute;
-webkit-animation: bouncedelay 1.2s infinite ease-in-out;
animation: bouncedelay 1.2s infinite ease-in-out; -webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.qodef-st-loader .five_rotating_circles .spinner-container {
position: absolute;
width: 100%;
height: 100%;
}
.qodef-st-loader .five_rotating_circles .container2 {
-webkit-transform: rotateZ(45deg);
transform: rotateZ(45deg);
}
.qodef-st-loader .five_rotating_circles .container3 {
-webkit-transform: rotateZ(90deg);
transform: rotateZ(90deg);
}
.qodef-st-loader .five_rotating_circles .circle1 {
top: 0;
left: 0;
}
.qodef-st-loader .five_rotating_circles .circle2 {
top: 0;
right: 0;
}
.qodef-st-loader .five_rotating_circles .circle3 {
right: 0;
bottom: 0;
}
.qodef-st-loader .five_rotating_circles .circle4 {
left: 0;
bottom: 0;
}
.qodef-st-loader .five_rotating_circles .container2 .circle1 {
-webkit-animation-delay: -1.1s;
animation-delay: -1.1s;
}
.qodef-st-loader .five_rotating_circles .container3 .circle1 {
-webkit-animation-delay: -1.0s;
animation-delay: -1.0s;
}
.qodef-st-loader .five_rotating_circles .container1 .circle2 {
-webkit-animation-delay: -0.9s;
animation-delay: -0.9s;
}
.qodef-st-loader .five_rotating_circles .container2 .circle2 {
-webkit-animation-delay: -0.8s;
animation-delay: -0.8s;
}
.qodef-st-loader .five_rotating_circles .container3 .circle2 {
-webkit-animation-delay: -0.7s;
animation-delay: -0.7s;
}
.qodef-st-loader .five_rotating_circles .container1 .circle3 {
-webkit-animation-delay: -0.6s;
animation-delay: -0.6s;
}
.qodef-st-loader .five_rotating_circles .container2 .circle3 {
-webkit-animation-delay: -0.5s;
animation-delay: -0.5s;
}
.qodef-st-loader .five_rotating_circles .container3 .circle3 {
-webkit-animation-delay: -0.4s;
animation-delay: -0.4s;
}
.qodef-st-loader .five_rotating_circles .container1 .circle4 {
-webkit-animation-delay: -0.3s;
animation-delay: -0.3s;
}
.qodef-st-loader .five_rotating_circles .container2 .circle4 {
-webkit-animation-delay: -0.2s;
animation-delay: -0.2s;
}
.qodef-st-loader .five_rotating_circles .container3 .circle4 {
-webkit-animation-delay: -0.1s;
animation-delay: -0.1s;
}  .qodef-st-loader .atom {
width: 100px;
height: 100px;
margin: -50px 0 0 -50px;
position: relative;
}
.qodef-st-loader .atom .ball-1 {
height: 50%;
width: 50%;
left: 50%;
top: 50%;
position: absolute;
z-index: 1;
-webkit-animation: atom_shrink 4.5s infinite linear;
-moz-animation: atom_shrink 4.5s infinite linear;
-o-animation: atom_shrink 4.5s infinite linear;
animation: atom_shrink 4.5s infinite linear;
}
.qodef-st-loader .atom .ball-1:before {
content: '';
background: #fe6c61;
border-radius: 50%;
height: 100%;
width: 100%;
position: absolute;
top: -50%;
left: -50%;
}
.qodef-st-loader .atom .ball-2,
.qodef-st-loader .atom .ball-3,
.qodef-st-loader .atom .ball-4 {
position: absolute;
width: 100%;
height: 100%;
z-index: 0;
}
.qodef-st-loader .atom .ball-2:before,
.qodef-st-loader .atom .ball-3:before,
.qodef-st-loader .atom .ball-4:before {
content: '';
height: 20px;
width: 20px;
border-radius: 50%;
background: #fe6c61;
top: 0;
left: 0;
margin: 0 auto;
position: absolute;
}
.qodef-st-loader .atom .ball-2 {
-webkit-animation: atom_zindex 1.5s 0.75s infinite steps(2, end);
-moz-animation: atom_zindex 1.5s 0.75s infinite steps(2, end);
-o-animation: atom_zindex 1.5s 0.75s infinite steps(2, end);
animation: atom_zindex 1.5s 0.75s infinite steps(2, end);
}
.qodef-st-loader .atom .ball-3 {
-webkit-transform: rotate(120deg);
-moz-transform: rotate(120deg);
-o-transform: rotate(120deg);
transform: rotate(120deg);
-webkit-animation: atom_zindex 1.5s -0.25s infinite steps(2, end);
-moz-animation: atom_zindex 1.5s -0.25s infinite steps(2, end);
-o-animation: atom_zindex 1.5s -0.25s infinite steps(2, end);
animation: atom_zindex 1.5s -0.25s infinite steps(2, end);
}
.qodef-st-loader .atom .ball-4 {
-webkit-transform: rotate(240deg);
-moz-transform: rotate(240deg);
-o-transform: rotate(240deg);
transform: rotate(240deg);
-webkit-animation: atom_zindex 1.5s 0.25s infinite steps(2, end);
-moz-animation: atom_zindex 1.5s 0.25s infinite steps(2, end);
-o-animation: atom_zindex 1.5s 0.25s infinite steps(2, end);
animation: atom_zindex 1.5s 0.25s infinite steps(2, end);
}
.qodef-st-loader .atom .ball-2:before {
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-animation: atom_position 1.5s infinite ease, atom_size 1.5s -1.125s infinite ease;
-moz-animation: atom_position 1.5s infinite ease, atom_size 1.5s -1.125s infinite ease;
-o-animation: atom_position 1.5s infinite ease, atom_size 1.5s -1.125s infinite ease;
animation: atom_position 1.5s infinite ease, atom_size 1.5s -1.125s infinite ease;
}
.qodef-st-loader .atom .ball-3:before {
-webkit-animation: atom_position 1.5s -1s infinite ease, atom_size 1.5s -0.75s infinite ease;
-moz-animation: atom_position 1.5s -1s infinite ease, atom_size 1.5s -0.75s infinite ease;
-o-animation: atom_position 1.5s -1s infinite ease, atom_size 1.5s -0.75s infinite ease;
animation: atom_position 1.5s -1s infinite ease, atom_size 1.5s -0.75s infinite ease;
}
.qodef-st-loader .atom .ball-4:before {
-webkit-animation: atom_position 1.5s -0.5s infinite ease, atom_size 1.5s -0.125s infinite ease;
-moz-animation: atom_position 1.5s -0.5s infinite ease, atom_size 1.5s -0.125s infinite ease;
-o-animation: atom_position 1.5s -0.5s infinite ease, atom_size 1.5s -0.125s infinite ease;
animation: atom_position 1.5s -0.5s infinite ease, atom_size 1.5s -0.125s infinite ease;
}
@-webkit-keyframes atom_position {
50% {
top: 80px;
left: 80px;
}
}
@-moz-keyframes atom_position {
50% {
top: 80px;
left: 80px;
}
}
@-o-keyframes atom_position {
50% {
top: 80px;
left: 80px;
}
}
@keyframes atom_position {
50% {
top: 80px;
left: 80px;
}
}
@-webkit-keyframes atom_size {
50% {
-webkit-transform: scale(0.5, 0.5);
}
}
@-moz-keyframes atom_size {
50% {
-moz-transform: scale(0.5, 0.5);
}
}
@-o-keyframes atom_size {
50% {
-o-transform: scale(0.5, 0.5);
}
}
@keyframes atom_size {
50% {
transform: scale(0.5, 0.5);
}
}
@-webkit-keyframes atom_zindex {
100% {
z-index: 10;
}
}
@-moz-keyframes atom_zindex {
100% {
z-index: 10;
}
}
@-o-keyframes atom_zindex {
100% {
z-index: 10;
}
}
@keyframes atom_zindex {
100% {
z-index: 10;
}
}
@-webkit-keyframes atom_shrink {
50% {
-webkit-transform: scale(0.9, 0.9);
}
}
@-moz-keyframes atom_shrink {
50% {
-moz-transform: scale(0.9, 0.9);
}
}
@-o-keyframes atom_shrink {
50% {
-o-transform: scale(0.9, 0.9);
}
}
@keyframes atom_shrink {
50% {
transform: scale(0.9, 0.9);
}
}  .qodef-st-loader .clock {
width: 50px;
height: 50px;
margin: -25px 0 0 -25px;
position: relative;
-webkit-animation: clock 8s infinite steps(8);
-moz-animation: clock 8s infinite steps(8);
-o-animation: clock 8s infinite steps(8);
animation: clock 8s infinite steps(8);
}
.qodef-st-loader .clock .ball {
height: 50px;
width: 50px;
position: absolute;
}
.qodef-st-loader .clock .ball:before {
content: '';
border-radius: 50%;
height: 18.31501832px;
width: 18.31501832px;
position: absolute;
background: #fe6c61;
}
.qodef-st-loader .clock .ball-1 {
-webkit-transform: rotate(-135deg);
-moz-transform: rotate(-135deg);
-o-transform: rotate(-135deg);
transform: rotate(-135deg);
-webkit-animation: clock1 1s ease-in infinite;
-moz-animation: clock1 1s ease-in infinite;
-o-animation: clock1 1s ease-in infinite;
animation: clock1 1s ease-in infinite;
}
.qodef-st-loader .clock .ball-2 {
transform: rotate(-90deg);
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
-o-transform: rotate(-90deg);
-webkit-animation: clock2 1s ease-in infinite;
-moz-animation: clock2 1s ease-in infinite;
-o-animation: clock2 1s ease-in infinite;
animation: clock2 1s ease-in infinite;
}
.qodef-st-loader .clock .ball-3 {
transform: rotate(-45deg);
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
-webkit-animation: clock3 1s ease-in infinite;
-moz-animation: clock3 1s ease-in infinite;
-o-animation: clock3 1s ease-in infinite;
animation: clock3 1s ease-in infinite;
}
.qodef-st-loader .clock .ball-4 {
-webkit-animation: clock4 1s ease-in infinite;
-moz-animation: clock4 1s ease-in infinite;
-o-animation: clock4 1s ease-in infinite;
animation: clock4 1s ease-in infinite;
}
@-webkit-keyframes clock {
100% {
-webkit-transform: rotate(360deg);
}
}
@-moz-keyframes clock {
100% {
-moz-transform: rotate(360deg);
}
}
@-o-keyframes clock {
100% {
-o-transform: rotate(360deg);
}
}
@keyframes clock {
100% {
transform: rotate(360deg);
}
}
@-webkit-keyframes clock1 {
0% {
-webkit-transform: rotate(-135deg);
}
30% {
-webkit-transform: rotate(-450deg);
}
100% {
-webkit-transform: rotate(-450deg);
}
}
@-moz-keyframes clock1 {
0% {
-moz-transform: rotate(-135deg);
}
30% {
-moz-transform: rotate(-450deg);
}
100% {
-moz-transform: rotate(-450deg);
}
}
@-o-keyframes clock1 {
0% {
-o-transform: rotate(-135deg);
}
30% {
-o-transform: rotate(-450deg);
}
100% {
-o-transform: rotate(-450deg);
}
}
@keyframes clock1 {
0% {
transform: rotate(-135deg);
}
30% {
transform: rotate(-450deg);
}
100% {
transform: rotate(-450deg);
}
}
@-webkit-keyframes clock2 {
5% {
-webkit-transform: rotate(-90deg);
}
35% {
-webkit-transform: rotate(-405deg);
}
100% {
-webkit-transform: rotate(-405deg);
}
}
@-moz-keyframes clock2 {
5% {
-moz-transform: rotate(-90deg);
}
35% {
-moz-transform: rotate(-405deg);
}
100% {
-moz-transform: rotate(-405deg);
}
}
@-o-keyframes clock2 {
5% {
-o-transform: rotate(-90deg);
}
35% {
-o-transform: rotate(-405deg);
}
100% {
-o-transform: rotate(-405deg);
}
}
@keyframes clock2 {
5% {
transform: rotate(-90deg);
}
35% {
transform: rotate(-405deg);
}
100% {
transform: rotate(-405deg);
}
}
@-webkit-keyframes clock3 {
10% {
-webkit-transform: rotate(-45deg);
}
40% {
-webkit-transform: rotate(-360deg);
}
100% {
-webkit-transform: rotate(-360deg);
}
}
@-moz-keyframes clock3 {
10% {
-moz-transform: rotate(-45deg);
}
40% {
-moz-transform: rotate(-360deg);
}
100% {
-moz-transform: rotate(-360deg);
}
}
@-o-keyframes clock3 {
10% {
-o-transform: rotate(-45deg);
}
40% {
-o-transform: rotate(-360deg);
}
100% {
-o-transform: rotate(-360deg);
}
}
@keyframes clock3 {
10% {
transform: rotate(-45deg);
}
40% {
transform: rotate(-360deg);
}
100% {
transform: rotate(-360deg);
}
}
@-webkit-keyframes clock4 {
15% {
-webkit-transform: rotate(0deg);
}
45% {
-webkit-transform: rotate(-315deg);
}
100% {
-webkit-transform: rotate(-315deg);
}
}
@-moz-keyframes clock4 {
15% {
-moz-transform: rotate(0deg);
}
45% {
-moz-transform: rotate(-315deg);
}
100% {
-moz-transform: rotate(-315deg);
}
}
@-o-keyframes clock4 {
15% {
-o-transform: rotate(0deg);
}
45% {
-o-transform: rotate(-315deg);
}
100% {
-o-transform: rotate(-315deg);
}
}
@keyframes clock4 {
15% {
transform: rotate(0deg);
}
45% {
transform: rotate(-315deg);
}
100% {
transform: rotate(-315deg);
}
}  .qodef-st-loader .mitosis {
height: 50px;
width: 50px;
margin: -25px 0 0 -25px;
position: relative;
-webkit-animation: mitosis_invert 2s infinite steps(2, end);
-moz-animation: mitosis_invert 2s infinite steps(2, end);
-o-animation: mitosis_invert 2s infinite steps(2, end);
animation: mitosis_invert 2s infinite steps(2, end);
}
.qodef-st-loader .mitosis .ball {
height: 100%;
width: 100%;
position: absolute;
border-radius: 50%;
top: 0;
left: 0;
background: #fe6c61;
}
.qodef-st-loader .mitosis .ball-1 {
-webkit-animation: mitosis_ball1 1s infinite alternate linear;
-moz-animation: mitosis_ball1 1s infinite alternate linear;
-o-animation: mitosis_ball1 1s infinite alternate linear;
animation: mitosis_ball1 1s infinite alternate linear;
}
.qodef-st-loader .mitosis .ball-2 {
-webkit-animation: mitosis_ball2 1s infinite alternate linear;
-moz-animation: mitosis_ball2 1s infinite alternate linear;
-o-animation: mitosis_ball2 1s infinite alternate linear;
animation: mitosis_ball2 1s infinite alternate linear;
}
.qodef-st-loader .mitosis .ball-3 {
-webkit-animation: mitosis_ball3 1s infinite alternate linear;
-moz-animation: mitosis_ball3 1s infinite alternate linear;
-o-animation: mitosis_ball3 1s infinite alternate linear;
animation: mitosis_ball3 1s infinite alternate linear;
}
.qodef-st-loader .mitosis .ball-4 {
-webkit-animation: mitosis_ball4 1s infinite alternate linear;
-moz-animation: mitosis_ball4 1s infinite alternate linear;
-o-animation: mitosis_ball4 1s infinite alternate linear;
animation: mitosis_ball4 1s infinite alternate linear;
}
@-webkit-keyframes mitosis_invert {
100% {
-webkit-transform: rotate(180deg);
}
}
@-moz-keyframes mitosis_invert {
100% {
-moz-transform: rotate(180deg);
}
}
@-o-keyframes mitosis_invert {
100% {
-o-transform: rotate(180deg);
}
}
@keyframes mitosis_invert {
100% {
transform: rotate(180deg);
}
}
@-webkit-keyframes mitosis_ball1 {
12% {
-webkit-transform: none;
}
26% {
-webkit-transform: translateX(25%) scale(1, 0.8);
}
40% {
-webkit-transform: translateX(50%) scale(0.8, 0.8);
}
60% {
-webkit-transform: translateX(50%) scale(0.8, 0.8);
}
74% {
-webkit-transform: translate(50%, 25%) scale(0.6, 0.8);
}
88% {
-webkit-transform: translate(50%, 50%) scale(0.6, 0.6);
}
100% {
-webkit-transform: translate(50%, 50%) scale(0.6, 0.6);
}
}
@-moz-keyframes mitosis_ball1 {
12% {
-moz-transform: none;
}
26% {
-moz-transform: translateX(25%) scale(1, 0.8);
}
40% {
-moz-transform: translateX(50%) scale(0.8, 0.8);
}
60% {
-moz-transform: translateX(50%) scale(0.8, 0.8);
}
74% {
-moz-transform: translate(50%, 25%) scale(0.6, 0.8);
}
88% {
-moz-transform: translate(50%, 50%) scale(0.6, 0.6);
}
100% {
-moz-transform: translate(50%, 50%) scale(0.6, 0.6);
}
}
@-o-keyframes mitosis_ball1 {
12% {
-o-transform: none;
}
26% {
-o-transform: translateX(25%) scale(1, 0.8);
}
40% {
-o-transform: translateX(50%) scale(0.8, 0.8);
}
60% {
-o-transform: translateX(50%) scale(0.8, 0.8);
}
74% {
-o-transform: translate(50%, 25%) scale(0.6, 0.8);
}
88% {
-o-transform: translate(50%, 50%) scale(0.6, 0.6);
}
100% {
-o-transform: translate(50%, 50%) scale(0.6, 0.6);
}
}
@keyframes mitosis_ball1 {
12% {
transform: none;
}
26% {
transform: translateX(25%) scale(1, 0.8);
}
40% {
transform: translateX(50%) scale(0.8, 0.8);
}
60% {
transform: translateX(50%) scale(0.8, 0.8);
}
74% {
transform: translate(50%, 25%) scale(0.6, 0.8);
}
88% {
transform: translate(50%, 50%) scale(0.6, 0.6);
}
100% {
transform: translate(50%, 50%) scale(0.6, 0.6);
}
}
@-webkit-keyframes mitosis_ball2 {
12% {
-webkit-transform: none;
}
26% {
-webkit-transform: translateX(25%) scale(1, 0.8);
}
40% {
-webkit-transform: translateX(50%) scale(0.8, 0.8);
}
60% {
-webkit-transform: translateX(50%) scale(0.8, 0.8);
}
74% {
-webkit-transform: translate(50%, -25%) scale(0.6, 0.8);
}
88% {
-webkit-transform: translate(50%, -50%) scale(0.6, 0.6);
}
100% {
-webkit-transform: translate(50%, -50%) scale(0.6, 0.6);
}
}
@-moz-keyframes mitosis_ball2 {
12% {
-moz-transform: none;
}
26% {
-moz-transform: translateX(25%) scale(1, 0.8);
}
40% {
-moz-transform: translateX(50%) scale(0.8, 0.8);
}
60% {
-moz-transform: translateX(50%) scale(0.8, 0.8);
}
74% {
-moz-transform: translate(50%, -25%) scale(0.6, 0.8);
}
88% {
-moz-transform: translate(50%, -50%) scale(0.6, 0.6);
}
100% {
-moz-transform: translate(50%, -50%) scale(0.6, 0.6);
}
}
@-o-keyframes mitosis_ball2 {
12% {
-o-transform: none;
}
26% {
-o-transform: translateX(25%) scale(1, 0.8);
}
40% {
-o-transform: translateX(50%) scale(0.8, 0.8);
}
60% {
-o-transform: translateX(50%) scale(0.8, 0.8);
}
74% {
-o-transform: translate(50%, -25%) scale(0.6, 0.8);
}
88% {
-o-transform: translate(50%, -50%) scale(0.6, 0.6);
}
100% {
-o-transform: translate(50%, -50%) scale(0.6, 0.6);
}
}
@keyframes mitosis_ball2 {
12% {
transform: none;
}
26% {
transform: translateX(25%) scale(1, 0.8);
}
40% {
transform: translateX(50%) scale(0.8, 0.8);
}
60% {
transform: translateX(50%) scale(0.8, 0.8);
}
74% {
transform: translate(50%, -25%) scale(0.6, 0.8);
}
88% {
transform: translate(50%, -50%) scale(0.6, 0.6);
}
100% {
transform: translate(50%, -50%) scale(0.6, 0.6);
}
}
@-webkit-keyframes mitosis_ball3 {
12% {
-webkit-transform: none;
}
26% {
-webkit-transform: translateX(-25%) scale(1, 0.8);
}
40% {
-webkit-transform: translateX(-50%) scale(0.8, 0.8);
}
60% {
-webkit-transform: translateX(-50%) scale(0.8, 0.8);
}
74% {
-webkit-transform: translate(-50%, 25%) scale(0.6, 0.8);
}
88% {
-webkit-transform: translate(-50%, 50%) scale(0.6, 0.6);
}
100% {
-webkit-transform: translate(-50%, 50%) scale(0.6, 0.6);
}
}
@-moz-keyframes mitosis_ball3 {
12% {
-moz-transform: none;
}
26% {
-moz-transform: translateX(-25%) scale(1, 0.8);
}
40% {
-moz-transform: translateX(-50%) scale(0.8, 0.8);
}
60% {
-moz-transform: translateX(-50%) scale(0.8, 0.8);
}
74% {
-moz-transform: translate(-50%, 25%) scale(0.6, 0.8);
}
88% {
-moz-transform: translate(-50%, 50%) scale(0.6, 0.6);
}
100% {
-moz-transform: translate(-50%, 50%) scale(0.6, 0.6);
}
}
@-o-keyframes mitosis_ball3 {
12% {
-o-transform: none;
}
26% {
-o-transform: translateX(-25%) scale(1, 0.8);
}
40% {
-o-transform: translateX(-50%) scale(0.8, 0.8);
}
60% {
-o-transform: translateX(-50%) scale(0.8, 0.8);
}
74% {
-o-transform: translate(-50%, 25%) scale(0.6, 0.8);
}
88% {
-o-transform: translate(-50%, 50%) scale(0.6, 0.6);
}
100% {
-o-transform: translate(-50%, 50%) scale(0.6, 0.6);
}
}
@keyframes mitosis_ball3 {
12% {
transform: none;
}
26% {
transform: translateX(-25%) scale(1, 0.8);
}
40% {
transform: translateX(-50%) scale(0.8, 0.8);
}
60% {
transform: translateX(-50%) scale(0.8, 0.8);
}
74% {
transform: translate(-50%, 25%) scale(0.6, 0.8);
}
88% {
transform: translate(-50%, 50%) scale(0.6, 0.6);
}
100% {
transform: translate(-50%, 50%) scale(0.6, 0.6);
}
}
@-webkit-keyframes mitosis_ball4 {
12% {
-webkit-transform: none;
}
26% {
-webkit-transform: translateX(-25%) scale(1, 0.8);
}
40% {
-webkit-transform: translateX(-50%) scale(0.8, 0.8);
}
60% {
-webkit-transform: translateX(-50%) scale(0.8, 0.8);
}
74% {
-webkit-transform: translate(-50%, -25%) scale(0.6, 0.8);
}
88% {
-webkit-transform: translate(-50%, -50%) scale(0.6, 0.6);
}
100% {
-webkit-transform: translate(-50%, -50%) scale(0.6, 0.6);
}
}
@-moz-keyframes mitosis_ball4 {
12% {
-moz-transform: none;
}
26% {
-moz-transform: translateX(-25%) scale(1, 0.8);
}
40% {
-moz-transform: translateX(-50%) scale(0.8, 0.8);
}
60% {
-moz-transform: translateX(-50%) scale(0.8, 0.8);
}
74% {
-moz-transform: translate(-50%, -25%) scale(0.6, 0.8);
}
88% {
-moz-transform: translate(-50%, -50%) scale(0.6, 0.6);
}
100% {
-moz-transform: translate(-50%, -50%) scale(0.6, 0.6);
}
}
@-o-keyframes mitosis_ball4 {
12% {
-o-transform: none;
}
26% {
-o-transform: translateX(-25%) scale(1, 0.8);
}
40% {
-o-transform: translateX(-50%) scale(0.8, 0.8);
}
60% {
-o-transform: translateX(-50%) scale(0.8, 0.8);
}
74% {
-o-transform: translate(-50%, -25%) scale(0.6, 0.8);
}
88% {
-o-transform: translate(-50%, -50%) scale(0.6, 0.6);
}
100% {
-o-transform: translate(-50%, -50%) scale(0.6, 0.6);
}
}
@keyframes mitosis_ball4 {
12% {
transform: none;
}
26% {
transform: translateX(-25%) scale(1, 0.8);
}
40% {
transform: translateX(-50%) scale(0.8, 0.8);
}
60% {
transform: translateX(-50%) scale(0.8, 0.8);
}
74% {
transform: translate(-50%, -25%) scale(0.6, 0.8);
}
88% {
transform: translate(-50%, -50%) scale(0.6, 0.6);
}
100% {
transform: translate(-50%, -50%) scale(0.6, 0.6);
}
}  .qodef-st-loader .lines {
width: 60px;
height: 60px;
margin: 0 0 0 -30px;
}
.qodef-st-loader .lines .line1,
.qodef-st-loader .lines .line2,
.qodef-st-loader .lines .line3,
.qodef-st-loader .lines .line4 {
margin-left: 10px;
position: absolute;
width: 60px;
height: 4px;
background-color: #fe6c61;
-webkit-animation: lines_spin 1.5s infinite linear;
-webkit-animation-timing-function: ease;
}
.qodef-st-loader .lines .line2 {
-webkit-animation-delay: 0.1s;
}
.qodef-st-loader .lines .line3 {
-webkit-animation-delay: 0.2s;
}
.qodef-st-loader .lines .line4 {
-webkit-animation-delay: 0.3s;
}
@-webkit-keyframes lines_spin {
100% {
-webkit-transform: rotate(360deg);
}
}
@-moz-keyframes lines_spin {
100% {
-moz-transform: rotate(360deg);
}
}
@-o-keyframes lines_spin {
100% {
-o-transform: rotate(360deg);
}
}
@keyframes lines_spin {
100% {
transform: rotate(360deg);
}
}  .qodef-st-loader .fussion {
width: 30px;
height: 30px;
margin: -45px 0 0 -30px;
position: relative;
}
.qodef-st-loader .fussion .ball {
height: 40px;
width: 40px;
left: 50%;
top: 50%;
background: #fe6c61;
border-radius: 50%;
float: left;
position: absolute;
}
.qodef-st-loader .fussion .ball-1 {
background: #fe6c61;
top: 0;
left: 50%;
-webkit-animation: fussion_ball1 1s 0s ease infinite;
-moz-animation: fussion_ball1 1s 0s ease infinite;
-o-animation: fussion_ball1 1s 0s ease infinite;
animation: fussion_ball1 1s 0s ease infinite;
z-index: 1;
}
.qodef-st-loader .fussion .ball-2 {
background: #fe6c61;
top: 50%;
left: 100%;
-webkit-animation: fussion_ball2 1s 0s ease infinite;
-moz-animation: fussion_ball2 1s 0s ease infinite;
-o-animation: fussion_ball2 1s 0s ease infinite;
animation: fussion_ball2 1s 0s ease infinite;
z-index: 2;
}
.qodef-st-loader .fussion .ball-3 {
background: #fe6c61;
top: 100%;
left: 50%;
-webkit-animation: fussion_ball3 1s 0s ease infinite;
-moz-animation: fussion_ball3 1s 0s ease infinite;
-o-animation: fussion_ball3 1s 0s ease infinite;
animation: fussion_ball3 1s 0s ease infinite;
z-index: 1;
}
.qodef-st-loader .fussion .ball-4 {
background: #fe6c61;
top: 50%;
left: 0;
-webkit-animation: fussion_ball4 1s 0s ease infinite;
-moz-animation: fussion_ball4 1s 0s ease infinite;
-o-animation: fussion_ball4 1s 0s ease infinite;
animation: fussion_ball4 1s 0s ease infinite;
z-index: 2;
}
@-webkit-keyframes fussion_ball1 {
50% {
top: -100%;
left: 200%;
}
100% {
top: 50%;
left: 100%;
z-index: 2;
}
}
@-moz-keyframes fussion_ball1 {
50% {
top: -100%;
left: 200%;
}
100% {
top: 50%;
left: 100%;
z-index: 2;
}
}
@-o-keyframes fussion_ball1 {
50% {
top: -100%;
left: 200%;
}
100% {
top: 50%;
left: 100%;
z-index: 2;
}
}
@keyframes fussion_ball1 {
50% {
top: -100%;
left: 200%;
}
100% {
top: 50%;
left: 100%;
z-index: 2;
}
}
@-webkit-keyframes fussion_ball2 {
50% {
top: 200%;
left: 200%;
}
100% {
top: 100%;
left: 50%;
z-index: 1;
}
}
@-moz-keyframes fussion_ball2 {
50% {
top: 200%;
left: 200%;
}
100% {
top: 100%;
left: 50%;
z-index: 1;
}
}
@-o-keyframes fussion_ball2 {
50% {
top: 200%;
left: 200%;
}
100% {
top: 100%;
left: 50%;
z-index: 1;
}
}
@keyframes fussion_ball2 {
50% {
top: 200%;
left: 200%;
}
100% {
top: 100%;
left: 50%;
z-index: 1;
}
}
@-webkit-keyframes fussion_ball3 {
50% {
top: 200%;
left: -100%;
}
100% {
top: 50%;
left: 0;
z-index: 2;
}
}
@-moz-keyframes fussion_ball3 {
50% {
top: 200%;
left: -100%;
}
100% {
top: 50%;
left: 0;
z-index: 2;
}
}
@-o-keyframes fussion_ball3 {
50% {
top: 200%;
left: -100%;
}
100% {
top: 50%;
left: 0;
z-index: 2;
}
}
@keyframes fussion_ball3 {
50% {
top: 200%;
left: -100%;
}
100% {
top: 50%;
left: 0;
z-index: 2;
}
}
@-webkit-keyframes fussion_ball4 {
50% {
top: -100%;
left: -100%;
}
100% {
top: 0;
left: 50%;
z-index: 1;
}
}
@-moz-keyframes fussion_ball4 {
50% {
top: -100%;
left: -100%;
}
100% {
top: 0;
left: 50%;
z-index: 1;
}
}
@-o-keyframes fussion_ball4 {
50% {
top: -100%;
left: -100%;
}
100% {
top: 0;
left: 50%;
z-index: 1;
}
}
@keyframes fussion_ball4 {
50% {
top: -100%;
left: -100%;
}
100% {
top: 0;
left: 50%;
z-index: 1;
}
}  .qodef-st-loader .wave_circles {
width: 150px;
height: 30px;
margin: -15px 0 0 -75px;
}
.qodef-st-loader .wave_circles .ball {
height: 30px;
width: 30px;
float: left;
background: #fe6c61;
border-radius: 50%;
margin-right: 10px;
}
.qodef-st-loader .wave_circles .ball-1 {
-webkit-animation: wave_jump3 1.8s infinite ease-out;
-moz-animation: wave_jump3 1.8s infinite ease-out;
-o-animation: wave_jump3 1.8s infinite ease-out;
animation: wave_jump3 1.8s infinite ease-out;
}
.qodef-st-loader .wave_circles .ball-2 {
-webkit-animation: wave_jump2 1.8s infinite ease-out;
-moz-animation: wave_jump2 1.8s infinite ease-out;
-o-animation: wave_jump2 1.8s infinite ease-out;
animation: wave_jump2 1.8s infinite ease-out;
}
.qodef-st-loader .wave_circles .ball-3 {
-webkit-animation: wave_jump1 1.8s infinite ease-out;
-moz-animation: wave_jump1 1.8s infinite ease-out;
-o-animation: wave_jump1 1.8s infinite ease-out;
animation: wave_jump1 1.8s infinite ease-out;
}
.qodef-st-loader .wave_circles .ball-4 {
margin-right: 0;
-webkit-animation: wave_wipe 1.8s infinite cubic-bezier(0.5, 0, 0.5, 1);
-moz-animation: wave_wipe 1.8s infinite cubic-bezier(0.5, 0, 0.5, 1);
-o-animation: wave_wipe 1.8s infinite cubic-bezier(0.5, 0, 0.5, 1);
animation: wave_wipe 1.8s infinite cubic-bezier(0.5, 0, 0.5, 1);
}
@-webkit-keyframes wave_jump1 {
12% {
-webkit-transform: translate(20px, -40px);
-webkit-animation-timing-function: ease-in;
}
24% {
-webkit-transform: translate(40px, 0);
}
100% {
-webkit-transform: translate(40px, 0);
}
}
@-moz-keyframes wave_jump1 {
12% {
-moz-transform: translate(20px, -40px);
-moz-animation-timing-function: ease-in;
}
24% {
-moz-transform: translate(40px, 0);
}
100% {
-moz-transform: translate(40px, 0);
}
}
@-moz-keyframes wave_jump1 {
12% {
-o-transform: translate(20px, -40px);
-o-animation-timing-function: ease-in;
}
24% {
-o-transform: translate(40px, 0);
}
100% {
-o-transform: translate(40px, 0);
}
}
@keyframes wave_jump1 {
12% {
transform: translate(20px, -40px);
animation-timing-function: ease-in;
}
24% {
transform: translate(40px, 0);
}
100% {
transform: translate(40px, 0);
}
}
@-webkit-keyframes wave_jump2 {
12% {
-webkit-transform: translate(0, 0);
}
24% {
-webkit-transform: translate(20px, -40px);
-webkit-animation-timing-function: ease-in;
}
36% {
-webkit-transform: translate(40px, 0);
}
100% {
-webkit-transform: translate(40px, 0);
}
}
@-moz-keyframes wave_jump2 {
12% {
-moz-transform: translate(0, 0);
}
24% {
-moz-transform: translate(20px, -40px);
-moz-animation-timing-function: ease-in;
}
36% {
-moz-transform: translate(40px, 0);
}
100% {
-moz-transform: translate(40px, 0);
}
}
@-o-keyframes wave_jump2 {
12% {
-o-transform: translate(0, 0);
}
24% {
-o-transform: translate(20px, -40px);
-o-animation-timing-function: ease-in;
}
36% {
-o-transform: translate(40px, 0);
}
100% {
-o-transform: translate(40px, 0);
}
}
@keyframes wave_jump2 {
12% {
transform: translate(0, 0);
}
24% {
transform: translate(20px, -40px);
animation-timing-function: ease-in;
}
36% {
transform: translate(40px, 0);
}
100% {
transform: translate(40px, 0);
}
}
@-webkit-keyframes wave_jump3 {
24% {
-webkit-transform: translate(0, 0);
}
36% {
-webkit-transform: translate(20px, -40px);
-webkit-animation-timing-function: ease-in;
}
48% {
-webkit-transform: translate(40px, 0);
}
100% {
-webkit-transform: translate(40px, 0);
}
}
@-moz-keyframes wave_jump3 {
24% {
-moz-transform: translate(0, 0);
}
36% {
-moz-transform: translate(20px, -40px);
-moz-animation-timing-function: ease-in;
}
48% {
-moz-transform: translate(40px, 0);
}
100% {
-moz-transform: translate(40px, 0);
}
}
@-o-keyframes wave_jump3 {
24% {
-o-transform: translate(0, 0);
}
36% {
-o-transform: translate(20px, -40px);
-o-animation-timing-function: ease-in;
}
48% {
-o-transform: translate(40px, 0);
}
100% {
-o-transform: translate(40px, 0);
}
}
@keyframes wave_jump3 {
24% {
transform: translate(0, 0);
}
36% {
transform: translate(20px, -40px);
animation-timing-function: ease-in;
}
48% {
transform: translate(40px, 0);
}
100% {
transform: translate(40px, 0);
}
}
@-webkit-keyframes wave_wipe {
48% {
-webkit-transform: translateX(-120px);
}
100% {
-webkit-transform: translateX(-120px);
}
}
@-moz-keyframes wave_wipe {
48% {
-moz-transform: translateX(-120px);
}
100% {
-moz-transform: translateX(-120px);
}
}
@-o-keyframes wave_wipe {
48% {
-o-transform: translateX(-120px);
}
100% {
-o-transform: translateX(-120px);
}
}
@keyframes wave_wipe {
48% {
transform: translateX(-120px);
}
100% {
transform: translateX(-120px);
}
}  .qodef-st-loader .pulse_circles {
width: 100px;
height: 100px;
margin: -50px 0 0 -50px;
position: relative;
}
.qodef-st-loader .pulse_circles * {
box-sizing: border-box;
}
.qodef-st-loader .pulse_circles .ball {
height: 100%;
width: 100%;
background: #fe6c61;
position: absolute;
border-radius: 50%;
border: 0 solid #fe6c61;
-webkit-animation: pulse_circles_pulse 3s infinite;
-moz-animation: pulse_circles_pulse 3s infinite;
-o-animation: pulse_circles_pulse 3s infinite;
animation: pulse_circles_pulse 3s infinite;
}
.qodef-st-loader .pulse_circles .ball-2 {
-webkit-animation-delay: -0.75s;
-moz-animation-delay: -0.75s;
-o-animation-delay: -0.75s;
animation-delay: -0.75s;
}
.qodef-st-loader .pulse_circles .ball-3 {
-webkit-animation-delay: -1.5s;
-moz-animation-delay: -1.5s;
-o-animation-delay: -1.5s;
animation-delay: -1.5s;
}
.qodef-st-loader .pulse_circles .ball-4 {
-webkit-animation-delay: -2.25s;
-moz-animation-delay: -2.25s;
-o-animation-delay: -2.25s;
animation-delay: -2.25s;
}
@-webkit-keyframes pulse_circles_pulse {
0% {
-webkit-transform: scale(0.1, 0.1);
opacity: 1;
border-width: 50px;
}
100% {
-webkit-transform: scale(1, 1);
opacity: 0;
border-width: 0;
}
}
@-moz-keyframes pulse_circles_pulse {
0% {
-moz-transform: scale(0.1, 0.1);
opacity: 1;
border-width: 50px;
}
100% {
-moz-transform: scale(1, 1);
opacity: 0;
border-width: 0;
}
}
@-o-keyframes pulse_circles_pulse {
0% {
-o-transform: scale(0.1, 0.1);
opacity: 1;
border-width: 50px;
}
100% {
-o-transform: scale(1, 1);
opacity: 0;
border-width: 0;
}
}
@keyframes pulse_circles_pulse {
0% {
transform: scale(0.1, 0.1);
opacity: 1;
border-width: 50px;
}
100% {
transform: scale(1, 1);
opacity: 0;
border-width: 0;
}
}    #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;
}  .qodef-comment-holder {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
padding: 0;
box-sizing: border-box;
}
.qodef-comment-holder .qodef-comment-holder-inner {
padding: 20px 0 20px;
}
.qodef-comment-holder .qodef-comment.qodef-pingback-comment .qodef-comment-text {
padding: 0;
}
.qodef-comment-holder .qodef-comment-list {
list-style: none;
position: relative;
z-index: 150;
padding: 0;
margin: 0;
}
.qodef-comment-holder .qodef-comment-list li {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
margin: 25px 0 0;
padding: 29px 0 0;
}
.qodef-comment-holder .qodef-comment-list > li:first-child {
margin: 0;
padding: 0;
border: 0;
}
.qodef-comment-holder .qodef-comment-list .children {
padding: 0 0 0 81px;
}
.qodef-comment-holder .qodef-comments-title {
margin-bottom: 28px;
}
.qodef-comment-holder .qodef-comments-title > * {
margin: 0;
text-transform: uppercase;
}
.qodef-comment-holder .qodef-comment-image {
position: relative;
display: block;
top: 10px;
left: 0;
width: 82px;
height: 82px;
float: left;
}
.qodef-comment-holder .qodef-comment-image img {
display: block;
border-radius: 4em;
}
.qodef-comment-holder .qodef-commont-links-wrapper {
position: absolute;
right: 0;
}
.qodef-comment-holder .qodef-comment-text {
padding: 0 0 0 108px;
min-height: 82px;
}
.qodef-comment-holder .qodef-comment-text .qodef-comment-info {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
margin: 12px 0 0;
}
.qodef-comment-holder .qodef-comment-text .replay,
.qodef-comment-holder .qodef-comment-text .comment-reply-link,
.qodef-comment-holder .qodef-comment-text .comment-edit-link {
float: right;
margin-left: 10px;
font-size: 12px;
color: #1c1c1c;
font-family: "Oswald", sans-serif;
text-transform: uppercase;
font-weight: 700;
letter-spacing: 0.03em;
}
.qodef-comment-holder .qodef-comment-text .replay:hover,
.qodef-comment-holder .qodef-comment-text .comment-reply-link:hover,
.qodef-comment-holder .qodef-comment-text .comment-edit-link:hover {
color: #121212;
}
.qodef-comment-holder .qodef-comment-text .qodef-comment-name {
float: left;
margin: 0;
line-height: 24px;
}
.qodef-comment-holder .qodef-comment-text .qodef-comment-date {
float: left;
margin: 0 0 0 12px;
font-size: 12px;
}
.qodef-comment-holder .qodef-comment-text .qodef-text-holder p {
margin: 3px 0;
}
.qodef-comment-holder .qodef-comment-text .comment-respond {
margin: 20px 0;
}
.qodef-comment-holder .qodef-comment-text .comment-respond .comment-reply-title {
margin: 0 0 10px;
text-transform: uppercase;
font-size: 14px;
}
.qodef-comment-holder .qodef-comment-text .comment-respond .logged-in-as {
margin: 0 0 8px;
}
.qodef-comment-holder .qodef-comment-text #cancel-comment-reply-link {
margin-left: 10px;
font-size: 12px;
color: #fe6c61;
}
.qodef-comment-holder .qodef-comment-text #cancel-comment-reply-link:hover {
color: #121212;
}
.qodef-comment-holder .qodef-comment-text ul li,
.qodef-comment-holder .qodef-comment-text ol li {
display: list-item;
}
.qodef-comment-holder .qodef-comment-text li {
margin: 0 !important;
padding: 0 !important;
border: 0 !important;
}
.qodef-comment-form {
padding: 0;
clear: both;
box-sizing: border-box;
}
.qodef-comment-form .qodef-comment-form-inner {
padding: 29px 0 47px;
}
.qodef-comment-form .comment-reply-title {
margin: 0 0 37px;
text-transform: uppercase;
}
.qodef-comment-form .logged-in-as {
margin: 0 0 8px;
}
@media only screen and (max-width: 768px) {
.qodef-comment-holder .qodef-comment-list .children {
padding: 0 0 0 40px;
}
}
@media only screen and (max-width: 680px) {
.qodef-comment-holder .qodef-comment-list .children {
padding: 0;
}
.qodef-comment-holder .qodef-comment-text .qodef-comment-date,
.qodef-comment-holder .qodef-comment-text .qodef-comment-name {
float: none;
}
.qodef-comment-holder .qodef-comment-text .replay,
.qodef-comment-holder .qodef-comment-text .comment-reply-link,
.qodef-comment-holder .qodef-comment-text .comment-edit-link {
float: none;
margin: 0 10px 0 0;
}
}
@media only screen and (max-width: 480px) {
.qodef-comment-holder .qodef-comment-image {
float: none;
}
.qodef-comment-holder .qodef-comment-text {
padding: 20px 0 0;
min-height: inherit;
}
} .post-password-form input[type='password'] {
margin-top: 10px;
}
footer .wpcf7-form-control.wpcf7-text,
footer .wpcf7-form-control.wpcf7-number,
footer .wpcf7-form-control.wpcf7-date,
footer .wpcf7-form-control.wpcf7-textarea,
footer .wpcf7-form-control.wpcf7-select,
footer .wpcf7-form-control.wpcf7-quiz {
margin: 0;
}
.qodef-cf7-subscribe { }
.qodef-cf7-subscribe ::-webkit-input-placeholder {
text-align: center;
}
.qodef-cf7-subscribe input:-moz-placeholder {
text-align: center;
}
#submit_comment,
.post-password-form input[type='submit'],
input.wpcf7-form-control.wpcf7-submit {
font-family: "Oswald", sans-serif;
position: relative;
display: inline-block;
vertical-align: middle;
width: auto;
outline: none;
font-size: 12px;
line-height: 2em;
letter-spacing: 0.1em;
font-weight: 700;
text-transform: uppercase;
box-sizing: border-box;
margin: 0;
-webkit-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
padding: 11px 46px 13px;
color: #fff;
background-color: #121212;
border: 1px solid transparent;
cursor: pointer;
font-family: Oswald, sans-serif;
letter-spacing: .1em;
font-weight: 700;
}
#submit_comment:hover,
.post-password-form input[type='submit']:hover,
input.wpcf7-form-control.wpcf7-submit:hover {
color: #fff;
background-color: #3c3c3c;
}
p.form-submit,
.wpcf7-form p {
margin: 0;
}
.wpcf7-form .ajax-loader {
display: block !important;
}
#respond textarea,
.qodef-style-form textarea,
.wpcf7-form textarea {
display: block;
padding: 16px 18px;
}
.qodef-two-columns-form-without-space .wpcf7-form .ajax-loader {
display: none;
}  .qodef-owl-slider {
visibility: hidden;
}
.qodef-owl-slider .owl-stage-outer {
z-index: 1;
}
.qodef-owl-slider.qodef-slider-is-moving .owl-item .qodef-block-drag-link {
z-index: -1 !important;
}
.qodef-owl-slider.qodef-slider-has-both-nav .owl-nav .owl-prev,
.qodef-owl-slider.qodef-slider-has-both-nav .owl-nav .owl-next {
-webkit-transform: translateY(calc(-50% - 21px));
-moz-transform: translateY(calc(-50% - 21px));
transform: translateY(calc(-50% - 21px));
}
.qodef-owl-slider .owl-nav .owl-prev,
.qodef-owl-slider .owl-nav .owl-next {
position: absolute;
bottom: 0;
z-index: 3;
color: #fff;
background-color: #000;
-webkit-transition: color 0.2s ease-out;
-moz-transition: color 0.2s ease-out;
transition: color 0.2s ease-out;
width: 30px;
height: 30px;
line-height: 28px;
text-align: center;
}
.qodef-owl-slider .owl-nav .owl-prev:hover,
.qodef-owl-slider .owl-nav .owl-next:hover {
color: rgba(255, 255, 255, 0.8);
}
.qodef-owl-slider .owl-nav .owl-prev > span,
.qodef-owl-slider .owl-nav .owl-next > span {
position: relative;
display: inline-block;
vertical-align: middle;
font-size: 20px;
line-height: 1;
}
.qodef-owl-slider .owl-nav .owl-prev > span:before,
.qodef-owl-slider .owl-nav .owl-next > span:before {
display: block;
line-height: inherit;
}
.qodef-owl-slider .owl-nav .owl-prev {
right: 30px;
}
.qodef-owl-slider .owl-nav .owl-next {
right: 0;
}
.qodef-owl-slider .owl-dots {
text-align: center;
margin: 16px 0 0;
}
.qodef-owl-slider .owl-dots .owl-dot {
display: inline-block;
vertical-align: middle;
}
.qodef-owl-slider .owl-dots .owl-dot span {
display: inline-block;
vertical-align: middle;
width: 12px;
height: 12px;
margin: 0 6px;
border-radius: 3em;
background-color: transparent;
border: 2px solid rgba(18, 18, 18, 0.5);
box-sizing: border-box;
-webkit-transition: background-color 0.2s ease-out, border 0.2s ease-out;
-moz-transition: background-color 0.2s ease-out, border 0.2s ease-out;
transition: background-color 0.2s ease-out, border 0.2s ease-out;
}
.qodef-owl-slider .owl-dots .owl-dot:hover span,
.qodef-owl-slider .owl-dots .owl-dot.active span {
background-color: #121212;
border-color: #121212;
}
.qodef-owl-slider .owl-carousel .owl-item img {
-webkit-transform: translateZ(0);
}
.qodef-owl-slider + .qodef-slider-thumbnail {
display: inline-block;
vertical-align: middle;
list-style: none;
margin: 20px -10px 0;
}
.qodef-owl-slider + .qodef-slider-thumbnail > .qodef-slider-thumbnail-item {
float: left;
padding: 0 10px;
box-sizing: border-box;
}
.qodef-owl-slider + .qodef-slider-thumbnail.qodef-slider-columns-two .qodef-slider-thumbnail-item {
width: 50%;
}
.qodef-owl-slider + .qodef-slider-thumbnail.qodef-slider-columns-three .qodef-slider-thumbnail-item {
width: 33.33333%;
}
.qodef-owl-slider + .qodef-slider-thumbnail.qodef-slider-columns-four .qodef-slider-thumbnail-item {
width: 25%;
}
.qodef-owl-slider + .qodef-slider-thumbnail.qodef-slider-columns-five .qodef-slider-thumbnail-item {
width: 20%;
}
.qodef-owl-slider + .qodef-slider-thumbnail.qodef-slider-columns-six .qodef-slider-thumbnail-item {
width: 16.66667%;
}  .qodef-slick-slider .qodef-prev-icon,
.qodef-slick-slider .qodef-next-icon {
position: absolute;
z-index: 100;
top: 50%;
display: block;
width: 60px;
height: 60px;
padding: 0;
cursor: pointer;
border: none;
outline: none;
font-size: 33px;
line-height: 60px;
text-align: center;
color: #121212;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
transform: translateY(-50%);
}
.qodef-slick-slider .qodef-prev-icon {
left: 15px;
}
.qodef-slick-slider .qodef-next-icon {
right: 15px;
}
.qodef-slick-slider .slick-dots {
text-align: center;
margin: 40px 0 0 0;
padding: 0;
}
.qodef-slick-slider .slick-dots li {
display: inline-block;
cursor: pointer;
padding: 5px 10px 10px 5px;
position: relative;
margin: 0 7.5px;
}
.qodef-slick-slider .slick-dots li button {
width: 5px;
height: 5px;
background-color: #b7b7b7;
display: inline-block;
position: absolute;
}
.qodef-slick-slider .slick-dots li.slick-active .qodef-slick-dot-inner {
background-color: #fe6c61;
}
@-moz-document url-prefix()  { .slick-slider .qodef-prev-icon:after,
.slick-slider .qodef-next-icon:after {
top: calc(50% - 1px);
}
}
.qodef-slick-carousel .qodef-prev-icon,
.qodef-slick-carousel .qodef-next-icon {
position: absolute;
z-index: 100;
top: -30px;
width: 28px;
height: 28px;
display: block;
padding: 0;
cursor: pointer;
outline: none;
font-size: 10px;
line-height: 29px;
color: #121212;
-webkit-transition: background-color 0.2s, color 0.2s;
-moz-transition: background-color 0.2s, color 0.2s;
transition: background-color 0.2s, color 0.2s;
}
.qodef-slick-carousel .qodef-prev-icon:after,
.qodef-slick-carousel .qodef-next-icon:after {
position: absolute;
content: '';
top: 0;
left: 0;
width: 0;
height: 100%;
background-color: #fff;
z-index: -1;
-webkit-transition: width 0.25s ease;
-moz-transition: width 0.25s ease;
transition: width 0.25s ease;
}
.qodef-slick-carousel .qodef-prev-icon:hover,
.qodef-slick-carousel .qodef-next-icon:hover {
color: #121212;
}
.qodef-slick-carousel .qodef-prev-icon:hover:after,
.qodef-slick-carousel .qodef-next-icon:hover:after {
width: 100%;
}
.qodef-slick-carousel .qodef-prev-icon {
left: auto;
right: 0;
color: #fff;
background-color: #121212;
}
.qodef-blog-list-holder.qodef-small-space .qodef-slick-carousel .qodef-prev-icon {
right: 13px;
}
.qodef-slick-carousel .qodef-next-icon {
right: 31px;
color: #fff;
background-color: #fe6c61;
}
.qodef-blog-list-holder.qodef-small-space .qodef-slick-carousel .qodef-next-icon {
right: 44px;
}  .qodef-404-page.qodef-wrapper {
padding: 0 !important;
}
.qodef-404-page .qodef-content {
height: 100vh;
}
.admin-bar .qodef-404-page .qodef-content {
height: calc(100vh - 32px);
}
.qodef-404-page .qodef-content-inner {
position: relative;
display: table;
height: 100%;
width: 100%;
}
.qodef-404-page .qodef-page-not-found-wrapper {
background-color: #fff;
padding: 11%;
box-sizing: border-box;
margin-top: 70px;
}
.qodef-404-page .qodef-page-not-found {
position: relative;
display: table-cell;
width: 100%;
height: 100%;
vertical-align: middle;
padding: 0 32%;
text-align: center;
}
.qodef-404-page .qodef-page-not-found .qodef-404-title {
margin: 0;
}
.qodef-404-page .qodef-page-not-found .qodef-404-subtitle {
margin: 35px 0 0;
}
.qodef-404-page .qodef-page-not-found .qodef-404-text {
margin: 18px 0 0;
}
.qodef-404-page .qodef-page-not-found .qodef-btn {
margin: 30px 0 20px;
}
.qodef-404-page .qodef-page-not-found .qodef-btn.qodef-btn-light-style {
color: #585858;
background-color: #fff;
border-color: #fff;
}
.qodef-404-page .qodef-page-not-found .qodef-btn.qodef-btn-light-style:hover {
color: #fff !important;
background-color: transparent !important;
border-color: #fff !important;
}
@media only screen and (max-width: 1280px) {
.qodef-404-page .qodef-404-title {
font-size: 32px;
}
}
@media only screen and (max-width: 768px) {
.qodef-404-page .qodef-page-not-found {
padding: 40px 30px;
}
}
@media only screen and (max-width: 680px) {
.admin-bar .qodef-404-page .qodef-content {
height: auto;
}
}  #qodef-back-to-top {
position: fixed;
width: 51px;
height: 51px;
right: 25px;
bottom: 25px;
z-index: 10000;
opacity: 0;
visibility: hidden;
}
#qodef-back-to-top.off {
opacity: 0;
visibility: hidden;
-webkit-transition: opacity 0.15s ease, visibility 0s 0.15s;
-moz-transition: opacity 0.15s ease, visibility 0s 0.15s;
transition: opacity 0.15s ease, visibility 0s 0.15s;
}
#qodef-back-to-top.on {
opacity: 1;
visibility: visible;
-webkit-transition: opacity 0.3s ease;
-moz-transition: opacity 0.3s ease;
transition: opacity 0.3s ease;
}
#qodef-back-to-top .qodef-icon-stack {
display: flex;
flex-direction: column;
justify-content: center;
width: 100%;
height: 100%;
font-size: 15px;
text-align: center;
color: #fff;
background-color: #000;
overflow: hidden;
-webkit-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
#qodef-back-to-top .qodef-icon-stack i {
position: absolute;
top: 5px;
left: 50%;
-webkit-transform: translateX(-50%);
-moz-transform: translateX(-50%);
transform: translateX(-50%);
-webkit-transition: 0.15s ease 0.05s;
-moz-transition: 0.15s ease 0.05s;
transition: 0.15s ease 0.05s;
}
#qodef-back-to-top .qodef-icon-stack .qodef-back-to-top-text {
display: inline-block;
-webkit-transform: translateY(5px);
-moz-transform: translateY(5px);
transform: translateY(5px);
font-family: "Oswald", sans-serif;
font-size: 11px;
text-transform: uppercase;
letter-spacing: .05em;
line-height: 1em;
-webkit-transition: -webkit-transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
-moz-transition: -moz-transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#qodef-back-to-top .qodef-icon-stack:hover i {
opacity: 0;
-webkit-transform: translateX(-50%) translateY(-10px);
-moz-transform: translateX(-50%) translateY(-10px);
transform: translateX(-50%) translateY(-10px);
-webkit-transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
-moz-transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#qodef-back-to-top .qodef-icon-stack:hover .qodef-back-to-top-text {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
transform: translateY(0);
-webkit-transition: -webkit-transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) 0.05s;
-moz-transition: -moz-transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) 0.05s;
transition: transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) 0.05s;
}  .qodef-self-hosted-video-holder .qodef-video-wrap .mejs-poster,
.qodef-self-hosted-video-holder .qodef-video-wrap .mejs-container,
.qodef-self-hosted-video-holder .qodef-video-wrap .mejs-overlay-play {
height: 100% !important; width: 100% !important; }  footer { }
footer .widget {
margin: 0 0 15px;
padding: 0;
background-color: transparent;
border: none;
}
footer .widget .qodef-widget-title-holder {
margin-bottom: 23px;
}
footer .widget .qodef-widget-title-holder .qodef-widget-title {
color: #ffffff;
margin-bottom: 3px;
text-transform: uppercase;
}
footer .widget .qodef-widget-title-holder .qodef-separator {
border-color: #ffffff;
border-bottom-width: 3px;
width: 30px;
}
footer .widget ul {
padding: 0;
margin: 0;
list-style: none;
}
footer .widget ul li {
display: block;
line-height: 20px;
margin: 0;
padding: 23px 0;
border: none;
}
footer .widget ul li:last-child {
border: 0;
padding-bottom: 0;
}
footer .widget ul li a {
color: #eeeeee;
}
footer .widget ul li a:hover {
color: #fe6c61;
}
footer .widget ul .children,
footer .widget ul .sub-menu {
border-top: 1px solid #cccccc;
margin-top: 23px;
}
footer .widget.widget_pages .qodef-widget-title,
footer .widget.widget_archive .qodef-widget-title,
footer .widget.widget_categories .qodef-widget-title,
footer .widget.widget_meta .qodef-widget-title,
footer .widget.widget_recent_entries .qodef-widget-title,
footer .widget.widget_nav_menu .qodef-widget-title {
margin-bottom: 0;
}
footer .widget.widget_pages ul li,
footer .widget.widget_archive ul li,
footer .widget.widget_categories ul li,
footer .widget.widget_meta ul li,
footer .widget.widget_recent_entries ul li,
footer .widget.widget_nav_menu ul li {
overflow: hidden;
}
footer .widget.widget_pages ul li a,
footer .widget.widget_archive ul li a,
footer .widget.widget_categories ul li a,
footer .widget.widget_meta ul li a,
footer .widget.widget_recent_entries ul li a,
footer .widget.widget_nav_menu ul li a {
display: inline;
overflow: hidden;
padding: 0;
position: relative;
}
footer .widget.widget_pages ul li a:after,
footer .widget.widget_archive ul li a:after,
footer .widget.widget_categories ul li a:after,
footer .widget.widget_meta ul li a:after,
footer .widget.widget_recent_entries ul li a:after,
footer .widget.widget_nav_menu ul li a:after {
display: none;
padding: 0;
}
footer .widget.widget_pages ul li a:hover,
footer .widget.widget_archive ul li a:hover,
footer .widget.widget_categories ul li a:hover,
footer .widget.widget_meta ul li a:hover,
footer .widget.widget_recent_entries ul li a:hover,
footer .widget.widget_nav_menu ul li a:hover {
color: #fe6c61;
}
footer .widget.widget_recent_comments .qodef-widget-title,
footer .widget.widget_rss .qodef-widget-title {
margin-bottom: 0;
}
footer .widget #wp-calendar {
text-align: center;
width: 100%;
}
footer .widget #wp-calendar caption {
margin: 0 0 23px;
}
footer .widget #wp-calendar th,
footer .widget #wp-calendar td {
padding: 3px 4px;
}
footer .widget #wp-calendar td#today {
color: #ffffff;
background-color: #999999;
}
footer .widget #wp-calendar tfoot a {
color: #eeeeee;
}
footer .widget #wp-calendar tfoot a:hover {
color: #fe6c61;
}
footer .widget.widget_rss .rss-widget-icon {
display: inline-block;
}
footer .widget.widget_rss .rss-date {
display: block;
margin-bottom: 23px;
}
footer .widget.widget_rss cite {
display: block;
margin-top: calc(23px / 2);
}
footer .widget.widget_search .input-holder {
border-color: #cccccc;
border-style: solid;
border-width: 1px;
}
footer .widget.widget_search .input-holder input,
footer .widget.widget_search .input-holder button {
background-color: transparent;
border: 0;
border-radius: 0;
box-sizing: border-box;
color: #ffffff;
display: inline-block;
float: left;
font-family: "Poppins", sans-serif;
font-size: 15px;
font-weight: inherit;
height: 52px;
line-height: calc(52px - 2px);
outline: 0;
position: relative;
vertical-align: top;
-webkit-appearance: none;
-webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
}
footer .widget.widget_search .input-holder input.search-field {
width: calc(100% - 52px);
padding: 0 0 0 21px;
}
footer .widget.widget_search .input-holder input.search-field::-webkit-input-placeholder {
color: #ffffff;
}
footer .widget.widget_search .input-holder input.search-field:-moz-placeholder {
color: #ffffff;
}
footer .widget.widget_search .input-holder input.search-field::-moz-placeholder {
color: #ffffff;
}
footer .widget.widget_search .input-holder input.search-field:-ms-input-placeholder {
color: #ffffff;
}
footer .widget.widget_search .input-holder button {
background: #999999;
color: #ffffff;
cursor: pointer;
font-size: 18px;
width: 52px;
-webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
}
footer .widget.widget_search .input-holder button:hover {
color: #fe6c61;
}
footer .widget.widget_search .input-holder button span {
display: block;
left: 0;
line-height: inherit;
position: absolute;
top: 0;
width: 100%;
}
footer .widget.widget_search .input-holder button span:before {
display: block;
line-height: inherit;
}
footer .widget.qodef-search-post-type-widget .qodef-post-type-search-field {
border-radius: 3px;
border-color: #cccccc;
border-style: solid;
border-width: 1px;
background-color: transparent;
box-sizing: border-box;
color: #ffffff;
display: inline-block;
float: left;
font-family: "Poppins", sans-serif;
font-size: 12px;
font-weight: inherit;
height: 52px;
line-height: calc(52px - 2px);
outline: 0;
position: relative;
vertical-align: top;
-webkit-appearance: none;
padding: 0 25px 0 20px;
width: 100%; -webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
}
footer .widget.qodef-search-post-type-widget .qodef-post-type-search-field::-webkit-input-placeholder {
color: #ffffff;
}
footer .widget.qodef-search-post-type-widget .qodef-post-type-search-field:-moz-placeholder {
color: #ffffff;
}
footer .widget.qodef-search-post-type-widget .qodef-post-type-search-field::-moz-placeholder {
color: #ffffff;
}
footer .widget.qodef-search-post-type-widget .qodef-post-type-search-field:-ms-input-placeholder {
color: #ffffff;
}
footer .widget.widget_archive select,
footer .widget.widget_categories select,
footer .widget.widget_text select {
background-color: transparent;
border-color: #cccccc;
border-style: solid;
border-width: 1px;
border-radius: 0;
box-sizing: border-box;
color: #ffffff;
display: inline-block;
font-family: "Poppins", sans-serif;
font-size: 15px;
font-weight: inherit;
height: 52px;
line-height: calc(52px - 2px);
margin-top: 23px;
outline: 0;
padding: 0 0 0 21px;
position: relative;
vertical-align: top;
width: 100%;
-webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
}
footer .widget.widget_tag_cloud a {
border-radius: 2px;
color: #ffffff;
display: inline-block;
font-size: 11px !important;
font-family: "Poppins", sans-serif;
font-weight: inherit;
line-height: 30px;
text-transform: uppercase;
margin: 0 7px 7px 0;
padding: 0 19px;
}
footer .widget.widget_tag_cloud a:hover {
color: #fe6c61;
}
footer .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item {
margin: 0;
padding: 10px 0;
}
footer .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item:first-child {
padding-top: 4px;
}
footer .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a {
display: table;
width: 100%;
}
footer .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a .qodef-rp-image,
footer .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a .qodef-rp-title {
display: table-cell;
vertical-align: middle;
}
footer .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a .qodef-rp-title {
-webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
font-weight: 400;
color: #b1b2b2;
line-height: 24px;
}
footer .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a:hover .qodef-rp-title {
color: #fff;
text-decoration: underline;
}
footer .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item .qodef-rp-date {
font-size: 11px;
font-family: "Oswald", sans-serif;
font-weight: 500;
letter-spacing: .05em;
text-transform: uppercase;
color: #fff;
margin-top: 10px;
display: block;
}
.qodef-fullscreen-sidebar { }
.qodef-fullscreen-sidebar .widget {
margin: 0 0 45px;
padding: 0;
background-color: transparent;
border: none;
}
.qodef-fullscreen-sidebar .widget .qodef-widget-title-holder {
margin-bottom: 15px;
}
.qodef-fullscreen-sidebar .widget .qodef-widget-title-holder .qodef-widget-title {
color: #999999;
margin-bottom: 3px;
text-transform: uppercase;
}
.qodef-fullscreen-sidebar .widget .qodef-widget-title-holder .qodef-separator {
border-color: #333333;
border-bottom-width: 3px;
width: 30px;
}
.qodef-fullscreen-sidebar .widget ul {
padding: 0;
margin: 0;
list-style: none;
}
.qodef-fullscreen-sidebar .widget ul li {
display: block;
line-height: 20px;
margin: 0;
padding: 15px 0;
border: none;
}
.qodef-fullscreen-sidebar .widget ul li:last-child {
border: 0;
padding-bottom: 0;
}
.qodef-fullscreen-sidebar .widget ul li a {
color: #666666;
}
.qodef-fullscreen-sidebar .widget ul li a:hover {
color: #fe6c61;
}
.qodef-fullscreen-sidebar .widget ul .children,
.qodef-fullscreen-sidebar .widget ul .sub-menu {
border-top: 1px solid #cccccc;
margin-top: 15px;
}
.qodef-fullscreen-sidebar .widget.widget_pages .qodef-widget-title,
.qodef-fullscreen-sidebar .widget.widget_archive .qodef-widget-title,
.qodef-fullscreen-sidebar .widget.widget_categories .qodef-widget-title,
.qodef-fullscreen-sidebar .widget.widget_meta .qodef-widget-title,
.qodef-fullscreen-sidebar .widget.widget_recent_entries .qodef-widget-title,
.qodef-fullscreen-sidebar .widget.widget_nav_menu .qodef-widget-title {
margin-bottom: 0;
}
.qodef-fullscreen-sidebar .widget.widget_pages ul li,
.qodef-fullscreen-sidebar .widget.widget_archive ul li,
.qodef-fullscreen-sidebar .widget.widget_categories ul li,
.qodef-fullscreen-sidebar .widget.widget_meta ul li,
.qodef-fullscreen-sidebar .widget.widget_recent_entries ul li,
.qodef-fullscreen-sidebar .widget.widget_nav_menu ul li {
overflow: hidden;
}
.qodef-fullscreen-sidebar .widget.widget_pages ul li a,
.qodef-fullscreen-sidebar .widget.widget_archive ul li a,
.qodef-fullscreen-sidebar .widget.widget_categories ul li a,
.qodef-fullscreen-sidebar .widget.widget_meta ul li a,
.qodef-fullscreen-sidebar .widget.widget_recent_entries ul li a,
.qodef-fullscreen-sidebar .widget.widget_nav_menu ul li a {
display: inline;
overflow: hidden;
padding: 0;
position: relative;
}
.qodef-fullscreen-sidebar .widget.widget_pages ul li a:after,
.qodef-fullscreen-sidebar .widget.widget_archive ul li a:after,
.qodef-fullscreen-sidebar .widget.widget_categories ul li a:after,
.qodef-fullscreen-sidebar .widget.widget_meta ul li a:after,
.qodef-fullscreen-sidebar .widget.widget_recent_entries ul li a:after,
.qodef-fullscreen-sidebar .widget.widget_nav_menu ul li a:after {
display: none;
padding: 0;
}
.qodef-fullscreen-sidebar .widget.widget_pages ul li a:hover,
.qodef-fullscreen-sidebar .widget.widget_archive ul li a:hover,
.qodef-fullscreen-sidebar .widget.widget_categories ul li a:hover,
.qodef-fullscreen-sidebar .widget.widget_meta ul li a:hover,
.qodef-fullscreen-sidebar .widget.widget_recent_entries ul li a:hover,
.qodef-fullscreen-sidebar .widget.widget_nav_menu ul li a:hover {
color: #fe6c61;
}
.qodef-fullscreen-sidebar .widget.widget_recent_comments .qodef-widget-title,
.qodef-fullscreen-sidebar .widget.widget_rss .qodef-widget-title {
margin-bottom: 0;
}
.qodef-fullscreen-sidebar .widget #wp-calendar {
text-align: center;
width: 100%;
}
.qodef-fullscreen-sidebar .widget #wp-calendar caption {
margin: 0 0 15px;
}
.qodef-fullscreen-sidebar .widget #wp-calendar th,
.qodef-fullscreen-sidebar .widget #wp-calendar td {
padding: 3px 4px;
}
.qodef-fullscreen-sidebar .widget #wp-calendar td#today {
color: #333333;
background-color: #999999;
}
.qodef-fullscreen-sidebar .widget #wp-calendar tfoot a {
color: #666666;
}
.qodef-fullscreen-sidebar .widget #wp-calendar tfoot a:hover {
color: #fe6c61;
}
.qodef-fullscreen-sidebar .widget.widget_rss .rss-widget-icon {
display: inline-block;
}
.qodef-fullscreen-sidebar .widget.widget_rss .rss-date {
display: block;
margin-bottom: 15px;
}
.qodef-fullscreen-sidebar .widget.widget_rss cite {
display: block;
margin-top: calc(15px / 2);
}
.qodef-fullscreen-sidebar .widget.widget_search .input-holder {
border-color: #cccccc;
border-style: solid;
border-width: 1px;
}
.qodef-fullscreen-sidebar .widget.widget_search .input-holder input,
.qodef-fullscreen-sidebar .widget.widget_search .input-holder button {
background-color: transparent;
border: 0;
border-radius: 0;
box-sizing: border-box;
color: #333333;
display: inline-block;
float: left;
font-family: "Poppins", sans-serif;
font-size: 15px;
font-weight: inherit;
height: 52px;
line-height: calc(52px - 2px);
outline: 0;
position: relative;
vertical-align: top;
-webkit-appearance: none;
-webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
}
.qodef-fullscreen-sidebar .widget.widget_search .input-holder input.search-field {
width: calc(100% - 52px);
padding: 0 0 0 21px;
}
.qodef-fullscreen-sidebar .widget.widget_search .input-holder input.search-field::-webkit-input-placeholder {
color: #333333;
}
.qodef-fullscreen-sidebar .widget.widget_search .input-holder input.search-field:-moz-placeholder {
color: #333333;
}
.qodef-fullscreen-sidebar .widget.widget_search .input-holder input.search-field::-moz-placeholder {
color: #333333;
}
.qodef-fullscreen-sidebar .widget.widget_search .input-holder input.search-field:-ms-input-placeholder {
color: #333333;
}
.qodef-fullscreen-sidebar .widget.widget_search .input-holder button {
background: #999999;
color: #333333;
cursor: pointer;
font-size: 18px;
width: 52px;
-webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
}
.qodef-fullscreen-sidebar .widget.widget_search .input-holder button:hover {
color: #fe6c61;
}
.qodef-fullscreen-sidebar .widget.widget_search .input-holder button span {
display: block;
left: 0;
line-height: inherit;
position: absolute;
top: 0;
width: 100%;
}
.qodef-fullscreen-sidebar .widget.widget_search .input-holder button span:before {
display: block;
line-height: inherit;
}
.qodef-fullscreen-sidebar .widget.qodef-search-post-type-widget .qodef-post-type-search-field {
border-radius: 3px;
border-color: #cccccc;
border-style: solid;
border-width: 1px;
background-color: transparent;
box-sizing: border-box;
color: #333333;
display: inline-block;
float: left;
font-family: "Poppins", sans-serif;
font-size: 12px;
font-weight: inherit;
height: 52px;
line-height: calc(52px - 2px);
outline: 0;
position: relative;
vertical-align: top;
-webkit-appearance: none;
padding: 0 25px 0 20px;
width: 100%; -webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
}
.qodef-fullscreen-sidebar .widget.qodef-search-post-type-widget .qodef-post-type-search-field::-webkit-input-placeholder {
color: #333333;
}
.qodef-fullscreen-sidebar .widget.qodef-search-post-type-widget .qodef-post-type-search-field:-moz-placeholder {
color: #333333;
}
.qodef-fullscreen-sidebar .widget.qodef-search-post-type-widget .qodef-post-type-search-field::-moz-placeholder {
color: #333333;
}
.qodef-fullscreen-sidebar .widget.qodef-search-post-type-widget .qodef-post-type-search-field:-ms-input-placeholder {
color: #333333;
}
.qodef-fullscreen-sidebar .widget.widget_archive select,
.qodef-fullscreen-sidebar .widget.widget_categories select,
.qodef-fullscreen-sidebar .widget.widget_text select {
background-color: transparent;
border-color: #cccccc;
border-style: solid;
border-width: 1px;
border-radius: 0;
box-sizing: border-box;
color: #333333;
display: inline-block;
font-family: "Poppins", sans-serif;
font-size: 15px;
font-weight: inherit;
height: 52px;
line-height: calc(52px - 2px);
margin-top: 15px;
outline: 0;
padding: 0 0 0 21px;
position: relative;
vertical-align: top;
width: 100%;
-webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
}
.qodef-fullscreen-sidebar .widget.widget_tag_cloud a {
border-radius: 2px;
color: #333333;
display: inline-block;
font-size: 11px !important;
font-family: "Poppins", sans-serif;
font-weight: inherit;
line-height: 30px;
text-transform: uppercase;
margin: 0 7px 7px 0;
padding: 0 19px;
}
.qodef-fullscreen-sidebar .widget.widget_tag_cloud a:hover {
color: #fe6c61;
}
.qodef-fullscreen-sidebar .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item {
margin: 0;
padding: 10px 0;
}
.qodef-fullscreen-sidebar .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item:first-child {
padding-top: 4px;
}
.qodef-fullscreen-sidebar .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a {
display: table;
width: 100%;
}
.qodef-fullscreen-sidebar .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a .qodef-rp-image,
.qodef-fullscreen-sidebar .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a .qodef-rp-title {
display: table-cell;
vertical-align: middle;
}
.qodef-fullscreen-sidebar .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a .qodef-rp-title {
-webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
font-weight: 400;
color: #b1b2b2;
line-height: 24px;
}
.qodef-fullscreen-sidebar .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a:hover .qodef-rp-title {
color: #fff;
text-decoration: underline;
}
.qodef-fullscreen-sidebar .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item .qodef-rp-date {
font-size: 11px;
font-family: "Oswald", sans-serif;
font-weight: 500;
letter-spacing: .05em;
text-transform: uppercase;
color: #fff;
margin-top: 10px;
display: block;
}
.qodef-fullscreen-sidebar .widget {
text-align: left;
}
.qodef-fullscreen-sidebar .widget .qodef-widget-title-holder {
margin-bottom: 21px;
}
.qodef-fullscreen-sidebar .widget .qodef-widget-title-holder .qodef-widget-title {
text-align: left;
}
.qodef-fullscreen-sidebar .widget.qodef-blog-list-widget .qodef-blog-list-holder .qodef-bli-content {
text-align: left;
}
.qodef-fullscreen-sidebar .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item {
background-color: #fff;
}
.qodef-page-header .qodef-menu-area { }
.qodef-page-header .qodef-menu-area .widget {
margin: 0 0 45px;
padding: 0;
background-color: transparent;
border: none;
}
.qodef-page-header .qodef-menu-area .widget .qodef-widget-title-holder {
margin-bottom: 15px;
}
.qodef-page-header .qodef-menu-area .widget .qodef-widget-title-holder .qodef-widget-title {
color: inherit;
margin-bottom: 3px;
text-transform: uppercase;
}
.qodef-page-header .qodef-menu-area .widget .qodef-widget-title-holder .qodef-separator {
border-color: inherit;
border-bottom-width: 3px;
width: 30px;
}
.qodef-page-header .qodef-menu-area .widget ul {
padding: 0;
margin: 0;
list-style: none;
}
.qodef-page-header .qodef-menu-area .widget ul li {
display: block;
line-height: 20px;
margin: 0;
padding: 15px 0;
border: none;
}
.qodef-page-header .qodef-menu-area .widget ul li:last-child {
border: 0;
padding-bottom: 0;
}
.qodef-page-header .qodef-menu-area .widget ul li a {
color: #363636;
}
.qodef-page-header .qodef-menu-area .widget ul li a:hover {
color: #3c3c3c;
}
.qodef-page-header .qodef-menu-area .widget ul .children,
.qodef-page-header .qodef-menu-area .widget ul .sub-menu {
border-top: 1px solid #ebebeb;
margin-top: 15px;
}
.qodef-page-header .qodef-menu-area .widget.widget_pages .qodef-widget-title,
.qodef-page-header .qodef-menu-area .widget.widget_archive .qodef-widget-title,
.qodef-page-header .qodef-menu-area .widget.widget_categories .qodef-widget-title,
.qodef-page-header .qodef-menu-area .widget.widget_meta .qodef-widget-title,
.qodef-page-header .qodef-menu-area .widget.widget_recent_entries .qodef-widget-title,
.qodef-page-header .qodef-menu-area .widget.widget_nav_menu .qodef-widget-title {
margin-bottom: 0;
}
.qodef-page-header .qodef-menu-area .widget.widget_pages ul li,
.qodef-page-header .qodef-menu-area .widget.widget_archive ul li,
.qodef-page-header .qodef-menu-area .widget.widget_categories ul li,
.qodef-page-header .qodef-menu-area .widget.widget_meta ul li,
.qodef-page-header .qodef-menu-area .widget.widget_recent_entries ul li,
.qodef-page-header .qodef-menu-area .widget.widget_nav_menu ul li {
overflow: hidden;
}
.qodef-page-header .qodef-menu-area .widget.widget_pages ul li a,
.qodef-page-header .qodef-menu-area .widget.widget_archive ul li a,
.qodef-page-header .qodef-menu-area .widget.widget_categories ul li a,
.qodef-page-header .qodef-menu-area .widget.widget_meta ul li a,
.qodef-page-header .qodef-menu-area .widget.widget_recent_entries ul li a,
.qodef-page-header .qodef-menu-area .widget.widget_nav_menu ul li a {
display: inline;
overflow: hidden;
padding: 0;
position: relative;
}
.qodef-page-header .qodef-menu-area .widget.widget_pages ul li a:after,
.qodef-page-header .qodef-menu-area .widget.widget_archive ul li a:after,
.qodef-page-header .qodef-menu-area .widget.widget_categories ul li a:after,
.qodef-page-header .qodef-menu-area .widget.widget_meta ul li a:after,
.qodef-page-header .qodef-menu-area .widget.widget_recent_entries ul li a:after,
.qodef-page-header .qodef-menu-area .widget.widget_nav_menu ul li a:after {
display: none;
padding: 0;
}
.qodef-page-header .qodef-menu-area .widget.widget_pages ul li a:hover,
.qodef-page-header .qodef-menu-area .widget.widget_archive ul li a:hover,
.qodef-page-header .qodef-menu-area .widget.widget_categories ul li a:hover,
.qodef-page-header .qodef-menu-area .widget.widget_meta ul li a:hover,
.qodef-page-header .qodef-menu-area .widget.widget_recent_entries ul li a:hover,
.qodef-page-header .qodef-menu-area .widget.widget_nav_menu ul li a:hover {
color: #3c3c3c;
}
.qodef-page-header .qodef-menu-area .widget.widget_recent_comments .qodef-widget-title,
.qodef-page-header .qodef-menu-area .widget.widget_rss .qodef-widget-title {
margin-bottom: 0;
}
.qodef-page-header .qodef-menu-area .widget #wp-calendar {
text-align: center;
width: 100%;
}
.qodef-page-header .qodef-menu-area .widget #wp-calendar caption {
margin: 0 0 15px;
}
.qodef-page-header .qodef-menu-area .widget #wp-calendar th,
.qodef-page-header .qodef-menu-area .widget #wp-calendar td {
padding: 3px 4px;
}
.qodef-page-header .qodef-menu-area .widget #wp-calendar td#today {
color: inherit;
background-color: #ffffff;
}
.qodef-page-header .qodef-menu-area .widget #wp-calendar tfoot a {
color: #363636;
}
.qodef-page-header .qodef-menu-area .widget #wp-calendar tfoot a:hover {
color: #3c3c3c;
}
.qodef-page-header .qodef-menu-area .widget.widget_rss .rss-widget-icon {
display: inline-block;
}
.qodef-page-header .qodef-menu-area .widget.widget_rss .rss-date {
display: block;
margin-bottom: 15px;
}
.qodef-page-header .qodef-menu-area .widget.widget_rss cite {
display: block;
margin-top: calc(15px / 2);
}
.qodef-page-header .qodef-menu-area .widget.widget_search .input-holder {
border-color: #ebebeb;
border-style: solid;
border-width: 1px;
}
.qodef-page-header .qodef-menu-area .widget.widget_search .input-holder input,
.qodef-page-header .qodef-menu-area .widget.widget_search .input-holder button {
background-color: transparent;
border: 0;
border-radius: 0;
box-sizing: border-box;
color: inherit;
display: inline-block;
float: left;
font-family: "Poppins", sans-serif;
font-size: 15px;
font-weight: inherit;
height: 52px;
line-height: calc(52px - 2px);
outline: 0;
position: relative;
vertical-align: top;
-webkit-appearance: none;
-webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
}
.qodef-page-header .qodef-menu-area .widget.widget_search .input-holder input.search-field {
width: calc(100% - 52px);
padding: 0 0 0 21px;
}
.qodef-page-header .qodef-menu-area .widget.widget_search .input-holder input.search-field::-webkit-input-placeholder {
color: inherit;
}
.qodef-page-header .qodef-menu-area .widget.widget_search .input-holder input.search-field:-moz-placeholder {
color: inherit;
}
.qodef-page-header .qodef-menu-area .widget.widget_search .input-holder input.search-field::-moz-placeholder {
color: inherit;
}
.qodef-page-header .qodef-menu-area .widget.widget_search .input-holder input.search-field:-ms-input-placeholder {
color: inherit;
}
.qodef-page-header .qodef-menu-area .widget.widget_search .input-holder button {
background: #ffffff;
color: inherit;
cursor: pointer;
font-size: 18px;
width: 52px;
-webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
}
.qodef-page-header .qodef-menu-area .widget.widget_search .input-holder button:hover {
color: #3c3c3c;
}
.qodef-page-header .qodef-menu-area .widget.widget_search .input-holder button span {
display: block;
left: 0;
line-height: inherit;
position: absolute;
top: 0;
width: 100%;
}
.qodef-page-header .qodef-menu-area .widget.widget_search .input-holder button span:before {
display: block;
line-height: inherit;
}
.qodef-page-header .qodef-menu-area .widget.qodef-search-post-type-widget .qodef-post-type-search-field {
border-radius: 3px;
border-color: #ebebeb;
border-style: solid;
border-width: 1px;
background-color: transparent;
box-sizing: border-box;
color: inherit;
display: inline-block;
float: left;
font-family: "Poppins", sans-serif;
font-size: 12px;
font-weight: inherit;
height: 52px;
line-height: calc(52px - 2px);
outline: 0;
position: relative;
vertical-align: top;
-webkit-appearance: none;
padding: 0 25px 0 20px;
width: 100%; -webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
}
.qodef-page-header .qodef-menu-area .widget.qodef-search-post-type-widget .qodef-post-type-search-field::-webkit-input-placeholder {
color: inherit;
}
.qodef-page-header .qodef-menu-area .widget.qodef-search-post-type-widget .qodef-post-type-search-field:-moz-placeholder {
color: inherit;
}
.qodef-page-header .qodef-menu-area .widget.qodef-search-post-type-widget .qodef-post-type-search-field::-moz-placeholder {
color: inherit;
}
.qodef-page-header .qodef-menu-area .widget.qodef-search-post-type-widget .qodef-post-type-search-field:-ms-input-placeholder {
color: inherit;
}
.qodef-page-header .qodef-menu-area .widget.widget_archive select,
.qodef-page-header .qodef-menu-area .widget.widget_categories select,
.qodef-page-header .qodef-menu-area .widget.widget_text select {
background-color: transparent;
border-color: #ebebeb;
border-style: solid;
border-width: 1px;
border-radius: 0;
box-sizing: border-box;
color: inherit;
display: inline-block;
font-family: "Poppins", sans-serif;
font-size: 15px;
font-weight: inherit;
height: 52px;
line-height: calc(52px - 2px);
margin-top: 15px;
outline: 0;
padding: 0 0 0 21px;
position: relative;
vertical-align: top;
width: 100%;
-webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
}
.qodef-page-header .qodef-menu-area .widget.widget_tag_cloud a {
border-radius: 2px;
color: inherit;
display: inline-block;
font-size: 11px !important;
font-family: "Poppins", sans-serif;
font-weight: inherit;
line-height: 30px;
text-transform: uppercase;
margin: 0 7px 7px 0;
padding: 0 19px;
}
.qodef-page-header .qodef-menu-area .widget.widget_tag_cloud a:hover {
color: #3c3c3c;
}
.qodef-page-header .qodef-menu-area .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item {
margin: 0;
padding: 10px 0;
}
.qodef-page-header .qodef-menu-area .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item:first-child {
padding-top: 4px;
}
.qodef-page-header .qodef-menu-area .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a {
display: table;
width: 100%;
}
.qodef-page-header .qodef-menu-area .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a .qodef-rp-image,
.qodef-page-header .qodef-menu-area .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a .qodef-rp-title {
display: table-cell;
vertical-align: middle;
}
.qodef-page-header .qodef-menu-area .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a .qodef-rp-title {
-webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
font-weight: 400;
color: #b1b2b2;
line-height: 24px;
}
.qodef-page-header .qodef-menu-area .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a:hover .qodef-rp-title {
color: #fff;
text-decoration: underline;
}
.qodef-page-header .qodef-menu-area .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item .qodef-rp-date {
font-size: 11px;
font-family: "Oswald", sans-serif;
font-weight: 500;
letter-spacing: .05em;
text-transform: uppercase;
color: #fff;
margin-top: 10px;
display: block;
}
.qodef-page-header .qodef-menu-area .widget {
font-family: "Oswald", sans-serif;
font-weight: 700;
}
.qodef-page-header .qodef-menu-area .widget .widgettitle {
display: none;
}
.qodef-page-header .qodef-menu-area .widget ul {
line-height: 1em;
}
.qodef-page-header .qodef-menu-area .widget ul li {
display: inline-block;
}
.qodef-page-header .qodef-menu-area .widget ul li:last-child {
padding: 15px 0;
}
.qodef-page-header .qodef-menu-area .widget ul li a {
margin: 0 19px;
}
.qodef-page-header .qodef-menu-area .widget.widget_nav_menu ul li a:before,
.qodef-page-header .qodef-menu-area .widget.widget_nav_menu ul li a:after {
content: "";
position: absolute;
bottom: -2px;
right: 0;
left: auto;
width: 0;
height: 2px;
}
.qodef-page-header .qodef-menu-area .widget.widget_nav_menu ul li a:before {
background-color: #363636;
-webkit-transition: all 0.25s ease-in-out;
-moz-transition: all 0.25s ease-in-out;
transition: all 0.25s ease-in-out;
}
.qodef-page-header .qodef-menu-area .widget.widget_nav_menu ul li a:after {
background-color: #363636;
-webkit-transition: all 0.25s ease-in-out;
-moz-transition: all 0.25s ease-in-out;
transition: all 0.25s ease-in-out;
}
.qodef-page-header .qodef-menu-area .widget.widget_nav_menu ul li a:hover:before,
.qodef-page-header .qodef-menu-area .widget.widget_nav_menu ul li a:hover:after {
width: 100%;
left: 0;
}
.qodef-page-header .qodef-menu-area .widget.widget_archive,
.qodef-page-header .qodef-menu-area .widget.widget_calendar,
.qodef-page-header .qodef-menu-area .widget.widget_categories,
.qodef-page-header .qodef-menu-area .widget.widget_pages,
.qodef-page-header .qodef-menu-area .widget.widget_meta,
.qodef-page-header .qodef-menu-area .widget.widget_recent_comments,
.qodef-page-header .qodef-menu-area .widget.widget_recent_entries,
.qodef-page-header .qodef-menu-area .widget.widget_rss,
.qodef-page-header .qodef-menu-area .widget.widget_search,
.qodef-page-header .qodef-menu-area .widget.widget_tag_cloud {
display: none;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area { }
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget {
margin: 0 0 45px;
padding: 0;
background-color: transparent;
border: none;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget .qodef-widget-title-holder {
margin-bottom: 15px;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget .qodef-widget-title-holder .qodef-widget-title {
color: inherit;
margin-bottom: 3px;
text-transform: uppercase;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget .qodef-widget-title-holder .qodef-separator {
border-color: inherit;
border-bottom-width: 3px;
width: 30px;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget ul {
padding: 0;
margin: 0;
list-style: none;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget ul li {
display: block;
line-height: 20px;
margin: 0;
padding: 15px 0;
border: none;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget ul li:last-child {
border: 0;
padding-bottom: 0;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget ul li a {
color: #363636;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget ul li a:hover {
color: #3c3c3c;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget ul .children,
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget ul .sub-menu {
border-top: 1px solid #ebebeb;
margin-top: 15px;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_pages .qodef-widget-title,
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_archive .qodef-widget-title,
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_categories .qodef-widget-title,
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_meta .qodef-widget-title,
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_recent_entries .qodef-widget-title,
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_nav_menu .qodef-widget-title {
margin-bottom: 0;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_pages ul li,
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_archive ul li,
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_categories ul li,
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_meta ul li,
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_recent_entries ul li,
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_nav_menu ul li {
overflow: hidden;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_pages ul li a,
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_archive ul li a,
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_categories ul li a,
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_meta ul li a,
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_recent_entries ul li a,
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_nav_menu ul li a {
display: inline;
overflow: hidden;
padding: 0;
position: relative;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_pages ul li a:after,
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_archive ul li a:after,
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_categories ul li a:after,
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_meta ul li a:after,
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_recent_entries ul li a:after,
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_nav_menu ul li a:after {
display: none;
padding: 0;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_pages ul li a:hover,
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_archive ul li a:hover,
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_categories ul li a:hover,
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_meta ul li a:hover,
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_recent_entries ul li a:hover,
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_nav_menu ul li a:hover {
color: #3c3c3c;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_recent_comments .qodef-widget-title,
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_rss .qodef-widget-title {
margin-bottom: 0;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget #wp-calendar {
text-align: center;
width: 100%;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget #wp-calendar caption {
margin: 0 0 15px;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget #wp-calendar th,
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget #wp-calendar td {
padding: 3px 4px;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget #wp-calendar td#today {
color: inherit;
background-color: #ffffff;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget #wp-calendar tfoot a {
color: #363636;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget #wp-calendar tfoot a:hover {
color: #3c3c3c;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_rss .rss-widget-icon {
display: inline-block;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_rss .rss-date {
display: block;
margin-bottom: 15px;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_rss cite {
display: block;
margin-top: calc(15px / 2);
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_search .input-holder {
border-color: #ebebeb;
border-style: solid;
border-width: 1px;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_search .input-holder input,
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_search .input-holder button {
background-color: transparent;
border: 0;
border-radius: 0;
box-sizing: border-box;
color: inherit;
display: inline-block;
float: left;
font-family: "Poppins", sans-serif;
font-size: 15px;
font-weight: inherit;
height: 52px;
line-height: calc(52px - 2px);
outline: 0;
position: relative;
vertical-align: top;
-webkit-appearance: none;
-webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_search .input-holder input.search-field {
width: calc(100% - 52px);
padding: 0 0 0 21px;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_search .input-holder input.search-field::-webkit-input-placeholder {
color: inherit;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_search .input-holder input.search-field:-moz-placeholder {
color: inherit;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_search .input-holder input.search-field::-moz-placeholder {
color: inherit;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_search .input-holder input.search-field:-ms-input-placeholder {
color: inherit;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_search .input-holder button {
background: #ffffff;
color: inherit;
cursor: pointer;
font-size: 18px;
width: 52px;
-webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_search .input-holder button:hover {
color: #3c3c3c;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_search .input-holder button span {
display: block;
left: 0;
line-height: inherit;
position: absolute;
top: 0;
width: 100%;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_search .input-holder button span:before {
display: block;
line-height: inherit;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.qodef-search-post-type-widget .qodef-post-type-search-field {
border-radius: 3px;
border-color: #ebebeb;
border-style: solid;
border-width: 1px;
background-color: transparent;
box-sizing: border-box;
color: inherit;
display: inline-block;
float: left;
font-family: "Poppins", sans-serif;
font-size: 12px;
font-weight: inherit;
height: 52px;
line-height: calc(52px - 2px);
outline: 0;
position: relative;
vertical-align: top;
-webkit-appearance: none;
padding: 0 25px 0 20px;
width: 100%; -webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.qodef-search-post-type-widget .qodef-post-type-search-field::-webkit-input-placeholder {
color: inherit;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.qodef-search-post-type-widget .qodef-post-type-search-field:-moz-placeholder {
color: inherit;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.qodef-search-post-type-widget .qodef-post-type-search-field::-moz-placeholder {
color: inherit;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.qodef-search-post-type-widget .qodef-post-type-search-field:-ms-input-placeholder {
color: inherit;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_archive select,
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_categories select,
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_text select {
background-color: transparent;
border-color: #ebebeb;
border-style: solid;
border-width: 1px;
border-radius: 0;
box-sizing: border-box;
color: inherit;
display: inline-block;
font-family: "Poppins", sans-serif;
font-size: 15px;
font-weight: inherit;
height: 52px;
line-height: calc(52px - 2px);
margin-top: 15px;
outline: 0;
padding: 0 0 0 21px;
position: relative;
vertical-align: top;
width: 100%;
-webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_tag_cloud a {
border-radius: 2px;
color: inherit;
display: inline-block;
font-size: 11px !important;
font-family: "Poppins", sans-serif;
font-weight: inherit;
line-height: 30px;
text-transform: uppercase;
margin: 0 7px 7px 0;
padding: 0 19px;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.widget_tag_cloud a:hover {
color: #3c3c3c;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item {
margin: 0;
padding: 10px 0;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item:first-child {
padding-top: 4px;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a {
display: table;
width: 100%;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a .qodef-rp-image,
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a .qodef-rp-title {
display: table-cell;
vertical-align: middle;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a .qodef-rp-title {
-webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
font-weight: 400;
color: #b1b2b2;
line-height: 24px;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a:hover .qodef-rp-title {
color: #fff;
text-decoration: underline;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item .qodef-rp-date {
font-size: 11px;
font-family: "Oswald", sans-serif;
font-weight: 500;
letter-spacing: .05em;
text-transform: uppercase;
color: #fff;
margin-top: 10px;
display: block;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .widget {
margin: 0;
line-height: 1;
}
.qodef-header-widget-above-menu-area.widget {
margin-bottom: 0;
}
.qodef-side-menu { }
.qodef-side-menu .widget {
margin: 0 0 45px;
padding: 0;
background-color: transparent;
border: none;
}
.qodef-side-menu .widget .qodef-widget-title-holder {
margin-bottom: 15px;
}
.qodef-side-menu .widget .qodef-widget-title-holder .qodef-widget-title {
color: #999999;
margin-bottom: 3px;
text-transform: uppercase;
}
.qodef-side-menu .widget .qodef-widget-title-holder .qodef-separator {
border-color: #333333;
border-bottom-width: 3px;
width: 30px;
}
.qodef-side-menu .widget ul {
padding: 0;
margin: 0;
list-style: none;
}
.qodef-side-menu .widget ul li {
display: block;
line-height: 20px;
margin: 0;
padding: 15px 0;
border: none;
}
.qodef-side-menu .widget ul li:last-child {
border: 0;
padding-bottom: 0;
}
.qodef-side-menu .widget ul li a {
color: #666666;
}
.qodef-side-menu .widget ul li a:hover {
color: rgba(255, 255, 255, 0.8);
}
.qodef-side-menu .widget ul .children,
.qodef-side-menu .widget ul .sub-menu {
border-top: 1px solid #cccccc;
margin-top: 15px;
}
.qodef-side-menu .widget.widget_pages .qodef-widget-title,
.qodef-side-menu .widget.widget_archive .qodef-widget-title,
.qodef-side-menu .widget.widget_categories .qodef-widget-title,
.qodef-side-menu .widget.widget_meta .qodef-widget-title,
.qodef-side-menu .widget.widget_recent_entries .qodef-widget-title,
.qodef-side-menu .widget.widget_nav_menu .qodef-widget-title {
margin-bottom: 0;
}
.qodef-side-menu .widget.widget_pages ul li,
.qodef-side-menu .widget.widget_archive ul li,
.qodef-side-menu .widget.widget_categories ul li,
.qodef-side-menu .widget.widget_meta ul li,
.qodef-side-menu .widget.widget_recent_entries ul li,
.qodef-side-menu .widget.widget_nav_menu ul li {
overflow: hidden;
}
.qodef-side-menu .widget.widget_pages ul li a,
.qodef-side-menu .widget.widget_archive ul li a,
.qodef-side-menu .widget.widget_categories ul li a,
.qodef-side-menu .widget.widget_meta ul li a,
.qodef-side-menu .widget.widget_recent_entries ul li a,
.qodef-side-menu .widget.widget_nav_menu ul li a {
display: inline;
overflow: hidden;
padding: 0;
position: relative;
}
.qodef-side-menu .widget.widget_pages ul li a:after,
.qodef-side-menu .widget.widget_archive ul li a:after,
.qodef-side-menu .widget.widget_categories ul li a:after,
.qodef-side-menu .widget.widget_meta ul li a:after,
.qodef-side-menu .widget.widget_recent_entries ul li a:after,
.qodef-side-menu .widget.widget_nav_menu ul li a:after {
display: none;
padding: 0;
}
.qodef-side-menu .widget.widget_pages ul li a:hover,
.qodef-side-menu .widget.widget_archive ul li a:hover,
.qodef-side-menu .widget.widget_categories ul li a:hover,
.qodef-side-menu .widget.widget_meta ul li a:hover,
.qodef-side-menu .widget.widget_recent_entries ul li a:hover,
.qodef-side-menu .widget.widget_nav_menu ul li a:hover {
color: rgba(255, 255, 255, 0.8);
}
.qodef-side-menu .widget.widget_recent_comments .qodef-widget-title,
.qodef-side-menu .widget.widget_rss .qodef-widget-title {
margin-bottom: 0;
}
.qodef-side-menu .widget #wp-calendar {
text-align: center;
width: 100%;
}
.qodef-side-menu .widget #wp-calendar caption {
margin: 0 0 15px;
}
.qodef-side-menu .widget #wp-calendar th,
.qodef-side-menu .widget #wp-calendar td {
padding: 3px 4px;
}
.qodef-side-menu .widget #wp-calendar td#today {
color: #333333;
background-color: #999999;
}
.qodef-side-menu .widget #wp-calendar tfoot a {
color: #666666;
}
.qodef-side-menu .widget #wp-calendar tfoot a:hover {
color: rgba(255, 255, 255, 0.8);
}
.qodef-side-menu .widget.widget_rss .rss-widget-icon {
display: inline-block;
}
.qodef-side-menu .widget.widget_rss .rss-date {
display: block;
margin-bottom: 15px;
}
.qodef-side-menu .widget.widget_rss cite {
display: block;
margin-top: calc(15px / 2);
}
.qodef-side-menu .widget.widget_search .input-holder {
border-color: #cccccc;
border-style: solid;
border-width: 1px;
}
.qodef-side-menu .widget.widget_search .input-holder input,
.qodef-side-menu .widget.widget_search .input-holder button {
background-color: transparent;
border: 0;
border-radius: 0;
box-sizing: border-box;
color: #333333;
display: inline-block;
float: left;
font-family: "Poppins", sans-serif;
font-size: 15px;
font-weight: inherit;
height: 52px;
line-height: calc(52px - 2px);
outline: 0;
position: relative;
vertical-align: top;
-webkit-appearance: none;
-webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
}
.qodef-side-menu .widget.widget_search .input-holder input.search-field {
width: calc(100% - 52px);
padding: 0 0 0 21px;
}
.qodef-side-menu .widget.widget_search .input-holder input.search-field::-webkit-input-placeholder {
color: #333333;
}
.qodef-side-menu .widget.widget_search .input-holder input.search-field:-moz-placeholder {
color: #333333;
}
.qodef-side-menu .widget.widget_search .input-holder input.search-field::-moz-placeholder {
color: #333333;
}
.qodef-side-menu .widget.widget_search .input-holder input.search-field:-ms-input-placeholder {
color: #333333;
}
.qodef-side-menu .widget.widget_search .input-holder button {
background: #999999;
color: #333333;
cursor: pointer;
font-size: 18px;
width: 52px;
-webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
}
.qodef-side-menu .widget.widget_search .input-holder button:hover {
color: rgba(255, 255, 255, 0.8);
}
.qodef-side-menu .widget.widget_search .input-holder button span {
display: block;
left: 0;
line-height: inherit;
position: absolute;
top: 0;
width: 100%;
}
.qodef-side-menu .widget.widget_search .input-holder button span:before {
display: block;
line-height: inherit;
}
.qodef-side-menu .widget.qodef-search-post-type-widget .qodef-post-type-search-field {
border-radius: 3px;
border-color: #cccccc;
border-style: solid;
border-width: 1px;
background-color: transparent;
box-sizing: border-box;
color: #333333;
display: inline-block;
float: left;
font-family: "Poppins", sans-serif;
font-size: 12px;
font-weight: inherit;
height: 52px;
line-height: calc(52px - 2px);
outline: 0;
position: relative;
vertical-align: top;
-webkit-appearance: none;
padding: 0 25px 0 20px;
width: 100%; -webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
}
.qodef-side-menu .widget.qodef-search-post-type-widget .qodef-post-type-search-field::-webkit-input-placeholder {
color: #333333;
}
.qodef-side-menu .widget.qodef-search-post-type-widget .qodef-post-type-search-field:-moz-placeholder {
color: #333333;
}
.qodef-side-menu .widget.qodef-search-post-type-widget .qodef-post-type-search-field::-moz-placeholder {
color: #333333;
}
.qodef-side-menu .widget.qodef-search-post-type-widget .qodef-post-type-search-field:-ms-input-placeholder {
color: #333333;
}
.qodef-side-menu .widget.widget_archive select,
.qodef-side-menu .widget.widget_categories select,
.qodef-side-menu .widget.widget_text select {
background-color: transparent;
border-color: #cccccc;
border-style: solid;
border-width: 1px;
border-radius: 0;
box-sizing: border-box;
color: #333333;
display: inline-block;
font-family: "Poppins", sans-serif;
font-size: 15px;
font-weight: inherit;
height: 52px;
line-height: calc(52px - 2px);
margin-top: 15px;
outline: 0;
padding: 0 0 0 21px;
position: relative;
vertical-align: top;
width: 100%;
-webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
}
.qodef-side-menu .widget.widget_tag_cloud a {
border-radius: 2px;
color: #333333;
display: inline-block;
font-size: 11px !important;
font-family: "Poppins", sans-serif;
font-weight: inherit;
line-height: 30px;
text-transform: uppercase;
margin: 0 7px 7px 0;
padding: 0 19px;
}
.qodef-side-menu .widget.widget_tag_cloud a:hover {
color: rgba(255, 255, 255, 0.8);
}
.qodef-side-menu .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item {
margin: 0;
padding: 10px 0;
}
.qodef-side-menu .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item:first-child {
padding-top: 4px;
}
.qodef-side-menu .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a {
display: table;
width: 100%;
}
.qodef-side-menu .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a .qodef-rp-image,
.qodef-side-menu .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a .qodef-rp-title {
display: table-cell;
vertical-align: middle;
}
.qodef-side-menu .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a .qodef-rp-title {
-webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
font-weight: 400;
color: #b1b2b2;
line-height: 24px;
}
.qodef-side-menu .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a:hover .qodef-rp-title {
color: #fff;
text-decoration: underline;
}
.qodef-side-menu .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item .qodef-rp-date {
font-size: 11px;
font-family: "Oswald", sans-serif;
font-weight: 500;
letter-spacing: .05em;
text-transform: uppercase;
color: #fff;
margin-top: 10px;
display: block;
}
.qodef-side-menu .widget a:hover {
color: rgba(255, 255, 255, 0.8) !important;
}
aside.qodef-sidebar {
position: relative;
z-index: 11;
margin: 0 0 60px;
}
aside.qodef-sidebar .widget {
color: #959595;
}
aside.qodef-sidebar .widget:last-child {
margin: 0 !important;
}
.wpb_widgetised_column {
position: relative;
}
.wpb_widgetised_column .widget .qodef-sidearea-widget-title {
margin: 0 0 19px;
}
.wpb_widgetised_column .widget:last-child {
margin: 0 !important;
}
aside.qodef-sidebar,
.wpb_widgetised_column { }
aside.qodef-sidebar .widget,
.wpb_widgetised_column .widget {
margin: 0 0 25px;
padding: 0;
background-color: #fff;
border: none;
}
aside.qodef-sidebar .widget .qodef-widget-title-holder,
.wpb_widgetised_column .widget .qodef-widget-title-holder {
margin-bottom: 8px;
}
aside.qodef-sidebar .widget .qodef-widget-title-holder .qodef-widget-title,
.wpb_widgetised_column .widget .qodef-widget-title-holder .qodef-widget-title {
color: #000;
margin-bottom: 17px;
text-transform: uppercase;
}
aside.qodef-sidebar .widget .qodef-widget-title-holder .qodef-separator,
.wpb_widgetised_column .widget .qodef-widget-title-holder .qodef-separator {
border-color: inherit;
border-bottom-width: 3px;
width: 30px;
}
aside.qodef-sidebar .widget ul,
.wpb_widgetised_column .widget ul {
padding: 0;
margin: 0;
list-style: none;
}
aside.qodef-sidebar .widget ul li,
.wpb_widgetised_column .widget ul li {
display: block;
line-height: 20px;
margin: 0;
padding: 8px 0;
border: none;
}
aside.qodef-sidebar .widget ul li:last-child,
.wpb_widgetised_column .widget ul li:last-child {
border: 0;
padding-bottom: 0;
}
aside.qodef-sidebar .widget ul li a,
.wpb_widgetised_column .widget ul li a {
color: #fe6c61;
}
aside.qodef-sidebar .widget ul li a:hover,
.wpb_widgetised_column .widget ul li a:hover {
color: #3c3c3c;
}
aside.qodef-sidebar .widget ul .children,
aside.qodef-sidebar .widget ul .sub-menu,
.wpb_widgetised_column .widget ul .children,
.wpb_widgetised_column .widget ul .sub-menu {
border-top: 1px solid #ebebeb;
margin-top: 8px;
}
aside.qodef-sidebar .widget.widget_pages .qodef-widget-title,
aside.qodef-sidebar .widget.widget_archive .qodef-widget-title,
aside.qodef-sidebar .widget.widget_categories .qodef-widget-title,
aside.qodef-sidebar .widget.widget_meta .qodef-widget-title,
aside.qodef-sidebar .widget.widget_recent_entries .qodef-widget-title,
aside.qodef-sidebar .widget.widget_nav_menu .qodef-widget-title,
.wpb_widgetised_column .widget.widget_pages .qodef-widget-title,
.wpb_widgetised_column .widget.widget_archive .qodef-widget-title,
.wpb_widgetised_column .widget.widget_categories .qodef-widget-title,
.wpb_widgetised_column .widget.widget_meta .qodef-widget-title,
.wpb_widgetised_column .widget.widget_recent_entries .qodef-widget-title,
.wpb_widgetised_column .widget.widget_nav_menu .qodef-widget-title {
margin-bottom: 0;
}
aside.qodef-sidebar .widget.widget_pages ul li,
aside.qodef-sidebar .widget.widget_archive ul li,
aside.qodef-sidebar .widget.widget_categories ul li,
aside.qodef-sidebar .widget.widget_meta ul li,
aside.qodef-sidebar .widget.widget_recent_entries ul li,
aside.qodef-sidebar .widget.widget_nav_menu ul li,
.wpb_widgetised_column .widget.widget_pages ul li,
.wpb_widgetised_column .widget.widget_archive ul li,
.wpb_widgetised_column .widget.widget_categories ul li,
.wpb_widgetised_column .widget.widget_meta ul li,
.wpb_widgetised_column .widget.widget_recent_entries ul li,
.wpb_widgetised_column .widget.widget_nav_menu ul li {
overflow: hidden;
}
aside.qodef-sidebar .widget.widget_pages ul li a,
aside.qodef-sidebar .widget.widget_archive ul li a,
aside.qodef-sidebar .widget.widget_categories ul li a,
aside.qodef-sidebar .widget.widget_meta ul li a,
aside.qodef-sidebar .widget.widget_recent_entries ul li a,
aside.qodef-sidebar .widget.widget_nav_menu ul li a,
.wpb_widgetised_column .widget.widget_pages ul li a,
.wpb_widgetised_column .widget.widget_archive ul li a,
.wpb_widgetised_column .widget.widget_categories ul li a,
.wpb_widgetised_column .widget.widget_meta ul li a,
.wpb_widgetised_column .widget.widget_recent_entries ul li a,
.wpb_widgetised_column .widget.widget_nav_menu ul li a {
display: inline;
overflow: hidden;
padding: 0;
position: relative;
}
aside.qodef-sidebar .widget.widget_pages ul li a:after,
aside.qodef-sidebar .widget.widget_archive ul li a:after,
aside.qodef-sidebar .widget.widget_categories ul li a:after,
aside.qodef-sidebar .widget.widget_meta ul li a:after,
aside.qodef-sidebar .widget.widget_recent_entries ul li a:after,
aside.qodef-sidebar .widget.widget_nav_menu ul li a:after,
.wpb_widgetised_column .widget.widget_pages ul li a:after,
.wpb_widgetised_column .widget.widget_archive ul li a:after,
.wpb_widgetised_column .widget.widget_categories ul li a:after,
.wpb_widgetised_column .widget.widget_meta ul li a:after,
.wpb_widgetised_column .widget.widget_recent_entries ul li a:after,
.wpb_widgetised_column .widget.widget_nav_menu ul li a:after {
display: none;
padding: 0;
}
aside.qodef-sidebar .widget.widget_pages ul li a:hover,
aside.qodef-sidebar .widget.widget_archive ul li a:hover,
aside.qodef-sidebar .widget.widget_categories ul li a:hover,
aside.qodef-sidebar .widget.widget_meta ul li a:hover,
aside.qodef-sidebar .widget.widget_recent_entries ul li a:hover,
aside.qodef-sidebar .widget.widget_nav_menu ul li a:hover,
.wpb_widgetised_column .widget.widget_pages ul li a:hover,
.wpb_widgetised_column .widget.widget_archive ul li a:hover,
.wpb_widgetised_column .widget.widget_categories ul li a:hover,
.wpb_widgetised_column .widget.widget_meta ul li a:hover,
.wpb_widgetised_column .widget.widget_recent_entries ul li a:hover,
.wpb_widgetised_column .widget.widget_nav_menu ul li a:hover {
color: #3c3c3c;
}
aside.qodef-sidebar .widget.widget_recent_comments .qodef-widget-title,
aside.qodef-sidebar .widget.widget_rss .qodef-widget-title,
.wpb_widgetised_column .widget.widget_recent_comments .qodef-widget-title,
.wpb_widgetised_column .widget.widget_rss .qodef-widget-title {
margin-bottom: 0;
}
aside.qodef-sidebar .widget #wp-calendar,
.wpb_widgetised_column .widget #wp-calendar {
text-align: center;
width: 100%;
}
aside.qodef-sidebar .widget #wp-calendar caption,
.wpb_widgetised_column .widget #wp-calendar caption {
margin: 0 0 8px;
}
aside.qodef-sidebar .widget #wp-calendar th,
aside.qodef-sidebar .widget #wp-calendar td,
.wpb_widgetised_column .widget #wp-calendar th,
.wpb_widgetised_column .widget #wp-calendar td {
padding: 3px 4px;
}
aside.qodef-sidebar .widget #wp-calendar td#today,
.wpb_widgetised_column .widget #wp-calendar td#today {
color: inherit;
background-color: #ffffff;
}
aside.qodef-sidebar .widget #wp-calendar tfoot a,
.wpb_widgetised_column .widget #wp-calendar tfoot a {
color: #fe6c61;
}
aside.qodef-sidebar .widget #wp-calendar tfoot a:hover,
.wpb_widgetised_column .widget #wp-calendar tfoot a:hover {
color: #3c3c3c;
}
aside.qodef-sidebar .widget.widget_rss .rss-widget-icon,
.wpb_widgetised_column .widget.widget_rss .rss-widget-icon {
display: inline-block;
}
aside.qodef-sidebar .widget.widget_rss .rss-date,
.wpb_widgetised_column .widget.widget_rss .rss-date {
display: block;
margin-bottom: 8px;
}
aside.qodef-sidebar .widget.widget_rss cite,
.wpb_widgetised_column .widget.widget_rss cite {
display: block;
margin-top: calc(8px / 2);
}
aside.qodef-sidebar .widget.widget_search .input-holder,
.wpb_widgetised_column .widget.widget_search .input-holder {
border-color: #ebebeb;
border-style: solid;
border-width: 1px;
}
aside.qodef-sidebar .widget.widget_search .input-holder input,
aside.qodef-sidebar .widget.widget_search .input-holder button,
.wpb_widgetised_column .widget.widget_search .input-holder input,
.wpb_widgetised_column .widget.widget_search .input-holder button {
background-color: transparent;
border: 0;
border-radius: 0;
box-sizing: border-box;
color: inherit;
display: inline-block;
float: left;
font-family: "Poppins", sans-serif;
font-size: 15px;
font-weight: inherit;
height: 52px;
line-height: calc(52px - 2px);
outline: 0;
position: relative;
vertical-align: top;
-webkit-appearance: none;
-webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
}
aside.qodef-sidebar .widget.widget_search .input-holder input.search-field,
.wpb_widgetised_column .widget.widget_search .input-holder input.search-field {
width: calc(100% - 52px);
padding: 0 0 0 21px;
}
aside.qodef-sidebar .widget.widget_search .input-holder input.search-field::-webkit-input-placeholder,
.wpb_widgetised_column .widget.widget_search .input-holder input.search-field::-webkit-input-placeholder {
color: inherit;
}
aside.qodef-sidebar .widget.widget_search .input-holder input.search-field:-moz-placeholder,
.wpb_widgetised_column .widget.widget_search .input-holder input.search-field:-moz-placeholder {
color: inherit;
}
aside.qodef-sidebar .widget.widget_search .input-holder input.search-field::-moz-placeholder,
.wpb_widgetised_column .widget.widget_search .input-holder input.search-field::-moz-placeholder {
color: inherit;
}
aside.qodef-sidebar .widget.widget_search .input-holder input.search-field:-ms-input-placeholder,
.wpb_widgetised_column .widget.widget_search .input-holder input.search-field:-ms-input-placeholder {
color: inherit;
}
aside.qodef-sidebar .widget.widget_search .input-holder button,
.wpb_widgetised_column .widget.widget_search .input-holder button {
background: #ffffff;
color: inherit;
cursor: pointer;
font-size: 18px;
width: 52px;
-webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
}
aside.qodef-sidebar .widget.widget_search .input-holder button:hover,
.wpb_widgetised_column .widget.widget_search .input-holder button:hover {
color: #3c3c3c;
}
aside.qodef-sidebar .widget.widget_search .input-holder button span,
.wpb_widgetised_column .widget.widget_search .input-holder button span {
display: block;
left: 0;
line-height: inherit;
position: absolute;
top: 0;
width: 100%;
}
aside.qodef-sidebar .widget.widget_search .input-holder button span:before,
.wpb_widgetised_column .widget.widget_search .input-holder button span:before {
display: block;
line-height: inherit;
}
aside.qodef-sidebar .widget.qodef-search-post-type-widget .qodef-post-type-search-field,
.wpb_widgetised_column .widget.qodef-search-post-type-widget .qodef-post-type-search-field {
border-radius: 3px;
border-color: #ebebeb;
border-style: solid;
border-width: 1px;
background-color: transparent;
box-sizing: border-box;
color: inherit;
display: inline-block;
float: left;
font-family: "Poppins", sans-serif;
font-size: 12px;
font-weight: inherit;
height: 52px;
line-height: calc(52px - 2px);
outline: 0;
position: relative;
vertical-align: top;
-webkit-appearance: none;
padding: 0 25px 0 20px;
width: 100%; -webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
}
aside.qodef-sidebar .widget.qodef-search-post-type-widget .qodef-post-type-search-field::-webkit-input-placeholder,
.wpb_widgetised_column .widget.qodef-search-post-type-widget .qodef-post-type-search-field::-webkit-input-placeholder {
color: inherit;
}
aside.qodef-sidebar .widget.qodef-search-post-type-widget .qodef-post-type-search-field:-moz-placeholder,
.wpb_widgetised_column .widget.qodef-search-post-type-widget .qodef-post-type-search-field:-moz-placeholder {
color: inherit;
}
aside.qodef-sidebar .widget.qodef-search-post-type-widget .qodef-post-type-search-field::-moz-placeholder,
.wpb_widgetised_column .widget.qodef-search-post-type-widget .qodef-post-type-search-field::-moz-placeholder {
color: inherit;
}
aside.qodef-sidebar .widget.qodef-search-post-type-widget .qodef-post-type-search-field:-ms-input-placeholder,
.wpb_widgetised_column .widget.qodef-search-post-type-widget .qodef-post-type-search-field:-ms-input-placeholder {
color: inherit;
}
aside.qodef-sidebar .widget.widget_archive select,
aside.qodef-sidebar .widget.widget_categories select,
aside.qodef-sidebar .widget.widget_text select,
.wpb_widgetised_column .widget.widget_archive select,
.wpb_widgetised_column .widget.widget_categories select,
.wpb_widgetised_column .widget.widget_text select {
background-color: transparent;
border-color: #ebebeb;
border-style: solid;
border-width: 1px;
border-radius: 0;
box-sizing: border-box;
color: inherit;
display: inline-block;
font-family: "Poppins", sans-serif;
font-size: 15px;
font-weight: inherit;
height: 52px;
line-height: calc(52px - 2px);
margin-top: 8px;
outline: 0;
padding: 0 0 0 21px;
position: relative;
vertical-align: top;
width: 100%;
-webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
}
aside.qodef-sidebar .widget.widget_tag_cloud a,
.wpb_widgetised_column .widget.widget_tag_cloud a {
border-radius: 2px;
color: inherit;
display: inline-block;
font-size: 11px !important;
font-family: "Poppins", sans-serif;
font-weight: inherit;
line-height: 30px;
text-transform: uppercase;
margin: 0 7px 7px 0;
padding: 0 19px;
}
aside.qodef-sidebar .widget.widget_tag_cloud a:hover,
.wpb_widgetised_column .widget.widget_tag_cloud a:hover {
color: #3c3c3c;
}
aside.qodef-sidebar .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item,
.wpb_widgetised_column .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item {
margin: 0;
padding: 10px 0;
}
aside.qodef-sidebar .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item:first-child,
.wpb_widgetised_column .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item:first-child {
padding-top: 4px;
}
aside.qodef-sidebar .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a,
.wpb_widgetised_column .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a {
display: table;
width: 100%;
}
aside.qodef-sidebar .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a .qodef-rp-image,
aside.qodef-sidebar .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a .qodef-rp-title,
.wpb_widgetised_column .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a .qodef-rp-image,
.wpb_widgetised_column .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a .qodef-rp-title {
display: table-cell;
vertical-align: middle;
}
aside.qodef-sidebar .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a .qodef-rp-title,
.wpb_widgetised_column .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a .qodef-rp-title {
-webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
font-weight: 400;
color: #b1b2b2;
line-height: 24px;
}
aside.qodef-sidebar .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a:hover .qodef-rp-title,
.wpb_widgetised_column .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a:hover .qodef-rp-title {
color: #fff;
text-decoration: underline;
}
aside.qodef-sidebar .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item .qodef-rp-date,
.wpb_widgetised_column .widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item .qodef-rp-date {
font-size: 11px;
font-family: "Oswald", sans-serif;
font-weight: 500;
letter-spacing: .05em;
text-transform: uppercase;
color: #fff;
margin-top: 10px;
display: block;
} .widget.qodef-custom-font-widget {
margin: 0;
}
.widget.qodef-custom-font-widget > * {
margin: 0;
}  input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
display: none;
}
input[type="search"]::-ms-clear {
display: none;
}
input[type=text]::-ms-clear {
display: none;
}  aside.qodef-sidebar {
position: relative;
z-index: 11;
margin: 0 0 60px;
}
aside.qodef-sidebar .widget:last-child {
margin: 0 !important;
}
.wpb_widgetised_column {
position: relative;
}
.wpb_widgetised_column .widget:last-child {
margin: 0 !important;
}  .widget {
margin: 0 0 35px; }
.widget .qodef-widget-title {
margin: 0 0 17px;
}
.widget .qodef-widget-title a {
color: inherit;
}
.widget ul {
padding: 0;
margin: 0;
list-style: none;
}
.widget ul li {
margin: 0 0 10px;
}
.widget ul li:last-child {
margin: 0;
}
.widget.widget_text img {
display: block;
}
.widget #wp-calendar {
width: 100%;
text-align: center;
}
.widget #wp-calendar caption {
color: #121212;
margin: 0 0 15px;
}
.widget #wp-calendar th,
.widget #wp-calendar td {
padding: 3px 4px;
}
.widget #wp-calendar td#today {
color: #fff;
background-color: #fe6c61;
}
.widget #wp-calendar td#today a {
color: inherit;
}
.widget.widget_rss .qodef-widget-title .rsswidget:hover {
color: #fe6c61;
}
.widget.widget_rss .rss-widget-icon {
display: inline-block;
}
.widget.widget_rss ul li {
margin: 0 0 25px;
}
.widget.widget_rss ul li .rss-date {
display: block;
}
.widget.widget_search form {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
clear: both;
}
.widget.widget_search form > div {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
border-width: 1px;
border-style: solid;
border-color: #ebebeb;
box-sizing: border-box;
}
.widget.widget_search input,
.widget.widget_search button {
position: relative;
display: inline-block;
vertical-align: top;
float: left;
height: 52px;
font-family: inherit;
font-weight: 400;
font-size: 15px;
line-height: 52px;
color: #959595;
background-color: transparent;
border: 0;
border-radius: 0;
outline: 0;
-webkit-appearance: none;
box-sizing: border-box;
-webkit-transition: color 0.2s ease-out;
-moz-transition: color 0.2s ease-out;
transition: color 0.2s ease-out;
}
.widget.widget_search input {
width: calc(100% - 40px);
padding: 0 0 0 21px;
}
.widget.widget_search input::-webkit-input-placeholder {
color: inherit;
}
.widget.widget_search input:-moz-placeholder {
color: inherit;
}
.widget.widget_search input::-moz-placeholder {
color: inherit;
}
.widget.widget_search input:-ms-input-placeholder {
color: inherit;
}
.widget.widget_search button {
width: 40px;
font-size: 13px;
color: #959595;
cursor: pointer;
-webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
}
.widget.widget_search button:hover {
color: #fe6c61;
}
.widget.widget_search button span {
display: block;
line-height: inherit;
}
.widget.widget_search button span:before {
display: block;
line-height: inherit;
}
.widget.widget_pages ul li,
.widget.widget_archive ul li,
.widget.widget_categories ul li,
.widget.widget_meta ul li,
.widget.widget_recent_comments ul li,
.widget.widget_nav_menu ul li {
margin: 0;
padding: 4px 0;
}
.widget.widget_pages ul li:last-child,
.widget.widget_archive ul li:last-child,
.widget.widget_categories ul li:last-child,
.widget.widget_meta ul li:last-child,
.widget.widget_recent_comments ul li:last-child,
.widget.widget_nav_menu ul li:last-child {
border: none;
}
.widget.widget_pages ul li ul,
.widget.widget_archive ul li ul,
.widget.widget_categories ul li ul,
.widget.widget_meta ul li ul,
.widget.widget_recent_comments ul li ul,
.widget.widget_nav_menu ul li ul {
margin: 4px 0 0;
padding: 0 0 0 10px;
}
.widget.widget_pages ul li ul li:last-child,
.widget.widget_archive ul li ul li:last-child,
.widget.widget_categories ul li ul li:last-child,
.widget.widget_meta ul li ul li:last-child,
.widget.widget_recent_comments ul li ul li:last-child,
.widget.widget_nav_menu ul li ul li:last-child {
padding: 4px 0 0;
}
.widget.widget_recent_entries .qodef-widget-title {
margin: 0 0 23px;
}
.widget.widget_recent_entries ul li {
margin: 0 0 12px;
}
.widget.widget_recent_entries ul li > span {
display: block;
font-size: 14px;
}
.widget.widget_archive select,
.widget.widget_categories select,
.widget.widget_text select {
width: 100%;
max-width: 100%;
height: 54px;
padding: 0 18px;
line-height: 54px;
color: #959595;
background-color: transparent;
border: 1px solid #ebebeb;
font-family: inherit;
font-size: inherit;
font-style: inherit;
font-weight: inherit;
outline: none;
box-sizing: border-box;
}
.widget.posts_holder ul li.page_item_has_children > a {
display: block;
}
.widget.posts_holder ul li.page_item_has_children > ul.children {
padding-left: 10px;
}
.widget.posts_holder ul li.menu-item-has-children > a {
display: block;
}
.widget.posts_holder ul li.menu-item-has-children > ul.sub-menu {
padding-left: 10px;
}
.widget.widget_tag_cloud .qodef-widget-title {
margin: 0 0 8px;
}
.widget.widget_tag_cloud a {
position: relative;
display: inline-block;
vertical-align: middle;
color: #959595;
font-family: inherit;
font-weight: 400;
font-size: 17px !important;
text-transform: uppercase;
background-color: transparent;
}
.widget.widget_tag_cloud a:after {
content: ',';
color: #959595;
margin: 0;
}
.widget.widget_tag_cloud a:last-child:after {
display: none;
}
.widget.widget_tag_cloud a:hover {
color: #fe6c61;
}
.vc_wp_search .widget.widget_search form > div {
background-color: #fff;
border: none;
}
.vc_wp_search .widget.widget_search input {
width: calc(100% - 66px);
padding: 0 0 0 33px;
font-size: 15px;
}
.vc_wp_search .widget.widget_search button {
width: 66px;
padding: 0 39px 0 9px;
}
.qodef-side-menu .widget,
.qodef-page-footer .widget {
color: #b1b2b2; }
.qodef-side-menu .widget:last-child,
.qodef-page-footer .widget:last-child {
margin: 0 !important;
}
.qodef-side-menu .widget h1,
.qodef-side-menu .widget h2,
.qodef-side-menu .widget h3,
.qodef-side-menu .widget h4,
.qodef-side-menu .widget h5,
.qodef-side-menu .widget h6,
.qodef-page-footer .widget h1,
.qodef-page-footer .widget h2,
.qodef-page-footer .widget h3,
.qodef-page-footer .widget h4,
.qodef-page-footer .widget h5,
.qodef-page-footer .widget h6 {
margin: 0;
color: #fff;
}
.qodef-side-menu .widget .qodef-widget-title,
.qodef-page-footer .widget .qodef-widget-title {
color: #fff;
margin: 0 0 27px;
}
.qodef-side-menu .widget a,
.qodef-page-footer .widget a {
color: #b1b2b2;
}
.qodef-side-menu .widget a:hover,
.qodef-page-footer .widget a:hover {
color: #fe6c61;
}
.qodef-side-menu .widget table thead tr,
.qodef-side-menu .widget table tbody tr,
.qodef-page-footer .widget table thead tr,
.qodef-page-footer .widget table tbody tr {
border-color: #b1b2b2;
}
.qodef-side-menu .widget table tbody th,
.qodef-page-footer .widget table tbody th {
border-right-color: #b1b2b2;
}
.qodef-side-menu .widget #wp-calendar caption,
.qodef-page-footer .widget #wp-calendar caption {
color: #b1b2b2;
}
.qodef-side-menu .widget.widget_rss .qodef-footer-widget-title .rsswidget,
.qodef-page-footer .widget.widget_rss .qodef-footer-widget-title .rsswidget {
color: #fff;
}
.qodef-side-menu .widget.widget_rss .qodef-footer-widget-title .rsswidget:hover,
.qodef-page-footer .widget.widget_rss .qodef-footer-widget-title .rsswidget:hover {
color: #fe6c61;
}
.qodef-side-menu .widget.widget_search form > div,
.qodef-page-footer .widget.widget_search form > div {
border-color: #b1b2b2;
}
.qodef-side-menu .widget.widget_search input,
.qodef-page-footer .widget.widget_search input {
color: #b1b2b2;
}
.qodef-side-menu .widget.widget_search input::-webkit-input-placeholder,
.qodef-page-footer .widget.widget_search input::-webkit-input-placeholder {
color: inherit;
}
.qodef-side-menu .widget.widget_search input:-moz-placeholder,
.qodef-page-footer .widget.widget_search input:-moz-placeholder {
color: inherit;
}
.qodef-side-menu .widget.widget_search input::-moz-placeholder,
.qodef-page-footer .widget.widget_search input::-moz-placeholder {
color: inherit;
}
.qodef-side-menu .widget.widget_search input:-ms-input-placeholder,
.qodef-page-footer .widget.widget_search input:-ms-input-placeholder {
color: inherit;
}
.qodef-side-menu .widget.widget_search input[type='submit'],
.qodef-page-footer .widget.widget_search input[type='submit'] {
color: #b1b2b2;
}
.qodef-side-menu .widget.widget_search button:hover,
.qodef-page-footer .widget.widget_search button:hover {
color: #fe6c61;
}
.qodef-side-menu .widget.widget_archive select,
.qodef-side-menu .widget.widget_categories select,
.qodef-side-menu .widget.widget_text select,
.qodef-page-footer .widget.widget_archive select,
.qodef-page-footer .widget.widget_categories select,
.qodef-page-footer .widget.widget_text select {
color: #b1b2b2;
border-color: #b1b2b2;
}
.qodef-side-menu .widget.widget_archive select option,
.qodef-side-menu .widget.widget_categories select option,
.qodef-side-menu .widget.widget_text select option,
.qodef-page-footer .widget.widget_archive select option,
.qodef-page-footer .widget.widget_categories select option,
.qodef-page-footer .widget.widget_text select option {
background-color: #b1b2b2;
}
.qodef-side-menu .widget.widget_tag_cloud a,
.qodef-page-footer .widget.widget_tag_cloud a {
color: #b1b2b2;
}
.qodef-side-menu .widget.widget_tag_cloud a:after,
.qodef-page-footer .widget.widget_tag_cloud a:after {
color: inherit;
}
.qodef-side-menu .widget.widget_tag_cloud a:hover,
.qodef-page-footer .widget.widget_tag_cloud a:hover {
color: #fe6c61;
}
.qodef-top-bar a {
color: #969696;
}
.qodef-top-bar a:hover {
color: #fe6c61;
}
.qodef-top-bar .widget {
display: inline-block;
vertical-align: middle;
margin: 0;
}
.qodef-top-bar .widget p {
margin: 0;
}
.qodef-top-bar .widget.widget_text {
margin: 0 8px 0 0;
}
.qodef-top-bar .widget.widget_nav_menu ul {
clear: both;
}
.qodef-top-bar .widget.widget_nav_menu ul li {
float: left;
padding: 0 8px;
margin: 0;
line-height: 14px;
border-left: 1px solid #fff;
}  .qodef-icon-widget-holder {
position: relative;
display: inline-block;
vertical-align: middle;
margin: 0;
width: 50px;
height: 50px;
background-color: black;
color: #fff;
text-align: center;
line-height: 48px;
-webkit-transition: color 0.1s, background-color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
-moz-transition: color 0.1s, background-color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
transition: color 0.1s, background-color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.qodef-icon-widget-holder > * {
position: relative;
display: inline-block;
vertical-align: middle;
color: inherit;
font-size: inherit;
line-height: inherit;
font-style: inherit;
font-weight: inherit;
letter-spacing: inherit;
text-transform: inherit;
}
.qodef-icon-widget-holder .qodef-icon-text {
padding: 0 0 0 10px;
}
.qodef-icon-widget-holder .qodef-icon-text.qodef-no-icon {
padding: 0;
}
.qodef-dark-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-icon-widget-holder {
color: #333 !important;
}
.qodef-dark-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-icon-widget-holder:hover {
color: #333 !important;
}
.qodef-light-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-icon-widget-holder {
color: #fff !important;
}
.qodef-light-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-icon-widget-holder:hover {
color: #fff !important;
}  aside.qodef-sidebar .widget.widget_qodef_instagram_widget .qodef-widget-title,
.wpb_widgetised_column .widget.widget_qodef_instagram_widget .qodef-widget-title {
margin: 0 0 19px;
}
.qodef-instagram-feed {
list-style: none;
padding: 0;
margin: 0;
}
.qodef-instagram-feed li {
float: left;
box-sizing: border-box;
border: none !important;
}
.qodef-instagram-feed li a {
position: relative;
display: block;
overflow: hidden;
}
.qodef-instagram-feed li a:hover:after {
opacity: 1;
}
.qodef-instagram-feed li a:after {
position: absolute;
display: block;
width: 100%;
height: 100%;
top: 0;
left: 0;
content: '';
background-color: rgba(18, 18, 18, 0.4);
opacity: 0;
-webkit-transition: opacity 0.2s ease-in-out;
-moz-transition: opacity 0.2s ease-in-out;
transition: opacity 0.2s ease-in-out;
}
.qodef-instagram-feed li img {
width: 100%;
display: block;
}
.qodef-instagram-feed.qodef-instagram-gallery.qodef-no-space {
margin: 0;
}
.qodef-instagram-feed.qodef-instagram-gallery.qodef-no-space li {
padding: 0 0px;
margin: 0 0 0px;
}
.qodef-instagram-feed.qodef-instagram-gallery.qodef-tiny-space {
margin: 0 -5px -10px;
}
.qodef-instagram-feed.qodef-instagram-gallery.qodef-tiny-space li {
padding: 0 5px;
margin: 0 0 10px;
}
.qodef-instagram-feed.qodef-instagram-gallery.qodef-small-space {
margin: 0 -10px -20px;
}
.qodef-instagram-feed.qodef-instagram-gallery.qodef-small-space li {
padding: 0 10px;
margin: 0 0 20px;
}
.qodef-instagram-feed.qodef-instagram-gallery.qodef-normal-space {
margin: 0 -15px -30px;
}
.qodef-instagram-feed.qodef-instagram-gallery.qodef-normal-space li {
padding: 0 15px;
margin: 0 0 30px;
}
.qodef-instagram-feed.qodef-instagram-gallery.qodef-col-2 li {
width: 50%;
}
.qodef-instagram-feed.qodef-instagram-gallery.qodef-col-3 li {
width: 33.33333%;
}
.qodef-instagram-feed.qodef-instagram-gallery.qodef-col-4 li {
width: 25%;
}
.qodef-instagram-feed.qodef-instagram-gallery.qodef-col-6 li {
width: 16.66667%;
}
.qodef-instagram-feed.qodef-instagram-gallery.qodef-col-9 li {
width: 11.11111%;
}
.qodef-instagram-feed.qodef-instagram-carousel li {
position: relative;
width: 100%;
margin: 0;
padding: 0;
}
.qodef-instagram-feed.qodef-instagram-carousel li a {
position: relative;
display: block;
height: 100%;
}  .widget.qodef-separator-widget {
margin: 0 !important;
}  .qodef-social-icon-widget-holder {
position: relative;
display: inline-block;
vertical-align: middle;
margin: 0;
}
.qodef-social-icon-widget-holder .qodef-social-icon-widget {
color: inherit;
line-height: inherit;
font-size: inherit;
font-style: inherit;
font-weight: inherit;
letter-spacing: inherit;
}
.qodef-dark-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-social-icon-widget-holder {
color: #333 !important;
}
.qodef-dark-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-social-icon-widget-holder:hover {
color: #333 !important;
}
.qodef-light-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-social-icon-widget-holder {
color: #fff !important;
}
.qodef-light-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-social-icon-widget-holder:hover {
color: #fff !important;
}  .qodef-widget-sticky-sidebar {
position: relative;
width: 100%;
height: 0;
margin: 0 !important;
padding: 0 !important;
border: none !important;
background: transparent !important;
}  aside.qodef-sidebar .widget.widget_qodef_twitter_widget .qodef-widget-title-holder,
.wpb_widgetised_column .widget.widget_qodef_twitter_widget .qodef-widget-title-holder {
margin-bottom: 6px;
}
aside.qodef-sidebar .widget.widget_qodef_twitter_widget .qodef-widget-title,
.wpb_widgetised_column .widget.widget_qodef_twitter_widget .qodef-widget-title {
margin: 0;
}
.widget.widget_qodef_twitter_widget {
margin: 0 0 20px;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
margin: 0;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget li {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget li:not(:last-child) {
margin: 0;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget li .qodef-tweet-text {
position: relative;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget li .qodef-tweet-text a {
position: relative;
line-height: inherit;
color: inherit;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget li .qodef-tweet-text a.qodef-tweet-time {
display: block;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget li .qodef-tweet-text a.qodef-tweet-time span {
margin: 0 2px 0 0;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget.qodef-twitter-standard li .qodef-twitter-icon {
position: absolute;
top: 2px;
left: 0;
color: #fe6c61;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget.qodef-twitter-standard li .qodef-twitter-icon i {
font-size: 18px;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget.qodef-twitter-standard li .qodef-tweet-text {
padding: 0 0 0 40px;
font-size: 18px;
}
@media only screen and (max-width: 1280px) {
.widget.widget_qodef_twitter_widget .qodef-twitter-widget.qodef-twitter-standard li .qodef-tweet-text {
font-size: 15px;
}
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget.qodef-twitter-standard li .qodef-tweet-text a,
.widget.widget_qodef_twitter_widget .qodef-twitter-widget.qodef-twitter-standard li .qodef-tweet-text span {
color: #959595;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget.qodef-twitter-standard li .qodef-tweet-text a:hover {
color: #fe6c61;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget.qodef-twitter-slider {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
padding: 0 40px;
text-align: center;
box-sizing: border-box;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget.qodef-twitter-slider li {
overflow: hidden;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget.qodef-twitter-slider li .qodef-twitter-icon i {
font-size: 16px;
color: #fe6c61;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget.qodef-twitter-slider li .qodef-tweet-text {
font-size: 14px;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget.qodef-twitter-slider li .qodef-tweet-text a,
.widget.widget_qodef_twitter_widget .qodef-twitter-widget.qodef-twitter-slider li .qodef-tweet-text span {
color: #fe6c61;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget.qodef-twitter-slider li .qodef-tweet-text a:hover {
color: #121212;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget.qodef-twitter-slider li .qodef-tweet-text a.qodef-tweet-time {
margin: 21px 0 0;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget.qodef-twitter-slider .owl-nav .owl-prev {
left: 0;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget.qodef-twitter-slider .owl-nav .owl-next {
right: 0;
}  .widget.qodef-blog-list-widget {
margin: 0 0 20px;
}
.widget.qodef-blog-list-widget > h4 {
margin: 0 0 15px;
}
footer .qodef-footer-top .widget.qodef-blog-list-widget > h2,
.qodef-top-bar .widget.qodef-blog-list-widget > h2 {
margin: 0 0 8px;
}  .widget {
margin: 0 0 25px;
padding: 0;
background-color: #fff;
border: none;
}
.widget .qodef-widget-title-holder {
margin-bottom: 8px;
}
.widget .qodef-widget-title-holder .qodef-widget-title {
color: #000;
margin-bottom: 17px;
text-transform: uppercase;
}
.widget .qodef-widget-title-holder .qodef-separator {
border-color: inherit;
border-bottom-width: 3px;
width: 30px;
}
.widget ul {
padding: 0;
margin: 0;
list-style: none;
}
.widget ul li {
display: block;
line-height: 20px;
margin: 0;
padding: 8px 0;
border: none;
}
.widget ul li:last-child {
border: 0;
padding-bottom: 0;
}
.widget ul li a {
color: #fe6c61;
}
.widget ul li a:hover {
color: #3c3c3c;
}
.widget ul .children,
.widget ul .sub-menu {
border-top: 1px solid #ebebeb;
margin-top: 8px;
}
.widget.widget_pages .qodef-widget-title,
.widget.widget_archive .qodef-widget-title,
.widget.widget_categories .qodef-widget-title,
.widget.widget_meta .qodef-widget-title,
.widget.widget_recent_entries .qodef-widget-title,
.widget.widget_nav_menu .qodef-widget-title {
margin-bottom: 0;
}
.widget.widget_pages ul li,
.widget.widget_archive ul li,
.widget.widget_categories ul li,
.widget.widget_meta ul li,
.widget.widget_recent_entries ul li,
.widget.widget_nav_menu ul li {
overflow: hidden;
}
.widget.widget_pages ul li a,
.widget.widget_archive ul li a,
.widget.widget_categories ul li a,
.widget.widget_meta ul li a,
.widget.widget_recent_entries ul li a,
.widget.widget_nav_menu ul li a {
display: inline;
overflow: hidden;
padding: 0;
position: relative;
}
.widget.widget_pages ul li a:after,
.widget.widget_archive ul li a:after,
.widget.widget_categories ul li a:after,
.widget.widget_meta ul li a:after,
.widget.widget_recent_entries ul li a:after,
.widget.widget_nav_menu ul li a:after {
display: none;
padding: 0;
}
.widget.widget_pages ul li a:hover,
.widget.widget_archive ul li a:hover,
.widget.widget_categories ul li a:hover,
.widget.widget_meta ul li a:hover,
.widget.widget_recent_entries ul li a:hover,
.widget.widget_nav_menu ul li a:hover {
color: #3c3c3c;
}
.widget.widget_recent_comments .qodef-widget-title,
.widget.widget_rss .qodef-widget-title {
margin-bottom: 0;
}
.widget #wp-calendar {
text-align: center;
width: 100%;
}
.widget #wp-calendar caption {
margin: 0 0 8px;
}
.widget #wp-calendar th,
.widget #wp-calendar td {
padding: 3px 4px;
}
.widget #wp-calendar td#today {
color: inherit;
background-color: #ffffff;
}
.widget #wp-calendar tfoot a {
color: #fe6c61;
}
.widget #wp-calendar tfoot a:hover {
color: #3c3c3c;
}
.widget.widget_rss .rss-widget-icon {
display: inline-block;
}
.widget.widget_rss .rss-date {
display: block;
margin-bottom: 8px;
}
.widget.widget_rss cite {
display: block;
margin-top: calc(8px / 2);
}
.widget.widget_search .input-holder {
border-color: #ebebeb;
border-style: solid;
border-width: 1px;
}
.widget.widget_search .input-holder input,
.widget.widget_search .input-holder button {
background-color: transparent;
border: 0;
border-radius: 0;
box-sizing: border-box;
color: inherit;
display: inline-block;
float: left;
font-family: "Poppins", sans-serif;
font-size: 15px;
font-weight: inherit;
height: 52px;
line-height: calc(52px - 2px);
outline: 0;
position: relative;
vertical-align: top;
-webkit-appearance: none;
-webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
}
.widget.widget_search .input-holder input.search-field {
width: calc(100% - 52px);
padding: 0 0 0 21px;
}
.widget.widget_search .input-holder input.search-field::-webkit-input-placeholder {
color: inherit;
}
.widget.widget_search .input-holder input.search-field:-moz-placeholder {
color: inherit;
}
.widget.widget_search .input-holder input.search-field::-moz-placeholder {
color: inherit;
}
.widget.widget_search .input-holder input.search-field:-ms-input-placeholder {
color: inherit;
}
.widget.widget_search .input-holder button {
background: #ffffff;
color: inherit;
cursor: pointer;
font-size: 18px;
width: 52px;
-webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
}
.widget.widget_search .input-holder button:hover {
color: #3c3c3c;
}
.widget.widget_search .input-holder button span {
display: block;
left: 0;
line-height: inherit;
position: absolute;
top: 0;
width: 100%;
}
.widget.widget_search .input-holder button span:before {
display: block;
line-height: inherit;
}
.widget.qodef-search-post-type-widget .qodef-post-type-search-field {
border-radius: 3px;
border-color: #ebebeb;
border-style: solid;
border-width: 1px;
background-color: transparent;
box-sizing: border-box;
color: inherit;
display: inline-block;
float: left;
font-family: "Poppins", sans-serif;
font-size: 12px;
font-weight: inherit;
height: 52px;
line-height: calc(52px - 2px);
outline: 0;
position: relative;
vertical-align: top;
-webkit-appearance: none;
padding: 0 25px 0 20px;
width: 100%; -webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
}
.widget.qodef-search-post-type-widget .qodef-post-type-search-field::-webkit-input-placeholder {
color: inherit;
}
.widget.qodef-search-post-type-widget .qodef-post-type-search-field:-moz-placeholder {
color: inherit;
}
.widget.qodef-search-post-type-widget .qodef-post-type-search-field::-moz-placeholder {
color: inherit;
}
.widget.qodef-search-post-type-widget .qodef-post-type-search-field:-ms-input-placeholder {
color: inherit;
}
.widget.widget_archive select,
.widget.widget_categories select,
.widget.widget_text select {
background-color: transparent;
border-color: #ebebeb;
border-style: solid;
border-width: 1px;
border-radius: 0;
box-sizing: border-box;
color: inherit;
display: inline-block;
font-family: "Poppins", sans-serif;
font-size: 15px;
font-weight: inherit;
height: 52px;
line-height: calc(52px - 2px);
margin-top: 8px;
outline: 0;
padding: 0 0 0 21px;
position: relative;
vertical-align: top;
width: 100%;
-webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
}
.widget.widget_tag_cloud a {
border-radius: 2px;
color: inherit;
display: inline-block;
font-size: 11px !important;
font-family: "Poppins", sans-serif;
font-weight: inherit;
line-height: 30px;
text-transform: uppercase;
margin: 0 7px 7px 0;
padding: 0 19px;
}
.widget.widget_tag_cloud a:hover {
color: #3c3c3c;
}
.widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item {
margin: 0;
padding: 10px 0;
}
.widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item:first-child {
padding-top: 4px;
}
.widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a {
display: table;
width: 100%;
}
.widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a .qodef-rp-image,
.widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a .qodef-rp-title {
display: table-cell;
vertical-align: middle;
}
.widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a .qodef-rp-title {
-webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
font-weight: 400;
color: #b1b2b2;
line-height: 24px;
}
.widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item a:hover .qodef-rp-title {
color: #fff;
text-decoration: underline;
}
.widget.qodef-recent-post-widget .qodef-recent-posts .qodef-rp-item .qodef-rp-date {
font-size: 11px;
font-family: "Oswald", sans-serif;
font-weight: 500;
letter-spacing: .05em;
text-transform: uppercase;
color: #fff;
margin-top: 10px;
display: block;
} .qodef-icon-widget-holder {
position: relative;
display: inline-block;
vertical-align: middle;
margin: 0;
}
.qodef-icon-widget-holder > * {
position: relative;
display: inline-block;
vertical-align: middle;
color: inherit;
font-size: inherit;
line-height: inherit;
font-style: inherit;
font-weight: inherit;
letter-spacing: inherit;
text-transform: inherit;
}
.qodef-icon-widget-holder .qodef-icon-text {
padding: 0 0 0 10px;
}
.qodef-icon-widget-holder .qodef-icon-text.qodef-no-icon {
padding: 0;
}
.qodef-dark-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-icon-widget-holder {
color: #333 !important;
}
.qodef-dark-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-icon-widget-holder:hover {
color: #333 !important;
}
.qodef-light-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-icon-widget-holder {
color: #fff !important;
}
.qodef-light-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-icon-widget-holder:hover {
color: #fff !important;
}  .widget.qodef-image-slider-widget {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
}
.widget.qodef-image-slider-widget .qodef-is-widget-inner {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
}
.widget.qodef-image-slider-widget .qodef-widget-title {
margin: 0 0 32px;
}
.widget.qodef-image-slider-widget img {
display: block;
}  @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 {
width: 25%;
}
.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 {
width: 33.33333%;
}
.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;
}
}  .qodef-instagram-feed {
list-style: none;
padding: 0;
margin: 0;
}
.qodef-instagram-feed li {
float: left;
box-sizing: border-box;
border: none !important;
}
.qodef-instagram-feed li a {
position: relative;
display: block;
overflow: hidden;
}
.qodef-instagram-feed li a:after {
content: '';
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
background-color: rgba(18, 18, 18, 0.4);
opacity: 0;
-webkit-transition: opacity 0.6s;
-moz-transition: opacity 0.6s;
transition: opacity 0.6s;
}
.qodef-instagram-feed li a:hover:after {
opacity: 1;
}
.qodef-instagram-feed li img {
width: 100%;
display: block;
}
.qodef-instagram-feed.qodef-instagram-gallery.qodef-no-space {
margin: 0;
}
.qodef-instagram-feed.qodef-instagram-gallery.qodef-no-space li {
padding: 0 0px;
margin: 0 0 0px;
}
.qodef-instagram-feed.qodef-instagram-gallery.qodef-tiny-space {
margin: 0 -2px -4px;
}
.qodef-instagram-feed.qodef-instagram-gallery.qodef-tiny-space li {
padding: 0 2px;
margin: 0 0 4px;
}
.qodef-instagram-feed.qodef-instagram-gallery.qodef-small-space {
margin: 0 -10px -20px;
}
.qodef-instagram-feed.qodef-instagram-gallery.qodef-small-space li {
padding: 0 10px;
margin: 0 0 20px;
}
.qodef-instagram-feed.qodef-instagram-gallery.qodef-normal-space {
margin: 0 -15px -30px;
}
.qodef-instagram-feed.qodef-instagram-gallery.qodef-normal-space li {
padding: 0 15px;
margin: 0 0 30px;
}
.qodef-instagram-feed.qodef-instagram-gallery.qodef-col-2 li {
width: 50%;
}
.qodef-instagram-feed.qodef-instagram-gallery.qodef-col-3 li {
width: 33.33333%;
}
.qodef-instagram-feed.qodef-instagram-gallery.qodef-col-4 li {
width: 25%;
}
.qodef-instagram-feed.qodef-instagram-gallery.qodef-col-6 li {
width: 16.66667%;
}
.qodef-instagram-feed.qodef-instagram-gallery.qodef-col-9 li {
width: 11.11111%;
}
.qodef-instagram-feed.qodef-instagram-carousel li {
position: relative;
width: 100%;
margin: 0;
padding: 0;
}
.qodef-instagram-feed.qodef-instagram-carousel li a {
position: relative;
display: block;
height: 100%;
}
.qodef-instagram-feed.qodef-instagram-carousel li a:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(255, 255, 255, 0.25);
opacity: 0;
-webkit-transition: opacity 0.3s ease-in-out;
-moz-transition: opacity 0.3s ease-in-out;
transition: opacity 0.3s ease-in-out;
}
.qodef-instagram-feed.qodef-instagram-carousel li a:hover {
opacity: 1;
}  .widget.qodef-prominent-posts-widget li {
position: relative;
display: inline-block;
vertical-align: middle;
margin: 0 18px;
font-size: 14px;
text-transform: uppercase;
font-weight: 700;
font-family: "Oswald", sans-serif;
}
.widget.qodef-prominent-posts-widget li span {
position: relative;
display: inline-block;
margin: 0 8px 0 0;
}
.widget.qodef-prominent-posts-widget li a:before,
.widget.qodef-prominent-posts-widget li a:after {
content: "";
position: absolute;
bottom: -2px;
right: 0;
left: auto;
width: 0;
height: 2px;
background-color: #000;
-webkit-transition: all 0.25s ease-in-out;
-moz-transition: all 0.25s ease-in-out;
transition: all 0.25s ease-in-out;
}
.widget.qodef-prominent-posts-widget li a:hover {
color: #333;
}
.widget.qodef-prominent-posts-widget li a:hover:before,
.widget.qodef-prominent-posts-widget li a:hover:after {
width: 100%;
left: 0;
}
.qodef-light-header .qodef-page-header .widget.qodef-prominent-posts-widget li a {
color: #000;
}
.qodef-light-header .qodef-page-header .widget.qodef-prominent-posts-widget li a:before,
.qodef-light-header .qodef-page-header .widget.qodef-prominent-posts-widget li a:after {
background-color: #000;
} .widget.qodef-raw-html-widget {
margin: 0;
}
.widget.qodef-raw-html-widget.qodef-grid-auto-width {
position: relative;
display: inline-block;
vertical-align: middle;
width: auto;
}
.widget.qodef-search-post-type-widget {
line-height: 0;
position: relative;
}
.widget.qodef-search-post-type-widget .qodef-search-post-type {
display: inline-block;
width: 100%;
position: relative;
}
.widget.qodef-search-post-type-widget .qodef-post-type-search-results {
background: #fff;
height: auto;
display: none;
width: 100%;
position: absolute;
z-index: 99;
left: 0;
top: 100%;
}
.widget.qodef-search-post-type-widget .qodef-post-type-search-results ul {
padding: 10px 20px;
box-sizing: border-box;
display: inline-block;
line-height: 0;
width: 100%;
}
.widget.qodef-search-post-type-widget .qodef-post-type-search-results ul li {
display: inline-block;
width: 100%;
}
.widget.qodef-search-post-type-widget .qodef-search-icon,
.widget.qodef-search-post-type-widget .qodef-search-loading {
position: absolute;
right: 20px;
top: 50%;
margin-top: -9px;
font-size: 18px;
color: #000000;
-webkit-transition: opacity 0.2s ease-out;
-moz-transition: opacity 0.2s ease-out;
transition: opacity 0.2s ease-out;
opacity: 1;
}
.widget.qodef-search-post-type-widget .qodef-search-icon.qodef-hidden,
.widget.qodef-search-post-type-widget .qodef-search-loading.qodef-hidden {
opacity: 0;
}
.wpb_widgetised_column .widget.qodef-search-post-type-widget .qodef-search-post-type {
background-color: rgba(255, 255, 255, 0.9);
}
.wpb_widgetised_column .widget.qodef-search-post-type-widget .qodef-post-type-search-field {
border-radius: 0;
height: 57px;
line-height: calc(57px - 2px);
border: 0;
font-size: 15px;
color: #878787;
}
.wpb_widgetised_column .widget.qodef-search-post-type-widget .qodef-post-type-search-results {
background-color: rgba(255, 255, 255, 0.9);
border-top: 1px solid #dadada;
}
.wpb_widgetised_column .widget.qodef-search-post-type-widget .qodef-post-type-search-results ul {
padding: 16px 20px;
}
.widget.qodef-separator-widget {
margin: 0 !important; } .qodef-social-icon-widget-holder {
position: relative;
display: inline-block;
vertical-align: middle;
margin: 0;
}
.qodef-social-icon-widget-holder .qodef-social-icon-widget {
color: inherit;
line-height: inherit;
font-size: inherit;
font-style: inherit;
font-weight: inherit;
letter-spacing: inherit;
}
.qodef-dark-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-social-icon-widget-holder {
color: #333 !important;
}
.qodef-dark-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-social-icon-widget-holder:hover {
color: #333 !important;
}
.qodef-light-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-social-icon-widget-holder {
color: #fff !important;
}
.qodef-light-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-social-icon-widget-holder:hover {
color: #fff !important;
}  .qodef-widget-sticky-sidebar {
position: relative;
width: 100%;
height: 0;
margin: 0 !important;
padding: 0 !important;
border: none !important;
background: transparent !important;
}  .widget.widget_qodef_twitter_widget {
margin: 0 0 20px;
}
.widget.widget_qodef_twitter_widget > h4 {
margin: 0 0 8px;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
margin: 0;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget li {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
padding: 6px 0;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget li:not(:last-child) {
margin: 0 !important;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget li .qodef-tweet-text {
position: relative;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget li .qodef-tweet-text .qodef-tweet-author {
color: #fe6c61;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget li .qodef-tweet-text a {
position: relative;
line-height: inherit;
color: inherit;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget li .qodef-tweet-text a.qodef-tweet-time {
display: block;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget li .qodef-tweet-text a.qodef-tweet-time span {
margin: 0 2px 0 0;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget.qodef-twitter-standard li .qodef-twitter-icon {
position: absolute;
top: 2px;
left: 0;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget.qodef-twitter-standard li .qodef-twitter-icon i {
font-size: 18px;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget.qodef-twitter-standard li .qodef-tweet-text {
padding: 0 0 0 28px;
font-size: 15px;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget.qodef-twitter-standard li .qodef-tweet-text a,
.widget.widget_qodef_twitter_widget .qodef-twitter-widget.qodef-twitter-standard li .qodef-tweet-text span {
color: #121212;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget.qodef-twitter-standard li .qodef-tweet-text .qodef-tweet-author {
color: #fe6c61;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget.qodef-twitter-standard li .qodef-tweet-text a:hover {
color: #fe6c61;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget.qodef-twitter-slider {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
padding: 0 40px;
text-align: center;
box-sizing: border-box;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget.qodef-twitter-slider li {
overflow: hidden;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget.qodef-twitter-slider li .qodef-twitter-icon i {
font-size: 16px;
color: #fe6c61;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget.qodef-twitter-slider li .qodef-tweet-text {
font-size: 14px;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget.qodef-twitter-slider li .qodef-tweet-text a,
.widget.widget_qodef_twitter_widget .qodef-twitter-widget.qodef-twitter-slider li .qodef-tweet-text span {
color: #fe6c61;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget.qodef-twitter-slider li .qodef-tweet-text a:hover {
color: #121212;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget.qodef-twitter-slider li .qodef-tweet-text a.qodef-tweet-time {
margin: 21px 0 0;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget.qodef-twitter-slider .owl-nav .owl-prev {
left: 0;
}
.widget.widget_qodef_twitter_widget .qodef-twitter-widget.qodef-twitter-slider .owl-nav .owl-next {
right: 0;
}   .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.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
40%, 43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0, -4px, 0);
transform: translate3d(0, -4px, 0);
}
}
@keyframes bounce {
from, 20%, 53%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
40%, 43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0, -4px, 0);
transform: translate3d(0, -4px, 0);
}
}
.bounce {
-webkit-animation-name: bounce;
animation-name: bounce;
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
}
@-webkit-keyframes flash {
from, 50%, to {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
@keyframes flash {
from, 50%, to {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
.flash {
-webkit-animation-name: flash;
animation-name: flash;
} @-webkit-keyframes pulse {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes pulse {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.pulse {
-webkit-animation-name: pulse;
animation-name: pulse;
}
@-webkit-keyframes rubberBand {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(0.95, 1.05, 1);
transform: scale3d(0.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, 0.95, 1);
transform: scale3d(1.05, 0.95, 1);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes rubberBand {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(0.95, 1.05, 1);
transform: scale3d(0.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, 0.95, 1);
transform: scale3d(1.05, 0.95, 1);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.rubberBand {
-webkit-animation-name: rubberBand;
animation-name: rubberBand;
}
@-webkit-keyframes shake {
from, to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
@keyframes shake {
from, to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
.shake {
-webkit-animation-name: shake;
animation-name: shake;
}
@-webkit-keyframes headShake {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
6.5% {
-webkit-transform: translateX(-6px) rotateY(-9deg);
transform: translateX(-6px) rotateY(-9deg);
}
18.5% {
-webkit-transform: translateX(5px) rotateY(7deg);
transform: translateX(5px) rotateY(7deg);
}
31.5% {
-webkit-transform: translateX(-3px) rotateY(-5deg);
transform: translateX(-3px) rotateY(-5deg);
}
43.5% {
-webkit-transform: translateX(2px) rotateY(3deg);
transform: translateX(2px) rotateY(3deg);
}
50% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes headShake {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
6.5% {
-webkit-transform: translateX(-6px) rotateY(-9deg);
transform: translateX(-6px) rotateY(-9deg);
}
18.5% {
-webkit-transform: translateX(5px) rotateY(7deg);
transform: translateX(5px) rotateY(7deg);
}
31.5% {
-webkit-transform: translateX(-3px) rotateY(-5deg);
transform: translateX(-3px) rotateY(-5deg);
}
43.5% {
-webkit-transform: translateX(2px) rotateY(3deg);
transform: translateX(2px) rotateY(3deg);
}
50% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
.headShake {
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
-webkit-animation-name: headShake;
animation-name: headShake;
}
@-webkit-keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
to {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
@keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
to {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
.swing {
-webkit-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing;
}
@-webkit-keyframes tada {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%, 20% {
-webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes tada {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%, 20% {
-webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.tada {
-webkit-animation-name: tada;
animation-name: tada;
} @-webkit-keyframes wobble {
from {
-webkit-transform: none;
transform: none;
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes wobble {
from {
-webkit-transform: none;
transform: none;
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
-webkit-transform: none;
transform: none;
}
}
.wobble {
-webkit-animation-name: wobble;
animation-name: wobble;
}
@-webkit-keyframes jello {
from, 11.1%, to {
-webkit-transform: none;
transform: none;
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
-webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
transform: skewX(0.39063deg) skewY(0.39063deg);
}
88.8% {
-webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
transform: skewX(-0.19531deg) skewY(-0.19531deg);
}
}
@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.39063deg) skewY(0.39063deg);
transform: skewX(0.39063deg) skewY(0.39063deg);
}
88.8% {
-webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
transform: skewX(-0.19531deg) skewY(-0.19531deg);
}
}
.jello {
-webkit-animation-name: jello;
animation-name: jello;
-webkit-transform-origin: center;
transform-origin: center;
}
@-webkit-keyframes bounceIn {
from, 20%, 40%, 60%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(0.97, 0.97, 0.97);
transform: scale3d(0.97, 0.97, 0.97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes bounceIn {
from, 20%, 40%, 60%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(0.97, 0.97, 0.97);
transform: scale3d(0.97, 0.97, 0.97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.bounceIn {
-webkit-animation-name: bounceIn;
animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInDown {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInDown {
-webkit-animation-name: bounceInDown;
animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInLeft {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
from {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInRight {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
from {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInRight {
-webkit-animation-name: bounceInRight;
animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInUp {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.bounceInUp {
-webkit-animation-name: bounceInUp;
animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
20% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.9);
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
}
@keyframes bounceOut {
20% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.9);
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
}
.bounceOut {
-webkit-animation-name: bounceOut;
animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.bounceOutDown {
-webkit-animation-name: bounceOutDown;
animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.bounceOutLeft {
-webkit-animation-name: bounceOutLeft;
animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.bounceOutRight {
-webkit-animation-name: bounceOutRight;
animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.bounceOutUp {
-webkit-animation-name: bounceOutUp;
animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDownBig {
-webkit-animation-name: fadeInDownBig;
animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeftBig {
-webkit-animation-name: fadeInLeftBig;
animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRightBig {
-webkit-animation-name: fadeInRightBig;
animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUpBig {
-webkit-animation-name: fadeInUpBig;
animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
.fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.fadeOutDown {
-webkit-animation-name: fadeOutDown;
animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.fadeOutDownBig {
-webkit-animation-name: fadeOutDownBig;
animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.fadeOutLeft {
-webkit-animation-name: fadeOutLeft;
animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.fadeOutLeftBig {
-webkit-animation-name: fadeOutLeftBig;
animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.fadeOutRight {
-webkit-animation-name: fadeOutRight;
animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.fadeOutRightBig {
-webkit-animation-name: fadeOutRightBig;
animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.fadeOutUp {
-webkit-animation-name: fadeOutUp;
animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.fadeOutUpBig {
-webkit-animation-name: fadeOutUpBig;
animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
@keyframes flip {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
.animated.flip {
-webkit-backface-visibility: visible;
backface-visibility: visible;
-webkit-animation-name: flip;
animation-name: flip;
}
@-webkit-keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInX {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInX;
animation-name: flipInX;
}
@-webkit-keyframes flipInY {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInY {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInY;
animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutX {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
.flipOutX {
-webkit-animation-name: flipOutX;
animation-name: flipOutX;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutY {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
.flipOutY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipOutY;
animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
from {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1;
}
to {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes lightSpeedIn {
from {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1;
}
to {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.lightSpeedIn {
-webkit-animation-name: lightSpeedIn;
animation-name: lightSpeedIn;
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
from {
opacity: 1;
}
to {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
@keyframes lightSpeedOut {
from {
opacity: 1;
}
to {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
.lightSpeedOut {
-webkit-animation-name: lightSpeedOut;
animation-name: lightSpeedOut;
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
from {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateIn {
from {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateIn {
-webkit-animation-name: rotateIn;
animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInDownLeft {
-webkit-animation-name: rotateInDownLeft;
animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInDownRight {
-webkit-animation-name: rotateInDownRight;
animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInUpLeft {
-webkit-animation-name: rotateInUpLeft;
animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInUpRight {
-webkit-animation-name: rotateInUpRight;
animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
from {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
@keyframes rotateOut {
from {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
.rotateOut {
-webkit-animation-name: rotateOut;
animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
@keyframes rotateOutDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
.rotateOutDownLeft {
-webkit-animation-name: rotateOutDownLeft;
animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutDownRight {
-webkit-animation-name: rotateOutDownRight;
animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutUpLeft {
-webkit-animation-name: rotateOutUpLeft;
animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
@keyframes rotateOutUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
.rotateOutUpRight {
-webkit-animation-name: rotateOutUpRight;
animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%, 80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
@keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%, 80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
.hinge {
-webkit-animation-name: hinge;
animation-name: hinge;
} @-webkit-keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.rollIn {
-webkit-animation-name: rollIn;
animation-name: rollIn;
} @-webkit-keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
@keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
.rollOut {
-webkit-animation-name: rollOut;
animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
50% {
opacity: 1;
}
}
@keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
50% {
opacity: 1;
}
}
.zoomIn {
-webkit-animation-name: zoomIn;
animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
@keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomInDown {
-webkit-animation-name: zoomInDown;
animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
@keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomInLeft {
-webkit-animation-name: zoomInLeft;
animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
@keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomInRight {
-webkit-animation-name: zoomInRight;
animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
@keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomInUp {
-webkit-animation-name: zoomInUp;
animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
to {
opacity: 0;
}
}
@keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
to {
opacity: 0;
}
}
.zoomOut {
-webkit-animation-name: zoomOut;
animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
to {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
@keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
to {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomOutDown {
-webkit-animation-name: zoomOutDown;
animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
transform: scale(0.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
transform: scale(0.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
.zoomOutLeft {
-webkit-animation-name: zoomOutLeft;
animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
transform: scale(0.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
@keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
transform: scale(0.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
.zoomOutRight {
-webkit-animation-name: zoomOutRight;
animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
to {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
@keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
to {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomOutUp {
-webkit-animation-name: zoomOutUp;
animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInDown {
-webkit-animation-name: slideInDown;
animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInLeft {
-webkit-animation-name: slideInLeft;
animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInRight {
-webkit-animation-name: slideInRight;
animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInUp {
-webkit-animation-name: slideInUp;
animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.slideOutDown {
-webkit-animation-name: slideOutDown;
animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.slideOutLeft {
-webkit-animation-name: slideOutLeft;
animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.slideOutRight {
-webkit-animation-name: slideOutRight;
animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.slideOutUp {
-webkit-animation-name: slideOutUp;
animation-name: slideOutUp;
} .qodef-owl-slider,
.qodef-owl-slider-style {
position: relative;
display: none;
width: 100%;
margin: 0;
-webkit-tap-highlight-color: transparent;
z-index: 1;  }
.qodef-owl-slider.owl-loaded,
.qodef-owl-slider-style.owl-loaded {
display: block;
}
.qodef-owl-slider.owl-loading,
.qodef-owl-slider-style.owl-loading {
opacity: 0;
display: block;
}
.qodef-owl-slider.owl-hidden,
.qodef-owl-slider-style.owl-hidden {
opacity: 0;
}
.qodef-owl-slider.owl-refresh .owl-item,
.qodef-owl-slider-style.owl-refresh .owl-item {
visibility: hidden;
}
.qodef-owl-slider.owl-drag .owl-item,
.qodef-owl-slider-style.owl-drag .owl-item {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.qodef-owl-slider.owl-grab,
.qodef-owl-slider-style.owl-grab {
cursor: move;
cursor: grab;
}
.qodef-owl-slider.owl-rtl,
.qodef-owl-slider-style.owl-rtl {
direction: rtl;
}
.qodef-owl-slider.owl-rtl .owl-item,
.qodef-owl-slider-style.owl-rtl .owl-item {
float: right;
}
.no-js .qodef-owl-slider,
.no-js
.qodef-owl-slider-style {
display: block;
}
.qodef-owl-slider .owl-stage,
.qodef-owl-slider-style .owl-stage {
position: relative;
-ms-touch-action: pan-Y;
}
.qodef-owl-slider .owl-stage:after,
.qodef-owl-slider-style .owl-stage:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
.qodef-owl-slider .owl-stage-outer,
.qodef-owl-slider-style .owl-stage-outer {
position: relative;
overflow: hidden; -webkit-transform: translate3d(0px, 0px, 0px);
}
.qodef-owl-slider .owl-wrapper,
.qodef-owl-slider .owl-item,
.qodef-owl-slider-style .owl-wrapper,
.qodef-owl-slider-style .owl-item {
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0);
}
.qodef-owl-slider .owl-item,
.qodef-owl-slider-style .owl-item {
position: relative;
min-height: 1px;
float: left;
-webkit-backface-visibility: hidden;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
}
.qodef-owl-slider .owl-item img,
.qodef-owl-slider-style .owl-item img {
display: block;
width: 100%;
}
.qodef-owl-slider .owl-item img .owl-lazy,
.qodef-owl-slider-style .owl-item img .owl-lazy {
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
}
.qodef-owl-slider .owl-item .owl-lazy,
.qodef-owl-slider-style .owl-item .owl-lazy {
opacity: 0;
transition: opacity 400ms ease;
}
.qodef-owl-slider .owl-nav.disabled,
.qodef-owl-slider-style .owl-nav.disabled {
display: none;
}
.qodef-owl-slider .owl-nav .owl-prev,
.qodef-owl-slider .owl-nav .owl-next,
.qodef-owl-slider-style .owl-nav .owl-prev,
.qodef-owl-slider-style .owl-nav .owl-next {
cursor: pointer;
cursor: hand;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.qodef-owl-slider .owl-dots.disabled,
.qodef-owl-slider-style .owl-dots.disabled {
display: none;
}
.qodef-owl-slider .owl-dots .owl-dot,
.qodef-owl-slider-style .owl-dots .owl-dot {
cursor: pointer;
cursor: hand;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.qodef-owl-slider .animated,
.qodef-owl-slider-style .animated {
-webkit-animation-duration: 1000ms;
animation-duration: 1000ms;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.qodef-owl-slider .owl-animated-in,
.qodef-owl-slider-style .owl-animated-in {
z-index: 0;
}
.qodef-owl-slider .owl-animated-out,
.qodef-owl-slider-style .owl-animated-out {
z-index: 1;
}
.qodef-owl-slider .fadeOut,
.qodef-owl-slider-style .fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
} .owl-height {
transition: height 500ms ease-in-out;
}
@-webkit-keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
} .ps {
-ms-touch-action: auto;
touch-action: auto;
overflow: hidden !important;
-ms-overflow-style: none;
}
@supports (-ms-overflow-style: none) {
.ps {
overflow: auto !important;
}
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
.ps {
overflow: auto !important;
}
}
.ps.ps--active-x > .ps__scrollbar-x-rail,
.ps.ps--active-y > .ps__scrollbar-y-rail {
display: none; background-color: transparent;
}
.ps.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail {
background-color: #eee;
opacity: 0.9;
}
.ps.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail > .ps__scrollbar-x {
background-color: #999;
height: 11px;
}
.ps.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail {
background-color: #eee;
opacity: 0.9;
}
.ps.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail > .ps__scrollbar-y {
background-color: #999;
width: 11px;
}
.ps > .ps__scrollbar-x-rail {
display: none;
position: absolute; opacity: 0;
transition: background-color .2s linear, opacity .2s linear;
bottom: 0px; height: 15px;
}
.ps > .ps__scrollbar-x-rail > .ps__scrollbar-x {
position: absolute; background-color: #aaa;
border-radius: 6px;
transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;
bottom: 2px; height: 6px;
}
.ps > .ps__scrollbar-x-rail:hover > .ps__scrollbar-x,
.ps > .ps__scrollbar-x-rail:active > .ps__scrollbar-x {
height: 11px;
}
.ps > .ps__scrollbar-y-rail {
display: none;
position: absolute; opacity: 0;
transition: background-color .2s linear, opacity .2s linear;
right: 0; width: 15px;
}
.ps > .ps__scrollbar-y-rail > .ps__scrollbar-y {
position: absolute; background-color: #aaa;
border-radius: 6px;
transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;
right: 2px; width: 6px;
}
.ps > .ps__scrollbar-y-rail:hover > .ps__scrollbar-y,
.ps > .ps__scrollbar-y-rail:active > .ps__scrollbar-y {
width: 11px;
}
.ps:hover.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail {
background-color: #eee;
opacity: 0.9;
}
.ps:hover.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail > .ps__scrollbar-x {
background-color: #999;
height: 11px;
}
.ps:hover.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail {
background-color: #eee;
opacity: 0.9;
}
.ps:hover.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail > .ps__scrollbar-y {
background-color: #999;
width: 11px;
}
.ps:hover > .ps__scrollbar-x-rail,
.ps:hover > .ps__scrollbar-y-rail {
opacity: 0.6;
}
.ps:hover > .ps__scrollbar-x-rail:hover {
background-color: #eee;
opacity: 0.9;
}
.ps:hover > .ps__scrollbar-x-rail:hover > .ps__scrollbar-x {
background-color: #999;
}
.ps:hover > .ps__scrollbar-y-rail:hover {
background-color: #eee;
opacity: 0.9;
}
.ps:hover > .ps__scrollbar-y-rail:hover > .ps__scrollbar-y {
background-color: #999;
}  body .pp_pic_holder {
position: fixed !important;
top: 50% !important;
left: 50% !important;
display: none;
width: 100px;
z-index: 10001 !important;
-webkit-transform: translateX(-50%) translateY(-50%);
-moz-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
}
@media only screen and (max-width: 768px) {
body .pp_pic_holder {
width: 90% !important;
}
}
body .pp_pic_holder .pp_top,
body .pp_pic_holder .pp_bottom {
display: none !important;
}
body .pp_pic_holder .pp_content {
position: relative;
background: none;
margin: 0 auto;
height: 40px;
min-width: 40px;
width: 100%;
}
@media only screen and (max-width: 768px) {
body .pp_pic_holder .pp_content {
width: 100% !important;
}
}
* html body .pp_pic_holder .pp_content {
width: 40px;
}
body .pp_pic_holder .pp_content_container {
position: relative;
text-align: left;
width: 100%;
}
body .pp_pic_holder .pp_content_container .pp_left,
body .pp_pic_holder .pp_content_container .pp_right {
background: none !important;
padding: 0 !important;
}
body .pp_pic_holder #pp_full_res {
line-height: 1 !important;
}
body .pp_pic_holder #pp_full_res .pp_inline {
color: #121212;
text-align: left;
}
body .pp_pic_holder #pp_full_res .pp_inline p {
margin: 0 0 15px;
}
body .pp_pic_holder #pp_full_res iframe {
width: 100% !important;
}
body .pp_pic_holder #pp_full_res img {
display: block;
}
@media only screen and (max-width: 768px) {
body .pp_pic_holder #pp_full_res img {
width: 100% !important;
height: auto !important;
}
}
body .pp_pic_holder .ppt,
body .pp_pic_holder .pp_gallery,
body .pp_pic_holder .pp_description {
display: none !important;
}
body .pp_pic_holder .pp_loaderIcon {
position: absolute;
left: 50%;
top: 50%;
width: 32px;
height: 32px;
margin: -16px 0 0 -16px;
background-color: #fff;
border-radius: 16px;
-webkit-animation: scaleout 1.0s infinite ease-in-out;
animation: scaleout 1.0s infinite ease-in-out;
}
body .pp_pic_holder .pp_fade {
position: relative;
top: 50%;
display: none;
-webkit-transform: translateY(-50%) translateZ(0);
-moz-transform: translateY(-50%) translateZ(0);
transform: translateY(-50%) translateZ(0);
}
body .pp_pic_holder .pp_details {
position: relative;
top: -1px;
display: table;
vertical-align: top;
width: 100% !important;
float: none !important;
margin: 0 !important;
padding: 15px 24px;
background-color: #fff;
box-sizing: border-box;
}
body .pp_pic_holder .pp_details .pp_nav {
position: relative;
display: table-cell;
vertical-align: middle;
width: 100%;
height: auto;
float: none;
margin: 0 !important;
}
body .pp_pic_holder .pp_details .pp_nav .pp_play,
body .pp_pic_holder .pp_details .pp_nav .pp_pause {
display: none;
}
body .pp_pic_holder .pp_details .pp_nav .currentTextHolder {
position: absolute;
top: 0;
left: 50%;
width: auto;
margin: 0;
padding: 0;
float: none;
color: #959595;
font-family: inherit;
font-size: inherit;
line-height: 30px;
font-style: inherit;
letter-spacing: 5px;
}
body .pp_pic_holder a:focus {
outline: none;
}
body .pp_pic_holder a.pp_arrow_previous,
body .pp_pic_holder a.pp_arrow_next {
position: relative;
display: inline-block;
vertical-align: top;
left: auto !important;
float: none;
width: auto !important;
height: auto !important;
margin: 0 !important;
color: #959595;
font-family: 'Ionicons';
font-size: 0;
line-height: 1;
text-indent: 0;
background: none !important;
opacity: 1 !important;
overflow: visible;
}
body .pp_pic_holder a.pp_arrow_previous:after,
body .pp_pic_holder a.pp_arrow_next:after {
font-size: 30px;
}
body .pp_pic_holder a.pp_arrow_previous:hover,
body .pp_pic_holder a.pp_arrow_next:hover {
color: #121212;
}
body .pp_pic_holder a.pp_arrow_previous:after {
content: "\f3d2";
}
body .pp_pic_holder a.pp_arrow_next {
margin: 0 0 0 14px !important;
}
body .pp_pic_holder a.pp_arrow_next:after {
content: "\f3d3";
}
body .pp_pic_holder a.pp_next,
body .pp_pic_holder a.pp_previous {
position: absolute;
top: calc(50% - 20px);
width: auto;
height: auto;
display: inline-block;
margin: 0 !important;
background: none !important;
color: #121212;
font-family: 'Ionicons';
font-size: 40px;
line-height: 1;
text-indent: -9999px !important;
opacity: 0;
-webkit-transition: opacity 0.2s ease-out, color 0.2s ease-out;
-moz-transition: opacity 0.2s ease-out, color 0.2s ease-out;
transition: opacity 0.2s ease-out, color 0.2s ease-out;
}
body .pp_pic_holder a.pp_next > *,
body .pp_pic_holder a.pp_previous > * {
display: none;
}
body .pp_pic_holder a.pp_next:after,
body .pp_pic_holder a.pp_previous:after {
display: block;
line-height: inherit;
text-indent: 0 !important;
}
body .pp_pic_holder a.pp_next:hover,
body .pp_pic_holder a.pp_previous:hover {
color: rgba(18, 18, 18, 0.8);
}
body .pp_pic_holder a.pp_previous {
left: 30px;
}
@media only screen and (max-width: 768px) {
body .pp_pic_holder a.pp_previous {
left: 20px;
}
}
body .pp_pic_holder a.pp_previous:after {
content: "\f3d2";
}
body .pp_pic_holder a.pp_next {
right: 30px;
}
@media only screen and (max-width: 768px) {
body .pp_pic_holder a.pp_next {
right: 20px;
}
}
body .pp_pic_holder a.pp_next:after {
content: "\f3d3";
}
body .pp_pic_holder a.pp_close {
position: relative;
display: table-cell;
vertical-align: middle;
width: auto;
height: auto;
margin: 0 !important;
background: none !important;
color: #959595;
font-family: 'Ionicons';
font-size: 0;
line-height: 1;
text-indent: 0;
cursor: pointer;
opacity: 1 !important; }
body .pp_pic_holder a.pp_close:hover {
color: #121212;
}
body .pp_pic_holder a.pp_expand {
position: absolute;
right: -22px;
top: -18px;
display: block;
height: auto;
width: auto;
color: #fff;
font-family: 'Ionicons';
font-size: 0;
line-height: 1;
text-align: center;
text-indent: 0;
background: none !important;
z-index: 2001;
}
body .pp_pic_holder a.pp_expand:after {
content: "\f386";
font-size: 22px;
}
body .pp_pic_holder a.pp_expand:hover {
color: rgba(255, 255, 255, 0.8);
}
body .pp_hoverContainer {
position: absolute;
top: 0;
width: 100%;
z-index: 2000;
}
@media only screen and (max-width: 768px) {
body .pp_hoverContainer {
width: 100% !important;
height: 100% !important;
}
}
body .pp_hoverContainer:hover a.pp_next,
body .pp_hoverContainer:hover a.pp_previous {
opacity: 1;
}
body .pp_overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
display: none;
background-color: #121212;
z-index: 10000 !important;
}  .slick-slider {
position: relative;
display: block;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-ms-touch-action: pan-y;
touch-action: pan-y;
-webkit-tap-highlight-color: transparent;
}
.slick-list {
position: relative;
overflow: hidden;
display: block;
margin: 0;
padding: 0;
}
.slick-list:focus {
outline: none;
}
.slick-list.dragging {
cursor: pointer;
cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0);
-o-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.slick-track {
position: relative;
left: 0;
top: 0;
display: block;
}
.slick-track:before,
.slick-track:after {
content: "";
display: table;
}
.slick-track:after {
clear: both;
}
.slick-loading .slick-track {
visibility: hidden;
}
.slick-slide {
float: left;
height: 100%;
min-height: 1px;
display: none;
}
[dir="rtl"] .slick-slide {
float: right;
}
.slick-slide img {
display: inline;
}
.slick-slide.slick-loading img {
display: none;
}
.slick-slide.dragging img {
pointer-events: none;
}
.slick-initialized .slick-slide {
display: block;
}
.slick-loading .slick-slide {
visibility: hidden;
}
.slick-vertical .slick-slide {
display: block;
height: auto;
border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
display: none;
}  .select2-container--default {
position: relative;
display: inline-block;
vertical-align: middle;
width: auto;
margin: 0;
border: 0;
border-radius: 0;
text-align: initial;
box-sizing: border-box;
}
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
float: left;
}
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__rendered {
padding: 0 20px 0 30px;
}
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
left: 20px;
right: auto;
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder,
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
float: right;
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__rendered {
padding: 0 20px 0 30px;
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
margin: 7px auto 0 5px;
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
margin: 0 auto 0 3px;
}
.select2-container--default.select2-container--disabled .select2-selection--single {
background-color: #eee;
cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
display: none;
}
.select2-container--default.select2-container--disabled .select2-selection--multiple {
background-color: #eee;
cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
display: none;
}
.select2-container--default.select2-container--open .select2-selection--single {
color: #121212;
}
.select2-container--default.select2-container--open .select2-dropdown {
left: 0;
}
.select2-container--default.select2-container--open .select2-dropdown.select2-dropdown--above {
border-bottom-color: transparent;
}
.select2-container--default.select2-container--open .select2-dropdown.select2-dropdown--below {
border-top-color: transparent;
}
.select2-container--default .select2-selection--single {
display: block;
height: 50px;
line-height: 48px;
padding: 0;
font-family: inherit;
font-size: inherit;
color: inherit;
background-color: transparent;
border: 1px solid #ebebeb;
border-radius: 0;
box-sizing: border-box;
cursor: pointer;
user-select: none;
-webkit-user-select: none;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
display: block;
padding: 0 30px 0 20px;
color: inherit;
line-height: inherit;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
box-sizing: border-box;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
position: relative;
cursor: pointer;
float: right;
margin: 0;
font-weight: inherit;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
color: inherit;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
position: absolute;
width: auto;
height: 100%;
top: 0;
right: 20px;
color: inherit;
line-height: inherit;
text-align: center;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
display: none;
}
.select2-container--default .select2-selection--single .select2-selection__arrow:before {
font-family: 'FontAwesome';
content: '\f107';
}
.select2-container--default .select2-selection--multiple {
display: block;
height: 44px;
line-height: 42px;
padding: 0;
font-family: inherit;
font-size: inherit;
color: inherit;
background-color: transparent;
border: 1px solid #ebebeb;
border-radius: 0;
outline: 0;
box-sizing: border-box;
cursor: pointer;
user-select: none;
-webkit-user-select: none;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
display: block;
list-style: none;
padding: 0 30px 0 20px;
margin: 0;
color: inherit;
line-height: inherit;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
box-sizing: border-box;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
list-style: none;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__placeholder {
float: left;
margin: 0;
color: inherit;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__clear {
position: relative;
cursor: pointer;
float: right;
margin: 0;
font-weight: inherit;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__choice {
float: left;
margin: 7px 5px 0 0;
padding: 0 10px;
line-height: 30px;
color: #fff;
background-color: #121212;
border: 0;
border-radius: 0;
cursor: default;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__choice__remove {
display: inline-block;
margin: 0 3px 0 0;
color: inherit;
font-weight: 700;
cursor: pointer;
-webkit-transition: opacity 0.2s ease-out;
-moz-transition: opacity 0.2s ease-out;
transition: opacity 0.2s ease-out;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__choice__remove:hover {
color: inherit;
opacity: 0.8;
}
.select2-container--default .select2-search--inline {
float: left;
}
.select2-container--default .select2-search--inline .select2-search__field {
margin: 0;
padding: 0;
font-size: 100%;
background: transparent;
border: none;
outline: 0;
box-shadow: none;
-webkit-appearance: textfield;
box-sizing: border-box;
}
.select2-container--default .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
-webkit-appearance: none;
}
.select2-container--default .select2-dropdown {
position: absolute;
top: 0;
left: -100000px;
width: 100%;
display: block;
background-color: #fff;
border: 1px solid #ebebeb;
border-radius: 0;
z-index: 1051;
box-sizing: border-box;
}
.select2-container--default .select2-search--dropdown {
display: block;
padding: 14px 15px 2px;
}
.select2-container--default .select2-search--dropdown.select2-search--hide {
display: none;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
padding: 4px 8px;
margin: 0;
width: 100%;
color: inherit;
font-size: inherit;
line-height: 20px;
font-family: inherit;
font-weight: inherit;
border: 1px solid #ebebeb;
outline: none;
box-sizing: border-box;
-webkit-appearance: none;
}
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
border-color: #121212;
}
.select2-container--default .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
-webkit-appearance: none;
}
.select2-container--default .select2-results {
display: block;
padding: 0;
margin: 0;
overflow: hidden;
}
.select2-container--default .select2-results > .select2-results__options {
max-height: 200px;
overflow-y: auto;
}
.select2-container--default .select2-results__options {
position: relative;
padding: 2px 15px;
margin: 5px 0;
list-style: none;
}
.select2-container--default .select2-results__option {
padding: 7px 0;
user-select: none;
-webkit-user-select: none;
-webkit-transition: color 0.2s ease-out;
-moz-transition: color 0.2s ease-out;
transition: color 0.2s ease-out;
}
.select2-container--default .select2-results__option[aria-selected] {
cursor: pointer;
}
.select2-container--default .select2-results__option[role=group] {
padding: 0;
}
.select2-container--default .select2-results__option[aria-disabled=true] {
color: #121212;
}
.select2-container--default .select2-results__option[aria-selected=true],
.select2-container--default .select2-results__option[data-selected=true] {
color: #121212;
background: none;
}
.select2-container--default .select2-results__option .select2-results__option {
padding-left: 1em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
padding-left: 0;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
margin-left: -1em;
padding-left: 2em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
margin-left: -2em;
padding-left: 3em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
margin-left: -3em;
padding-left: 4em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
margin-left: -4em;
padding-left: 5em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
margin-left: -5em;
padding-left: 6em;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
color: #121212;
background: none;
}
.select2-container--default .select2-results__group {
display: block;
padding: 7px 0;
cursor: default;
}
.select2-close-mask {
border: 0;
margin: 0;
padding: 0;
display: block;
position: fixed;
left: 0;
top: 0;
min-height: 100%;
min-width: 100%;
height: auto;
width: auto;
opacity: 0;
z-index: 99;
background-color: #fff;
filter: alpha(opacity=0);
}
.select2-hidden-accessible {
border: 0 !important;
clip: rect(0 0 0 0) !important;
height: 1px !important;
margin: -1px !important;
overflow: hidden !important;
padding: 0 !important;
position: absolute !important;
width: 1px !important;
}  .widget_icl_lang_sel_widget {
position: relative;
display: inline-block;
vertical-align: middle;
}
.widget_icl_lang_sel_widget img {
position: relative;
display: inline-block !important;
vertical-align: middle;
top: -1px;
padding-right: 6px;
}
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown,
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click {
position: relative;
display: inline-block;
vertical-align: middle;
width: 200px;
text-align: left;
box-sizing: border-box;
}
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown:hover .wpml-ls-sub-menu,
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click:hover .wpml-ls-sub-menu {
opacity: 1;
visibility: visible;
-webkit-transition-delay: 0s;
-moz-transition-delay: 0s;
transition-delay: 0s;
}
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-legacy-dropdown,
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-legacy-dropdown {
padding: 0;
margin: 0;
}
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle,
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle {
position: relative;
display: block;
padding: 9px 20px;
color: #121212;
background-color: #fff;
border: 1px solid #ebebeb;
box-sizing: border-box;
}
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle:hover,
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle:hover {
color: #fe6c61;
}
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle:after,
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle:after {
content: '\33';
position: absolute;
top: calc(50% - 8px);
right: 20px;
display: block;
font-family: 'ElegantIcons';
font-size: 15px;
line-height: 1;
}
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu,
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
position: absolute;
top: 100%;
left: 0;
width: 100%;
padding: 14px 20px;
margin: 0;
list-style: none;
background-color: #fff;
border: 1px solid #ebebeb;
border-top: 0;
z-index: 10;
opacity: 0;
visibility: hidden;
box-sizing: border-box;
-webkit-transition: visibility 0s linear 0.25s, opacity 0.25s ease-in-out;
-moz-transition: visibility 0s linear 0.25s, opacity 0.25s ease-in-out;
transition: visibility 0s linear 0.25s, opacity 0.25s ease-in-out;
}
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item,
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item {
display: block;
width: 100%;
margin: 0;
padding: 0;
}
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a,
.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item a {
display: block;
padding: 7px 0;
}
.widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul {
list-style-type: none;
margin: 0;
padding: 0;
}
.widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li {
display: inline-block;
vertical-align: middle;
margin: 0 15px 5px 0;
}
.widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li:last-child {
margin-right: 0;
}
.widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li a {
display: block;
}
.widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul {
list-style-type: none;
margin: 0;
padding: 0;
}
.widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li {
display: block;
margin: 0;
padding: 5px 0;
}
.widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li a {
display: block;
}
aside.qodef-sidebar .widget_icl_lang_sel_widget,
.wpb_widgetised_column .widget_icl_lang_sel_widget,
.qodef-page-footer .widget_icl_lang_sel_widget,
.qodef-side-menu .widget_icl_lang_sel_widget,
.qodef-vertical-menu-area .widget_icl_lang_sel_widget {
width: 100%;
}
aside.qodef-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown,
aside.qodef-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click,
.wpb_widgetised_column .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown,
.wpb_widgetised_column .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click,
.qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown,
.qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click,
.qodef-side-menu .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown,
.qodef-side-menu .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click,
.qodef-vertical-menu-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown,
.qodef-vertical-menu-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click {
width: 100%;
}
.qodef-top-bar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown,
.qodef-top-bar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click {
width: 140px;
}
.qodef-top-bar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle,
.qodef-top-bar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle {
padding: 0;
line-height: 46px;
color: #fff;
background-color: transparent;
border: 0;
}
.qodef-top-bar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle:after,
.qodef-top-bar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle:after {
right: 0;
}
.qodef-top-bar .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li {
margin-bottom: 0;
}
.qodef-top-bar .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li {
display: inline-block;
vertical-align: middle;
margin-right: 15px;
}
.qodef-top-bar .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li:last-child {
margin-right: 0;
}
.qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li,
.qodef-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li,
.qodef-footer-top-holder .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li {
display: inline-block;
vertical-align: middle;
margin-right: 15px;
}
.qodef-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li:last-child,
.qodef-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li:last-child,
.qodef-footer-top-holder .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li:last-child {
margin-right: 0;
}
.qodef-main-menu > ul > li.menu-item-language.has_sub > a > span.item_outer .item_text:after {
content: '\33';
position: absolute;
right: -15px;
top: 0;
font-family: 'ElegantIcons';
font-size: 15px;
}
.qodef-main-menu > ul > li.menu-item-language a > span.item_outer .item_text {
position: relative;
display: table;
}
.qodef-main-menu > ul > li.menu-item-language a > span.item_outer .item_text > * {
display: table-cell;
vertical-align: middle;
}
.qodef-main-menu > ul > li.menu-item-language a > span.item_outer .item_text img {
padding: 5px 6px 0 0;
}
.qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle,
.qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle {
color: #fff;
background-color: transparent;
border-color: #fff;
}
.qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle:hover,
.qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle:hover {
color: rgba(255, 255, 255, 0.8);
}
.qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu,
.qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
background-color: #363636;
}
.qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a,
.qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item a {
color: #fff;
}
.qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a:hover,
.qodef-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item a:hover {
color: rgba(255, 255, 255, 0.8);
}        .qodef-blog-holder {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
margin: 0 0 40px;
clear: both;
}
.qodef-blog-holder article {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
box-sizing: border-box;
}
.qodef-blog-holder article.sticky .qodef-post-title a {
color: #fe6c61;
}
.qodef-blog-holder article .qodef-post-content {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
}
.qodef-blog-holder article .qodef-post-info-comments-holder span,
.qodef-blog-holder article .qodef-blog-like span {
margin-left: 4px;
}
.qodef-blog-holder article .qodef-post-image {
position: relative;
display: inline-block;
vertical-align: middle;
max-width: 100%;
}
.qodef-blog-holder article .qodef-post-image img {
display: block;
}
.qodef-blog-holder article .qodef-post-image-background {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
height: 100%;
background-position: center;
background-size: cover;
}
.qodef-blog-holder article .qodef-post-image-background a {
position: absolute;
display: block;
width: 100%;
height: 100%;
top: 0;
left: 0;
}
.qodef-blog-holder article .qodef-post-image-icon {
position: absolute;
top: 20px;
right: 20px;
font-size: 30px;
line-height: 1;
color: #fff;
}
.qodef-blog-holder article .qodef-post-text {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
box-sizing: border-box;
}
.qodef-blog-holder article .qodef-post-title {
margin: 0;
}
.qodef-blog-holder article .qodef-post-excerpt-holder {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
margin: 15px 0 0;
}
.qodef-blog-holder article .qodef-post-excerpt-holder p {
margin: 0;
}
.qodef-blog-holder article .qodef-post-excerpt:after {
content: '...';
}
.qodef-blog-holder article .qodef-more-link-container {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
margin: 15px 0 0;
}
.qodef-blog-holder article .qodef-post-info {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
}
.qodef-blog-holder article .qodef-post-info > * {
position: relative;
display: inline-block;
vertical-align: top;
color: currentColor;
}
.qodef-blog-holder article .qodef-post-info > * a {
color: inherit;
}
.qodef-blog-holder article .qodef-post-info-top {
margin-bottom: 5px;
}
.qodef-blog-holder article .qodef-post-info-top > div {
position: relative;
display: inline-block;
vertical-align: top;
padding: 0 14px 0 0;
color: #000;
}
.qodef-blog-holder article .qodef-post-info-top > div:after {
content: '/';
position: absolute;
top: 0;
right: -2px;
}
.qodef-blog-holder article .qodef-post-info-top > div:last-child {
padding: 0;
}
.qodef-blog-holder article .qodef-post-info-top > div:last-child:after {
content: '';
}
.qodef-blog-holder article .qodef-post-info-top > div a {
color: inherit;
}
.qodef-blog-holder article .qodef-post-info-top > div a:hover {
color: #b6b6b6;
}
.qodef-blog-holder article .qodef-post-info-bottom {
padding-top: 17px;
}
.qodef-blog-holder article .qodef-post-info-bottom .qodef-post-info-bottom-left,
.qodef-blog-holder article .qodef-post-info-bottom .qodef-post-info-bottom-right {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
}
.qodef-blog-holder article .qodef-post-info-bottom .qodef-post-info-comments-holder .qodef-comments {
font-size: 11px;
font-family: "Oswald", sans-serif;
font-weight: 500;
color: #b6b6b6;
}
.qodef-blog-holder article .qodef-post-info-bottom .qodef-post-info-comments-holder i {
color: #b6b6b6;
position: relative;
top: -1px;
}
.qodef-blog-holder article .qodef-post-info-bottom .qodef-tags-holder .qodef-tags-text {
font-family: "Oswald", sans-serif;
font-size: 17px;
text-transform: uppercase;
color: #000;
font-weight: 500;
letter-spacing: .05em;
}
.qodef-blog-holder article .qodef-post-info-bottom .qodef-tags-holder a {
font-family: "Oswald", sans-serif;
font-size: 17px;
text-transform: uppercase;
font-weight: 500;
color: #b6b6b6;
letter-spacing: .05em;
}
.qodef-blog-holder article .qodef-post-info-bottom .qodef-tags-holder a:hover {
color: #121212;
}
.qodef-blog-holder article .qodef-post-info-bottom .qodef-post-info-bottom-right > div {
display: inline-block;
font-size: 11px;
color: #b6b6b6;
}
.qodef-blog-holder article .qodef-post-info-bottom .qodef-post-info-bottom-right .qodef-blog-like span {
font-family: "Oswald", sans-serif;
font-weight: 500;
margin-left: 4px;
}
.qodef-blog-holder article .qodef-post-info-bottom .qodef-post-info-bottom-right .qodef-blog-like span,
.qodef-blog-holder article .qodef-post-info-bottom .qodef-post-info-bottom-right .qodef-blog-like i {
color: #b6b6b6;
font-size: 14px;
}
@media only screen and (min-width: 769px) {
.qodef-blog-holder article .qodef-post-info-bottom .qodef-post-info-bottom-left,
.qodef-blog-holder article .qodef-post-info-bottom .qodef-post-info-bottom-right {
width: 50%;
}
.qodef-blog-holder article .qodef-post-info-bottom .qodef-post-info-bottom-left {
float: left;
}
.qodef-blog-holder article .qodef-post-info-bottom .qodef-post-info-bottom-right {
text-align: right;
float: right;
}
}
.qodef-blog-holder article .qodef-post-info-bottom .qodef-post-info-bottom-right > div {
margin-left: 17px;
}
.qodef-blog-holder article .qodef-post-info-bottom .qodef-post-info-bottom-right > div:first-child {
margin-left: 0;
}
.qodef-blog-holder article.format-link .qodef-post-text {
padding: 50px 53px;
background-color: transparent;
}
.qodef-blog-holder article.format-link .qodef-post-text-main {
position: relative;
display: table;
table-layout: fixed;
height: 100%;
width: 100%;
}
.qodef-blog-holder article.format-link .qodef-post-mark {
display: block;
}
.qodef-blog-holder article.format-link .qodef-post-mark .qodef-link-mark {
padding-top: 5px;
font-size: 22px;
color: #fe6c61;
}
.qodef-blog-holder article.format-link .qodef-post-link-holder {
position: relative;
display: table-cell;
height: 100%;
width: 100%;
vertical-align: middle;
vertical-align: top;
}
.qodef-blog-holder article.format-quote .qodef-post-text {
padding: 50px 53px;
background-color: transparent;
}
.qodef-blog-holder article.format-quote .qodef-post-text-main {
position: relative;
display: table;
table-layout: fixed;
height: 100%;
width: 100%;
}
.qodef-blog-holder article.format-quote .qodef-post-mark {
display: block;
}
.qodef-blog-holder article.format-quote .qodef-post-mark .qodef-quote-mark {
padding-top: 5px;
font-size: 36px;
color: #fe6c61;
}
.qodef-blog-holder article.format-quote .qodef-post-link-holder {
position: relative;
display: table-cell;
height: 100%;
width: 100%;
vertical-align: middle;
vertical-align: top;
text-align: left;
}
.qodef-blog-holder article.format-quote .qodef-post-author {
display: inline-block;
margin-bottom: 23px;
font-size: 13px;
line-height: 20px;
}
.qodef-blog-holder article.format-gallery .qodef-post-image {
width: 100%;
}
.qodef-blog-holder article.format-gallery .owl-carousel .owl-item {
z-index: 2;
}
.qodef-blog-holder article.format-gallery .owl-carousel .owl-item.active {
z-index: 3;
}
.qodef-blog-holder article.format-audio.has-post-thumbnail .qodef-post-heading {
position: relative;
}
.qodef-blog-holder article.format-audio.has-post-thumbnail .qodef-blog-audio-holder {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
display: inline-block;
vertical-align: middle;
}
.qodef-blog-holder article.format-audio .qodef-post-image {
width: 100%;
max-width: inherit;
}
.qodef-blog-holder article.format-audio .qodef-post-image img {
width: 100%;
}
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-time-handle-content {
display: none !important;
}
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-time-hovered {
height: 5px;
}
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-container,
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-embed,
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-embed body,
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-container .mejs-controls {
background: none;
}
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-container {
background-color: #121212;
}
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-container,
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-container .mejs-controls {
height: 38px !important;
}
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-container .mejs-controls {
padding: 0 10px 0 4px;
box-sizing: border-box;
}
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-container .mejs-controls > .mejs-playpause-button {
width: 39px;
}
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-container .mejs-controls > .mejs-volume-button {
width: 30px;
}
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-container .mejs-controls > .mejs-playpause-button,
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-container .mejs-controls > .mejs-volume-button {
height: 38px;
}
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-container .mejs-controls > .mejs-playpause-button button,
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-container .mejs-controls > .mejs-volume-button button {
position: relative;
height: 100%;
background: none;
background-position: center;
background-repeat: no-repeat;
margin: 0;
border: 0;
outline: none;
}
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-container .mejs-controls > .mejs-playpause-button.mejs-play button,
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-container .mejs-controls > .mejs-volume-button.mejs-play button {
width: 39px;
background-image: url(//camaralucida.cl/wp-content/themes/ebullient/framework/modules/blog/assets/img/audio/play.png);
}
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-container .mejs-controls > .mejs-playpause-button.mejs-pause button,
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-container .mejs-controls > .mejs-volume-button.mejs-pause button {
width: 39px;
background-image: url(//camaralucida.cl/wp-content/themes/ebullient/framework/modules/blog/assets/img/audio/pause.png);
}
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-container .mejs-controls > .mejs-playpause-button.mejs-stop button,
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-container .mejs-controls > .mejs-volume-button.mejs-stop button {
width: 39px;
background-image: url(//camaralucida.cl/wp-content/themes/ebullient/framework/modules/blog/assets/img/audio/stop.png);
}
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-container .mejs-controls > .mejs-playpause-button.mejs-mute button,
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-container .mejs-controls > .mejs-volume-button.mejs-mute button {
width: 30px;
background-image: url(//camaralucida.cl/wp-content/themes/ebullient/framework/modules/blog/assets/img/audio/sound.png);
}
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-container .mejs-controls > .mejs-playpause-button.mejs-unmute button,
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-container .mejs-controls > .mejs-volume-button.mejs-unmute button {
width: 30px;
background-image: url(//camaralucida.cl/wp-content/themes/ebullient/framework/modules/blog/assets/img/audio/mute.png);
}
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-container .mejs-controls > .mejs-time {
height: 100%;
padding: 0;
font-family: inherit;
font-size: 13px;
color: #fff;
line-height: 36px;
}
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-container .mejs-controls > .mejs-time-rail {
height: 100%;
padding: 0;
font-family: inherit;
}
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-container .mejs-controls > .mejs-time-rail .mejs-time-total {
height: 5px;
margin: 15px 0;
background: none;
background-color: #fff;
}
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-container .mejs-controls > .mejs-time-rail .mejs-time-total .mejs-time-current {
height: 5px;
background-color: #fe6c61;
}
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-container .mejs-controls > .mejs-time-rail .mejs-time-total .mejs-time-float {
top: -12px;
border: 0;
color: #fff;
height: 9px;
}
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-container .mejs-controls > .mejs-time-rail .mejs-time-total .mejs-time-float .mejs-time-float-corner {
border-top-color: #000;
margin-top: 3px;
}
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-container .mejs-controls > .mejs-time-rail .mejs-time-total .mejs-time-loaded,
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-container .mejs-controls > .mejs-time-rail .mejs-time-total .mejs-time-float {
background: none;
}
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-container .mejs-controls > a.mejs-horizontal-volume-slider {
height: 38px;
}
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-container .mejs-controls > a.mejs-horizontal-volume-slider .mejs-horizontal-volume-total,
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-container .mejs-controls > a.mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
height: 5px;
top: 15px;
background: none;
}
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-container .mejs-controls > a.mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
background-color: #fff;
position: relative;
}
.qodef-blog-holder article.format-audio .qodef-blog-audio-holder .mejs-container .mejs-controls > a.mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
background-color: #fe6c61;
position: absolute;
top: 0;
}
.qodef-blog-holder article.format-video .qodef-self-hosted-video {
max-width: 100%;
}  .qodef-blog-holder.qodef-blog-type-masonry {    }
.qodef-blog-holder.qodef-blog-type-masonry .qodef-blog-holder-inner {
opacity: 0;
}
.qodef-blog-holder.qodef-blog-type-masonry article {
float: left;
}
.qodef-blog-holder.qodef-blog-type-masonry article,
.qodef-blog-holder.qodef-blog-type-masonry .qodef-blog-masonry-grid-sizer {
width: 100%;
}
.qodef-blog-holder.qodef-blog-type-masonry .qodef-blog-masonry-grid-gutter {
width: 0;
}
.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-two-columns article,
.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-two-columns .qodef-blog-masonry-grid-sizer {
width: 50%;
}
.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%;
}
.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-three-columns article,
.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-three-columns .qodef-blog-masonry-grid-sizer {
width: 33.33333%;
}
.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: 66.66667%;
}
.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-four-columns article,
.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-four-columns .qodef-blog-masonry-grid-sizer {
width: 25%;
}
.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: 50%;
}
.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-five-columns article,
.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-five-columns .qodef-blog-masonry-grid-sizer {
width: 20%;
}
.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: 40%;
}
.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-masonry-full-width {
box-sizing: border-box;
}
.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-masonry-full-width.qodef-no-space {
padding: 0 0px;
}
.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-masonry-full-width.qodef-tiny-space {
padding: 0 10px;
}
.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-masonry-full-width.qodef-small-space {
padding: 0 20px;
}
.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-masonry-full-width.qodef-normal-space {
padding: 0 30px;
}
.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-masonry-full-width.qodef-medium-space {
padding: 0 40px;
}
.qodef-blog-holder.qodef-blog-type-masonry.qodef-blog-masonry-full-width.qodef-large-space {
padding: 0 50px;
}  .qodef-blog-pagination-wp {
display: none;
}
.qodef-blog-pagination {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
margin: 20px 0 30px;
clear: both;
}
.qodef-blog-pagination ul {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
padding: 0;
margin: 0;
list-style: none;
text-align: center;
}
.qodef-blog-pagination ul li {
position: relative;
display: inline-block;
vertical-align: top;
margin: 0 6px;
}
.qodef-blog-pagination ul li a {
position: relative;
display: inline-block;
vertical-align: middle;
margin: 0;
padding: 0;
color: #959595;
}
.qodef-blog-pagination ul li a.qodef-pag-active,
.qodef-blog-pagination ul li a:hover {
color: #121212;
}
.qodef-blog-pagination ul li.qodef-pag-prev,
.qodef-blog-pagination ul li.qodef-pag-next,
.qodef-blog-pagination ul li.qodef-pag-first,
.qodef-blog-pagination ul li.qodef-pag-last {
top: -1px;
margin: 0;
}
.qodef-blog-pagination ul li.qodef-pag-prev a,
.qodef-blog-pagination ul li.qodef-pag-next a,
.qodef-blog-pagination ul li.qodef-pag-first a,
.qodef-blog-pagination ul li.qodef-pag-last a {
font-size: 22px;
}
.qodef-blog-pagination ul li.qodef-pag-prev a span,
.qodef-blog-pagination ul li.qodef-pag-next a span,
.qodef-blog-pagination ul li.qodef-pag-first a span,
.qodef-blog-pagination ul li.qodef-pag-last a span {
display: block;
line-height: inherit;
}
.qodef-blog-pagination ul li.qodef-pag-prev a span:before,
.qodef-blog-pagination ul li.qodef-pag-next a span:before,
.qodef-blog-pagination ul li.qodef-pag-first a span:before,
.qodef-blog-pagination ul li.qodef-pag-last a span:before {
display: block;
line-height: inherit;
}  .qodef-blog-list-holder.qodef-bl-pag-standard-shortcodes .qodef-blog-list {
opacity: 1;
-webkit-transition: opacity 0.2s ease-out;
-moz-transition: opacity 0.2s ease-out;
transition: opacity 0.2s ease-out;
}
.qodef-blog-list-holder.qodef-bl-pag-standard-shortcodes.qodef-bl-pag-standard-shortcodes-animate .qodef-blog-list {
opacity: 0;
}
.qodef-bl-standard-pagination {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
margin: 20px 0 0;
clear: both;
}
.qodef-bl-standard-pagination ul {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
padding: 0;
margin: 0;
list-style: none;
text-align: center;
}
.qodef-bl-standard-pagination ul li {
position: relative;
display: inline-block;
vertical-align: top;
margin: 0 12px;
padding: 0;
}
.qodef-bl-standard-pagination ul li a {
position: relative;
display: inline-block;
vertical-align: middle;
margin: 0;
padding: 0;
color: #959595;
}
.qodef-bl-standard-pagination ul li a:hover {
color: #121212;
}
.qodef-bl-standard-pagination ul li.qodef-bl-pag-active a {
color: #121212;
}
.qodef-bl-standard-pagination ul li.qodef-bl-pag-prev,
.qodef-bl-standard-pagination ul li.qodef-bl-pag-next {
position: absolute;
top: 0;
}
.qodef-bl-standard-pagination ul li.qodef-bl-pag-prev a,
.qodef-bl-standard-pagination ul li.qodef-bl-pag-next a {
font-size: 30px;
-webkit-transition: color 0.2s ease-out, opacity 0.2s ease-out;
-moz-transition: color 0.2s ease-out, opacity 0.2s ease-out;
transition: color 0.2s ease-out, opacity 0.2s ease-out;
}
.qodef-bl-standard-pagination ul li.qodef-bl-pag-prev a span,
.qodef-bl-standard-pagination ul li.qodef-bl-pag-next a span {
display: block;
line-height: inherit;
}
.qodef-bl-standard-pagination ul li.qodef-bl-pag-prev a span:before,
.qodef-bl-standard-pagination ul li.qodef-bl-pag-next a span:before {
display: block;
line-height: inherit;
}
.qodef-bl-standard-pagination ul li.qodef-bl-pag-prev {
left: 0;
}
.qodef-bl-standard-pagination ul li.qodef-bl-pag-prev a {
opacity: 0;
}
.qodef-bl-standard-pagination ul li.qodef-bl-pag-next {
right: 0;
}
.qodef-bl-standard-pagination ul li.qodef-bl-pag-next a {
opacity: 1;
}  .qodef-blog-pag-load-more {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
margin: 40px 0 30px;
text-align: center;
}  .qodef-blog-pag-loading {
position: relative;
display: none;
width: 100%;
margin: 40px 0 20px;
font-family: "Oswald", sans-serif;
font-size: 12px;
line-height: 2em;
letter-spacing: .1em;
font-weight: 700;
text-transform: uppercase;
color: #121212;
text-align: center;
}
.qodef-blog-pag-loading > span {
padding: 12px 46px;
}
.qodef-blog-pag-loading.qodef-standard-pag-trigger {
position: absolute;
top: 50px;
left: 0;
}
.qodef-blog-pag-loading.qodef-showing {
display: block;
} .archive.author .qodef-content .qodef-content-inner > .qodef-full-width > .qodef-full-width-inner {
padding: 0 !important;
}
.archive.author .qodef-author-description-image {
display: block;
width: 100%;
}
.archive.author .qodef-author-description-content {
display: block;
}
.archive.author .qodef-author-description-image img {
margin: 0 auto;
}
.archive.author .qodef-author-name a {
color: #fff;
}
.archive.author .qodef-author-description {
padding: 80px 0;
margin-bottom: 64px;
background-color: #383838;
}
.archive.author .qodef-author-description .qodef-author-description-text-holder {
display: block;
text-align: center;
padding: 14px 0 4px;
}
.archive.author .qodef-author-description .qodef-author-description-text-holder .qodef-author-name a {
color: #fff;
}
.archive.author .qodef-author-description .qodef-author-description-text-holder .qodef-author-website {
margin-top: 22px;
font-size: 13px;
font-weight: 600;
}
.archive.author .qodef-author-description .qodef-author-description-text-holder .qodef-author-website a {
color: #fff;
}
.archive.author .qodef-author-description .qodef-author-description-text-holder .qodef-author-text {
margin-top: 18px;
}
.archive.author .qodef-author-description .qodef-author-description-text-holder .qodef-author-text > p {
width: 25%;
margin: 0 auto;
color: #fff;
}
@media only screen and (max-width: 1440px) {
.archive.author .qodef-author-description .qodef-author-description-text-holder .qodef-author-text > p {
width: 35%;
}
}
@media only screen and (max-width: 1024px) {
.archive.author .qodef-author-description .qodef-author-description-text-holder .qodef-author-text > p {
width: 57%;
}
}
@media only screen and (max-width: 480px) {
.archive.author .qodef-author-description .qodef-author-description-text-holder .qodef-author-text > p {
width: 90%;
}
}
.archive.author .qodef-author-description .qodef-author-description-text-holder .qodef-author-social-icons {
margin-top: 30px;
}
.archive.author .qodef-author-description .qodef-author-description-text-holder .qodef-author-social-icons a {
width: 50px;
height: 50px;
line-height: 50px;
text-align: center;
background-color: #fff;
font-size: 14px;
color: #000;
-webkit-transition: color 0.2s ease-out, background-color 0.2s ease-out;
-moz-transition: color 0.2s ease-out, background-color 0.2s ease-out;
transition: color 0.2s ease-out, background-color 0.2s ease-out;
}
.archive.author .qodef-author-description .qodef-author-description-text-holder .qodef-author-social-icons a.qodef-author-social-facebook:hover {
background-color: #3b66ad;
color: #fff;
}
.archive.author .qodef-author-description .qodef-author-description-text-holder .qodef-author-social-icons a.qodef-author-social-instagram:hover {
background-color: #f45067;
color: #fff;
}
.archive.author .qodef-author-description .qodef-author-description-text-holder .qodef-author-social-icons a.qodef-author-social-twitter:hover {
background-color: #00aae9;
color: #fff;
}
.archive.author .qodef-author-description .qodef-author-description-text-holder .qodef-author-social-icons a.qodef-author-social-pinterest:hover {
background-color: #bd081b;
color: #fff;
}
.archive.author .qodef-author-description .qodef-author-description-text-holder .qodef-author-social-icons a.qodef-author-social-linkedin:hover {
background-color: #007bb5;
color: #fff;
}
.archive.author .qodef-author-description .qodef-author-description-text-holder .qodef-author-social-icons a.qodef-author-social-tumblr:hover {
background-color: #32506d;
color: #fff;
}
.archive.author .qodef-author-description .qodef-author-description-text-holder .qodef-author-social-icons a.qodef-author-social-googleplus:hover {
background-color: #dd4b39;
color: #fff;
} .qodef-blog-holder.qodef-blog-masonry article {
margin: 0 0 20px;
padding: 0 0 30px;
}
.qodef-blog-holder.qodef-blog-masonry article.qodef-post-has-media .qodef-post-heading {
margin-bottom: 15px;
}
.qodef-blog-holder.qodef-blog-masonry article .qodef-post-info-top {
font-size: 12px;
font-family: "Oswald", sans-serif;
font-weight: 700;
letter-spacing: .05em;
text-transform: uppercase;
color: #000;
}
.qodef-blog-holder.qodef-blog-masonry article .qodef-post-info-bottom-left {
font-size: 11px;
font-family: "Oswald", sans-serif;
text-transform: uppercase;
color: #b6b6b6;
letter-spacing: .05em;
font-weight: 500;
color: #b6b6b6;
}
.qodef-blog-holder.qodef-blog-masonry article .qodef-post-info-bottom-left > div a {
color: inherit;
}  .qodef-blog-holder.qodef-blog-standard article {
margin: 0 0 50px;
padding: 0;
}
.qodef-blog-holder.qodef-blog-standard article.qodef-post-has-media .qodef-post-heading {
margin-bottom: 23px;
}
.qodef-blog-holder.qodef-blog-standard article .qodef-post-title a:hover {
color: #121212;
text-decoration: underline;
}
.qodef-blog-holder.qodef-blog-standard article .qodef-post-info-top {
font-size: 12px;
font-family: "Oswald", sans-serif;
font-weight: 500;
letter-spacing: .05em;
text-transform: uppercase;
color: #000;
}
.qodef-blog-holder.qodef-blog-standard article .qodef-post-info-bottom-left {
font-size: 11px;
font-family: "Oswald", sans-serif;
text-transform: uppercase;
color: #b6b6b6;
letter-spacing: .05em;
font-weight: 500;
color: #b6b6b6;
}
.qodef-blog-holder.qodef-blog-standard article .qodef-post-info-bottom-left > div a {
color: inherit;
}
.qodef-blog-holder.qodef-blog-standard article .qodef-post-info-bottom-left > div a:hover {
color: #121212;
}
.qodef-blog-holder.qodef-blog-standard article .qodef-post-info-bottom .qodef-post-info-bottom-left {
width: 50%;
float: left;
}
.qodef-blog-holder.qodef-blog-standard article .qodef-post-info-bottom .qodef-post-info-bottom-right {
width: 50%;
float: right;
text-align: right;
}
.qodef-blog-holder.qodef-blog-standard article .qodef-post-info-bottom .qodef-post-info-bottom-right > div {
margin-left: 6px;
}
.qodef-blog-holder.qodef-blog-standard article .qodef-post-info-bottom .qodef-post-info-bottom-right > div:first-child {
margin-left: 0;
}
.qodef-blog-holder.qodef-blog-standard article .qodef-post-info-bottom .qodef-post-info-bottom-right .qodef-blog-like i {
font-size: 13px;
}
.qodef-blog-holder.qodef-blog-standard article .qodef-post-info-bottom .qodef-post-info-bottom-right .qodef-blog-like span {
font-size: 11px;
}
.qodef-blog-holder.qodef-blog-standard article .qodef-post-info-bottom .qodef-post-info-bottom-right .qodef-post-info-comments-holder .qodef-post-info-comments > i {
font-size: 13px;
}
.qodef-blog-holder.qodef-blog-standard article .qodef-post-info-bottom .qodef-post-info-bottom-right .qodef-post-info-comments-holder .qodef-post-info-comments span {
font-size: 11px;
}
.qodef-blog-holder.qodef-blog-standard article.format-link .qodef-post-text,
.qodef-blog-holder.qodef-blog-standard article.format-quote .qodef-post-text {
text-align: center;
}
.qodef-blog-holder.qodef-blog-standard article.format-link .qodef-post-info-bottom > div,
.qodef-blog-holder.qodef-blog-standard article.format-quote .qodef-post-info-bottom > div {
font-size: 11px;
font-family: "Oswald", sans-serif;
text-transform: uppercase;
color: #b6b6b6;
letter-spacing: .05em;
font-weight: 500;
color: #b6b6b6;
display: inline-block;
margin-right: 4px;
}
.qodef-blog-holder.qodef-blog-standard article.format-link .qodef-post-info-bottom > div a,
.qodef-blog-holder.qodef-blog-standard article.format-quote .qodef-post-info-bottom > div a {
color: inherit;
}
.qodef-blog-holder.qodef-blog-standard article.format-link .qodef-post-mark {
margin-bottom: 10px;
}  .qodef-author-description {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
padding: 0;
background-color: transparent;
text-align: center;
box-sizing: border-box;
}
.qodef-author-description .qodef-author-description-inner {
padding: 41px 0 39px;
min-height: 78px;
clear: both;
}
.qodef-author-description .qodef-author-description-content {
position: relative;
display: table;
padding: 0 30px 0 0;
}
.qodef-author-description .qodef-author-description-image {
display: table-cell;
width: 145px;
margin: 0 auto;
vertical-align: middle;
padding-right: 34px;
}
.qodef-author-description .qodef-author-description-image img {
display: block;
border-radius: 5em;
}
.qodef-author-description .qodef-author-description-text-holder {
display: table-cell;
position: relative;
padding: 6px 0 4px;
vertical-align: middle;
text-align: left;
}
.qodef-author-description .qodef-author-description-text-holder .qodef-author-name {
margin: 0;
}
.qodef-author-description .qodef-author-description-text-holder .qodef-author-name a {
color: #121212;
}
.qodef-author-description .qodef-author-description-text-holder .qodef-author-name a:hover {
color: #121212;
text-decoration: underline;
}
.qodef-author-description .qodef-author-description-text-holder .qodef-author-email {
margin: 0;
}
.qodef-author-description .qodef-author-description-text-holder .qodef-author-text {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
}
.qodef-author-description .qodef-author-description-text-holder .qodef-author-text > p {
margin: 11px 0 8px;
}
.qodef-author-description .qodef-author-description-text-holder .qodef-author-social-icons {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
}
.qodef-author-description .qodef-author-description-text-holder .qodef-author-social-icons a {
position: relative;
display: inline-block;
vertical-align: middle;
padding: 0;
margin: 0 8px 0 0;
font-size: 11px;
color: #b8bfc1;
}
.qodef-author-description .qodef-author-description-text-holder .qodef-author-social-icons a:last-child {
margin: 0;
}
.qodef-author-description .qodef-author-description-text-holder .qodef-author-social-icons a:hover {
color: #121212;
}
@media only screen and (max-width: 768px) {
.qodef-author-description .qodef-author-description-content {
padding: 0;
}
.qodef-author-description .qodef-author-description-image {
display: block;
width: 100%;
}
.qodef-author-description .qodef-author-description-text-holder {
display: block;
padding: 0;
margin-top: 30px;
}
}  .qodef-blog-single-navigation {
position: relative;
display: table;
width: 100%;
vertical-align: middle;
padding: 0;
clear: both;
box-sizing: border-box;
}
.qodef-blog-single-navigation .qodef-blog-single-navigation-inner {
padding: 4px 0 76px;
}
.qodef-blog-single-navigation .qodef-blog-single-prev,
.qodef-blog-single-navigation .qodef-blog-single-next {
background-color: #000;
color: #fff;
}
.qodef-blog-single-navigation .qodef-blog-single-prev .qodef-blog-single-nav-mark,
.qodef-blog-single-navigation .qodef-blog-single-next .qodef-blog-single-nav-mark {
font-size: 20px;
line-height: inherit;
color: inherit;
}
.qodef-blog-single-navigation .qodef-blog-single-prev .qodef-blog-single-nav-mark:before,
.qodef-blog-single-navigation .qodef-blog-single-next .qodef-blog-single-nav-mark:before {
display: block;
line-height: inherit;
}
.qodef-blog-single-navigation .qodef-blog-single-prev .qodef-blog-single-nav-label,
.qodef-blog-single-navigation .qodef-blog-single-next .qodef-blog-single-nav-label {
color: inherit;
font-family: "Oswald", sans-serif;
text-transform: uppercase;
letter-spacing: .05em;
font-size: 11px;
font-weight: 700;
}
.qodef-blog-single-navigation .qodef-blog-single-prev:hover,
.qodef-blog-single-navigation .qodef-blog-single-next:hover {
color: #b6b6b6;
}
.qodef-blog-single-navigation .qodef-blog-single-prev {
float: left;
padding: 3px 10px 3px 6px;
}
.qodef-blog-single-navigation .qodef-blog-single-prev .qodef-blog-single-nav-mark,
.qodef-blog-single-navigation .qodef-blog-single-prev .qodef-blog-single-nav-label {
float: left;
}
.qodef-blog-single-navigation .qodef-blog-single-prev .qodef-blog-single-nav-mark {
margin: -1px 5px 0 0;
}
.qodef-blog-single-navigation .qodef-blog-single-next {
float: right;
padding: 3px 12px 3px 20px;
}
.qodef-blog-single-navigation .qodef-blog-single-next .qodef-blog-single-nav-mark,
.qodef-blog-single-navigation .qodef-blog-single-next .qodef-blog-single-nav-label {
float: right;
}
.qodef-blog-single-navigation .qodef-blog-single-next .qodef-blog-single-nav-mark {
margin: -1px 0 0 5px;
}
.qodef-single-links-pages {
clear: both;
margin: 20px 0 5px;
}
.qodef-single-links-pages .qodef-single-links-pages-inner > a,
.qodef-single-links-pages .qodef-single-links-pages-inner > span {
position: relative;
display: inline-block;
vertical-align: middle;
margin: 0 15px 5px 0;
}  .qodef-related-posts-holder {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
padding: 0;
box-sizing: border-box;
}
.qodef-related-posts-holder .qodef-related-posts-holder-inner {
padding: 0 0 51px;
}
.qodef-related-posts-holder .qodef-related-posts-title {
margin: 0 0 36px;
padding: 0 20px;
}
.qodef-related-posts-holder .qodef-related-posts-title > * {
margin: 0;
}
.qodef-related-posts-holder .qodef-related-post {
position: relative;
display: inline-block;
float: left;
width: 33.33%;
margin: 0 0 30px;
padding: 0 20px;
box-sizing: border-box;
}
.qodef-content-has-sidebar .qodef-related-posts-holder .qodef-related-post {
widtH: 33.33333333333333%;
}
.touch .qodef-related-posts-holder .qodef-related-post {
cursor: pointer;
}
.qodef-related-posts-holder .qodef-related-post:hover .qodef-related-post-image a:after {
opacity: 1;
}
.qodef-related-posts-holder .qodef-related-post .qodef-related-post-image {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
overflow: hidden;
}
.qodef-related-posts-holder .qodef-related-post .qodef-related-post-image a {
position: relative;
display: block;
}
.qodef-related-posts-holder .qodef-related-post .qodef-related-post-image a:after {
position: absolute;
display: block;
width: 100%;
height: 100%;
top: 0;
left: 0;
content: '';
background-color: rgba(18, 18, 18, 0.4);
opacity: 0;
-webkit-transition: opacity 0.2s ease-in-out;
-moz-transition: opacity 0.2s ease-in-out;
transition: opacity 0.2s ease-in-out;
}
.qodef-related-posts-holder .qodef-related-post .qodef-related-post-image img {
display: block;
}
.qodef-related-posts-holder .qodef-related-post .qodef-post-title {
margin: 6px 0 0;
}
.qodef-related-posts-holder .qodef-related-post .qodef-post-title:first-child {
margin-top: 0;
}
.qodef-related-posts-holder .qodef-related-post .qodef-post-info {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
margin: 21px 0 0;
}
.qodef-related-posts-holder .qodef-related-post .qodef-post-info .qodef-post-info-category {
font-size: 12px;
font-family: "Oswald", sans-serif;
font-weight: 700;
text-transform: uppercase;
color: #000;
letter-spacing: .05em;
}
.qodef-related-posts-holder .qodef-related-post .qodef-post-info .qodef-post-info-date {
font-size: 10px;
line-height: 27px;
}
.qodef-related-posts-holder .qodef-related-post .qodef-post-info > div {
position: relative;
display: inline-block;
vertical-align: top;
float: left;
padding: 0 13px 0 0;
color: inherit;
}
.qodef-related-posts-holder .qodef-related-post .qodef-post-info > div:after {
position: absolute;
top: 0;
right: 4px;
content: '-';
}
.qodef-related-posts-holder .qodef-related-post .qodef-post-info > div:last-child {
padding: 0;
}
.qodef-related-posts-holder .qodef-related-post .qodef-post-info > div:last-child:after {
display: none;
}
.qodef-related-posts-holder .qodef-related-post .qodef-post-info > div.qodef-post-info-author .qodef-post-info-author-text {
margin: 0 3px 0 0;
}
.qodef-related-posts-holder .qodef-related-post .qodef-post-info > div a {
color: inherit;
line-height: inherit;
font-size: inherit;
font-weight: inherit;
}
.qodef-full-width .qodef-related-posts-holder .qodef-related-posts-holder-inner {
margin: 0 -20px;
}  .qodef-blog-holder.qodef-blog-single article {
margin: 0 0 30px;
}
.qodef-blog-holder.qodef-blog-single article .qodef-post-info-bottom {
padding-top: 70px;
}
.qodef-blog-holder.qodef-blog-single article .qodef-post-info-bottom .qodef-post-info-bottom-right .qodef-blog-like {
position: relative;
top: 1px;
}
.qodef-blog-holder.qodef-blog-single article .qodef-post-info-bottom .qodef-post-info-bottom-right .qodef-blog-like i,
.qodef-blog-holder.qodef-blog-single article .qodef-post-info-bottom .qodef-post-info-bottom-right .qodef-blog-like span {
font-size: 11px;
}
.qodef-blog-holder.qodef-blog-single article .qodef-post-info-bottom .qodef-post-info-bottom-right .qodef-blog-like i {
position: relative;
top: -1px;
}
.qodef-blog-holder.qodef-blog-single article .qodef-post-heading {
margin-bottom: 28px;
}
.qodef-blog-holder.qodef-blog-single article.format-video .qodef-post-heading,
.qodef-blog-holder.qodef-blog-single article.format-audio .qodef-post-heading,
.qodef-blog-holder.qodef-blog-single article.format-gallery .qodef-post-heading {
margin-bottom: 20px;
}
.qodef-blog-holder.qodef-blog-single article.format-video .qodef-post-text-main,
.qodef-blog-holder.qodef-blog-single article.format-audio .qodef-post-text-main,
.qodef-blog-holder.qodef-blog-single article.format-gallery .qodef-post-text-main {
margin-top: 33px;
}
.qodef-blog-holder.qodef-blog-single article .qodef-post-text {
padding: 0 0 25px;
border-bottom: 1px solid #e1e1e1;
}
.qodef-blog-holder.qodef-blog-single article .qodef-post-text-main p {
margin-top: 0;
}         .qodef-content-bottom .qodef-content-bottom-inner {
box-sizing: border-box;
}
.qodef-content-bottom .qodef-content-bottom-inner.qodef-grid {
padding: 20px 0;
}
.qodef-content-bottom .qodef-content-bottom-inner.qodef-full-width {
padding: 20px 40px;
}  .qodef-page-footer {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
z-index: 100;
box-sizing: border-box;
}
.qodef-page-footer .qodef-footer-top-holder {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
background-color: #1c1c1c;
box-sizing: border-box;
}
.qodef-page-footer .qodef-footer-top-holder .qodef-footer-top-alignment-center {
text-align: center;
}
.qodef-page-footer .qodef-footer-top-holder .qodef-footer-top-alignment-left {
text-align: left;
}
.qodef-page-footer .qodef-footer-top-holder .qodef-footer-top-alignment-right {
text-align: right;
}
.qodef-page-footer .qodef-footer-top-holder .qodef-footer-top-inner {
box-sizing: border-box;
}
.qodef-page-footer .qodef-footer-top-holder .qodef-footer-top-inner.qodef-grid {
padding: 76px 0 35px;
}
.qodef-page-footer .qodef-footer-top-holder .qodef-footer-top-inner.qodef-full-width {
padding: 76px 40px;
}
.qodef-page-footer .qodef-footer-top-holder .qodef-column-content {
padding-right: 5%;
}
.qodef-page-footer .qodef-footer-bottom-holder {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
background-color: #1c1c1c;
box-sizing: border-box;
text-align: left;
}
.qodef-page-footer .qodef-footer-bottom-holder .qodef-footer-bottom-inner {
box-sizing: border-box;
}
.qodef-page-footer .qodef-footer-bottom-holder .qodef-footer-bottom-inner.qodef-grid {
padding: 10px 0;
}
.qodef-page-footer .qodef-footer-bottom-holder .qodef-footer-bottom-inner.qodef-full-width {
padding: 10px 40px;
}         .qodef-page-header {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
margin: 0;
padding: 0;
z-index: 110;
box-sizing: border-box;        }
.qodef-page-header a img {
display: block;
}
.qodef-page-header p {
margin: 0;
}
.qodef-page-header .qodef-vertical-align-containers {
padding: 0 30px;
}
.qodef-paspartu-enabled .qodef-page-header .qodef-vertical-align-containers {
padding: 0;
}
.qodef-page-header .qodef-grid {
height: 100%;
}
.qodef-page-header .qodef-grid .qodef-vertical-align-containers {
padding: 0;
-webkit-transition: background-color 0.3s ease;
-moz-transition: background-color 0.3s ease;
transition: background-color 0.3s ease;
}
.qodef-page-header .qodef-logo-area {
position: relative;
height: 90px;
overflow: hidden;
background-color: #fff;
}
.qodef-page-header .qodef-logo-area .qodef-logo-wrapper a {
max-height: 90px;
}
.qodef-page-header .qodef-menu-area {
position: relative;
height: 90px;
background-color: #fff;
box-sizing: border-box;
}
.qodef-boxed .qodef-page-header .qodef-menu-area {
padding: 0;
}
.qodef-page-header .qodef-menu-area .qodef-logo-wrapper a {
max-height: 90px;
}
.qodef-page-header .qodef-menu-area .widget {
display: inline-block;
vertical-align: middle;
margin: 0;
}
.qodef-page-header .qodef-menu-area .widget .qodef-ni-info a {
line-height: inherit;
padding: 0 !important;
}
.qodef-logo-area-border-disable .qodef-page-header .qodef-logo-area {
border: none;
}
.qodef-logo-area-in-grid-border-disable .qodef-page-header .qodef-logo-area .qodef-grid .qodef-vertical-align-containers {
border: none;
}
.qodef-header-logo-area-in-grid-padding .qodef-page-header .qodef-logo-area .qodef-vertical-align-containers {
padding: 0 25px;
}
.qodef-menu-area-shadow-disable .qodef-page-header .qodef-menu-area {
box-shadow: none;
}
.qodef-menu-area-shadow-disable .qodef-page-header .qodef-menu-area .qodef-grid .qodef-vertical-align-containers {
box-shadow: none;
}
.qodef-menu-area-border-disable .qodef-page-header .qodef-menu-area {
border: none;
}
.qodef-menu-area-in-grid-border-disable .qodef-page-header .qodef-menu-area .qodef-grid .qodef-vertical-align-containers {
border: none;
}
.qodef-header-logo-area-in-grid-padding .qodef-page-header .qodef-menu-area .qodef-vertical-align-containers {
padding: 0 25px;
} .qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header) .qodef-logo-wrapper .qodef-light-logo {
opacity: 1;
}
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header) .qodef-logo-wrapper .qodef-normal-logo,
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header) .qodef-logo-wrapper .qodef-dark-logo {
opacity: 0;
}
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header) .qodef-menu-area {
color: #fff !important;
}
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header) .qodef-menu-area .widget {
color: #fff !important;
}
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header) .qodef-menu-area .widget p,
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header) .qodef-menu-area .widget a,
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header) .qodef-menu-area .widget span,
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header) .qodef-menu-area .widget i,
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header) .qodef-menu-area .widget .widgettitle {
color: #fff !important;
}
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header) .qodef-menu-area .widget p:after,
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header) .qodef-menu-area .widget p:before,
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header) .qodef-menu-area .widget a:after,
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header) .qodef-menu-area .widget a:before,
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header) .qodef-menu-area .widget span:after,
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header) .qodef-menu-area .widget span:before,
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header) .qodef-menu-area .widget i:after,
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header) .qodef-menu-area .widget i:before,
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header) .qodef-menu-area .widget .widgettitle:after,
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header) .qodef-menu-area .widget .widgettitle:before {
background-color: #fff !important;
}
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header) .qodef-menu-area .widget a:hover {
color: #fff !important;
}
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header) .qodef-menu-area .widget .qodef-ni-info .qodef-post-info-date a:hover {
color: rgba(255, 255, 255, 0.8) !important;
}
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header).qodef-menu-area {
color: #fff !important;
}
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header).qodef-menu-area .widget {
color: #fff !important;
}
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header).qodef-menu-area .widget p,
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header).qodef-menu-area .widget a,
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header).qodef-menu-area .widget span,
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header).qodef-menu-area .widget i,
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header).qodef-menu-area .widget .widgettitle {
color: #fff !important;
}
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header).qodef-menu-area .widget p:after,
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header).qodef-menu-area .widget p:before,
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header).qodef-menu-area .widget a:after,
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header).qodef-menu-area .widget a:before,
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header).qodef-menu-area .widget span:after,
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header).qodef-menu-area .widget span:before,
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header).qodef-menu-area .widget i:after,
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header).qodef-menu-area .widget i:before,
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header).qodef-menu-area .widget .widgettitle:after,
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header).qodef-menu-area .widget .widgettitle:before {
background-color: #fff !important;
}
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header).qodef-menu-area .widget a:hover {
color: #fff !important;
}
.qodef-light-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header).qodef-menu-area .widget .qodef-ni-info .qodef-post-info-date a:hover {
color: rgba(255, 255, 255, 0.8) !important;
}  .qodef-dark-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header) .qodef-logo-wrapper .qodef-dark-logo {
opacity: 1;
}
.qodef-dark-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header) .qodef-logo-wrapper .qodef-normal-logo,
.qodef-dark-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header) .qodef-logo-wrapper .qodef-light-logo {
opacity: 0;
}
.qodef-dark-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header) .qodef-menu-area {
color: #333 !important;
}
.qodef-dark-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header) .qodef-menu-area .widget {
color: #333 !important;
}
.qodef-dark-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header) .qodef-menu-area .widget p,
.qodef-dark-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header) .qodef-menu-area .widget a,
.qodef-dark-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header) .qodef-menu-area .widget span,
.qodef-dark-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header) .qodef-menu-area .widget i,
.qodef-dark-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header) .qodef-menu-area .widget .widgettitle {
color: #333 !important;
}
.qodef-dark-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header) .qodef-menu-area .widget a:hover {
color: #333 !important;
}
.qodef-dark-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header).qodef-menu-area {
color: #333 !important;
}
.qodef-dark-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header).qodef-menu-area .widget {
color: #333 !important;
}
.qodef-dark-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header).qodef-menu-area .widget p,
.qodef-dark-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header).qodef-menu-area .widget a,
.qodef-dark-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header).qodef-menu-area .widget span,
.qodef-dark-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header).qodef-menu-area .widget i,
.qodef-dark-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header).qodef-menu-area .widget .widgettitle {
color: #333 !important;
}
.qodef-dark-header .qodef-page-header > div:not(.fixed):not(.qodef-sticky-header).qodef-menu-area .widget a:hover {
color: #333 !important;
}   .qodef-logo-wrapper {
display: inline-block;
vertical-align: middle;
}
.qodef-logo-wrapper a {
position: relative;
display: inline-block;
vertical-align: middle;
max-width: 100%;
}
.qodef-logo-wrapper a img {
height: 100%;
width: auto;
-webkit-transition: opacity 0.2s ease;
-moz-transition: opacity 0.2s ease;
transition: opacity 0.2s ease;
}
.qodef-logo-wrapper a img.qodef-normal-logo {
opacity: 1;
}
.qodef-logo-wrapper a img.qodef-dark-logo {
opacity: 0;
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
transform: translateY(-100%);
}
.qodef-logo-wrapper a img.qodef-light-logo {
opacity: 0;
-webkit-transform: translateY(-200%);
-moz-transform: translateY(-200%);
transform: translateY(-200%);
}  .qodef-main-menu {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
height: 100%;
width: auto;
}
.qodef-main-menu .qodef-news-holder .qodef-news-item {
margin-bottom: 0 !important;
}
.qodef-main-menu .qodef-news-holder .qodef-post-title a {
font-size: inherit;
line-height: inherit;
font-family: inherit;
letter-spacing: inherit;
font-weight: inherit;
text-transform: inherit;
padding: 0 !important;
}
.qodef-main-menu .qodef-news-holder .qodef-ni-video-button {
padding-bottom: 6px !important;
}
.qodef-main-menu .qodef-news-holder .qodef-post-info-date a {
font-family: Poppins,sans-serif;
font-weight: 400;
text-transform: none;
color: #fff;
}
@media only screen and (min-width: 1280px) {
.qodef-main-menu .qodef-news-holder.qodef-news-columns-5:not(.qodef-layout1) .qodef-news-item {
width: 20%;
}
}
.qodef-main-menu .widget .qodef-ni-info a {
line-height: inherit;
padding: 0px !important;
color: inherit !important;
}
.qodef-main-menu .widget .qodef-post-title a {
padding: 0;
color: #fff !important;
text-transform: none;
}
.qodef-main-menu ul {
list-style: none outside none;
margin: 0;
padding: 0;
text-align: left;
}
.qodef-main-menu ul li {
position: relative;
display: inline-block;
float: left;
padding: 0;
margin: 0;
}
.qodef-main-menu ul li a {
font-size: 12px;
line-height: 37px;
color: #b6b6b6;
font-weight: 700;
letter-spacing: 0.05em;
font-family: "Oswald", sans-serif;
text-transform: uppercase;
}
.qodef-main-menu ul li a i:before {
margin: 0 7px 0 0;
}
.qodef-main-menu ul li a .menu_icon_wrapper {
position: relative;
display: inline-block;
vertical-align: middle;
}
.qodef-main-menu ul li a .qodef-menu-featured-icon {
position: relative;
top: -4px;
left: 5px;
color: currentColor;
font-size: 10px;
margin: 0;
}
.qodef-main-menu ul li a .qodef-menu-featured-icon:before {
margin: 0;
}
.qodef-main-menu > ul {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
height: 100%;
}
.qodef-main-menu > ul > li {
float: left;
height: 100%;
box-sizing: border-box;
}
.qodef-main-menu > ul > li:first-child > a {
padding-left: 18px;
}
.qodef-main-menu > ul > li > a {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
height: 100%;
padding: 0 18px;
color: #000;
font-size: 14px;
line-height: 23px;
box-sizing: border-box;
font-style: normal;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .05em;
}
.qodef-main-menu > ul > li > a > span.item_outer {
position: relative;
display: block;
top: 50%;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
transform: translateY(-50%);
}
.qodef-main-menu > ul > li > a > span.item_outer .item_text {
position: relative;
display: inline-block;
vertical-align: top;
padding-bottom: 1px;
}
.qodef-main-menu > ul > li > a > span.item_outer .item_text:before,
.qodef-main-menu > ul > li > a > span.item_outer .item_text:after {
content: "";
position: absolute;
bottom: -2px;
right: 0;
left: auto;
width: 0;
height: 2px;
}
.qodef-main-menu > ul > li > a > span.item_outer .item_text:before {
background-color: #000;
-webkit-transition: all 0.25s ease-in-out;
-moz-transition: all 0.25s ease-in-out;
transition: all 0.25s ease-in-out;
}
.qodef-main-menu > ul > li > a > span.item_outer .item_text:after {
background-color: #000;
-webkit-transition: all 0.25s ease-in-out;
-moz-transition: all 0.25s ease-in-out;
transition: all 0.25s ease-in-out;
}
.qodef-main-menu > ul > li > a:hover > span.item_outer .item_text:before,
.qodef-main-menu > ul > li > a:hover > span.item_outer .item_text:after {
width: 100%;
left: 0;
}
.qodef-main-menu > ul > li.qodef-active-item > a > span.item_outer .item_text:before,
.qodef-main-menu > ul > li.qodef-active-item > a > span.item_outer .item_text:after {
width: 100%;
left: 0;
}
.qodef-main-menu > ul > li.has_sub > a .qodef-menu-arrow {
display: none;
}
.qodef-light-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-main-menu > ul > li > a {
color: #fff;
}
.qodef-light-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-main-menu > ul > li > a:hover {
color: #fff;
}
.qodef-light-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-main-menu > ul > li.qodef-active-item > a {
color: #fff;
}
.qodef-light-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-video-layout3-item .qodef-ni-image-holder .qodef-ni-video-button .qodef-ni-video-button-play > span {
-webkit-transition: color 0.2s ease-out;
-moz-transition: color 0.2s ease-out;
transition: color 0.2s ease-out;
color: #121212 !important;
}
.qodef-light-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-video-layout3-item .qodef-ni-image-holder .qodef-ni-video-button:hover .qodef-ni-video-button-play > span {
color: #b6b6b6 !important;
}
.qodef-light-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-video-layout3-item .qodef-ni-image-holder .qodef-ni-video-button:after {
background-color: rgba(255, 255, 255, 0.5) !important;
}
.qodef-dark-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-main-menu > ul > li > a {
color: #333;
}
.qodef-dark-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-main-menu > ul > li > a:hover {
color: #333;
}
.qodef-dark-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-main-menu > ul > li.qodef-active-item > a {
color: #333;
}
.qodef-dark-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .widget .qodef-ni-info a {
line-height: inherit;
padding: 0;
color: inherit !important;
}
.qodef-dark-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .widget .qodef-post-title a {
padding: 0;
color: #fff !important;
text-transform: none;
}
.qodef-dark-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .widget .qodef-post-title a:hover {
color: #fff !important;
}
.qodef-dark-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .widget .qodef-layout-6 .qodef-ni-info-top .qodef-post-info-date {
font-weight: 400;
}
.qodef-dark-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-video-layout3-item .qodef-ni-image-holder .qodef-ni-video-button .qodef-ni-video-button-play > span {
-webkit-transition: color 0.2s ease-out;
-moz-transition: color 0.2s ease-out;
transition: color 0.2s ease-out;
color: #121212 !important;
}
.qodef-dark-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-video-layout3-item .qodef-ni-image-holder .qodef-ni-video-button:hover .qodef-ni-video-button-play > span {
color: #b6b6b6 !important;
}
.qodef-dark-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-video-layout3-item .qodef-ni-image-holder .qodef-ni-video-button:after {
background-color: rgba(255, 255, 255, 0.5) !important;
} .qodef-drop-down .second {
position: absolute;
display: block;
left: -3px;
top: 100%;
visibility: hidden;
overflow: hidden;
opacity: 0;
z-index: 10;
-webkit-transition: top 0.15s ease-out;
-moz-transition: top 0.15s ease-out;
transition: top 0.15s ease-out;
}
.qodef-drop-down .second.qodef-drop-down-start {
visibility: visible;
overflow: visible;
opacity: 1;
-webkit-transition: opacity 0.2s ease-out;
-moz-transition: opacity 0.2s ease-out;
transition: opacity 0.2s ease-out;
}
.qodef-drop-down .second.right {
right: 0;
left: auto;
}
.qodef-drop-down .second .inner {
position: relative;
display: block;
padding: 0;
margin: 0;
z-index: 997;
}
.qodef-drop-down .second .inner ul li {
display: block;
float: none;
height: auto;
}
.qodef-drop-down .second .inner ul li .widget {
width: 100%;
margin: 0 !important;
}
.qodef-drop-down .second .inner ul li a {
display: block;
float: none;
margin: 0;
padding: 7px 21px;
}
.qodef-drop-down .second .inner ul li a .item_outer {
position: relative;
display: block;
overflow: hidden;
line-height: 1.4em;
padding: 0 10px 0 0;
box-sizing: border-box;
-webkit-transition: padding 0.2s ease-in-out;
-moz-transition: padding 0.2s ease-in-out;
transition: padding 0.2s ease-in-out;
}
.qodef-drop-down .second .inner ul li a:hover {
color: #fff;
}
.qodef-drop-down .second .inner ul li a.qodef-ni-video-button {
color: #121212;
}
.qodef-drop-down .second .inner ul li a.qodef-ni-video-button:hover {
color: #b6b6b6;
}
.qodef-drop-down .second .inner ul li.current-menu-ancestor > a .item_outer,
.qodef-drop-down .second .inner ul li.current-menu-item > a .item_outer {
color: #fff;
}
.qodef-drop-down .second .inner ul li.sub > a .item_outer:after {
position: absolute;
display: inline-block;
vertical-align: middle;
right: 2px;
content: "\f125";
font-family: 'Ionicons';
font-size: 11px;
font-weight: normal;
font-style: normal;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.qodef-drop-down .second .inner ul.right li a .item_outer {
padding: 0 2px 0 10px;
}
.qodef-drop-down .second .inner ul.right li.sub > a .item_outer:after {
right: auto;
left: 2px;
content: "\f124";
font-family: Ionicons;
font-size: 11px;
}
.qodef-drop-down .second .inner ul.right li a {
text-align: right;
}
.qodef-drop-down .second .inner ul.right li ul {
left: -100%;
}
.qodef-drop-down li.left_position .second {
left: 0;
}
.qodef-drop-down li.right_position .second {
left: auto;
right: 0;
}
.qodef-drop-down > ul > li:hover > .second {
z-index: 20;
}
.qodef-drop-down .narrow .second .inner ul {
position: relative;
display: inline-block;
vertical-align: middle;
background-color: #141414;
padding: 24px 0;
}
.qodef-drop-down .narrow .second .inner ul li {
width: 240px;
}
.qodef-drop-down .narrow .second .inner ul li ul {
position: absolute;
left: 100%;
top: -24px;
height: auto;
opacity: 0;
overflow: hidden;
z-index: 10;
box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.03);
-webkit-transform: translateZ(0);
-webkit-transition: opacity 0.2s;
-moz-transition: opacity 0.2s;
transition: opacity 0.2s;
}
.qodef-drop-down .narrow .second .inner ul li:hover ul {
z-index: 20;
opacity: 1;
}
.qodef-drop-down .narrow .second .inner ul.right li ul {
left: -100%;
} .qodef-drop-down .wide.qodef-menu-3-columns .second .inner > ul {
padding: 32px 0 27px;
}
.qodef-drop-down .wide.qodef-menu-3-columns .second .inner > ul > li {
width: 33.3333%;
padding: 0 20px;
}
.qodef-dark-header .qodef-drop-down .wide.qodef-menu-3-columns .qodef-ni-info.qodef-ni-info-top .qodef-post-info-date a:hover {
color: rgba(255, 255, 255, 0.8) !important;
}
.qodef-dark-header .qodef-drop-down .wide.qodef-menu-3-columns .qodef-ni-info .qodef-post-info-date a:hover {
color: rgba(255, 255, 255, 0.8) !important;
}
.qodef-drop-down .wide .qodef-video-layout3-item .qodef-post-image a:after {
height: calc(100% - 14px);
top: 8px;
}
.qodef-drop-down .wide .qodef-news-holder .qodef-post-image .qodef-post-image-overlay {
height: calc(100% - 16px);
top: 8px;
}
.qodef-drop-down .wide .second .inner {
background-color: #141414;
text-align: center;
}
.qodef-drop-down .wide .second .inner ul li a {
padding: 8px 0;
}
.qodef-drop-down .wide .second .inner ul li ul {
position: relative;
display: block;
top: 0;
left: 0;
visibility: visible;
}
.qodef-drop-down .wide .second .inner ul li ul li:last-child a {
padding-bottom: 0;
}
.qodef-drop-down .wide .second .inner > ul {
position: relative;
display: inline-block;
vertical-align: middle;
width: 1400px;
padding: 32px 0;
box-sizing: border-box;
background-color: #141414;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
.qodef-grid-1400 .qodef-drop-down .wide .second .inner > ul {
width: 1100px;
}
}
@media only screen and (min-width: 1400px) {
.qodef-grid-1300 .qodef-drop-down .wide .second .inner > ul {
width: 1300px;
}
}
@media only screen and (min-width: 1300px) {
.qodef-grid-1200 .qodef-drop-down .wide .second .inner > ul {
width: 1200px;
}
}
@media only screen and (min-width: 1200px) {
.qodef-grid-1000 .qodef-drop-down .wide .second .inner > ul {
width: 1000px;
}
}
@media only screen and (min-width: 1024px) {
.qodef-grid-800 .qodef-drop-down .wide .second .inner > ul {
width: 800px;
}
}
.qodef-drop-down .wide .second .inner > ul > li {
float: left;
width: 20%;
margin: 0;
padding: 0 20px;
box-sizing: border-box;
}
.qodef-drop-down .wide .second .inner > ul > li:nth-child(5n+1) {
clear: both;
}
.qodef-drop-down .wide .second .inner > ul > li > a {
padding: 0 0 14px;
color: #fff;
font-size: 14px;
line-height: 1.1em;
font-style: normal;
letter-spacing: 0.05em;
font-weight: 700;
}
.qodef-drop-down .wide .second .inner > ul > li > a.no_link {
cursor: default;
}
.qodef-drop-down .wide .second .inner > ul > li > a .item_outer {
padding: 0;
overflow: inherit;
}
.qodef-drop-down .wide .second .inner > ul > li > a .item_outer:before,
.qodef-drop-down .wide .second .inner > ul > li > a .item_outer:after {
display: none;
}
.qodef-drop-down .wide.left_position .second .inner > ul,
.qodef-drop-down .wide.right_position .second .inner > ul {
width: auto;
white-space: nowrap;
}
.qodef-drop-down .wide.left_position .second .inner > ul > li,
.qodef-drop-down .wide.right_position .second .inner > ul > li {
float: none;
display: inline-block;
vertical-align: top;
}
.qodef-drop-down .wide.left_position .second .inner > ul > li:nth-child(5n+1),
.qodef-drop-down .wide.right_position .second .inner > ul > li:nth-child(5n+1) {
border-left: none;
}
.qodef-drop-down .wide.left_position .second ul li,
.qodef-drop-down .wide.right_position .second ul li {
width: 200px;
}
.qodef-light-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-main-menu > ul > li > a span.item_text:before,
.qodef-light-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-main-menu > ul > li > a span.item_text:after {
background: #fff;
}
.qodef-light-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-main-menu > ul > li:hover > a span.item_text:before,
.qodef-light-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-main-menu > ul > li:hover > a span.item_text:after {
background: #fff;
}
.qodef-light-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-main-menu > ul > li.qodef-active-item > a span.item_text:before,
.qodef-light-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-main-menu > ul > li.qodef-active-item > a span.item_text:after {
background: #fff;
}  .qodef-drop-down .wide.qodef-menu-custom-widget .second > .inner {
background-color: #141414;
}
.qodef-drop-down .wide.qodef-menu-custom-widget .second > .inner > ul {
padding: 27px 0 21px;
}
.qodef-drop-down .wide.qodef-menu-custom-widget .second > .inner > ul > li {
width: 100% !important;
padding: 0 20px;
}
.qodef-dark-header .qodef-drop-down .wide.qodef-menu-custom-widget .widget .qodef-ni-info.qodef-ni-info-top .qodef-post-info-date a:hover {
color: rgba(255, 255, 255, 0.8) !important;
}
.qodef-dark-header .qodef-drop-down .wide.qodef-menu-custom-widget .widget .qodef-ni-info .qodef-post-info-date a:hover {
color: rgba(255, 255, 255, 0.8) !important;
}
.qodef-drop-down .wide.qodef-menu-custom-widget .widget .qodef-post-title a {
color: #fff !important;
text-transform: none;
}
.qodef-drop-down .wide.qodef-menu-custom-widget .widget .qodef-post-title a:hover {
color: #fff !important;
}  .qodef-page-header .qodef-fixed-wrapper.fixed {
position: fixed;
top: 0;
left: 0;
width: 100%;
-webkit-backface-visibility: hidden;
}
.admin-bar .qodef-page-header .qodef-fixed-wrapper.fixed {
margin-top: 32px;
}
.qodef-page-header .qodef-fixed-wrapper.fixed .qodef-menu-area {
background-color: #fff;
}
.qodef-fixed-on-scroll .qodef-page-header .qodef-fixed-wrapper .qodef-menu-area {
-webkit-transition: height 0.2s ease;
-moz-transition: height 0.2s ease;
transition: height 0.2s ease;
}  .qodef-header-centered .qodef-page-header .qodef-logo-area {
height: 56px;
overflow: visible;
z-index: 2;
padding-top: 60px;
}
.qodef-header-centered .qodef-page-header .qodef-logo-area .qodef-logo-wrapper a {
max-height: 56px;
}
.qodef-header-centered .qodef-page-header .qodef-menu-area {
height: 110px;
z-index: 1;
}
.qodef-header-centered .qodef-page-header .qodef-menu-area .qodef-vertical-align-containers .qodef-position-center-inner {
height: 100%;
}
.qodef-header-centered .qodef-page-header .qodef-sticky-header .qodef-position-left-inner {
height: auto;
}
.qodef-header-centered .qodef-page-header .qodef-sticky-header .qodef-position-right-inner {
height: 100%;
}  .qodef-header-standard-extended .qodef-page-header .qodef-logo-area {
height: 160px;
z-index: 1;
box-sizing: border-box;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .qodef-logo-wrapper a {
max-height: 160px;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .qodef-vertical-align-containers .qodef-position-right-inner {
height: auto;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .qodef-logo-widget-area {
position: relative;
display: inline-block;
vertical-align: middle;
margin-left: 8px;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .qodef-right-from-logo-widget {
position: relative;
padding: 0 20px 0 0;
float: left;
}
.qodef-header-standard-extended .qodef-page-header .qodef-logo-area .qodef-right-from-logo-widget:last-child {
padding-right: 0;
}
.qodef-header-standard-extended .qodef-page-header .qodef-menu-area {
height: 70px;
}
.qodef-header-standard-extended .qodef-page-header .qodef-menu-area .qodef-main-menu {
margin-left: 0;
}
.qodef-header-standard-extended .qodef-page-header .qodef-menu-area .qodef-vertical-align-containers {
border-top: 1px solid #ebebeb;
border-bottom: 1px solid #ebebeb;
}
.qodef-header-standard-extended .qodef-page-header .qodef-menu-area .qodef-vertical-align-containers .qodef-position-left-inner {
height: 100%;
}
.qodef-header-standard-extended .qodef-page-header .qodef-menu-area .qodef-vertical-align-containers .qodef-position-right-inner {
height: auto;
}  .qodef-header-standard .qodef-menu-area.qodef-menu-left .qodef-main-menu {
width: auto;
padding: 0 0 0 20px;
}
.qodef-header-standard .qodef-menu-area.qodef-menu-left .qodef-vertical-align-containers .qodef-position-left-inner {
height: 100%;
}
.qodef-header-standard .qodef-menu-area.qodef-menu-center .qodef-vertical-align-containers .qodef-position-center-inner {
height: 100%;
}
.qodef-header-standard .qodef-menu-area.qodef-menu-right .qodef-main-menu {
width: auto;
}
.qodef-header-standard .qodef-menu-area.qodef-menu-right .qodef-vertical-align-containers .qodef-position-right-inner {
height: 100%;
}   .qodef-header-vertical .qodef-vertical-alignment-center .qodef-vertical-menu-outer {
position: absolute;
display: block;
width: 100%;
height: 100%;
top: 0;
left: 0;
}
.qodef-header-vertical .qodef-vertical-alignment-center .qodef-vertical-menu {
display: table;
width: 100%;
height: 100%;
min-height: 0;
}
.qodef-header-vertical .qodef-vertical-alignment-center .qodef-vertical-menu > ul {
display: table-cell;
width: 100%;
height: 100%;
vertical-align: middle;
}
.qodef-header-vertical .qodef-vertical-menu-outer {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
box-sizing: border-box;
}
.qodef-header-vertical .qodef-vertical-menu {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
margin: 0;
padding: 0;
z-index: 100;
}
.qodef-header-vertical .qodef-vertical-menu ul {
position: relative;
list-style-type: none;
padding: 0;
margin: 0;
}
.qodef-header-vertical .qodef-vertical-menu ul li {
position: relative;
padding: 0;
margin: 0;
}
.qodef-header-vertical .qodef-vertical-menu ul li a {
position: relative;
display: block;
margin: 0;
padding: 9px 0;
font-size: 12px;
text-transform: uppercase;
color: #121212;
font-family: "Oswald", sans-serif;
font-weight: 700;
line-height: 1em;
}
.qodef-header-vertical .qodef-vertical-menu ul li a:hover {
color: #959595;
}
.qodef-header-vertical .qodef-vertical-menu ul li a:hover .qodef-menu-arrow {
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
transform: rotate(0deg);
}
.qodef-header-vertical .qodef-vertical-menu ul li a .item_outer {
position: relative;
display: block;
padding: 0 15px 0 0;
box-sizing: border-box;
}
.qodef-header-vertical .qodef-vertical-menu ul li a .qodef-menu-arrow {
display: none;
position: absolute;
top: 1px;
right: 0;
font-size: inherit;
line-height: inherit;
margin: 0;
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
transform: rotate(-90deg);
-webkit-transition: -webkit-transform 0.2s ease-in-out;
-moz-transition: -moz-transform 0.2s ease-in-out;
transition: transform 0.2s ease-in-out;
}
.qodef-header-vertical .qodef-vertical-menu ul li a .qodef-menu-featured-icon {
position: relative;
top: -4px;
left: 3px;
color: #121212;
font-size: 12px;
margin: 0;
}
.qodef-header-vertical .qodef-vertical-menu ul li a .menu_icon:not(.blank):not(.null) {
padding: 0 5px 0 0;
}
.qodef-header-vertical .qodef-vertical-menu ul li.qodef-active-item > a,
.qodef-header-vertical .qodef-vertical-menu ul li.current_page_item > a,
.qodef-header-vertical .qodef-vertical-menu ul li.current-menu-item > a,
.qodef-header-vertical .qodef-vertical-menu ul li.current-menu-ancestor > a {
color: #fe6c61;
}
.qodef-header-vertical .qodef-vertical-menu ul li.qodef-active-item > a .qodef-menu-arrow,
.qodef-header-vertical .qodef-vertical-menu ul li.current_page_item > a .qodef-menu-arrow,
.qodef-header-vertical .qodef-vertical-menu ul li.current-menu-item > a .qodef-menu-arrow,
.qodef-header-vertical .qodef-vertical-menu ul li.current-menu-ancestor > a .qodef-menu-arrow {
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
transform: rotate(0deg);
}
.qodef-header-vertical .qodef-vertical-menu ul li ul {
padding: 4px 0 5px;
}
.qodef-header-vertical .qodef-vertical-menu ul li ul li.sub > a .item_outer {
position: relative;
display: block;
}
.qodef-header-vertical .qodef-vertical-menu ul li ul li.sub > a .item_outer:after {
display: none;
position: absolute;
top: -1px;
right: 0;
margin: 0;
font-family: 'FontAwesome';
font-size: inherit;
line-height: inherit;
content: "\f105";
}
.qodef-header-vertical .qodef-vertical-menu ul li ul li.sub.current_page_item > a .item_outer:after,
.qodef-header-vertical .qodef-vertical-menu ul li ul li.sub.current-menu-ancestor > a .item_outer:after {
content: "\f107";
}
.qodef-header-vertical .qodef-vertical-menu ul li .second {
display: none;
-webkit-transform: translateZ(0);
-moz-transform: translateZ(0);
transform: translateZ(0);
}
.qodef-header-vertical .qodef-vertical-menu ul li .second .inner {
position: relative;
display: block;
padding: 0;
z-index: 997;
}
.qodef-header-vertical .qodef-vertical-menu > ul > li > a {
font-size: 14px;
line-height: 30px;
padding: 5px 0;
}
.qodef-header-vertical .qodef-vertical-menu > ul > li > a span.item_text {
position: relative;
display: inline-block;
vertical-align: top;
}
.qodef-light-header.qodef-header-vertical .qodef-vertical-menu ul li a {
color: #b6b6b6 !important;
}
.qodef-light-header.qodef-header-vertical .qodef-vertical-menu ul li a:hover {
color: #fff !important;
}
.qodef-light-header.qodef-header-vertical .qodef-vertical-menu ul li ul li.current_page_item > a,
.qodef-light-header.qodef-header-vertical .qodef-vertical-menu ul li ul li.current-menu-item > a,
.qodef-light-header.qodef-header-vertical .qodef-vertical-menu ul li ul li.current-menu-ancestor > a {
color: #fff !important;
}
.qodef-light-header.qodef-header-vertical .qodef-vertical-area-widget-holder a {
color: #fff;
}
.qodef-light-header.qodef-header-vertical .qodef-vertical-area-widget-holder a:hover {
color: #b6b6b6;
}
.qodef-light-header.qodef-header-vertical .qodef-vertical-menu > ul > li.qodef-active-item > a,
.qodef-light-header.qodef-header-vertical .qodef-vertical-menu > ul > li.current-menu-ancestor > a {
color: #fff !important;
}
.qodef-dark-header.qodef-header-vertical .qodef-vertical-menu ul li a {
color: #333 !important;
}
.qodef-dark-header.qodef-header-vertical .qodef-vertical-menu ul li a:hover {
color: #333 !important;
}
.qodef-dark-header.qodef-header-vertical .qodef-vertical-menu ul li ul li.current_page_item > a,
.qodef-dark-header.qodef-header-vertical .qodef-vertical-menu ul li ul li.current-menu-item > a,
.qodef-dark-header.qodef-header-vertical .qodef-vertical-menu ul li ul li.current-menu-ancestor > a {
color: #333 !important;
}
.qodef-dark-header.qodef-header-vertical .qodef-vertical-menu > ul > li.qodef-active-item > a,
.qodef-dark-header.qodef-header-vertical .qodef-vertical-menu > ul > li.current-menu-ancestor > a {
color: #333 !important;
} .qodef-header-vertical .qodef-vertical-area-widget-holder {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
margin: 10px 0 0;
z-index: 100;
}
.qodef-header-vertical .qodef-vertical-alignment-center .qodef-vertical-area-widget-holder {
position: absolute;
width: 100%;
bottom: 23px;
left: 0;
}
.qodef-header-vertical.admin-bar .qodef-vertical-menu-area {
top: 32px;
height: calc(100% - 32px);
}
.qodef-header-vertical .qodef-content,
.qodef-header-vertical footer {
padding-left: 270px;
box-sizing: border-box;
}
.qodef-header-vertical .qodef-vertical-menu-area {
position: fixed;
top: 0;
left: 0;
width: 270px;
height: 100%;
padding: 50px 45px 30px;
background-color: transparent;
outline: none;
z-index: 102;
-webkit-backface-visibility: hidden;
box-sizing: border-box;
}
.qodef-header-vertical .qodef-vertical-menu-area.qodef-with-scroll {
overflow: hidden;
}
.qodef-header-vertical .qodef-vertical-menu-area-inner {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
height: 100%;
text-align: center;
}
.qodef-header-vertical .qodef-vertical-menu-area-inner .qodef-logo-wrapper img {
margin: 0 auto;
}
.qodef-header-vertical .qodef-logo-wrapper {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
z-index: 101;
}
.qodef-header-vertical .qodef-logo-wrapper a {
display: block;
position: relative;
height: 100%;
}
.qodef-header-vertical .qodef-logo-wrapper img {
display: block;
height: auto;
max-height: 100%;
-webkit-transition: opacity 0.3s ease;
-moz-transition: opacity 0.3s ease;
transition: opacity 0.3s ease;
}
.qodef-header-vertical .qodef-vertical-area-background {
position: fixed;
top: 0;
left: 0;
width: 270px;
height: 100%;
background-color: #fff;
background-position: top center;
background-repeat: no-repeat;
background-size: cover;
z-index: 0;
opacity: 1;
-webkit-transition: opacity 0.5s ease, background-color 0.5s ease;
-moz-transition: opacity 0.5s ease, background-color 0.5s ease;
transition: opacity 0.5s ease, background-color 0.5s ease;
}
.qodef-header-vertical.qodef-header-vertical-shadow-disable .qodef-vertical-area-background {
box-shadow: none;
}
.qodef-header-vertical.qodef-header-vertical-border-disable .qodef-vertical-area-background {
border: none;
}
.qodef-light-header .qodef-vertical-menu-area .qodef-logo-wrapper .qodef-light-logo {
opacity: 1;
}
.qodef-light-header .qodef-vertical-menu-area .qodef-logo-wrapper .qodef-normal-logo,
.qodef-light-header .qodef-vertical-menu-area .qodef-logo-wrapper .qodef-dark-logo {
opacity: 0;
}
.qodef-dark-header .qodef-vertical-menu-area .qodef-logo-wrapper .qodef-dark-logo {
opacity: 1;
}
.qodef-dark-header .qodef-vertical-menu-area .qodef-logo-wrapper .qodef-normal-logo,
.qodef-dark-header .qodef-vertical-menu-area .qodef-logo-wrapper .qodef-light-logo {
opacity: 0;
}  .qodef-mobile-header {
position: relative;
display: none;
z-index: 110;        }
.qodef-mobile-header .qodef-mobile-header-inner {
position: relative;
height: 70px;
background-color: #fff;
border-bottom: 1px solid #ebebeb;
box-sizing: border-box;
}
.qodef-mobile-header .qodef-mobile-header-inner .qodef-mobile-header-holder {
position: relative;
z-index: 2;
height: 100%;
}
.qodef-mobile-header .qodef-grid {
height: 100%;
}
.qodef-mobile-header .qodef-vertical-align-containers {
padding: 0;
}
.qodef-mobile-header .qodef-mobile-logo-wrapper a {
display: block;
}
.qodef-mobile-header .qodef-mobile-logo-wrapper img {
display: block;
height: 100%;
width: auto;
}
.qodef-mobile-header .qodef-mobile-menu-opener {
position: relative;
height: 100%;
float: left;
z-index: 2;
}
.qodef-mobile-header .qodef-mobile-menu-opener a {
display: table;
height: 100%;
padding-right: 10px;
}
.qodef-mobile-header .qodef-mobile-menu-opener a > * {
position: relative;
display: table-cell;
vertical-align: middle;
line-height: 1em;
}
.qodef-mobile-header .qodef-mobile-menu-opener a .qodef-mobile-menu-icon .qodef-fm-lines {
position: relative;
display: inline-block;
vertical-align: middle;
width: 10px;
height: 16px;
}
.qodef-mobile-header .qodef-mobile-menu-opener a .qodef-mobile-menu-icon .qodef-fm-lines .qodef-fm-line {
position: absolute;
left: 0;
height: 2px;
width: 100%;
background-color: currentColor;
-webkit-transition: -webkit-transform 0.3s ease, top 0.2s ease-out, background-color 0.2s ease-out;
-moz-transition: -moz-transform 0.3s ease, top 0.2s ease-out, background-color 0.2s ease-out;
transition: transform 0.3s ease, top 0.2s ease-out, background-color 0.2s ease-out;
}
.qodef-mobile-header .qodef-mobile-menu-opener a .qodef-mobile-menu-icon .qodef-fm-lines .qodef-fm-line.qodef-line-1 {
top: 0;
outline: transparent solid 1px;
}
.qodef-mobile-header .qodef-mobile-menu-opener a .qodef-mobile-menu-icon .qodef-fm-lines .qodef-fm-line.qodef-line-2 {
top: calc(50% - 2px);
outline: transparent solid 1px;
}
.qodef-mobile-header .qodef-mobile-menu-opener a .qodef-mobile-menu-icon .qodef-fm-lines .qodef-fm-line.qodef-line-3 {
top: calc(100% - 4px);
outline: transparent solid 1px;
}
.qodef-mobile-header .qodef-mobile-menu-opener a .qodef-mobile-menu-text {
color: inherit;
font-family: inherit;
font-size: inherit;
font-weight: inherit;
font-style: inherit;
line-height: inherit;
letter-spacing: inherit;
text-transform: inherit;
padding-left: 5px;
}
.qodef-mobile-header .qodef-mobile-menu-opener.qodef-mobile-menu-opened a {
color: #fe6c61;
}
.qodef-mobile-header .qodef-mobile-nav {
display: none;
background-color: #fff;
border-bottom: 1px solid #ebebeb;
padding-bottom: 2px;
}
.qodef-mobile-header .qodef-mobile-nav ul {
padding: 0;
margin: 0;
list-style-type: none;
}
.qodef-mobile-header .qodef-mobile-nav ul li {
position: relative;
padding: 0;
margin: 0;
}
.qodef-mobile-header .qodef-mobile-nav ul li a,
.qodef-mobile-header .qodef-mobile-nav ul li h6 {
position: relative;
display: block;
padding: 9px 0;
margin: 0;
color: #959595;
border-bottom: 1px solid #ebebeb;
cursor: pointer;
font-size: 14px;
font-family: "Oswald", sans-serif;
font-style: normal;
letter-spacing: 0.05em;
font-weight: 700;
text-transform: uppercase;
}
.qodef-mobile-header .qodef-mobile-nav ul li a:hover,
.qodef-mobile-header .qodef-mobile-nav ul li h6:hover {
color: #fe6c61;
}
.qodef-mobile-header .qodef-mobile-nav ul ul {
display: none;
margin-left: 15px;
}
.qodef-mobile-header .qodef-mobile-nav ul ul li.current-menu-ancestor > a,
.qodef-mobile-header .qodef-mobile-nav ul ul li.current-menu-item > a,
.qodef-mobile-header .qodef-mobile-nav ul ul li.current-menu-ancestor > h6,
.qodef-mobile-header .qodef-mobile-nav ul ul li.current-menu-item > h6 {
color: #fe6c61;
}
.qodef-mobile-header .qodef-mobile-nav ul ul li a,
.qodef-mobile-header .qodef-mobile-nav ul ul li h6 {
font-size: 12px;
line-height: 24px;
}
.qodef-mobile-header .qodef-mobile-nav .qodef-grid > ul > li > a,
.qodef-mobile-header .qodef-mobile-nav .qodef-grid > ul > li > h6 {
padding-left: 4px;
font-size: 13px;
}
.qodef-mobile-header .qodef-mobile-nav .qodef-grid > ul > li.qodef-active-item > a,
.qodef-mobile-header .qodef-mobile-nav .qodef-grid > ul > li.qodef-active-item > h6 {
color: #fe6c61;
}
.qodef-mobile-header .qodef-mobile-nav .qodef-grid > ul > li.qodef-active-item > .mobile_arrow > .qodef-sub-arrow {
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
transform: rotate(90deg);
}
.qodef-mobile-header .qodef-mobile-nav .mobile_arrow {
position: absolute;
right: 0;
top: 0;
width: 50px;
height: auto;
padding: 9px 12px 9px 0;
font-size: 15px;
line-height: inherit;
text-align: right;
box-sizing: border-box;
}
.qodef-mobile-header .qodef-mobile-nav .mobile_arrow:hover {
cursor: pointer;
}
.qodef-mobile-header .qodef-mobile-nav .mobile_arrow .qodef-sub-arrow {
line-height: 1;
-webkit-transition: transform 0.2s ease-in-out;
-moz-transition: transform 0.2s ease-in-out;
transition: transform 0.2s ease-in-out;
}
.qodef-mobile-header .qodef-mobile-nav .mobile_arrow .fa-angle-down {
display: none;
}
.qodef-mobile-header .qodef-mobile-nav li.qodef-opened > .mobile_arrow > .qodef-sub-arrow {
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
transform: rotate(90deg);
}
.qodef-mobile-header .qodef-mobile-nav > ul > li:last-child > a,
.qodef-mobile-header .qodef-mobile-nav > .qodef-grid > ul > li:last-child > a {
border-bottom: none;
}  .qodef-sticky-up-mobile-header .qodef-animate-mobile-header .qodef-mobile-header-inner {
width: 100%;
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
transform: translateY(-100%);
-webkit-transition: -webkit-transform 0.4s ease-in-out, left 0.2s ease, right 0.2s ease;
-moz-transition: -moz-transform 0.4s ease-in-out, left 0.2s ease, right 0.2s ease;
transition: transform 0.4s ease-in-out, left 0.2s ease, right 0.2s ease;
}
.qodef-sticky-up-mobile-header .mobile-header-appear .qodef-mobile-header-inner {
position: fixed;
top: 0;
left: 0;
width: 100%;
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
transform: translateY(0);
}
.qodef-sticky-up-mobile-header.admin-bar .mobile-header-appear .qodef-mobile-header-inner {
-webkit-transform: translateY(32px);
-moz-transform: translateY(32px);
transform: translateY(32px);
}  .qodef-sticky-header {
position: fixed;
top: 0;
left: 0;
height: 70px;
width: 100%;
z-index: 100;
-webkit-backface-visibility: hidden;
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
transform: translateY(-100%);
-webkit-transition: -webkit-transform 0.6s ease;
-moz-transition: -moz-transform 0.6s ease;
transition: transform 0.6s ease;
}
.qodef-sticky-header .qodef-grid {
height: 100% !important;
}
.qodef-sticky-header.header-appear {
transform: translateY(0%);
}
.qodef-sticky-header.qodef-menu-position-left .qodef-position-left-inner {
height: 100%;
}
.qodef-sticky-header .qodef-sticky-holder {
position: relative;
height: 100%;
z-index: 2;
background-color: #fff;
border-bottom: 1px solid #ebebeb;
box-sizing: border-box;
}
.qodef-sticky-header .qodef-sticky-holder .qodef-logo-wrapper a {
max-height: 70px;
}
.admin-bar .qodef-sticky-header.header-appear {
top: 32px;
}
.qodef-sticky-header .qodef-position-center-inner,
.qodef-sticky-header .qodef-position-right-inner {
height: 100%;
}
.qodef-sticky-header .qodef-sticky-right {
display: inline-block;
vertical-align: middle;
}
.qodef-sticky-header .widget {
display: inline-block;
vertical-align: middle;
margin: 0;
background-color: transparent;
}  .qodef-top-bar {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
height: 49px;
color: rgba(250, 250, 250, 0.5);
font-size: 12px;
line-height: 1;
background-color: #1c1c1c;
z-index: 111;
box-sizing: border-box;
}
.qodef-top-bar > .qodef-vertical-align-containers {
padding: 0 40px;
}
.qodef-top-bar .qodef-grid {
height: 100%;
}
.qodef-top-bar .qodef-grid .qodef-vertical-align-containers {
padding-left: 0;
padding-right: 0;
}
.qodef-top-bar-in-grid-padding .qodef-top-bar .qodef-grid .qodef-vertical-align-containers {
padding: 0 40px;
}
.qodef-top-bar .widget {
margin: 0;
background-color: transparent;
}         .qodef-search-opener {
position: relative;
display: inline-block;
vertical-align: middle;
font-size: 14px;
line-height: 1;
margin: 0 10px;
-webkit-transition: color 0.2s ease-out;
-moz-transition: color 0.2s ease-out;
transition: color 0.2s ease-out;
}
.qodef-search-opener .qodef-search-opener-wrapper > * {
position: relative;
display: inline-block;
vertical-align: middle;
line-height: inherit;
}
.qodef-search-opener .qodef-search-opener-wrapper > *:before {
display: block;
line-height: inherit;
}
.qodef-light-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-search-opener,
.qodef-light-header .qodef-top-bar .qodef-search-opener {
color: #fff !important;
}
.qodef-light-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-search-opener:hover,
.qodef-light-header .qodef-top-bar .qodef-search-opener:hover {
color: #fff !important;
}
.qodef-dark-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-search-opener,
.qodef-dark-header .qodef-top-bar .qodef-search-opener {
color: #bbbbbb !important;
}
.qodef-dark-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-search-opener:hover,
.qodef-dark-header .qodef-top-bar .qodef-search-opener:hover {
color: #8a8a8a !important;
}  .qodef-search-page-holder {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
margin: 0 0 80px;
}
.qodef-search-page-holder .qodef-search-page-form {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
margin: 0 0 30px;
}
.qodef-search-page-holder .qodef-search-page-form .qodef-search-title {
margin: 0 0 20px;
}
.qodef-search-page-holder .qodef-search-page-form .qodef-search-label {
display: block;
font-size: 13px;
}
.qodef-search-page-holder .qodef-search-page-form .qodef-form-holder {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
margin: 0 0 10px;
clear: both;
border-bottom: 1px solid #ebebeb;
}
.qodef-search-page-holder .qodef-search-page-form .qodef-form-holder .qodef-column-left {
display: table-cell;
vertical-align: top;
}
.qodef-search-page-holder .qodef-search-page-form .qodef-form-holder .qodef-column-right {
display: table-cell;
width: 1%;
text-align: left;
vertical-align: top;
}
.qodef-search-page-holder .qodef-search-page-form .qodef-form-holder .qodef-search-field {
position: relative;
width: 100%;
height: 40px;
line-height: 40px;
margin: 0;
padding: 0 20px 0 3px;
font-family: inherit;
font-size: inherit;
color: inherit;
background-color: transparent;
border: none;
outline: 0;
vertical-align: middle;
-webkit-appearance: none;
box-sizing: border-box;
}
.qodef-search-page-holder .qodef-search-page-form .qodef-form-holder .qodef-search-field::-webkit-input-placeholder {
color: inherit;
}
.qodef-search-page-holder .qodef-search-page-form .qodef-form-holder .qodef-search-field:-moz-placeholder {
color: inherit;
}
.qodef-search-page-holder .qodef-search-page-form .qodef-form-holder .qodef-search-field::-moz-placeholder {
color: inherit;
}
.qodef-search-page-holder .qodef-search-page-form .qodef-form-holder .qodef-search-field:-ms-input-placeholder {
color: inherit;
}
.qodef-search-page-holder .qodef-search-page-form .qodef-form-holder .qodef-search-submit {
position: relative;
display: inline-block;
width: auto;
height: 40px;
line-height: 40px;
padding: 0;
font-size: 18px;
color: #959595;
background-color: transparent;
border: 0;
outline: 0;
cursor: pointer;
vertical-align: middle;
-webkit-transition: color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out;
}
.qodef-search-page-holder .qodef-search-page-form .qodef-form-holder .qodef-search-submit:hover {
color: #121212;
}
.qodef-search-page-holder article {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
padding: 30px 0;
margin: 0;
border-bottom: 1px solid #ebebeb;
}
.qodef-search-page-holder article.sticky .qodef-post-title a {
color: #fe6c61;
}
.qodef-search-page-holder article.page .qodef-post-title-area .qodef-post-info > div.qodef-post-info-category {
display: none;
}
.qodef-search-page-holder article .qodef-post-title a:hover {
color: #121212;
text-decoration: underline;
}
.qodef-search-page-holder article .qodef-post-content {
position: relative;
display: table;
height: 100%;
width: 100%;
}
.qodef-search-page-holder article .qodef-post-image {
position: relative;
display: table-cell;
height: 100%;
width: 100%;
vertical-align: middle;
width: 130px;
}
.qodef-search-page-holder article .qodef-post-image a,
.qodef-search-page-holder article .qodef-post-image img {
display: block;
}
.qodef-search-page-holder article .qodef-post-title-area {
position: relative;
display: table-cell;
height: 100%;
width: 100%;
vertical-align: middle;
width: calc(100% - 130px);
min-height: 130px;
padding: 0 0 0 20px;
}
.qodef-search-page-holder article .qodef-post-title-area.qodef-no-thumbnail {
padding: 0;
width: 100%;
min-height: inherit;
}
.qodef-search-page-holder article .qodef-post-title-area .qodef-post-title-area-inner {
width: 100%;
height: 100%;
overflow: hidden;
box-sizing: border-box;
}
.qodef-search-page-holder article .qodef-post-title-area .qodef-post-title-area-inner .qodef-post-title {
margin: 0;
}
.qodef-search-page-holder article .qodef-post-title-area .qodef-post-title-area-inner .qodef-post-excerpt {
margin: 7px 0 0;
}
.qodef-search-page-holder .qodef-blog-pagination {
margin: 50px 0 0;
}  .qodef-slide-from-icon-holder {
width: 0;
box-sizing: border-box;
outline: 0;
-webkit-transition: width 0.2s ease-out;
-moz-transition: width 0.2s ease-out;
transition: width 0.2s ease-out;
}
.qodef-slide-from-icon-holder .qodef-form-holder {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
box-sizing: border-box;
}
.qodef-slide-from-icon-holder .qodef-form-holder .qodef-search-field {
width: 100%;
line-height: 23px;
color: #8a8a8a;
background-color: transparent;
border: 0;
border-bottom: 1px solid #b7b7b7;
border-radius: 0;
outline: 0;
padding: 0;
margin: 0;
-webkit-appearance: none;
box-sizing: border-box;
font-family: Poppins, sans-serif;
font-weight: 300;
font-size: 12px;
letter-spacing: 0.2px;
-webkit-transition: color 0.2s ease-out, border-color 0.2s ease-out;
-moz-transition: color 0.2s ease-out, border-color 0.2s ease-out;
transition: color 0.2s ease-out, border-color 0.2s ease-out;
}
.qodef-slide-from-icon-holder .qodef-form-holder .qodef-search-field::-webkit-input-placeholder {
color: #b7b7b7;
}
.qodef-slide-from-icon-holder .qodef-form-holder .qodef-search-field:-moz-placeholder {
color: #b7b7b7;
}
.qodef-slide-from-icon-holder .qodef-form-holder .qodef-search-field::-moz-placeholder {
color: #b7b7b7;
}
.qodef-slide-from-icon-holder .qodef-form-holder .qodef-search-field:-ms-input-placeholder {
color: #b7b7b7;
}
.qodef-slide-from-icon-holder .qodef-form-holder .qodef-search-field:focus {
color: #bbb;
border-color: #c5c5c5;
}
.qodef-slide-from-icon-holder .qodef-form-holder .qodef-search-field:focus::-webkit-input-placeholder {
color: #8a8a8a;
}
.qodef-slide-from-icon-holder .qodef-form-holder .qodef-search-field:focus:-moz-placeholder {
color: #8a8a8a;
}
.qodef-slide-from-icon-holder .qodef-form-holder .qodef-search-field:focus::-moz-placeholder {
color: #8a8a8a;
}
.qodef-slide-from-icon-holder .qodef-form-holder .qodef-search-field:focus:-ms-input-placeholder {
color: #8a8a8a;
}
.qodef-light-header .qodef-slide-from-icon-holder .qodef-form-holder .qodef-search-field {
color: #fff;
border-bottom: 1px solid #fff;
}
.qodef-light-header .qodef-slide-from-icon-holder .qodef-form-holder .qodef-search-field::-webkit-input-placeholder {
color: #fff;
}
.qodef-light-header .qodef-slide-from-icon-holder .qodef-form-holder .qodef-search-field:-moz-placeholder {
color: #fff;
}
.qodef-light-header .qodef-slide-from-icon-holder .qodef-form-holder .qodef-search-field::-moz-placeholder {
color: #fff;
}
.qodef-light-header .qodef-slide-from-icon-holder .qodef-form-holder .qodef-search-field:-ms-input-placeholder {
color: #fff;
}
.qodef-light-header .qodef-slide-from-icon-holder .qodef-form-holder .qodef-search-field:focus {
color: #fff;
border-color: #fff;
}
.qodef-light-header .qodef-slide-from-icon-holder .qodef-form-holder .qodef-search-field:focus::-webkit-input-placeholder {
color: #fff;
}
.qodef-light-header .qodef-slide-from-icon-holder .qodef-form-holder .qodef-search-field:focus:-moz-placeholder {
color: #fff;
}
.qodef-light-header .qodef-slide-from-icon-holder .qodef-form-holder .qodef-search-field:focus::-moz-placeholder {
color: #fff;
}
.qodef-light-header .qodef-slide-from-icon-holder .qodef-form-holder .qodef-search-field:focus:-ms-input-placeholder {
color: #fff;
}
.qodef-search-opened .qodef-slide-from-icon-holder {
width: 122px;
}         .qodef-light-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-side-menu-button-opener,
.qodef-light-header .qodef-top-bar .qodef-side-menu-button-opener {
color: #fff !important;
}
.qodef-light-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-side-menu-button-opener.opened,
.qodef-light-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-side-menu-button-opener:hover,
.qodef-light-header .qodef-top-bar .qodef-side-menu-button-opener.opened,
.qodef-light-header .qodef-top-bar .qodef-side-menu-button-opener:hover {
color: #fff !important;
}
.qodef-dark-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-side-menu-button-opener,
.qodef-dark-header .qodef-top-bar .qodef-side-menu-button-opener {
color: #333 !important;
}
.qodef-dark-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-side-menu-button-opener.opened,
.qodef-dark-header .qodef-page-header > div:not(.qodef-sticky-header):not(.fixed) .qodef-side-menu-button-opener:hover,
.qodef-dark-header .qodef-top-bar .qodef-side-menu-button-opener.opened,
.qodef-dark-header .qodef-top-bar .qodef-side-menu-button-opener:hover {
color: #333 !important;
}
.qodef-side-menu-button-opener {
position: relative;
display: inline-block;
vertical-align: middle;
height: 100%;
}
.qodef-side-menu-button-opener .qodef-side-menu-title {
position: relative;
display: inline-block;
vertical-align: middle;
margin: 0 8px 0 0;
color: currentColor;
}
.qodef-side-menu-button-opener .qodef-side-menu-icon {
display: table;
position: relative;
height: 100%;
font-size: 20px;
}
.qodef-side-menu-button-opener .qodef-side-menu-icon .qodef-side-menu-icon-inner {
display: table-cell;
height: 100%;
vertical-align: middle;
}
.qodef-side-menu-button-opener .qodef-side-menu-icon .qodef-fm-lines {
position: relative;
display: inline-block;
vertical-align: middle;
width: 10px;
height: 16px;
}
.qodef-side-menu-button-opener .qodef-side-menu-icon .qodef-fm-lines .qodef-fm-line {
position: absolute;
left: 0;
height: 2px;
width: 100%;
background-color: currentColor;
-webkit-transition: -webkit-transform 0.3s ease, top 0.2s ease-out, background-color 0.2s ease-out;
-moz-transition: -moz-transform 0.3s ease, top 0.2s ease-out, background-color 0.2s ease-out;
transition: transform 0.3s ease, top 0.2s ease-out, background-color 0.2s ease-out;
}
.qodef-side-menu-button-opener .qodef-side-menu-icon .qodef-fm-lines .qodef-fm-line.qodef-line-1 {
top: 0;
outline: transparent solid 1px;
}
.qodef-side-menu-button-opener .qodef-side-menu-icon .qodef-fm-lines .qodef-fm-line.qodef-line-2 {
top: calc(50% - 2px);
outline: transparent solid 1px;
}
.qodef-side-menu-button-opener .qodef-side-menu-icon .qodef-fm-lines .qodef-fm-line.qodef-line-3 {
top: calc(100% - 4px);
outline: transparent solid 1px;
}
.qodef-side-menu-button-opener .qodef-side-menu-icon span {
display: block;
line-height: inherit;
}
.qodef-side-menu-button-opener .qodef-side-menu-icon span:before {
display: block;
line-height: inherit;
}
.qodef-side-menu-button-opener.opened,
.qodef-side-menu-button-opener:hover {
color: #121212;
}
.qodef-side-menu {
position: fixed;
top: 0;
right: 0;
width: 355px;
height: 100%;
min-height: 100%;
border-left: 1px solid #000;
padding: 66px 55px 36px;
background-color: #141414;
text-align: left;
overflow: hidden;
visibility: hidden;
z-index: 9999;
-webkit-backface-visibility: hidden;
box-sizing: border-box;
-webkit-transform: translate3d(355px, 0, 0);
-moz-transform: translate3d(355px, 0, 0);
transform: translate3d(355px, 0, 0);
-webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
-moz-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
.qodef-side-menu .qodef-close-side-menu-holder {
position: absolute;
top: 26px;
right: 36px;
z-index: 1000;
}
.admin-bar .qodef-side-menu .qodef-close-side-menu-holder {
top: 58px;
}
.qodef-side-menu a.qodef-close-side-menu {
display: block;
color: #bbbbbb;
font-size: 23px;
z-index: 1000;
}
.qodef-side-menu a.qodef-close-side-menu:hover {
color: #959595;
}
.qodef-side-menu a.qodef-close-side-menu span {
display: block;
line-height: inherit;
}
.qodef-side-menu a.qodef-close-side-menu span:before {
display: block;
line-height: inherit;
}
.qodef-side-menu-slide-from-right.qodef-right-side-menu-opened .qodef-wrapper .qodef-cover {
z-index: 3000;
}
.qodef-side-menu-slide-from-right.qodef-right-side-menu-opened .qodef-side-menu {
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
visibility: visible;
}
.qodef-side-menu-slide-from-right .qodef-wrapper .qodef-cover {
z-index: -1;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
opacity: 0;
}         .qodef-title-holder {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
height: 240px;
background-color: #f6f6f6;
background-position: center 0;
background-repeat: no-repeat;
z-index: 101;
}
.qodef-title-holder.qodef-title-full-width .qodef-grid {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
margin: 0;
padding: 0 60px;
box-sizing: border-box;
}
.qodef-title-holder.qodef-bg-responsive {
height: auto !important;
}
.qodef-title-holder.qodef-bg-responsive .qodef-title-image {
display: block;
}
.qodef-title-holder.qodef-bg-responsive .qodef-title-wrapper {
position: absolute;
top: 50%;
left: 0;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
transform: translateY(-50%);
}
.qodef-title-holder.qodef-bg-parallax {
background-attachment: fixed;
}
.qodef-title-holder .qodef-title-image {
display: none;
}
.qodef-title-holder .qodef-title-image img {
display: block;
width: 100%;
}
.qodef-title-holder .qodef-title-wrapper {
position: relative;
display: table;
table-layout: fixed;
height: 100%;
width: 100%;
box-sizing: border-box;
}
.qodef-title-holder .qodef-title-inner {
position: relative;
display: table-cell;
height: 100%;
width: 100%;
vertical-align: middle;
}  .qodef-title-holder.qodef-breadcrumbs-type .qodef-breadcrumbs {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
color: #959595;
}
.qodef-title-holder.qodef-breadcrumbs-type .qodef-breadcrumbs.qodef-has-inline-style a {
opacity: 1;
-webkit-transition: opacity 0.2s ease-out;
-moz-transition: opacity 0.2s ease-out;
transition: opacity 0.2s ease-out;
}
.qodef-title-holder.qodef-breadcrumbs-type .qodef-breadcrumbs.qodef-has-inline-style a:hover {
color: inherit;
opacity: 0.9;
}
.qodef-title-holder.qodef-breadcrumbs-type .qodef-breadcrumbs a,
.qodef-title-holder.qodef-breadcrumbs-type .qodef-breadcrumbs span {
position: relative;
display: inline-block;
vertical-align: middle;
color: inherit;
}
.qodef-title-holder.qodef-breadcrumbs-type .qodef-breadcrumbs a:hover {
color: rgba(255, 255, 255, 0.8);
}  .qodef-title-holder.qodef-centered-type .qodef-title-inner {
text-align: center;
}
.qodef-title-holder.qodef-centered-type .qodef-page-title {
margin: 0;
}
.qodef-title-holder.qodef-centered-type .qodef-page-subtitle {
display: block;
box-sizing: border-box;
font-size: 16px;
margin: 23px 0;
line-height: 26px;
font-weight: 300;
}  .qodef-title-holder.qodef-standard-with-breadcrumbs-type .qodef-title-info,
.qodef-title-holder.qodef-standard-with-breadcrumbs-type .qodef-breadcrumbs-info {
display: table-cell;
vertical-align: middle;
}
.qodef-title-holder.qodef-standard-with-breadcrumbs-type .qodef-title-info {
width: 99%;
}
.qodef-title-holder.qodef-standard-with-breadcrumbs-type .qodef-breadcrumbs-info {
width: 1%;
text-align: right;
white-space: nowrap;
}
.qodef-title-holder.qodef-standard-with-breadcrumbs-type .qodef-page-title {
margin: 0;
}
.qodef-title-holder.qodef-standard-with-breadcrumbs-type .qodef-page-subtitle {
margin: 5px 0 0;
font-size: 16px;
}
.qodef-title-holder.qodef-standard-with-breadcrumbs-type .qodef-breadcrumbs {
color: #959595;
}
.qodef-title-holder.qodef-standard-with-breadcrumbs-type .qodef-breadcrumbs.qodef-has-inline-style a {
opacity: 1;
-webkit-transition: opacity 0.2s ease-out;
-moz-transition: opacity 0.2s ease-out;
transition: opacity 0.2s ease-out;
}
.qodef-title-holder.qodef-standard-with-breadcrumbs-type .qodef-breadcrumbs.qodef-has-inline-style a:hover {
color: inherit;
opacity: 0.9;
}
.qodef-title-holder.qodef-standard-with-breadcrumbs-type .qodef-breadcrumbs a,
.qodef-title-holder.qodef-standard-with-breadcrumbs-type .qodef-breadcrumbs span {
position: relative;
display: inline-block;
vertical-align: middle;
color: inherit;
}
.qodef-title-holder.qodef-standard-with-breadcrumbs-type .qodef-breadcrumbs a:hover {
color: rgba(255, 255, 255, 0.8);
}  .qodef-title-holder.qodef-standard-type .qodef-page-title {
margin: 0;
}
.qodef-title-holder.qodef-standard-type .qodef-page-subtitle {
margin: 10px 0 0;
font-size: 16px;
}          .qodef-testimonials-holder {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle; }
.qodef-testimonials-holder .qodef-testimonials,
.qodef-testimonials-holder .qodef-testimonial-content {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
}
.qodef-testimonials-holder .qodef-testimonials {
width: calc(100% + 80px);
margin: 0 -40px;
box-sizing: border-box;
}
.qodef-testimonials-holder .qodef-testimonial-content {
padding: 31px 40px 32px;
box-sizing: border-box;
}
.qodef-testimonials-holder .qodef-testimonial-text-holder {
position: relative;
display: table;
width: 100%;
table-layout: fixed;
}
.qodef-testimonials-holder .qodef-testimonial-text-holder .qodef-testimonial-text {
margin-top: 0;
}
.qodef-testimonials-holder .qodef-testimonial-image {
display: table-cell;
vertical-align: top;
width: 70px;
padding-top: 5px;
}
.qodef-testimonials-holder .qodef-testimonial-image img {
width: auto !important;
border-radius: 5em;
}
.qodef-testimonials-holder .qodef-testimonials-inner-content {
display: table-cell;
vertical-align: top;
padding-left: 30px;
}
.qodef-testimonials-holder .qodef-testimonials-author-holder {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
margin: 5px 0 0;
}
.qodef-testimonials-holder .qodef-testimonials-author-holder .qodef-testimonial-author {
margin: 0;
}
.qodef-testimonials-holder .qodef-testimonials-author-holder .qodef-testimonials-author-job {
display: block;
font-size: 11px;
margin-top: 2px;
color: #b5b5b5;
}
.qodef-testimonials-holder.qodef-testimonials-light .qodef-testimonial-title,
.qodef-testimonials-holder.qodef-testimonials-light .qodef-testimonial-text,
.qodef-testimonials-holder.qodef-testimonials-light .qodef-testimonial-author {
color: #fff;
}
.qodef-testimonials-holder.qodef-testimonials-light .owl-dots .owl-dot span {
border: 2px solid rgba(255, 255, 255, 0.5);
}
.qodef-testimonials-holder.qodef-testimonials-light .owl-dots .owl-dot:hover span,
.qodef-testimonials-holder.qodef-testimonials-light .owl-dots .owl-dot.active span {
background-color: #fff;
border-color: #fff;
}         .qodef-accordion-holder {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
}
.qodef-accordion-holder .qodef-accordion-title {
position: relative;
cursor: pointer;
margin: 0;
box-sizing: border-box;
-webkit-transform: translateZ(0px);
-moz-transform: translateZ(0px);
transform: translateZ(0px);
-webkit-transition: color 0.2s ease-out, background-color 0.2s ease-out;
-moz-transition: color 0.2s ease-out, background-color 0.2s ease-out;
transition: color 0.2s ease-out, background-color 0.2s ease-out;
}
.qodef-accordion-holder .qodef-accordion-title .qodef-tab-title {
display: block;
line-height: inherit;
}
.qodef-accordion-holder .qodef-accordion-title .qodef-accordion-mark {
position: absolute;
top: 50%;
left: 0;
width: 20px;
height: 18px;
margin: -1px 0 0;
font-size: 18px;
line-height: 18px;
text-align: center;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
transform: translateY(-50%);
}
.qodef-accordion-holder .qodef-accordion-title .qodef-accordion-mark span {
position: absolute;
display: block;
width: 100%;
height: 100%;
font-size: inherit;
line-height: inherit;
-webkit-transition: opacity 0.2s ease-out;
-moz-transition: opacity 0.2s ease-out;
transition: opacity 0.2s ease-out;
}
.qodef-accordion-holder .qodef-accordion-title .qodef-accordion-mark span:before {
display: block;
line-height: inherit;
}
.qodef-accordion-holder .qodef-accordion-title .qodef-accordion-mark span.qodef_icon_minus {
opacity: 0;
}
.qodef-accordion-holder .qodef-accordion-title .qodef-accordion-mark span.qodef_icon_plus {
opacity: 1;
}
.qodef-accordion-holder .qodef-accordion-title.ui-state-active .qodef-accordion-mark span.qodef_icon_minus,
.qodef-accordion-holder .qodef-accordion-title.ui-state-hover .qodef-accordion-mark span.qodef_icon_minus {
opacity: 1;
}
.qodef-accordion-holder .qodef-accordion-title.ui-state-active .qodef-accordion-mark span.qodef_icon_plus,
.qodef-accordion-holder .qodef-accordion-title.ui-state-hover .qodef-accordion-mark span.qodef_icon_plus {
opacity: 0;
}
.qodef-accordion-holder .qodef-accordion-content {
margin: 0;
}
.qodef-accordion-holder .qodef-accordion-content p {
margin: 0;
}
.qodef-accordion-holder.qodef-ac-boxed.qodef-white-skin .qodef-accordion-title {
background-color: #fff;
}
.qodef-accordion-holder.qodef-ac-boxed .qodef-accordion-title {
margin: 15px 0 0;
padding: 13px 20px 13px 40px;
background-color: #f7f7f9;
}
.qodef-accordion-holder.qodef-ac-boxed .qodef-accordion-title:first-child {
margin: 0;
}
.qodef-accordion-holder.qodef-ac-boxed .qodef-accordion-title .qodef-accordion-mark {
left: 10px;
}
.qodef-accordion-holder.qodef-ac-boxed .qodef-accordion-title.ui-state-active,
.qodef-accordion-holder.qodef-ac-boxed .qodef-accordion-title.ui-state-hover {
color: #fff;
background-color: #fe6c61;
}
.qodef-accordion-holder.qodef-ac-boxed .qodef-accordion-content {
padding: 21px 0 6px;
}
.qodef-accordion-holder.qodef-ac-simple {
border-bottom: 1px solid #ebebeb;
}
.qodef-accordion-holder.qodef-ac-simple .qodef-accordion-title {
padding: 17px 0 17px 30px;
border-top: 1px solid #ebebeb;
}
.qodef-accordion-holder.qodef-ac-simple .qodef-accordion-content {
border-top: 1px solid transparent;
}
.qodef-accordion-holder.qodef-ac-simple .qodef-accordion-content.ui-accordion-content-active {
border-color: #ebebeb;
}
.qodef-accordion-holder.qodef-ac-simple .qodef-accordion-content {
padding: 21px 0 16px;
}  .qodef-btn {
font-family: "Oswald", sans-serif;
position: relative;
display: inline-block;
vertical-align: middle;
width: auto;
outline: none;
font-size: 12px;
line-height: 2em;
letter-spacing: 0.1em;
font-weight: 700;
text-transform: uppercase;
box-sizing: border-box;
margin: 0;
-webkit-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
-moz-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
padding: 11px 46px 13px;
cursor: pointer;
}
.qodef-btn .qodef-btn-text {
position: relative;
display: inline-block;
vertical-align: middle;
}
.qodef-btn .qodef-btn-text:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
height: 2px;
width: 100%;
background-color: currentColor;
-webkit-transform-origin: 100% 50%;
transform-origin: 100% 50%;
-webkit-transform: scaleX(0);
-moz-transform: scaleX(0);
transform: scaleX(0);
-webkit-transition: -webkit-transform 0.25s ease-in-out;
-moz-transition: -moz-transform 0.25s ease-in-out;
transition: transform 0.25s ease-in-out;
will-change: transform;
}
.qodef-btn:hover .qodef-btn-text:after {
-webkit-transform-origin: 0 50%;
transform-origin: 0 50%;
-webkit-transform: scaleX(1);
-moz-transform: scaleX(1);
transform: scaleX(1);
}
.qodef-btn.qodef-btn-simple {
padding: 0 !important;
color: #959595;
background-color: transparent;
border: 0;
vertical-align: middle;
}
.qodef-btn.qodef-btn-simple .qodef-btn-text {
display: inline-block;
vertical-align: middle;
}
.qodef-btn.qodef-btn-simple:not(.qodef-btn-custom-hover-color):hover {
color: #121212 !important;
}
.qodef-btn.qodef-btn-simple:not(.qodef-btn-custom-hover-bg):hover {
background-color: transparent !important;
}
.qodef-btn.qodef-btn-simple:not(.qodef-btn-custom-border-hover):hover {
border-color: transparent !important;
}
.qodef-btn.qodef-btn-solid {
color: #fff;
background-color: #121212;
border: 1px solid transparent;
}
.qodef-btn.qodef-btn-solid:not(.qodef-btn-custom-hover-color):hover {
color: #fff !important;
}
.qodef-btn.qodef-btn-solid:not(.qodef-btn-custom-hover-bg):hover {
background-color: #121212 !important;
}
.qodef-btn.qodef-btn-solid:not(.qodef-btn-custom-border-hover):hover {
border-color: #121212 !important;
}
.qodef-btn.qodef-btn-outline {
color: #fe6c61;
background-color: transparent;
border: 1px solid #fe6c61;
}
.qodef-btn.qodef-btn-outline:not(.qodef-btn-custom-hover-color):hover {
color: #fff !important;
}
.qodef-btn.qodef-btn-outline:not(.qodef-btn-custom-hover-bg):hover {
background-color: #fe6c61 !important;
}
.qodef-btn.qodef-btn-outline:not(.qodef-btn-custom-border-hover):hover {
border-color: #fe6c61 !important;
}
.qodef-btn.qodef-btn-small {
padding: 10px 36px 12px;
}
.qodef-btn.qodef-btn-large {
padding: 12px 66px 14px;
}
.qodef-btn.qodef-btn-huge {
display: block;
text-align: center;
padding: 12px 26px 14px;
}
.qodef-btn.qodef-btn-icon > i,
.qodef-btn.qodef-btn-icon > span:not(.qodef-btn-text) {
position: relative;
display: inline-block;
vertical-align: top;
margin: 0 0 0 4px;
font-size: 1.142857142857143em;
line-height: inherit;
}
.qodef-btn.qodef-btn-icon > i:before,
.qodef-btn.qodef-btn-icon > span:not(.qodef-btn-text):before {
display: block;
line-height: inherit;
}  .qodef-call-to-action-holder {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;    }
.qodef-call-to-action-holder .qodef-cta-text-holder,
.qodef-call-to-action-holder .qodef-cta-button-holder {
position: relative;
display: inline-block;
vertical-align: middle;
}
.qodef-call-to-action-holder .qodef-cta-text-holder h1,
.qodef-call-to-action-holder .qodef-cta-text-holder h2,
.qodef-call-to-action-holder .qodef-cta-text-holder h3,
.qodef-call-to-action-holder .qodef-cta-text-holder h4,
.qodef-call-to-action-holder .qodef-cta-text-holder h5,
.qodef-call-to-action-holder .qodef-cta-text-holder h6 {
margin: 0;
}
.qodef-call-to-action-holder .qodef-cta-button-holder .qodef-btn {
white-space: nowrap;
}
.qodef-call-to-action-holder.qodef-normal-layout .qodef-cta-inner {
display: table;
}
.qodef-call-to-action-holder.qodef-normal-layout:not(.qodef-content-in-grid) .qodef-cta-inner {
width: 100%;
}
.qodef-call-to-action-holder.qodef-normal-layout .qodef-cta-text-holder,
.qodef-call-to-action-holder.qodef-normal-layout .qodef-cta-button-holder {
display: table-cell;
box-sizing: border-box;
}
.qodef-call-to-action-holder.qodef-normal-layout .qodef-cta-button-holder {
text-align: right;
}
.qodef-call-to-action-holder.qodef-simple-layout .qodef-cta-inner {
text-align: center;
}
.qodef-call-to-action-holder.qodef-simple-layout .qodef-cta-text-holder,
.qodef-call-to-action-holder.qodef-simple-layout .qodef-cta-button-holder {
width: 100%;
}
.qodef-call-to-action-holder.qodef-simple-layout .qodef-cta-button-holder {
margin: 28px 0 0;
}
.qodef-call-to-action-holder.qodef-two-halves-columns .qodef-cta-text-holder,
.qodef-call-to-action-holder.qodef-two-halves-columns .qodef-cta-button-holder {
width: 50%;
}
.qodef-call-to-action-holder.qodef-two-thirds-columns .qodef-cta-text-holder {
width: 66.66666666666667%;
}
.qodef-call-to-action-holder.qodef-two-thirds-columns .qodef-cta-button-holder {
width: 33.33333333333333%;
}
.qodef-call-to-action-holder.qodef-three-quarters-columns .qodef-cta-text-holder {
width: 75%;
}
.qodef-call-to-action-holder.qodef-three-quarters-columns .qodef-cta-button-holder {
width: 25%;
}
.qodef-call-to-action-holder.qodef-four-fifths-columns .qodef-cta-text-holder {
width: 80%;
}
.qodef-call-to-action-holder.qodef-four-fifths-columns .qodef-cta-button-holder {
width: 20%;
}  .qodef-carousel-holder {
width: 100%;
}
.qodef-carousel-holder.qodef-eh-full-height {
height: 100%;
}
.qodef-carousel-holder.qodef-ehi-float .qodef-eh-item {
float: left;
}
.qodef-carousel-holder.qodef-two-columns .qodef-eh-item {
width: 50%;
}
.qodef-carousel-holder.qodef-three-columns .qodef-eh-item {
width: 33.33333%;
}
.qodef-carousel-holder.qodef-four-columns .qodef-eh-item {
width: 25%;
}
.qodef-carousel-holder.qodef-five-columns .qodef-eh-item {
width: 20%;
}
.qodef-carousel-holder.qodef-six-columns .qodef-eh-item {
width: 16.66667%;
}
.qodef-carousel-holder .qodef-eh-item {
display: inline-block;
height: 100%;
float: left;
}
.qodef-carousel-holder .qodef-eh-item.qodef-vertical-alignment-top {
vertical-align: top;
}
.qodef-carousel-holder .qodef-eh-item.qodef-vertical-alignment-bottom {
vertical-align: bottom;
}
.qodef-carousel-holder .qodef-eh-item.qodef-horizontal-alignment-center {
text-align: center;
}
.qodef-carousel-holder .qodef-eh-item.qodef-horizontal-alignment-right {
text-align: right;
}
.qodef-carousel-holder .qodef-eh-item .qodef-carousel-holder-item-inner {
width: 100%;
}
.qodef-carousel-holder .qodef-ehi-content {
padding: 0 20px;
}  .qodef-clients-carousel-holder {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;  }
.qodef-clients-carousel-holder .qodef-cc-inner {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
}
.qodef-clients-carousel-holder .qodef-cc-item {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
}
.touch .qodef-clients-carousel-holder .qodef-cc-item {
cursor: pointer;
}
.qodef-clients-carousel-holder .qodef-cc-item .qodef-cc-item {
position: relative;
display: block;
}
.qodef-clients-carousel-holder.qodef-cc-hover-switch-images .qodef-cc-item:hover .qodef-cc-image {
opacity: 0;
}
.qodef-clients-carousel-holder.qodef-cc-hover-switch-images .qodef-cc-item:hover .qodef-cc-hover-image {
opacity: 1;
}
.qodef-clients-carousel-holder.qodef-cc-hover-switch-images .qodef-cc-item .qodef-cc-image {
position: relative;
display: block;
width: auto;
margin: 0 auto;
opacity: 1;
-webkit-transition: opacity 0.15s ease-out;
-moz-transition: opacity 0.15s ease-out;
transition: opacity 0.15s ease-out;
}
.qodef-clients-carousel-holder.qodef-cc-hover-switch-images .qodef-cc-item .qodef-cc-hover-image {
position: absolute;
top: 0;
left: 50%;
width: auto;
opacity: 0;
-webkit-transform: translateX(-50%);
-moz-transform: translateX(-50%);
transform: translateX(-50%);
-webkit-transition: opacity 0.15s ease-out;
-moz-transition: opacity 0.15s ease-out;
transition: opacity 0.15s ease-out;
}
.qodef-clients-carousel-holder.qodef-cc-hover-roll-over .qodef-cc-item {
overflow: hidden;
}
.qodef-clients-carousel-holder.qodef-cc-hover-roll-over .qodef-cc-item:hover .qodef-cc-image {
-webkit-transform: translateY(100%);
-moz-transform: translateY(100%);
transform: translateY(100%);
}
.qodef-clients-carousel-holder.qodef-cc-hover-roll-over .qodef-cc-item:hover .qodef-cc-hover-image {
-webkit-transform: translate(-50%, 0);
-moz-transform: translate(-50%, 0);
transform: translate(-50%, 0);
}
.qodef-clients-carousel-holder.qodef-cc-hover-roll-over .qodef-cc-item .qodef-cc-image {
position: relative;
display: block;
width: auto;
margin: 0 auto;
-webkit-transition: -webkit-transform 0.4s ease;
-moz-transition: -moz-transform 0.4s ease;
transition: transform 0.4s ease;
}
.qodef-clients-carousel-holder.qodef-cc-hover-roll-over .qodef-cc-item .qodef-cc-hover-image {
position: absolute;
top: 0;
left: 50%;
width: auto;
-webkit-transform: translate(-50%, -100%);
-moz-transform: translate(-50%, -100%);
transform: translate(-50%, -100%);
-webkit-transition: -webkit-transform 0.4s ease;
-moz-transition: -moz-transform 0.4s ease;
transition: transform 0.4s ease;
}  .qodef-countdown {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
}
.qodef-countdown.qodef-light-skin .countdown-row .countdown-section .countdown-amount,
.qodef-countdown.qodef-light-skin .countdown-row .countdown-section .countdown-period {
color: #fff;
}
.qodef-countdown .countdown-rtl {
direction: rtl;
}
.qodef-countdown .countdown-row {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
text-align: center;
clear: both;
}
.qodef-countdown .countdown-row.countdown-show1 .countdown-section {
width: 100%;
}
.qodef-countdown .countdown-row.countdown-show2 .countdown-section {
width: 50%;
}
.qodef-countdown .countdown-row.countdown-show3 .countdown-section {
width: 33.33333%;
}
.qodef-countdown .countdown-row.countdown-show4 .countdown-section {
width: 25%;
}
.qodef-countdown .countdown-row.countdown-show5 .countdown-section {
width: 20%;
}
.qodef-countdown .countdown-row.countdown-show6 .countdown-section {
width: 16.66667%;
}
.qodef-countdown .countdown-row .countdown-section {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
padding: 0 5px;
box-sizing: border-box;
}
.qodef-countdown .countdown-row .countdown-section .countdown-amount {
position: relative;
display: block;
color: #121212;
font-size: 72px;
line-height: 1em;
font-weight: 600;
}
.qodef-countdown .countdown-row .countdown-section .countdown-period {
display: block;
font-size: 15px;
font-weight: 600;
letter-spacing: 1px;
}  .qodef-counter-holder {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
opacity: 0;
-webkit-transition: opacity 0.2s ease-in;
-moz-transition: opacity 0.2s ease-in;
transition: opacity 0.2s ease-in;
}
.qodef-counter-holder .qodef-counter-inner {
position: relative;
display: inline-block;
vertical-align: middle;
}
.qodef-counter-holder .qodef-counter {
height: 1em;
display: inline-block !important;
vertical-align: middle;
color: #121212;
font-size: 48px;
line-height: 1em;
font-weight: 600;
overflow: hidden;
}
.qodef-counter-holder .qodef-counter-title {
margin: 5px 0 0;
}
.qodef-counter-holder .qodef-counter-text {
margin: 10px 0 0;
}  .qodef-custom-font-holder .qodef-cf-typed-wrap {
width: 0;
white-space: nowrap;
}
.qodef-custom-font-holder .qodef-cf-typed {
display: inline-block;
}
.qodef-custom-font-holder .qodef-cf-typed span {
display: none;
}
.qodef-custom-font-holder .qodef-cf-typed ~ .typed-cursor {
display: inline-block;
opacity: 1;
-webkit-animation: blink 0.7s infinite;
animation: blink 0.7s infinite;
}
@-webkit-keyframes blink {
0% {
opacity: 1;
filter: alpha(opacity=100);
}
50% {
opacity: 0;
filter: alpha(opacity=0);
}
100% {
opacity: 1;
filter: alpha(opacity=100);
}
}
@keyframes blink {
0% {
opacity: 1;
filter: alpha(opacity=100);
}
50% {
opacity: 0;
filter: alpha(opacity=0);
}
100% {
opacity: 1;
filter: alpha(opacity=100);
}
}  .qodef-dropcaps {
position: relative;
display: inline-block;
vertical-align: top;
float: left;
line-height: 42px;
font-size: 42px;
color: #999;
font-weight: 900;
text-align: center;
margin: 2px 13px 0 0;
font-family: "Playfair Display", serif;
}
.qodef-dropcaps.qodef-square,
.qodef-dropcaps.qodef-circle {
height: 35px;
width: 35px;
font-size: 22px;
line-height: 35px;
font-weight: 600;
color: #fff;
background-color: #121212;
margin: 6px 9px 0 0;
box-sizing: border-box;
}
.qodef-dropcaps.qodef-circle {
border-radius: 3em;
}  .qodef-elements-holder {
width: 100%;
display: table;
table-layout: fixed;
}
.qodef-elements-holder.qodef-eh-full-height {
height: 100%;
}
.qodef-elements-holder.qodef-ehi-float .qodef-eh-item {
float: left;
}
.qodef-elements-holder.qodef-two-columns .qodef-eh-item {
width: 50%;
}
.qodef-elements-holder.qodef-three-columns .qodef-eh-item {
width: 33.33333%;
}
.qodef-elements-holder.qodef-four-columns .qodef-eh-item {
width: 25%;
}
.qodef-elements-holder.qodef-five-columns .qodef-eh-item {
width: 20%;
}
.qodef-elements-holder.qodef-six-columns .qodef-eh-item {
width: 16.66667%;
}
.qodef-elements-holder .qodef-eh-item {
display: table-cell;
vertical-align: middle;
height: 100%;
background-position: center;
background-size: cover;
z-index: 9999;
position: relative;
}
.qodef-elements-holder .qodef-eh-item .qodef-eh-item-link {
position: absolute;
display: block;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: 100;
}
.qodef-elements-holder .qodef-eh-item.qodef-vertical-alignment-top {
vertical-align: top;
}
.qodef-elements-holder .qodef-eh-item.qodef-vertical-alignment-bottom {
vertical-align: bottom;
}
.qodef-elements-holder .qodef-eh-item.qodef-horizontal-alignment-center {
text-align: center;
}
.qodef-elements-holder .qodef-eh-item.qodef-horizontal-alignment-right {
text-align: right;
}
.qodef-elements-holder .qodef-eh-item .qodef-elements-holder-item-inner {
width: 100%;
}
.qodef-elements-holder .qodef-ehi-content {
padding: 0 20px;
}  .qodef-google-map-holder {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
}
.qodef-google-map {
display: block;
width: 100%;
height: 300px;
}
.qodef-google-map iframe,
.qodef-google-map object,
.qodef-google-map embed {
width: 100%;
display: block;
}
.qodef-google-map img {
max-width: none;
}
.qodef-google-map-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: none;
z-index: 1000;
}  #qodef-hero-marquee-section {
position: relative;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: 100%;
background-color: #121212;
overflow: hidden;
}
#qodef-hero-marquee-section .qodef-hms-content-area {
position: relative;
text-align: center;
z-index: 300;
}
#qodef-hero-marquee-section .qodef-hms-title {
font-family: "Poppins", sans-serif;
font-size: 60px;
font-size: 4.375vw;
font-size: 4.375vmax;
font-weight: 600;
}
#qodef-hero-marquee-section .qodef-hms-tagline-holder {
margin: 28px auto 45px;
}
#qodef-hero-marquee-section .qodef-hms-tagline-holder .qodef-hms-tagline {
font-size: 18px;
}
#qodef-hero-marquee-section .qodef-hms-btn {
display: inline-block;
}
#qodef-hero-marquee-section .qodef-hms-images {
position: absolute;
display: flex;
top: 0;
left: 0;
height: 100%;
width: 100%;
z-index: 100;
}
#qodef-hero-marquee-section .qodef-hms-images .qodef-hms-image-col {
display: flex;
flex-direction: column;
box-sizing: border-box;
}
#qodef-hero-marquee-section .qodef-hms-images .qodef-hms-image-col img {
vertical-align: middle;
}
#qodef-hero-marquee-section .qodef-hms-images .qodef-hms-image-col:first-child {
width: 13%;
justify-content: space-around;
}
#qodef-hero-marquee-section .qodef-hms-images .qodef-hms-image-col:first-child .qodef-hms-image-item {
position: relative;
top: -10vh;
}
#qodef-hero-marquee-section .qodef-hms-images .qodef-hms-image-col:first-child img {
box-shadow: 3px 8px 13.92px 2.08px rgba(0, 0, 0, 0.05);
}
#qodef-hero-marquee-section .qodef-hms-images .qodef-hms-image-col:nth-child(2) {
width: 35%;
padding: 0 5%;
justify-content: space-between;
}
#qodef-hero-marquee-section .qodef-hms-images .qodef-hms-image-col:nth-child(2) .qodef-hms-image-item:first-child {
text-align: center;
}
#qodef-hero-marquee-section .qodef-hms-images .qodef-hms-image-col:nth-child(2) .qodef-hms-image-item:first-child img {
box-shadow: 3px 8px 13.92px 2.08px rgba(0, 0, 0, 0.05);
}
#qodef-hero-marquee-section .qodef-hms-images .qodef-hms-image-col:nth-child(2) .qodef-hms-image-item:last-child img {
box-shadow: 3px -8px 13.92px 2.08px rgba(0, 0, 0, 0.05);
}
#qodef-hero-marquee-section .qodef-hms-images .qodef-hms-image-col:nth-child(3) {
width: 34%;
justify-content: space-between;
}
#qodef-hero-marquee-section .qodef-hms-images .qodef-hms-image-col:nth-child(3) .qodef-hms-image-item:first-child {
text-align: right;
}
#qodef-hero-marquee-section .qodef-hms-images .qodef-hms-image-col:nth-child(3) .qodef-hms-image-item:first-child img {
box-shadow: 3px 8px 13.92px 2.08px rgba(0, 0, 0, 0.05);
}
#qodef-hero-marquee-section .qodef-hms-images .qodef-hms-image-col:nth-child(3) .qodef-hms-image-item:last-child img {
box-shadow: 3px -8px 13.92px 2.08px rgba(0, 0, 0, 0.05);
}
#qodef-hero-marquee-section .qodef-hms-images .qodef-hms-image-col:last-child {
width: 18%;
justify-content: space-around;
}
#qodef-hero-marquee-section .qodef-hms-images .qodef-hms-image-col:last-child .qodef-hms-image-item {
position: relative;
top: 6vh;
text-align: right;
}
#qodef-hero-marquee-section .qodef-hms-images .qodef-hms-image-col:last-child img {
box-shadow: -3px 8px 13.92px 2.08px rgba(0, 0, 0, 0.05);
}
#qodef-hero-marquee-section .qodef-hms-marquee-area {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
overflow: hidden;
z-index: 10;
}
#qodef-hero-marquee-section .qodef-hms-marquee-inner {
position: relative;
display: inline-block;
}
#qodef-hero-marquee-section .qodef-hms-marquee-element {
position: relative;
display: inline-block;
vertical-align: top;
margin-top: -6%;
font-family: "Poppins", sans-serif;
font-size: 160px;
font-size: 14vw;
font-weight: 500;
line-height: 1.4em;
white-space: nowrap;
opacity: 0.1;
}
#qodef-hero-marquee-section .qodef-hms-marquee-element > span {
box-sizing: border-box;
padding: 0 40px;
padding: 0 2vw;
}
#qodef-hero-marquee-section .qodef-hms-marquee-element.qodef-aux-text {
position: absolute;
top: 0;
left: 0;
}
#qodef-hero-marquee-section .qodef-hms-content-bgrnd-holder {
position: absolute;
height: 45%;
height: 45vmax;
width: 45%;
width: 45vmax;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
#qodef-hero-marquee-section .qodef-hms-content-bgrnd-holder .qodef-hms-content-bgrnd {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
background: #fff;
}
#qodef-hero-marquee-section.qodef-appear-fx .qodef-hms-content-area,
#qodef-hero-marquee-section.qodef-appear-fx .qodef-hms-images,
#qodef-hero-marquee-section.qodef-appear-fx .qodef-hms-marquee-area,
#qodef-hero-marquee-section.qodef-appear-fx .qodef-hms-content-bgrnd {
visibility: hidden;
}
.touch #qodef-hero-marquee-section.qodef-appear-fx .qodef-hms-content-area,
.no-touch #qodef-hero-marquee-section.qodef-appear-fx .qodef-hms-content-area,
.touch
#qodef-hero-marquee-section.qodef-appear-fx .qodef-hms-images,
.no-touch
#qodef-hero-marquee-section.qodef-appear-fx .qodef-hms-images,
.touch
#qodef-hero-marquee-section.qodef-appear-fx .qodef-hms-marquee-area,
.no-touch
#qodef-hero-marquee-section.qodef-appear-fx .qodef-hms-marquee-area,
.touch
#qodef-hero-marquee-section.qodef-appear-fx .qodef-hms-content-bgrnd,
.no-touch
#qodef-hero-marquee-section.qodef-appear-fx .qodef-hms-content-bgrnd {
visibility: visible;
}
#qodef-hero-marquee-section.qodef-appear-fx .qodef-hms-spinner-holder {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
#qodef-hero-marquee-section.qodef-appear-fx .qodef-hms-spinner-holder .qodef-hms-spinner {
width: 51px;
height: 51px;
margin: auto;
background-color: #fff;
outline: 1px solid transparent;
-webkit-animation: rotateplane 1.2s infinite cubic-bezier(0.165, 0.84, 0.44, 1);
animation: rotateplane 1.2s infinite cubic-bezier(0.165, 0.84, 0.44, 1);
}
.no-touch #qodef-hero-marquee-section.qodef-appear-fx .qodef-hms-marquee-area {
opacity: 0;
}
.no-touch #qodef-hero-marquee-section.qodef-appear-fx .qodef-hms-image-item {
will-change: transform;
}
.no-touch #qodef-hero-marquee-section.qodef-appear-fx .qodef-hms-image-item-1 {
-webkit-transform: translate3d(-100%, 0, 0);
-moz-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
.no-touch #qodef-hero-marquee-section.qodef-appear-fx .qodef-hms-image-item-2,
.no-touch #qodef-hero-marquee-section.qodef-appear-fx .qodef-hms-image-item-4 {
-webkit-transform: translate3d(0, -100%, 0);
-moz-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
.no-touch #qodef-hero-marquee-section.qodef-appear-fx .qodef-hms-image-item-3,
.no-touch #qodef-hero-marquee-section.qodef-appear-fx .qodef-hms-image-item-5 {
-webkit-transform: translate3d(0, 100%, 0);
-moz-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
.no-touch #qodef-hero-marquee-section.qodef-appear-fx .qodef-hms-image-item-6 {
-webkit-transform: translate3d(100%, 0, 0);
-moz-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
.no-touch #qodef-hero-marquee-section.qodef-appear-fx .qodef-hms-title,
.no-touch #qodef-hero-marquee-section.qodef-appear-fx .qodef-hms-tagline,
.no-touch #qodef-hero-marquee-section.qodef-appear-fx .qodef-hms-btn {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
-moz-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
.no-touch #qodef-hero-marquee-section.qodef-appear-fx .qodef-hms-content-bgrnd {
-webkit-transform-origin: 50% 0;
transform-origin: 50% 0;
-webkit-transform: scaleY(0);
-moz-transform: scaleY(0);
transform: scaleY(0);
}
.no-touch #qodef-hero-marquee-section.qodef-appear-fx.qodef-show .qodef-hms-content-bgrnd {
-webkit-transition: -webkit-transform 0.7s cubic-bezier(1, 0, 0, 1);
-moz-transition: -moz-transform 0.7s cubic-bezier(1, 0, 0, 1);
transition: transform 0.7s cubic-bezier(1, 0, 0, 1);
-webkit-transform: scaleY(1);
-moz-transform: scaleY(1);
transform: scaleY(1);
}
.no-touch #qodef-hero-marquee-section.qodef-appear-fx.qodef-show .qodef-hms-title {
-webkit-transition: -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.35s, opacity 0.3s 0.35s;
transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.35s, opacity 0.3s 0.35s;
}
.no-touch #qodef-hero-marquee-section.qodef-appear-fx.qodef-show .qodef-hms-tagline {
-webkit-transition: -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.5s, opacity 0.3s 0.5s;
transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.5s, opacity 0.3s 0.5s;
}
.no-touch #qodef-hero-marquee-section.qodef-appear-fx.qodef-show .qodef-hms-btn {
-webkit-transition: -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.75s, opacity 0.3s 0.75s;
transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.75s, opacity 0.3s 0.75s;
}
.no-touch #qodef-hero-marquee-section.qodef-appear-fx.qodef-show .qodef-hms-title,
.no-touch #qodef-hero-marquee-section.qodef-appear-fx.qodef-show .qodef-hms-tagline,
.no-touch #qodef-hero-marquee-section.qodef-appear-fx.qodef-show .qodef-hms-btn {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.no-touch #qodef-hero-marquee-section.qodef-appear-fx.qodef-show .qodef-hms-image-item-1 {
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
-webkit-transition: -webkit-transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) 0.8s;
-moz-transition: -moz-transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) 0.8s;
transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) 0.8s;
}
.no-touch #qodef-hero-marquee-section.qodef-appear-fx.qodef-show .qodef-hms-image-item-2 {
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
-webkit-transition: -webkit-transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1) 0.7s;
-moz-transition: -moz-transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1) 0.7s;
transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1) 0.7s;
}
.no-touch #qodef-hero-marquee-section.qodef-appear-fx.qodef-show .qodef-hms-image-item-3 {
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) 0.35s;
-moz-transition: -moz-transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) 0.35s;
transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) 0.35s;
}
.no-touch #qodef-hero-marquee-section.qodef-appear-fx.qodef-show .qodef-hms-image-item-4 {
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
-webkit-transition: -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0.55s;
-moz-transition: -moz-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0.55s;
transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0.55s;
}
.no-touch #qodef-hero-marquee-section.qodef-appear-fx.qodef-show .qodef-hms-image-item-5 {
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
-webkit-transition: -webkit-transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1) 0.85s;
-moz-transition: -moz-transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1) 0.85s;
transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1) 0.85s;
}
.no-touch #qodef-hero-marquee-section.qodef-appear-fx.qodef-show .qodef-hms-image-item-6 {
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
-webkit-transition: -webkit-transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1) 0.6s;
-moz-transition: -moz-transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1) 0.6s;
transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1) 0.6s;
}
.no-touch #qodef-hero-marquee-section.qodef-appear-fx.qodef-show .qodef-hms-marquee-area {
opacity: 1;
-webkit-transition: opacity 1s 1s;
-moz-transition: opacity 1s 1s;
transition: opacity 1s 1s;
}  .qodef-icon-list-holder {
position: relative;
display: table;
table-layout: fixed;
height: auto;
width: 100%;
margin-bottom: 8px;
}
.qodef-icon-list-holder .qodef-il-icon-holder,
.qodef-icon-list-holder .qodef-il-text {
position: relative;
display: table-cell;
vertical-align: top;
}
.qodef-icon-list-holder .qodef-il-icon-holder {
width: 1%;
}
.qodef-icon-list-holder .qodef-il-icon-holder > * {
position: relative;
display: inline-block;
vertical-align: top;
color: #121212;
font-size: 17px;
line-height: inherit;
}
.qodef-icon-list-holder .qodef-il-icon-holder > *:before {
display: block;
line-height: inherit;
}
.qodef-icon-list-holder .qodef-il-text {
width: 99%;
padding: 0 0 0 13px;
box-sizing: border-box;
}  .qodef-iwt {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
}
.qodef-iwt .qodef-iwt-icon a {
position: relative;
display: inline-block;
vertical-align: middle;
}
.qodef-iwt .qodef-iwt-icon .qodef-icon-shortcode {
line-height: 1;
}
.qodef-iwt .qodef-iwt-icon .qodef-icon-shortcode.qodef-circle,
.qodef-iwt .qodef-iwt-icon .qodef-icon-shortcode.qodef-square,
.qodef-iwt .qodef-iwt-icon .qodef-icon-shortcode.qodef-dropcaps.qodef-circle {
line-height: 2;
}
.qodef-iwt .qodef-iwt-title {
margin: 0;
line-height: 1.2em;
}
.qodef-iwt .qodef-iwt-title a {
position: relative;
display: inline-block;
vertical-align: top;
}
.qodef-iwt .qodef-iwt-title-text {
display: block;
}
.qodef-iwt .qodef-iwt-text {
margin: 5px 0 0;
}
.qodef-iwt.qodef-iwt-icon-left {
width: auto;
}
.qodef-iwt.qodef-iwt-icon-left .qodef-iwt-icon,
.qodef-iwt.qodef-iwt-icon-left .qodef-iwt-content {
display: table-cell;
vertical-align: top;
}
.qodef-iwt.qodef-iwt-icon-left .qodef-iwt-icon {
position: relative;
top: 1px;
}
.qodef-iwt.qodef-iwt-icon-left .qodef-iwt-icon img {
max-width: none;
}
.qodef-iwt.qodef-iwt-icon-left .qodef-iwt-content {
padding: 0 0 0 13px;
}
.qodef-iwt.qodef-iwt-icon-left-from-title .qodef-iwt-icon,
.qodef-iwt.qodef-iwt-icon-left-from-title .qodef-iwt-title-text {
position: relative;
display: table-cell;
vertical-align: middle;
}
.qodef-iwt.qodef-iwt-icon-left-from-title .qodef-iwt-icon .qodef-icon-element {
-webkit-transition: none;
-moz-transition: none;
transition: none;
}
.qodef-iwt.qodef-iwt-icon-left-from-title .qodef-iwt-icon img {
max-width: none;
}
.qodef-iwt.qodef-iwt-icon-left-from-title .qodef-iwt-title-text {
padding: 0 0 0 17px;
}
.qodef-iwt.qodef-iwt-icon-top {
text-align: center;
}
.qodef-iwt.qodef-iwt-icon-top .qodef-iwt-content {
padding: 23px 0 0;
}  .qodef-icon-shortcode {
position: relative;
display: inline-block;
vertical-align: middle;
line-height: 1.1em;
}
.qodef-icon-shortcode.qodef-circle,
.qodef-icon-shortcode.qodef-square,
.qodef-icon-shortcode.qodef-dropcaps.qodef-circle {
width: 2em;
height: 2em;
line-height: 2em;
text-align: center;
background-color: #fe6c61;
-webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
-moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.qodef-icon-shortcode.qodef-circle a,
.qodef-icon-shortcode.qodef-square a,
.qodef-icon-shortcode.qodef-dropcaps.qodef-circle a {
position: relative;
display: inline-block;
vertical-align: top;
width: 100%;
height: 100%;
}
.qodef-icon-shortcode.qodef-circle .qodef-icon-element,
.qodef-icon-shortcode.qodef-square .qodef-icon-element,
.qodef-icon-shortcode.qodef-dropcaps.qodef-circle .qodef-icon-element {
color: #fff;
line-height: inherit;
}
.qodef-icon-shortcode.qodef-circle {
border-radius: 50%;
}
.qodef-icon-shortcode .qodef-icon-element {
display: block;
line-height: inherit;
-webkit-transition: color 0.15s ease-in-out;
-moz-transition: color 0.15s ease-in-out;
transition: color 0.15s ease-in-out;
}
.qodef-icon-shortcode .qodef-icon-element:before {
display: block;
line-height: inherit;
}
.qodef-icon-animation-holder {
position: relative;
display: inline-block;
vertical-align: middle;
-webkit-transform: scale(0);
-moz-transform: scale(0);
transform: scale(0);
-webkit-transition: transform 0.15s ease-in-out;
-moz-transition: transform 0.15s ease-in-out;
transition: transform 0.15s ease-in-out;
}
.qodef-icon-animation-holder.qodef-icon-animation-show {
-webkit-transform: scale(1);
-moz-transform: scale(1);
transform: scale(1);
}
.qodef-icon-tiny {
font-size: 1.33333333em;
line-height: .75em;
vertical-align: -15%;
}
.qodef-icon-small {
font-size: 2em;
}
.qodef-icon-medium {
font-size: 3em;
}
.qodef-icon-large {
font-size: 4em;
}
.qodef-icon-huge {
font-size: 5em;
}  .qodef-image-gallery {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;            }
.qodef-image-gallery.qodef-has-shadow .qodef-ig-image-inner {
box-shadow: 0 0 4.85px 0.15px rgba(0, 0, 0, 0.09);
}
.qodef-image-gallery.qodef-has-shadow.qodef-ig-slider-type .owl-stage-outer,
.qodef-image-gallery.qodef-has-shadow.qodef-ig-carousel-type .owl-stage-outer {
padding: 0 0 20px;
}
.qodef-image-gallery.qodef-has-shadow.qodef-ig-slider-type .qodef-ig-image,
.qodef-image-gallery.qodef-has-shadow.qodef-ig-carousel-type .qodef-ig-image {
box-shadow: 0 0 4.85px 0.15px rgba(0, 0, 0, 0.09);
}
.qodef-image-gallery .qodef-ig-image {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
box-sizing: border-box;
}
.qodef-image-gallery .qodef-ig-image a,
.qodef-image-gallery .qodef-ig-image img {
position: relative;
display: block;
}
.qodef-image-gallery .qodef-ig-image-inner {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
}
.qodef-image-gallery .qodef-ig-slider {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
}
.qodef-image-gallery .qodef-ig-grid .qodef-ig-image {
float: left;
}
.qodef-image-gallery .qodef-ig-grid.qodef-ig-two-columns .qodef-ig-image {
width: 50%;
}
@media only screen and (min-width: 1025px) {
.qodef-image-gallery .qodef-ig-grid.qodef-ig-two-columns .qodef-ig-image:nth-child(2n+1) {
clear: both;
}
}
.qodef-image-gallery .qodef-ig-grid.qodef-ig-three-columns .qodef-ig-image {
width: 33.33333%;
}
@media only screen and (min-width: 1025px) {
.qodef-image-gallery .qodef-ig-grid.qodef-ig-three-columns .qodef-ig-image:nth-child(3n+1) {
clear: both;
}
}
.qodef-image-gallery .qodef-ig-grid.qodef-ig-four-columns .qodef-ig-image {
width: 25%;
}
@media only screen and (min-width: 1025px) {
.qodef-image-gallery .qodef-ig-grid.qodef-ig-four-columns .qodef-ig-image:nth-child(4n+1) {
clear: both;
}
}
.qodef-image-gallery .qodef-ig-grid.qodef-ig-five-columns .qodef-ig-image {
width: 20%;
}
@media only screen and (min-width: 1025px) {
.qodef-image-gallery .qodef-ig-grid.qodef-ig-five-columns .qodef-ig-image:nth-child(5n+1) {
clear: both;
}
}
.qodef-image-gallery .qodef-ig-grid.qodef-ig-six-columns .qodef-ig-image {
width: 16.66667%;
}
@media only screen and (min-width: 1025px) {
.qodef-image-gallery .qodef-ig-grid.qodef-ig-six-columns .qodef-ig-image:nth-child(6n+1) {
clear: both;
}
}
.qodef-image-gallery .qodef-ig-masonry {
opacity: 0;
-webkit-transition: opacity 0.2s ease-out;
-moz-transition: opacity 0.2s ease-out;
transition: opacity 0.2s ease-out;
}
.qodef-image-gallery .qodef-ig-masonry .qodef-ig-grid-sizer {
width: 100%;
}
.qodef-image-gallery .qodef-ig-masonry .qodef-ig-grid-gutter {
width: 0;
}
.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-grid-sizer {
width: 50%;
}
.qodef-image-gallery .qodef-ig-masonry.qodef-ig-two-columns .qodef-ig-image.qodef-large-masonry-item {
width: 100%;
}
.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-grid-sizer {
width: 33.33333%;
}
.qodef-image-gallery .qodef-ig-masonry.qodef-ig-three-columns .qodef-ig-image.qodef-large-masonry-item {
width: 66.66667%;
}
.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-grid-sizer {
width: 25%;
}
.qodef-image-gallery .qodef-ig-masonry.qodef-ig-four-columns .qodef-ig-image.qodef-large-masonry-item {
width: 50%;
}
.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-grid-sizer {
width: 20%;
}
.qodef-image-gallery .qodef-ig-masonry.qodef-ig-five-columns .qodef-ig-image.qodef-large-masonry-item {
width: 40%;
}
.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-grid-sizer {
width: 16.66667%;
}
.qodef-image-gallery .qodef-ig-masonry.qodef-ig-six-columns .qodef-ig-image.qodef-large-masonry-item {
width: 33.33333%;
}
.qodef-image-gallery.qodef-image-behavior-custom-link .qodef-ig-image a:hover:after {
opacity: 1;
}
.qodef-image-gallery.qodef-image-behavior-custom-link .qodef-ig-image a:after {
position: absolute;
display: block;
width: 100%;
height: 100%;
top: 0;
left: 0;
content: '';
background-color: rgba(18, 18, 18, 0.4);
opacity: 0;
-webkit-transition: opacity 0.2s ease-in-out;
-moz-transition: opacity 0.2s ease-in-out;
transition: opacity 0.2s ease-in-out;
}
.qodef-image-gallery.qodef-image-behavior-lightbox .qodef-ig-image a:hover:after {
opacity: 1;
}
.qodef-image-gallery.qodef-image-behavior-lightbox .qodef-ig-image a:after {
position: absolute;
display: block;
width: 100%;
height: 100%;
top: 0;
left: 0;
content: '';
background-color: rgba(18, 18, 18, 0.4);
opacity: 0;
-webkit-transition: opacity 0.2s ease-in-out;
-moz-transition: opacity 0.2s ease-in-out;
transition: opacity 0.2s ease-in-out;
}
.touch .qodef-image-gallery.qodef-image-behavior-zoom .qodef-ig-image {
cursor: pointer;
}
.qodef-image-gallery.qodef-image-behavior-zoom .qodef-ig-image:hover img {
-webkit-transform: scale(1.04);
-moz-transform: scale(1.04);
transform: scale(1.04);
}
.qodef-image-gallery.qodef-image-behavior-zoom .qodef-ig-image .qodef-ig-image-inner {
overflow: hidden;
}
.qodef-image-gallery.qodef-image-behavior-zoom .qodef-ig-image img {
-webkit-transform: scale(1);
-moz-transform: scale(1);
transform: scale(1);
-webkit-transition: -webkit-transform 0.3s ease-in-out;
-moz-transition: -moz-transform 0.3s ease-in-out;
transition: transform 0.3s ease-in-out;
}
.qodef-image-gallery.qodef-image-behavior-grayscale .qodef-ig-image {
overflow: hidden;
}
.touch .qodef-image-gallery.qodef-image-behavior-grayscale .qodef-ig-image {
cursor: pointer;
}
.qodef-image-gallery.qodef-image-behavior-grayscale .qodef-ig-image:hover img {
-webkit-filter: grayscale(0);
filter: none;
}
.qodef-image-gallery.qodef-image-behavior-grayscale .qodef-ig-image img {
filter: url(//camaralucida.cl/wp-content/plugins/select-core/assets/css/img/desaturate.svg#grayscale);
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
filter: gray;
filter: grayscale(100%);
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}  .qodef-image-marquee-holder {
position: relative;
display: inline-block;
vertical-align: middle;
overflow: hidden;
}
.qodef-image-marquee-holder .qodef-image-marquee {
position: relative;
}
.qodef-image-marquee-holder .qodef-image {
display: inline-block;
}
.qodef-image-marquee-holder .qodef-image img {
width: auto;
max-width: unset;
vertical-align: middle;
}
.qodef-image-marquee-holder .qodef-image.qodef-original {
position: relative;
}
.qodef-image-marquee-holder .qodef-image.qodef-aux {
position: absolute;
top: 0;
}  .qodef-image-with-text-holder {
display: inline-block;
position: relative;        }
.qodef-image-with-text-holder.qodef-has-shadow .qodef-iwt-image {
box-shadow: 3px 8px 13.92px 2.08px rgba(0, 0, 0, 0.05);
}
.qodef-image-with-text-holder .qodef-iwt-image {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
}
.qodef-image-with-text-holder .qodef-iwt-image a,
.qodef-image-with-text-holder .qodef-iwt-image img {
position: relative;
display: block;
}
.qodef-image-with-text-holder .qodef-iwt-text-holder {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
}
.qodef-image-with-text-holder .qodef-iwt-title {
margin: 22px 0 0;
}
.qodef-image-with-text-holder .qodef-iwt-text {
margin: 14px 0 0;
}
.qodef-image-with-text-holder.qodef-image-behavior-custom-link:not(.qodef-iwt-with-custom-overlay) .qodef-iwt-image a:hover:after {
opacity: 1;
}
.qodef-image-with-text-holder.qodef-image-behavior-custom-link:not(.qodef-iwt-with-custom-overlay) .qodef-iwt-image a:after {
position: absolute;
display: block;
width: 100%;
height: 100%;
top: 0;
left: 0;
content: '';
background-color: rgba(18, 18, 18, 0.4);
opacity: 0;
-webkit-transition: opacity 0.2s ease-in-out;
-moz-transition: opacity 0.2s ease-in-out;
transition: opacity 0.2s ease-in-out;
}
.qodef-image-with-text-holder.qodef-image-behavior-custom-link.qodef-iwt-with-custom-overlay .qodef-iwt-overlay {
position: absolute;
display: block;
width: 100%;
height: 100%;
top: 0;
left: 0;
opacity: 0;
-webkit-transition: opacity 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
-moz-transition: opacity 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
transition: opacity 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
z-index: 10;
}
.qodef-image-with-text-holder.qodef-image-behavior-custom-link.qodef-iwt-with-custom-overlay a:hover .qodef-iwt-overlay {
opacity: 1;
}
.qodef-image-with-text-holder.qodef-image-behavior-lightbox .qodef-iwt-image a:hover:after {
opacity: 1;
}
.qodef-image-with-text-holder.qodef-image-behavior-lightbox .qodef-iwt-image a:after {
position: absolute;
display: block;
width: 100%;
height: 100%;
top: 0;
left: 0;
content: '';
background-color: rgba(18, 18, 18, 0.4);
opacity: 0;
-webkit-transition: opacity 0.2s ease-in-out;
-moz-transition: opacity 0.2s ease-in-out;
transition: opacity 0.2s ease-in-out;
}
.qodef-image-with-text-holder.qodef-image-behavior-zoom .qodef-iwt-image {
overflow: hidden;
}
.touch .qodef-image-with-text-holder.qodef-image-behavior-zoom .qodef-iwt-image {
cursor: pointer;
}
.qodef-image-with-text-holder.qodef-image-behavior-zoom .qodef-iwt-image:hover img {
-webkit-transform: scale(1.04);
-moz-transform: scale(1.04);
transform: scale(1.04);
}
.qodef-image-with-text-holder.qodef-image-behavior-zoom .qodef-iwt-image img {
-webkit-transform: scale(1);
-moz-transform: scale(1);
transform: scale(1);
-webkit-transition: -webkit-transform 0.3s ease-in-out;
-moz-transition: -moz-transform 0.3s ease-in-out;
transition: transform 0.3s ease-in-out;
}
.qodef-image-with-text-holder.qodef-image-behavior-grayscale .qodef-iwt-image {
overflow: hidden;
}
.touch .qodef-image-with-text-holder.qodef-image-behavior-grayscale .qodef-iwt-image {
cursor: pointer;
}
.qodef-image-with-text-holder.qodef-image-behavior-grayscale .qodef-iwt-image:hover img {
-webkit-filter: grayscale(0);
filter: none;
}
.qodef-image-with-text-holder.qodef-image-behavior-grayscale .qodef-iwt-image img {
filter: url(//camaralucida.cl/wp-content/plugins/select-core/assets/css/img/desaturate.svg#grayscale);
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
filter: gray;
filter: grayscale(100%);
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}  .qodef-progress-bar {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
}
.qodef-progress-bar .qodef-pb-title-holder {
position: relative;
margin: 10px 0 4px;
}
.qodef-progress-bar .qodef-pb-title-holder .qodef-pb-title {
position: relative;
display: inline-block;
vertical-align: middle;
z-index: 100;
}
.qodef-progress-bar .qodef-pb-percent {
position: absolute;
right: 0;
bottom: 1px;
width: auto;
display: inline-block;
vertical-align: middle;
opacity: 0;
z-index: 10;
}
.qodef-progress-bar .qodef-pb-percent:after {
content: '%';
}
.qodef-progress-bar .qodef-pb-content-holder {
position: relative;
height: 3px;
overflow: hidden;
background-color: #ebebeb;
}
.qodef-progress-bar .qodef-pb-content-holder .qodef-pb-content {
height: 3px;
max-width: 100%;
overflow: hidden;
background-color: #fe6c61;
}  .qodef-section-title-holder {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
box-sizing: border-box;
}
.qodef-section-title-holder.qodef-st-two-columns.qodef-st-tiny-space .qodef-st-inner {
margin: 0 -5px;
}
.qodef-section-title-holder.qodef-st-two-columns.qodef-st-tiny-space .qodef-st-title,
.qodef-section-title-holder.qodef-st-two-columns.qodef-st-tiny-space .qodef-st-text {
padding: 0 5px;
}
.qodef-section-title-holder.qodef-st-two-columns.qodef-st-small-space .qodef-st-inner {
margin: 0 -10px;
}
.qodef-section-title-holder.qodef-st-two-columns.qodef-st-small-space .qodef-st-title,
.qodef-section-title-holder.qodef-st-two-columns.qodef-st-small-space .qodef-st-text {
padding: 0 10px;
}
.qodef-section-title-holder.qodef-st-two-columns.qodef-st-normal-space .qodef-st-inner {
margin: 0 -15px;
}
.qodef-section-title-holder.qodef-st-two-columns.qodef-st-normal-space .qodef-st-title,
.qodef-section-title-holder.qodef-st-two-columns.qodef-st-normal-space .qodef-st-text {
padding: 0 15px;
}
.qodef-section-title-holder.qodef-st-two-columns .qodef-st-title,
.qodef-section-title-holder.qodef-st-two-columns .qodef-st-text {
position: relative;
display: inline-block;
vertical-align: middle;
width: 50%;
float: left;
margin: 0;
box-sizing: border-box;
}
.qodef-section-title-holder.qodef-st-two-columns.qodef-st-title-left .qodef-st-title {
text-align: right;
}
.qodef-section-title-holder.qodef-st-two-columns.qodef-st-title-left .qodef-st-text {
text-align: left;
}
.qodef-section-title-holder.qodef-st-two-columns.qodef-st-title-right .qodef-st-title {
float: right;
text-align: left;
}
.qodef-section-title-holder.qodef-st-two-columns.qodef-st-title-right .qodef-st-text {
text-align: right;
}
.qodef-section-title-holder .qodef-st-title {
display: block;
margin: 0;
}
.qodef-section-title-holder .qodef-st-title .qodef-st-title-bold {
font-weight: 700;
}
.qodef-section-title-holder .qodef-st-title .qodef-st-title-light {
font-weight: 300;
}
.qodef-section-title-holder .qodef-st-text {
display: block;
margin: 14px 0 0;
}  .qodef-separator-holder {
position: relative;
height: auto;
font-size: 0;
line-height: 1em;
}
.qodef-separator-holder.qodef-separator-center {
text-align: center;
}
.qodef-separator-holder.qodef-separator-left {
text-align: left;
}
.qodef-separator-holder.qodef-separator-right {
text-align: right;
}
.qodef-separator-holder.qodef-separator-full-width .qodef-separator {
width: 100% !important;
}
.qodef-separator {
position: relative;
display: inline-block;
vertical-align: middle;
border-bottom: 1px solid #ebebeb;
margin: 10px 0;
}  .qodef-single-image-holder {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;          }
.qodef-single-image-holder.qodef-has-shadow .qodef-si-inner {
box-shadow: 0 0 4.85px 0.15px rgba(0, 0, 0, 0.09);
}
.qodef-single-image-holder .qodef-si-inner {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
}
.qodef-single-image-holder .qodef-si-inner a,
.qodef-single-image-holder .qodef-si-inner img {
position: relative;
display: block;
}
.qodef-single-image-holder.qodef-image-behavior-lightbox .qodef-si-inner a:hover:after {
opacity: 1;
}
.qodef-single-image-holder.qodef-image-behavior-lightbox .qodef-si-inner a:after {
position: absolute;
display: block;
width: 100%;
height: 100%;
top: 0;
left: 0;
content: '';
background-color: rgba(18, 18, 18, 0.4);
opacity: 0;
-webkit-transition: opacity 0.2s ease-in-out;
-moz-transition: opacity 0.2s ease-in-out;
transition: opacity 0.2s ease-in-out;
}
.qodef-single-image-holder.qodef-image-behavior-zoom .qodef-si-inner {
overflow: hidden;
}
.touch .qodef-single-image-holder.qodef-image-behavior-zoom .qodef-si-inner {
cursor: pointer;
}
.qodef-single-image-holder.qodef-image-behavior-zoom .qodef-si-inner:hover img {
-webkit-transform: scale(1.04);
-moz-transform: scale(1.04);
transform: scale(1.04);
}
.qodef-single-image-holder.qodef-image-behavior-zoom .qodef-si-inner img {
-webkit-transform: scale(1);
-moz-transform: scale(1);
transform: scale(1);
-webkit-transition: -webkit-transform 0.3s ease-in-out;
-moz-transition: -moz-transform 0.3s ease-in-out;
transition: transform 0.3s ease-in-out;
}
.qodef-single-image-holder.qodef-image-behavior-grayscale .qodef-si-inner {
overflow: hidden;
}
.touch .qodef-single-image-holder.qodef-image-behavior-grayscale .qodef-si-inner {
cursor: pointer;
}
.qodef-single-image-holder.qodef-image-behavior-grayscale .qodef-si-inner:hover img {
-webkit-filter: grayscale(0);
filter: none;
}
.qodef-single-image-holder.qodef-image-behavior-grayscale .qodef-si-inner img {
filter: url(//camaralucida.cl/wp-content/plugins/select-core/assets/css/img/desaturate.svg#grayscale);
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
filter: gray;
filter: grayscale(100%);
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.qodef-single-image-holder.qodef-image-behavior-moving .qodef-si-inner {
overflow: hidden;
padding: 10% 0;
background-repeat: no-repeat;
background-position: 0 center;
background-size: 120%;
-webkit-transition: background 0.7s ease-out;
-moz-transition: background 0.7s ease-out;
transition: background 0.7s ease-out;
}
.qodef-single-image-holder.qodef-image-behavior-moving .qodef-si-inner:hover {
background-position: 90% center;
}
.touch .qodef-single-image-holder.qodef-image-behavior-moving .qodef-si-inner {
cursor: pointer;
}
.qodef-single-image-holder.qodef-image-behavior-moving .qodef-si-inner img {
z-index: -1;
max-width: 80%;
}
@media only screen and (max-width: 1024px) {
.qodef-single-image-holder.qodef-image-behavior-moving .qodef-si-inner {
padding: 0;
background: none;
}
.qodef-single-image-holder.qodef-image-behavior-moving .qodef-si-inner img {
z-index: inherit;
max-width: 100%;
}
}  .qodef-social-share-holder {
position: relative;
display: inline-block;
vertical-align: top;
}
.qodef-social-share-holder ul {
position: relative;
display: inline-block;
vertical-align: top;
list-style: none;
padding: 0;
margin: 0;
} .qodef-social-share-holder.qodef-list .qodef-social-title {
position: relative;
display: inline-block;
vertical-align: top;
margin: 0;
color: #959595;
font-weight: 600;
}
.qodef-social-share-holder.qodef-list li {
position: relative;
display: inline-block;
vertical-align: top;
padding: 0;
margin: 0 13px 3px 0;
}
.qodef-social-share-holder.qodef-list li:last-child {
margin: 0 0 3px;
}
.qodef-social-share-holder.qodef-list li a {
font-size: 11px;
color: #959595;
}
.qodef-social-share-holder.qodef-list li a:hover {
color: #121212;
}  .qodef-social-share-holder.qodef-dropdown {
position: relative;
display: inline-block;
vertical-align: bottom;
}
.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown-opener {
display: block;
color: #b6b6b6;
}
.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown-opener .qodef-social-share-title {
display: inline-block;
vertical-align: top;
margin-left: 3px;
font-size: 11px;
font-family: "Oswald", sans-serif;
text-transform: uppercase;
color: #b6b6b6;
letter-spacing: .05em;
font-weight: 500;
color: inherit;
}
.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown-opener .social_share {
font-size: 11px;
color: inherit;
}
.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown-opener:hover {
color: #121212;
}
.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown {
position: relative;
visibility: hidden;
z-index: 950;
}
.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown ul {
position: relative;
display: block;
z-index: 990;
margin: 0;
padding: 0 !important;
}
.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown ul li {
width: 131px;
height: 28px;
line-height: 28px;
visibility: hidden;
position: absolute;
text-align: left;
opacity: 0;
margin: 0;
right: -7px;
padding: 0 20px 0 10px;
background-color: #fff;
font-size: 12px;
color: #959595;
box-sizing: border-box;
-webkit-transition: opacity 0.2s ease-out 0s, visibility 0.2s ease-out 0s, background-color 0.2s ease-out 0s;
-moz-transition: opacity 0.2s ease-out 0s, visibility 0.2s ease-out 0s, background-color 0.2s ease-out 0s;
transition: opacity 0.2s ease-out 0s, visibility 0.2s ease-out 0s, background-color 0.2s ease-out 0s;
}
.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown ul li:not(:first-child) {
border-top: none;
}
.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown ul li .qodef-social-network-name {
float: right;
box-sizing: border-box;
color: #b6b6b6;
text-transform: uppercase;
font-size: 11px;
font-weight: 500;
font-family: "Oswald", sans-serif;
-webkit-transition: color 0.2s ease-out 0s;
-moz-transition: color 0.2s ease-out 0s;
transition: color 0.2s ease-out 0s;
letter-spacing: 0.05em;
}
.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown ul li .qodef-social-network-icon {
color: inherit;
font-size: 11px;
padding-right: 9px;
}
.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown ul li .qodef-social-network-label {
color: inherit;
}
.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown ul li.qodef-facebook-share:hover .qodef-social-network-name {
color: #3b5998;
}
.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown ul li.qodef-twitter-share:hover .qodef-social-network-name {
color: #00aced;
}
.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown ul li.qodef-google_plus-share:hover .qodef-social-network-name {
color: #dd4b39;
}
.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown ul li.qodef-linkedin-share:hover .qodef-social-network-name {
color: #007bb5;
}
.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown ul li.qodef-tumblr-share:hover .qodef-social-network-name {
color: #32506d;
}
.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown ul li.qodef-pinterest-share:hover .qodef-social-network-name {
color: #cb2027;
}
.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown ul li.qodef-vk-share:hover .qodef-social-network-name {
color: #45668e;
}
.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown ul li * {
line-height: inherit;
}
.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown ul li a {
color: inherit !important;
}
.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown ul li:nth-child(1) {
padding-top: 11px;
height: 39px;
border-top: 1px solid #ebebeb;
}
.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown ul li:last-child {
border-bottom: 1px solid #ebebeb;
height: 39px;
}
.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown ul li:nth-child(1) {
bottom: -42px;
border-left: 1px solid #ebebeb;
border-right: 1px solid #ebebeb;
}
.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown ul li:nth-child(1):last-child {
bottom: -53px;
}
.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown ul li:nth-child(2) {
bottom: -70px;
border-left: 1px solid #ebebeb;
border-right: 1px solid #ebebeb;
}
.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown ul li:nth-child(2):last-child {
bottom: -81px;
}
.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown ul li:nth-child(3) {
bottom: -98px;
border-left: 1px solid #ebebeb;
border-right: 1px solid #ebebeb;
}
.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown ul li:nth-child(3):last-child {
bottom: -109px;
}
.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown ul li:nth-child(4) {
bottom: -126px;
border-left: 1px solid #ebebeb;
border-right: 1px solid #ebebeb;
}
.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown ul li:nth-child(4):last-child {
bottom: -137px;
}
.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown ul li:nth-child(5) {
bottom: -154px;
border-left: 1px solid #ebebeb;
border-right: 1px solid #ebebeb;
}
.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown ul li:nth-child(5):last-child {
bottom: -165px;
}
.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown ul li:nth-child(6) {
bottom: -182px;
border-left: 1px solid #ebebeb;
border-right: 1px solid #ebebeb;
}
.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown ul li:nth-child(6):last-child {
bottom: -193px;
}
.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown ul li:nth-child(7) {
bottom: -210px;
border-left: 1px solid #ebebeb;
border-right: 1px solid #ebebeb;
}
.qodef-social-share-holder.qodef-dropdown .qodef-social-share-dropdown ul li:nth-child(7):last-child {
bottom: -221px;
}
.qodef-social-share-holder.qodef-dropdown:hover .qodef-social-share-dropdown ul li {
opacity: 1;
visibility: visible;
cursor: pointer;
}
.qodef-social-share-holder.qodef-dropdown:hover .qodef-social-share-dropdown ul li { }
.qodef-social-share-holder.qodef-dropdown:hover .qodef-social-share-dropdown ul li:nth-child(1) {
-webkit-transition: opacity 0.2s ease-out 0.1s, visibility 0.2s ease-out 0.1s, background-color 0.2s ease-out;
-moz-transition: opacity 0.2s ease-out 0.1s, visibility 0.2s ease-out 0.1s, background-color 0.2s ease-out;
transition: opacity 0.2s ease-out 0.1s, visibility 0.2s ease-out 0.1s, background-color 0.2s ease-out;
}
.qodef-social-share-holder.qodef-dropdown:hover .qodef-social-share-dropdown ul li:nth-child(2) {
-webkit-transition: opacity 0.2s ease-out 0.2s, visibility 0.2s ease-out 0.2s, background-color 0.2s ease-out;
-moz-transition: opacity 0.2s ease-out 0.2s, visibility 0.2s ease-out 0.2s, background-color 0.2s ease-out;
transition: opacity 0.2s ease-out 0.2s, visibility 0.2s ease-out 0.2s, background-color 0.2s ease-out;
}
.qodef-social-share-holder.qodef-dropdown:hover .qodef-social-share-dropdown ul li:nth-child(3) {
-webkit-transition: opacity 0.2s ease-out 0.3s, visibility 0.2s ease-out 0.3s, background-color 0.2s ease-out;
-moz-transition: opacity 0.2s ease-out 0.3s, visibility 0.2s ease-out 0.3s, background-color 0.2s ease-out;
transition: opacity 0.2s ease-out 0.3s, visibility 0.2s ease-out 0.3s, background-color 0.2s ease-out;
}
.qodef-social-share-holder.qodef-dropdown:hover .qodef-social-share-dropdown ul li:nth-child(4) {
-webkit-transition: opacity 0.2s ease-out 0.4s, visibility 0.2s ease-out 0.4s, background-color 0.2s ease-out;
-moz-transition: opacity 0.2s ease-out 0.4s, visibility 0.2s ease-out 0.4s, background-color 0.2s ease-out;
transition: opacity 0.2s ease-out 0.4s, visibility 0.2s ease-out 0.4s, background-color 0.2s ease-out;
}
.qodef-social-share-holder.qodef-dropdown:hover .qodef-social-share-dropdown ul li:nth-child(5) {
-webkit-transition: opacity 0.2s ease-out 0.5s, visibility 0.2s ease-out 0.5s, background-color 0.2s ease-out;
-moz-transition: opacity 0.2s ease-out 0.5s, visibility 0.2s ease-out 0.5s, background-color 0.2s ease-out;
transition: opacity 0.2s ease-out 0.5s, visibility 0.2s ease-out 0.5s, background-color 0.2s ease-out;
}
.qodef-social-share-holder.qodef-dropdown:hover .qodef-social-share-dropdown ul li:nth-child(6) {
-webkit-transition: opacity 0.2s ease-out 0.6s, visibility 0.2s ease-out 0.6s, background-color 0.2s ease-out;
-moz-transition: opacity 0.2s ease-out 0.6s, visibility 0.2s ease-out 0.6s, background-color 0.2s ease-out;
transition: opacity 0.2s ease-out 0.6s, visibility 0.2s ease-out 0.6s, background-color 0.2s ease-out;
}
.qodef-social-share-holder.qodef-dropdown:hover .qodef-social-share-dropdown ul li:nth-child(7) {
-webkit-transition: opacity 0.2s ease-out 0.7s, visibility 0.2s ease-out 0.7s, background-color 0.2s ease-out;
-moz-transition: opacity 0.2s ease-out 0.7s, visibility 0.2s ease-out 0.7s, background-color 0.2s ease-out;
transition: opacity 0.2s ease-out 0.7s, visibility 0.2s ease-out 0.7s, background-color 0.2s ease-out;
}   .qodef-split-scrolling-section {
position: relative;
overflow: hidden;
height: 100%;
}
.qodef-split-scrolling-section .qodef-sss-ms-left,
.qodef-split-scrolling-section .qodef-sss-ms-right {
height: 100%;
box-sizing: border-box;
}
.qodef-split-scrolling-section .qodef-sss-ms-section {
height: 100%;
overflow: hidden;
box-sizing: border-box;
}
.qodef-split-scrolling-section .qodef-sss-ms-left {
position: fixed;
width: 33.33%;
}
.qodef-split-scrolling-section .qodef-sss-ms-left .qodef-news-item.qodef-layout5-item {
height: 100%;
}
.qodef-split-scrolling-section .qodef-sss-ms-left .qodef-news-item.qodef-layout5-item .qodef-ni-item-inner {
width: 100%;
height: 100%;
}
.qodef-split-scrolling-section .qodef-sss-ms-left .qodef-sss-ms-section {
background-position: 100% center;
background-size: cover;
}
.qodef-split-scrolling-section .qodef-sss-ms-right {
width: 66.66%;
float: right;
margin-top: 0;
padding: 0 25px;
}
.qodef-split-scrolling-section .qodef-sss-ms-right .qodef-sss-ms-section {
background-position: 0 center;
background-size: cover;
}
.qodef-split-scrolling-section .qodef-image-slider-item-inner.image {
display: none;
}
.qodef-split-scrolling-section .qodef-image-slider-item-inner-wrapper {
position: relative;
}
.qodef-split-scrolling-section .qodef-image-slider-item-inner-wrapper .qodef-image-slider-item-content {
height: auto;
position: absolute;
bottom: 56px;
width: 100%;
padding: 0 5%;
text-align: center;
box-sizing: border-box;
}
.qodef-split-scrolling-section .qodef-image-slider-item-inner-wrapper .qodef-image-slider-item-content .qodef-image-slider-item-inner {
color: #fff;
}
.qodef-split-scrolling-section .qodef-image-slider-item-inner-wrapper .qodef-image-slider-item-content .qodef-image-slider-item-inner.title {
font-family: "Oswald", sans-serif;
font-size: 150px;
margin: 0 0 75px;
letter-spacing: -8px;
}
.qodef-split-scrolling-section .qodef-image-slider-item-inner-wrapper .qodef-image-slider-item-content .qodef-image-slider-item-inner.content {
font-size: 30px;
letter-spacing: 5px;
font-weight: 400;
text-transform: uppercase;
}
.qodef-split-scrolling-section .qodef-prod-cat.qodef-cat-with-image:nth-child(even) {
top: 38px;
}
.qodef-split-scrolling-section .qodef-owl-slider .owl-nav .owl-next,
.qodef-split-scrolling-section .qodef-owl-slider .owl-nav .owl-prev {
-webkit-transform: none;
-moz-transform: none;
transform: none;
top: calc(100% - 48px);
}  .qodef-tabs {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
}
.qodef-tabs .qodef-tabs-nav {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
margin: 0;
padding: 0;
list-style: none;
}
.qodef-tabs .qodef-tabs-nav li {
float: left;
margin: 0;
padding: 0;
}
.qodef-tabs .qodef-tabs-nav li a {
position: relative;
display: inline-block;
vertical-align: middle;
box-sizing: border-box;
-webkit-transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
-moz-transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.qodef-tabs .qodef-tab-container {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
}
.qodef-tabs .qodef-tab-container p {
margin: 0;
}
.qodef-tabs.qodef-tabs-standard .qodef-tabs-nav li a {
padding: 7px 26px;
font-size: 11px;
line-height: 25px;
font-weight: 400;
letter-spacing: 1px;
color: #121212;
background-color: #f6f6f6;
}
.qodef-tabs.qodef-tabs-standard .qodef-tabs-nav li.ui-state-active a,
.qodef-tabs.qodef-tabs-standard .qodef-tabs-nav li.ui-state-hover a {
color: #fff;
background-color: #fe6c61;
}
.qodef-tabs.qodef-tabs-standard .qodef-tab-container {
margin: 25px 0 0;
}
.qodef-tabs.qodef-tabs-boxed .qodef-tabs-nav li {
margin: 0 12px 0 0;
}
.qodef-tabs.qodef-tabs-boxed .qodef-tabs-nav li a {
padding: 7px 26px;
font-size: 11px;
line-height: 25px;
font-weight: 400;
letter-spacing: 1px;
color: #fff;
background-color: #121212;
}
.qodef-tabs.qodef-tabs-boxed .qodef-tabs-nav li.ui-state-active a,
.qodef-tabs.qodef-tabs-boxed .qodef-tabs-nav li.ui-state-hover a {
color: #fff;
background-color: #fe6c61;
}
.qodef-tabs.qodef-tabs-boxed .qodef-tabs-nav li:last-child {
margin: 0;
}
.qodef-tabs.qodef-tabs-boxed .qodef-tab-container {
margin: 25px 0 0;
}
.ui-widget-content {
background: none;
border: 0;
color: inherit;
font-family: inherit;
font-size: inherit;
padding: 0;
border-radius: 0;
}
.ui-widget-content .ui-widget-header {
border: 0;
background: none;
color: initial;
font-weight: inherit;
line-height: inherit;
font-size: inherit;
border-radius: 0;
}
.ui-widget-content .ui-tabs-nav li {
background: initial;
border: 0;
font-weight: inherit;
color: inherit;
border-radius: 0;
position: initial;
}
.ui-widget-content .ui-widget-content {
border: 0;
background: none;
color: inherit;
border-radius: 0;
}  .touch .qodef-team .qodef-team-social-holder {
cursor: pointer;
}
.qodef-team {   }
.qodef-team p {
margin: 0;
}
.qodef-team .qodef-team-social-wrapp {
margin: 17px 0 0 0;
}
.qodef-team .qodef-team-social-wrapp .qodef-icon-shortcode {
font-size: 15px;
margin: 0 9px;
}
.qodef-team .qodef-team-social-wrapp .qodef-icon-shortcode.circle,
.qodef-team .qodef-team-social-wrapp .qodef-icon-shortcode.square {
border: 1px solid #dbdbdb;
width: 25px;
height: 25px;
line-height: 25px;
font-size: 10px;
}
.qodef-team.main-info-below-image .qodef-team-social-wrapp .qodef-icon-shortcode {
font-size: 13px;
margin: 0 10px;
}
.qodef-team.main-info-below-image .qodef-team-social-wrapp .qodef-icon-shortcode span {
color: #d3d3d3;
}
.qodef-team.main-info-below-image .qodef-team-social-wrapp .qodef-icon-shortcode span:hover {
color: #fe6c61;
}
.qodef-team.main-info-below-image .qodef-team-image {
overflow: hidden;
position: relative;
}
.qodef-team.main-info-below-image .qodef-team-image:hover .qodef-team-image-overlay {
opacity: 1;
}
.qodef-team.main-info-below-image .qodef-team-image .qodef-team-image-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
background-color: rgba(67, 74, 84, 0.35);
-webkit-transition: opacity 0.2s ease-out;
-moz-transition: opacity 0.2s ease-out;
transition: opacity 0.2s ease-out;
}
.qodef-team.main-info-below-image .qodef-team-image img {
display: block;
}
.qodef-team.main-info-below-image .qodef-team-info .qodef-team-title-holder .qodef-team-name {
margin-top: 10px;
margin-bottom: 0;
text-transform: uppercase;
}
.qodef-team.main-info-below-image .qodef-team-info .qodef-team-position {
margin-top: 8px;
margin-bottom: 0;
color: #b5b5b5;
}
.qodef-team.main-info-below-image .qodef-team-info .qodef-team-description {
margin-top: 14px;
}
.qodef-team.main-info-below-image.info-below-image-standard .qodef-team-image {
margin-bottom: 23px;
}
.qodef-team.main-info-below-image.info-below-image-standard .qodef-team-social-wrapp .qodef-icon-shortcode .flip-icon-holder .icon-normal span {
color: #abb1bd;
}
.qodef-team.main-info-below-image.info-below-image-standard .qodef-team-social-wrapp .qodef-icon-shortcode .flip-icon-holder .icon-flip span {
color: #fe6c61;
}
.qodef-team.main-info-below-image.info-below-image-boxed {
background-color: #fff;
border: 2px solid #e6e9ee;
}
.qodef-team.main-info-below-image.info-below-image-boxed .qodef-team-inner {
box-sizing: border-box;
padding: 48px 20px;
}
.qodef-team.main-info-below-image.info-below-image-boxed .qodef-team-image-overlay {
display: none;
}
.qodef-team.main-info-below-image.info-below-image-boxed .qodef-team-image {
margin-bottom: 23px;
}
.qodef-team.main-info-below-image.info-below-image-boxed .qodef-team-image img {
display: block;
border: 2px solid #e6e9ee;
margin: 0 auto;
}
.qodef-team.main-info-below-image.info-below-image-boxed .qodef-team-info {
text-align: center;
}
.qodef-team.main-info-below-image.info-below-image-boxed .qodef-team-social-wrapp .qodef-icon-shortcode .flip-icon-holder .icon-normal span {
color: #fe6c61;
}
.qodef-team.main-info-below-image.info-below-image-boxed .qodef-team-social-wrapp .qodef-icon-shortcode .flip-icon-holder .icon-flip span {
color: #121212;
}
.qodef-team.main-info-below-image.light .qodef-team-info .qodef-team-title-holder .qodef-team-name,
.qodef-team.main-info-below-image.light .qodef-team-info .qodef-team-title-holder .qodef-team-position {
color: #ffffff;
}
.qodef-team.main-info-below-image.light .qodef-team-info .qodef-team-text .qodef-team-description p {
color: #ffffff;
}
.qodef-team.main-info-below-image.light .qodef-team-info .qodef-team-social-wrapp .qodef-icon-shortcode .qodef-icon-element {
color: #ffffff;
}
.qodef-team.main-info-below-image.light .qodef-team-info .qodef-team-social-wrapp .qodef-icon-shortcode .qodef-icon-element:hover {
color: #8d735f;
}
.qodef-team.main-info-on-hover .qodef-team-image {
overflow: hidden;
position: relative;
}
.qodef-team.main-info-on-hover .qodef-team-image img {
display: block;
}
.qodef-team.main-info-on-hover .qodef-team-inner {
position: relative;
}
.qodef-team.main-info-on-hover .qodef-team-info-wrapper {
position: absolute;
width: 100%;
height: 100%;
padding: 18px;
box-sizing: border-box;
top: 0;
left: 0;
}
.qodef-team.main-info-on-hover .qodef-team-info-holder {
display: table;
width: 100%;
height: 100%;
background-color: rgba(17, 18, 20, 0.78);
}
.qodef-team.main-info-on-hover .qodef-team-info {
display: table-cell;
vertical-align: middle;
text-align: center;
position: relative;
-webkit-transform: translateY(10px) translateZ(0);
-moz-transform: translateY(10px) translateZ(0);
transform: translateY(10px) translateZ(0);
-webkit-transition: all 0.35s;
-moz-transition: all 0.35s;
transition: all 0.35s;
opacity: 0;
}
.qodef-team.main-info-on-hover .qodef-team-text {
padding: 20px 0 0 0;
text-align: center;
}
.qodef-team.main-info-on-hover .qodef-team-social-wrapp {
margin-top: 15px;
}
.qodef-team.main-info-on-hover .qodef-team-social-wrapp .qodef-icon-shortcode {
font-size: 15px;
}
.qodef-team.main-info-on-hover .qodef-team-info-wrapper {
position: absolute;
height: 100%;
width: 100%;
left: 0;
top: 0;
opacity: 0;
vertical-align: middle;
-webkit-transition: opacity 0.2s;
-moz-transition: opacity 0.2s;
transition: opacity 0.2s;
}
.qodef-team.main-info-on-hover .qodef-team-info-wrapper .qodef-team-name {
margin: 3px 0 28px;
color: #fff;
}
.qodef-team.main-info-on-hover .qodef-team-info-wrapper .qodef-team-position {
color: #fe6c61;
position: relative;
font-style: italic;
}
.qodef-team.main-info-on-hover .qodef-team-info-wrapper .qodef-team-social-wrapp span {
position: relative;
color: #b9b9b9;
}
.qodef-team.main-info-on-hover .qodef-team-info-wrapper .qodef-team-social-wrapp span:hover {
color: #fe6c61;
}
.qodef-team.main-info-on-hover:hover .qodef-team-info-wrapper {
opacity: 1;
}
.qodef-team.main-info-on-hover:hover .qodef-team-info {
-webkit-transform: translateY(0) translateZ(0);
-moz-transform: translateY(0) translateZ(0);
transform: translateY(0) translateZ(0);
opacity: 1;
}   .qodef-video-button-holder {
position: relative;
display: inline-block;
vertical-align: middle;
}
.qodef-video-button-holder .qodef-video-button-image {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
}
.qodef-video-button-holder .qodef-video-button-image img {
display: block;
}
.qodef-video-button-holder .qodef-video-button-image-holder {
position: relative;
display: table-cell;
vertical-align: middle;
}
.qodef-video-button-holder .qodef-video-button-title {
padding: 0 23%;
margin: 0 0 35px;
line-height: 1.085em;
box-sizing: border-box;
}
@media only screen and (max-width: 1366px) {
.qodef-video-button-holder .qodef-video-button-title {
padding: 0 18%;
}
}
@media only screen and (max-width: 1024px) {
.qodef-video-button-holder .qodef-video-button-title {
padding: 5% 10% 0%;
}
}
@media only screen and (max-width: 768px) {
.qodef-video-button-holder .qodef-video-button-title {
display: none;
}
}
.qodef-video-button-holder .qodef-video-button-play-image {
position: absolute;
display: block;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: 1;
}
.qodef-video-button-holder .qodef-video-button-play-image .qodef-video-button-play-inner {
position: relative;
display: table;
width: 100%;
height: 100%;
text-align: center;
}
.qodef-video-button-holder .qodef-video-button-play {
position: absolute;
display: block;
width: 100%;
height: 100%;
top: 0;
left: 0;
color: #121212;
font-size: 16px;
line-height: 1;
}
.qodef-video-button-holder .qodef-video-button-play .qodef-video-button-play-inner {
display: table;
line-height: inherit;
text-align: center;
height: 100%;
width: 100%;
}
.qodef-video-button-holder .qodef-video-button-play .qodef-video-button-play-inner .qodef-video-button-play-inner-holder {
display: table-cell;
vertical-align: middle;
}
.qodef-video-button-holder .qodef-video-button-play .qodef-video-button-play-inner .qodef-video-button-play-inner-holder .qodef-video-button-icon-holder {
width: 64px;
height: 64px;
line-height: 64px;
background-color: #fff;
margin: 0 auto;
border-radius: 50%;
}
.qodef-video-button-holder .qodef-video-button-play .qodef-video-button-play-inner .qodef-video-button-play-inner-holder .qodef-video-button-icon-holder span {
position: relative;
right: -2px;
}
@media only screen and (max-width: 1024px) {
.qodef-video-button-holder .qodef-video-button-play .qodef-video-button-play-inner .qodef-video-button-play-inner-holder .qodef-video-button-icon-holder {
margin: 0% auto 5%;
}
}
@media only screen and (max-width: 768px) {
.qodef-video-button-holder .qodef-video-button-play .qodef-video-button-play-inner .qodef-video-button-play-inner-holder .qodef-video-button-icon-holder {
margin: 0% auto;
}
}
.qodef-video-button-holder .qodef-video-button-play span {
display: block;
line-height: inherit;
}
.qodef-video-button-holder .qodef-video-button-play span:before {
display: block;
line-height: inherit;
}
.qodef-video-button-holder .qodef-video-button-play:hover {
color: #b6b6b6;
}
.qodef-video-button-holder.qodef-no-video-image .qodef-video-button-play {
position: relative;
display: inline-block;
width: 100%;
vertical-align: middle;
}
.qodef-video-button-holder .qodef-video-button-play-image.qodef-vb-has-hover-image:hover .qodef-video-button-image-holder-inner img:first-child {
opacity: 0;
}
.qodef-video-button-holder .qodef-video-button-play-image.qodef-vb-has-hover-image:hover .qodef-video-button-image-holder-inner img:nth-child(2) {
opacity: 1;
}
.qodef-video-button-holder .qodef-video-button-play-image .qodef-video-button-image-holder-inner {
position: relative;
display: block;
}
.qodef-video-button-holder .qodef-video-button-play-image .qodef-video-button-image-holder-inner img {
display: block;
margin: 0 auto;
-webkit-transition: opacity 0.3s ease-in-out;
-moz-transition: opacity 0.3s ease-in-out;
transition: opacity 0.3s ease-in-out;
}
.qodef-video-button-holder .qodef-video-button-play-image .qodef-video-button-image-holder-inner img:first-child {
position: relative;
opacity: 1;
}
.qodef-video-button-holder .qodef-video-button-play-image .qodef-video-button-image-holder-inner img:nth-child(2) {
position: absolute;
top: 0;
left: 50%;
opacity: 0;
-webkit-transform: translateX(-50%) translateZ(0);
-moz-transform: translateX(-50%) translateZ(0);
transform: translateX(-50%) translateZ(0);
}
.rev_slider_wrapper .qodef-video-button-holder .qodef-video-button-play-image .qodef-video-button-image-holder-inner img:nth-child(2) {
-webkit-transform: translateZ(0);
-moz-transform: translateZ(0);
transform: translateZ(0);
}
.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"}