[data-animation^="animated"],
[data-post-animation^="animated"],
[data-hover-animation^="animated"] {
visibility:hidden;
}
.animated {
visibility:visible;
-webkit-animation-duration: 1s;
animation-duration: 1s; }
.animated.infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.animated.delay-1s {
-webkit-animation-delay: 1s;
animation-delay: 1s;
}
.animated.delay-2s {
-webkit-animation-delay: 2s;
animation-delay: 2s;
}
.animated.delay-3s {
-webkit-animation-delay: 3s;
animation-delay: 3s;
}
.animated.delay-4s {
-webkit-animation-delay: 4s;
animation-delay: 4s;
}
.animated.delay-5s {
-webkit-animation-delay: 5s;
animation-delay: 5s;
}
.animated.faster {
-webkit-animation-duration: 0.3s;
animation-duration: 0.3s;
}
.animated.fast {
-webkit-animation-duration: 0.5s;
animation-duration: 0.5s;
}
.animated.normal {
-webkit-animation-duration: 0.8s;
animation-duration: 0.8s;
}
.animated.slow {
-webkit-animation-duration: 2s;
animation-duration: 2s;
}
.animated.slower {
-webkit-animation-duration: 3s;
animation-duration: 3s;
}
@media (print), (prefers-reduced-motion: reduce) {
.animated {
-webkit-animation-duration: 1ms !important;
animation-duration: 1ms !important;
-webkit-transition-duration: 1ms !important;
transition-duration: 1ms !important;
-webkit-animation-iteration-count: 1 !important;
animation-iteration-count: 1 !important;
}
} @-webkit-keyframes elastic {
0%, 100% {
-webkit-transform: scale3d(1,1,1);
transform: scale3d(1,1,1);
}
25% {
-webkit-transform: scale3d(1, 1.2, 1);
transform: scale3d(1, 1.2, 1);
}
50% {
-webkit-transform: scale3d(1, 0.85, 1);
transform: scale3d(1, 0.85, 1);
}
75% {
-webkit-transform: scale3d(1, 1.05, 1);
transform: scale3d(1, 1.05, 1);
}
}
@keyframes elastic {
0%, 100% {
-webkit-transform: scale3d(1,1,1);
-ms-transform: scale3d(1,1,1);
transform: scale3d(1,1,1);
}
25% {
-webkit-transform: scale3d(1, 1.2, 1);
-ms-transform: scale3d(1, 1.2, 1);
transform: scale3d(1, 1.2, 1);
}
50% {
-webkit-transform: scale3d(1, 0.85, 1);
-ms-transform: scale3d(1, 0.85, 1);
transform: scale3d(1, 0.85, 1);
}
75% {
-webkit-transform: scale3d(1, 1.05, 1);
-ms-transform: scale3d(1, 1.05, 1);
transform: scale3d(1, 1.05, 1);
}
}
@-webkit-keyframes elastic-inner { 
0% {
-webkit-transform: translate3d(0,-25px,0);
opacity:0;
}
25% {
-webkit-transform: translate3d(0,10px,0);
}
50% {
-webkit-transform: translate3d(0,-6px,0);
}
75% {
-webkit-transform: translate3d(0,2px,0);
}
100% {
-webkit-transform: translate3d(0,0,0);
opacity: 1;
}
}
@keyframes elastic-inner { 
0% {
opacity:0;
-webkit-transform: translate3d(0,-25px,0);
-ms-transform: translate3d(0,-25px,0);
transform: translate3d(0,-25px,0);
}
25% {
-webkit-transform: translate3d(0,10px,0);
-ms-transform: translate3d(0,10px,0);
transform: translate3d(0,10px,0);
}
50% {
-webkit-transform: translate3d(0,-6px,0);
-ms-transform: translate3d(0,-6px,0);
transform: translate3d(0,-6px,0);
}
75% {
-webkit-transform: translate3d(0,2px,0);
-ms-transform: translate3d(0,2px,0);
transform: translate3d(0,2px,0);
}
100% {
opacity: 1;
-webkit-transform: translate3d(0,0,0);
-ms-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
}
.elastic {
-webkit-animation-name: elastic;
animation-name: elastic;
-webkit-transition-timing-function: cubic-bezier(0.2, 0.6, 0.3, 1);
-ms-transition-timing-function: cubic-bezier(0.2, 0.6, 0.3, 1);
transition-timing-function: cubic-bezier(0.2, 0.6, 0.3, 1);
-webkit-transform-origin: center top;
-ms-transform-origin: center top;
transform-origin: center top;
}
.elastic > * {
-webkit-transform: translate3d(0,0,0);
-ms-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
opacity: 1;
-webkit-transition: none;
-ms-transition: none;
transition: none;
-webkit-animation: elastic-inner 0.5s ease-out;
-ms-animation: elastic-inner 0.5s ease-out;
animation: elastic-inner 0.5s ease-out;
} @-webkit-keyframes wipeInLeftTop {
0% {
-webkit-transform: scale(0,0);
transform: scale(0,0);
}
100% {
-webkit-transform: scale(1,1);
transform: scale(1,1);
}
}
@keyframes wipeInLeftTop {
0% {
-webkit-transform: scale(0,0);
-ms-transform: scale(0,0);
transform: scale(0,0);
}
100% {
-webkit-transform: scale(1,1);
-ms-transform: scale(1,1);
transform: scale(1,1);
}
}
@-webkit-keyframes wipeInLeftTop-inner { 
0% {
opacity:0;
-webkit-transform: translate3d(0,-10px,0);
}
100% {
opacity: 1;
-webkit-transform: translate3d(0,0,0);
}
}
@keyframes wipeInLeftTop-inner { 
0% {
opacity:0;
-webkit-transform: translate3d(0,-10px,0);
-ms-transform: translate3d(0,-10px,0);
transform: translate3d(0,-10px,0);
}
100% {
opacity: 1;
-webkit-transform: translate3d(0,0,0);
-ms-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
}
.wipeInLeftTop {
-webkit-animation-name: wipeInLeftTop;
animation-name: wipeInLeftTop;
-webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
-ms-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
-webkit-transform-origin: left top;
-ms-transform-origin: left top;
transform-origin: left top;
}
.wipeInLeftTop > * {
opacity: 0;
-webkit-animation: wipeInLeftTop-inner 0.35s ease-out forwards;
-ms-animation: wipeInLeftTop-inner 0.35s ease-out forwards;
animation: wipeInLeftTop-inner 0.35s ease-out forwards;
}
.wipeInLeftTop > *:first-child {	-webkit-animation-delay: 0.05s;	-ms-animation-delay: 0.05s;	animation-delay: 0.05s; }
.wipeInLeftTop > *:nth-child(2) {	-webkit-animation-delay: 0.10s;	-ms-animation-delay: 0.10s;	animation-delay: 0.10s; }
.wipeInLeftTop > *:nth-child(3) {	-webkit-animation-delay: 0.15s;	-ms-animation-delay: 0.15s;	animation-delay: 0.15s; }
.wipeInLeftTop > *:nth-child(4) {	-webkit-animation-delay: 0.20s;	-ms-animation-delay: 0.20s;	animation-delay: 0.20s; }
.wipeInLeftTop > *:nth-child(5) {	-webkit-animation-delay: 0.25s;	-ms-animation-delay: 0.25s;	animation-delay: 0.25s; }
.wipeInLeftTop > *:nth-child(6) {	-webkit-animation-delay: 0.30s;	-ms-animation-delay: 0.30s;	animation-delay: 0.30s; }
.wipeInLeftTop > *:nth-child(7) {	-webkit-animation-delay: 0.35s;	-ms-animation-delay: 0.35s;	animation-delay: 0.35s; }
.wipeInLeftTop > *:nth-child(8) {	-webkit-animation-delay: 0.40s;	-ms-animation-delay: 0.40s;	animation-delay: 0.40s; }
.wipeInLeftTop > *:nth-child(9) {	-webkit-animation-delay: 0.45s;	-ms-animation-delay: 0.45s;	animation-delay: 0.45s; }
.wipeInLeftTop > *:nth-child(10){	-webkit-animation-delay: 0.50s;	-ms-animation-delay: 0.50s;	animation-delay: 0.50s; }
.wipeInLeftTop > *:nth-child(11){	-webkit-animation-delay: 0.55s;	-ms-animation-delay: 0.55s;	animation-delay: 0.55s; }
.wipeInLeftTop > *:nth-child(12){	-webkit-animation-delay: 0.60s;	-ms-animation-delay: 0.60s;	animation-delay: 0.60s; }
.wipeInLeftTop > *:nth-child(12){	-webkit-animation-delay: 0.65s;	-ms-animation-delay: 0.65s;	animation-delay: 0.65s; }
.wipeInLeftTop > *:nth-child(12){	-webkit-animation-delay: 0.70s;	-ms-animation-delay: 0.70s;	animation-delay: 0.70s; } @-webkit-keyframes bounce {
0%, 20%, 53%, 80%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
40%, 43% {
-webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0);
}
}
@keyframes bounce {
0%, 20%, 53%, 80%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
40%, 43% {
-webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0);
}
}
.bounce {
-webkit-animation-name: bounce;
animation-name: bounce;
-webkit-transform-origin: center bottom;
-ms-transform-origin: center bottom;
transform-origin: center bottom;
} @-webkit-keyframes flash {
0%, 50%, 100% {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
@keyframes flash {
0%, 50%, 100% {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
.flash {
-webkit-animation-name: flash;
animation-name: flash;
opacity: 1;
} @keyframes blink {
0% { opacity: 1 }
50% { opacity: 0 }
100% { opacity: 1 }
}
@-webkit-keyframes blink {
0% { opacity: 1 }
50% { opacity: 0 }
100% { opacity: 1 }
}
@-moz-keyframes blink {
0% { opacity: 1 }
50% { opacity: 0 }
100% { opacity: 1 }
}
.blink {
-webkit-animation-name: blink;
animation-name: blink;
}  @-webkit-keyframes pulse {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes pulse {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.pulse {
-webkit-animation-name: pulse;
animation-name: pulse;
} @-webkit-keyframes rubberBand {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes rubberBand {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.rubberBand {
-webkit-animation-name: rubberBand;
animation-name: rubberBand;
} @-webkit-keyframes shake {
0%, 100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
@keyframes shake {
0%, 100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
.shake {
-webkit-animation-name: shake;
animation-name: shake;
} @-webkit-keyframes 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);
}
100% {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
@keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
100% {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
.swing {
-webkit-transform-origin: top center;
-ms-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing;
} @-webkit-keyframes tada {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%, 20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes tada {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%, 20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.tada {
-webkit-animation-name: tada;
animation-name: tada;
}  @-webkit-keyframes wobble {
0% {
-webkit-transform: none;
transform: none;
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
100% {
-webkit-transform: none;
transform: none;
}
}
@keyframes wobble {
0% {
-webkit-transform: none;
transform: none;
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
100% {
-webkit-transform: none;
transform: none;
}
}
.wobble {
-webkit-animation-name: wobble;
animation-name: wobble;
} @-webkit-keyframes jello {
from, 11.1%, to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
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 heartBeat {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
14% {
-webkit-transform: scale(1.3);
transform: scale(1.3);
}
28% {
-webkit-transform: scale(1);
transform: scale(1);
}
42% {
-webkit-transform: scale(1.3);
transform: scale(1.3);
}
70% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes heartBeat {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
14% {
-webkit-transform: scale(1.3);
transform: scale(1.3);
}
28% {
-webkit-transform: scale(1);
transform: scale(1);
}
42% {
-webkit-transform: scale(1.3);
transform: scale(1.3);
}
70% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
.heartBeat {
-webkit-animation-name: heartBeat;
animation-name: heartBeat;
-webkit-animation-duration: 1.3s;
animation-duration: 1.3s;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
} @-webkit-keyframes bounceIn {
0%, 20%, 40%, 60%, 80%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
100% {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes bounceIn {
0%, 20%, 40%, 60%, 80%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
100% {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.bounceIn {
-webkit-animation-name: bounceIn;
animation-name: bounceIn;
-webkit-animation-duration: .75s;
animation-duration: .75s;
} @-webkit-keyframes bounceInDown {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
100% {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInDown {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
100% {
-webkit-transform: none;
transform: none;
}
}
.bounceInDown {
-webkit-animation-name: bounceInDown;
animation-name: bounceInDown;
} @-webkit-keyframes bounceInLeft {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
100% {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInLeft {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
100% {
-webkit-transform: none;
transform: none;
}
}
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
animation-name: bounceInLeft;
} @-webkit-keyframes bounceInRight {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
100% {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInRight {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
100% {
-webkit-transform: none;
transform: none;
}
}
.bounceInRight {
-webkit-animation-name: bounceInRight;
animation-name: bounceInRight;
} @-webkit-keyframes bounceInUp {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInUp {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.bounceInUp {
-webkit-animation-name: bounceInUp;
animation-name: bounceInUp;
} @-webkit-keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
}
@keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
}
.bounceOut {
-webkit-animation-name: bounceOut;
animation-name: bounceOut;
-webkit-animation-duration: .75s;
animation-duration: .75s;
} @-webkit-keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.bounceOutDown {
-webkit-animation-name: bounceOutDown;
animation-name: bounceOutDown;
} @-webkit-keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.bounceOutLeft {
-webkit-animation-name: bounceOutLeft;
animation-name: bounceOutLeft;
} @-webkit-keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.bounceOutRight {
-webkit-animation-name: bounceOutRight;
animation-name: bounceOutRight;
} @-webkit-keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.bounceOutUp {
-webkit-animation-name: bounceOutUp;
animation-name: bounceOutUp;
} @-webkit-keyframes fadeIn {
0% {opacity: 0;}
100% {opacity: 1;}
}
@keyframes fadeIn {
0% {opacity: 0;}
100% {opacity: 1;}
}
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
} @-webkit-keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
} @-webkit-keyframes fadeInDownBig {
0% {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDownBig {
0% {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDownBig {
-webkit-animation-name: fadeInDownBig;
animation-name: fadeInDownBig;
} @-webkit-keyframes fadeInLeft {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeft {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft;
} @-webkit-keyframes fadeInLeftBig {
0% {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeftBig {
0% {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeftBig {
-webkit-animation-name: fadeInLeftBig;
animation-name: fadeInLeftBig;
} @-webkit-keyframes fadeInRight {
0% {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRight {
0% {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight;
} @-webkit-keyframes fadeInRightBig {
0% {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRightBig {
0% {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRightBig {
-webkit-animation-name: fadeInRightBig;
animation-name: fadeInRightBig;
} @-webkit-keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
} @-webkit-keyframes fadeInUpSmall {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 60px, 0);
transform: translate3d(0, 60px, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUpSmall {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 60px, 0);
transform: translate3d(0, 60px, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUpSmall {
-webkit-animation-name: fadeInUpSmall;
animation-name: fadeInUpSmall;
} @-webkit-keyframes fadeInUpBig {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUpBig {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUpBig {
-webkit-animation-name: fadeInUpBig;
animation-name: fadeInUpBig;
} @-webkit-keyframes fadeOut {
0% {opacity: 1;}
100% {opacity: 0;}
}
@keyframes fadeOut {
0% {opacity: 1;}
100% {opacity: 0;}
}
.fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
} @-webkit-keyframes fadeOutDown {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes fadeOutDown {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.fadeOutDown {
-webkit-animation-name: fadeOutDown;
animation-name: fadeOutDown;
} @-webkit-keyframes fadeOutDownSmall {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, 60px, 0);
transform: translate3d(0, 60px, 0);
}
}
@keyframes fadeOutDownSmall {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, 60px, 0);
transform: translate3d(0, 60px, 0);
}
}
.fadeOutDownSmall {
-webkit-animation-name: fadeOutDownSmall;
animation-name: fadeOutDownSmall;
} @-webkit-keyframes fadeOutDownBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes fadeOutDownBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.fadeOutDownBig {
-webkit-animation-name: fadeOutDownBig;
animation-name: fadeOutDownBig;
} @-webkit-keyframes fadeOutLeft {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes fadeOutLeft {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.fadeOutLeft {
-webkit-animation-name: fadeOutLeft;
animation-name: fadeOutLeft;
} @-webkit-keyframes fadeOutLeftBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes fadeOutLeftBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.fadeOutLeftBig {
-webkit-animation-name: fadeOutLeftBig;
animation-name: fadeOutLeftBig;
} @-webkit-keyframes fadeOutRight {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes fadeOutRight {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.fadeOutRight {
-webkit-animation-name: fadeOutRight;
animation-name: fadeOutRight;
} @-webkit-keyframes fadeOutRightBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes fadeOutRightBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.fadeOutRightBig {
-webkit-animation-name: fadeOutRightBig;
animation-name: fadeOutRightBig;
} @-webkit-keyframes fadeOutUp {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes fadeOutUp {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.fadeOutUp {
-webkit-animation-name: fadeOutUp;
animation-name: fadeOutUp;
} @-webkit-keyframes fadeOutUpBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes fadeOutUpBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.fadeOutUpBig {
-webkit-animation-name: fadeOutUpBig;
animation-name: fadeOutUpBig;
} @-webkit-keyframes flip {
0% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
transform: perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
@keyframes flip {
0% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
transform: perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
.animated.flip {
-webkit-backface-visibility: visible;
backface-visibility: visible;
-webkit-animation-name: flip;
animation-name: flip;
} @-webkit-keyframes flipInX {
0% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInX {
0% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInX {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInX;
animation-name: flipInX;
} @-webkit-keyframes flipInY {
0% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInY {
0% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInY;
animation-name: flipInY;
} @-webkit-keyframes flipOutX {
0% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutX {
0% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
.flipOutX {
-webkit-animation-name: flipOutX;
animation-name: flipOutX;
-webkit-animation-duration: .75s;
animation-duration: .75s;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
} @-webkit-keyframes flipOutY {
0% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutY {
0% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
.flipOutY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipOutY;
animation-name: flipOutY;
-webkit-animation-duration: .75s;
animation-duration: .75s;
} @-webkit-keyframes lightSpeedIn {
0% {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1;
}
100% {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes lightSpeedIn {
0% {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1;
}
100% {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.lightSpeedIn {
-webkit-animation-name: lightSpeedIn;
animation-name: lightSpeedIn;
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
} @-webkit-keyframes lightSpeedOut {
0% {
opacity: 1;
}
100% {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
@keyframes lightSpeedOut {
0% {
opacity: 1;
}
100% {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
.lightSpeedOut {
-webkit-animation-name: lightSpeedOut;
animation-name: lightSpeedOut;
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
} @-webkit-keyframes rotateIn {
0% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
100% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateIn {
0% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
100% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateIn {
-webkit-animation-name: rotateIn;
animation-name: rotateIn;
} @-webkit-keyframes rotateInDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInDownLeft {
-webkit-animation-name: rotateInDownLeft;
animation-name: rotateInDownLeft;
} @-webkit-keyframes rotateInDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInDownRight {
-webkit-animation-name: rotateInDownRight;
animation-name: rotateInDownRight;
} @-webkit-keyframes rotateInUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInUpLeft {
-webkit-animation-name: rotateInUpLeft;
animation-name: rotateInUpLeft;
} @-webkit-keyframes rotateInUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInUpRight {
-webkit-animation-name: rotateInUpRight;
animation-name: rotateInUpRight;
} @-webkit-keyframes rotateOut {
0% {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
100% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
@keyframes rotateOut {
0% {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
100% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
.rotateOut {
-webkit-animation-name: rotateOut;
animation-name: rotateOut;
} @-webkit-keyframes rotateOutDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
@keyframes rotateOutDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
.rotateOutDownLeft {
-webkit-animation-name: rotateOutDownLeft;
animation-name: rotateOutDownLeft;
} @-webkit-keyframes rotateOutDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutDownRight {
-webkit-animation-name: rotateOutDownRight;
animation-name: rotateOutDownRight;
} @-webkit-keyframes rotateOutUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutUpLeft {
-webkit-animation-name: rotateOutUpLeft;
animation-name: rotateOutUpLeft;
} @-webkit-keyframes rotateOutUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
@keyframes rotateOutUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
.rotateOutUpRight {
-webkit-animation-name: rotateOutUpRight;
animation-name: rotateOutUpRight;
} @-webkit-keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%, 80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
100% {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
@keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%, 80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
100% {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
.hinge {
-webkit-animation-name: hinge;
animation-name: hinge;
} @-webkit-keyframes jackInTheBox {
from {
opacity: 0;
-webkit-transform: scale(0.1) rotate(30deg);
transform: scale(0.1) rotate(30deg);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
}
50% {
-webkit-transform: rotate(-10deg);
transform: rotate(-10deg);
}
70% {
-webkit-transform: rotate(3deg);
transform: rotate(3deg);
}
to {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes jackInTheBox {
from {
opacity: 0;
-webkit-transform: scale(0.1) rotate(30deg);
transform: scale(0.1) rotate(30deg);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
}
50% {
-webkit-transform: rotate(-10deg);
transform: rotate(-10deg);
}
70% {
-webkit-transform: rotate(3deg);
transform: rotate(3deg);
}
to {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
}
.jackInTheBox {
-webkit-animation-name: jackInTheBox;
animation-name: jackInTheBox;
}  @-webkit-keyframes rollIn {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes rollIn {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.rollIn {
-webkit-animation-name: rollIn;
animation-name: rollIn;
}  @-webkit-keyframes rollOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
@keyframes rollOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
.rollOut {
-webkit-animation-name: rollOut;
animation-name: rollOut;
} @-webkit-keyframes zoomIn {
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
@keyframes zoomIn {
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
.zoomIn {
-webkit-animation-name: zoomIn;
animation-name: zoomIn;
} @-webkit-keyframes zoomInDown {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInDown {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInDown {
-webkit-animation-name: zoomInDown;
animation-name: zoomInDown;
} @-webkit-keyframes zoomInLeft {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInLeft {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInLeft {
-webkit-animation-name: zoomInLeft;
animation-name: zoomInLeft;
} @-webkit-keyframes zoomInRight {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInRight {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInRight {
-webkit-animation-name: zoomInRight;
animation-name: zoomInRight;
} @-webkit-keyframes zoomInUp {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInUp {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInUp {
-webkit-animation-name: zoomInUp;
animation-name: zoomInUp;
} @-webkit-keyframes zoomOut {
0% {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
100% {
opacity: 0;
}
}
@keyframes zoomOut {
0% {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
100% {
opacity: 0;
}
}
.zoomOut {
-webkit-animation-name: zoomOut;
animation-name: zoomOut;
} @-webkit-keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutDown {
-webkit-animation-name: zoomOutDown;
animation-name: zoomOutDown;
} @-webkit-keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
.zoomOutLeft {
-webkit-animation-name: zoomOutLeft;
animation-name: zoomOutLeft;
} @-webkit-keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
@keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
.zoomOutRight {
-webkit-animation-name: zoomOutRight;
animation-name: zoomOutRight;
} @-webkit-keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutUp {
-webkit-animation-name: zoomOutUp;
animation-name: zoomOutUp;
} @-webkit-keyframes slideInDown {
0% {
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
visibility: visible;
opacity: 0;
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes slideInDown {
0% {
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
visibility: visible;
opacity: 0;
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
.slideInDown {
-webkit-animation-name: slideInDown;
animation-name: slideInDown;
} @-webkit-keyframes slideInLeft {
0% {
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
visibility: visible;
opacity: 0;
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes slideInLeft {
0% {
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
visibility: visible;
opacity: 0;
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
.slideInLeft {
-webkit-animation-name: slideInLeft;
animation-name: slideInLeft;
} @-webkit-keyframes slideInRight {
0% {
-webkit-transform: translateX(100%);
transform: translateX(100%);
visibility: visible;
opacity: 0;
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes slideInRight {
0% {
-webkit-transform: translateX(100%);
transform: translateX(100%);
visibility: visible;
opacity: 0;
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
.slideInRight {
-webkit-animation-name: slideInRight;
animation-name: slideInRight;
} @-webkit-keyframes slideInUp {
0% {
-webkit-transform: translateY(100%);
transform: translateY(100%);
visibility: visible;
opacity: 0;
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes slideInUp {
0% {
-webkit-transform: translateY(100%);
transform: translateY(100%);
visibility: visible;
opacity: 0;
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
.slideInUp {
-webkit-animation-name: slideInUp;
animation-name: slideInUp;
} @-webkit-keyframes slideOutDown {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
opacity: 1;
}
100% {
opacity: 0;
visibility: hidden;
-webkit-transform: translateY(100%);
transform: translateY(100%);
}
}
@keyframes slideOutDown {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
opacity: 1;
}
100% {
opacity: 0;
visibility: hidden;
-webkit-transform: translateY(100%);
transform: translateY(100%);
}
}
.slideOutDown {
-webkit-animation-name: slideOutDown;
animation-name: slideOutDown;
} @-webkit-keyframes slideOutLeft {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
opacity: 1;
}
100% {
opacity: 0;
visibility: hidden;
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
}
}
@keyframes slideOutLeft {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
opacity: 1;
}
100% {
opacity: 0;
visibility: hidden;
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
}
}
.slideOutLeft {
-webkit-animation-name: slideOutLeft;
animation-name: slideOutLeft;
} @-webkit-keyframes slideOutRight {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
opacity: 1;
}
100% {
opacity: 0;
visibility: hidden;
-webkit-transform: translateX(100%);
transform: translateX(100%);
}
}
@keyframes slideOutRight {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
opacity: 1;
}
100% {
opacity: 0;
visibility: hidden;
-webkit-transform: translateX(100%);
transform: translateX(100%);
}
}
.slideOutRight {
-webkit-animation-name: slideOutRight;
animation-name: slideOutRight;
} @-webkit-keyframes slideOutUp {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
opacity: 1;
}
100% {
opacity: 0;
visibility: hidden;
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
}
}
@keyframes slideOutUp {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
opacity: 1;
}
100% {
opacity: 0;
visibility: hidden;
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
}
}
.slideOutUp {
-webkit-animation-name: slideOutUp;
animation-name: slideOutUp;
} .animate-spin {
-webkit-animation: spin 2s infinite linear;
animation: spin 2s infinite linear;
}
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg); } 100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@-o-keyframes spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg); } 100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@-ms-keyframes spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg); } 100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@keyframes spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg); } 100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
} .animate-spin-ccw {
-webkit-animation: spin-ccw 2s infinite linear;
animation: spin-ccw 2s infinite linear;
}
@-webkit-keyframes spin-ccw {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(-359deg);
transform: rotate(-359deg);
}
}
@-o-keyframes spin-ccw {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(-359deg);
transform: rotate(-359deg);
}
}
@-ms-keyframes spin-ccw {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(-359deg);
transform: rotate(-359deg);
}
}
@keyframes spin-ccw {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(-359deg);
transform: rotate(-359deg);
}
}input[type="submit"].wpcf7-submit,
div.wpcf7 .ajax-loader {
vertical-align: middle;
}
.wpcf7 form .wpcf7-response-output.trx_addons_message_box {
margin: 0;
padding: 2em;
}
.wpcf7-not-valid {
border-color: #CC0000 !important;
-webkit-box-shadow: 0px 0px 8px 0px rgba(200, 0, 0, 0.2);
-ms-box-shadow: 0px 0px 8px 0px rgba(200, 0, 0, 0.2);
box-shadow: 0px 0px 8px 0px rgba(200, 0, 0, 0.2);
}
.wpcf7-not-valid.wpcf7-radio {
padding: 6px;
}
span.wpcf7-not-valid-tip {
display: none;
font-size: 0.75em;
}
.wpcf7-not-valid + span.wpcf7-not-valid-tip {
display: block;
}
textarea.wpcf7-form-control,
.wpcf7-form-control[type="text"],
.wpcf7-form-control[type="number"],
.wpcf7-form-control[type="tel"],
.wpcf7-form-control[type="url"],
.wpcf7-form-control[type="email"],
.wpcf7-form-control[type="password"],
.wpcf7-form-control[type="search"] {
width: 100%;
}
.wpcf7 div.wpcf7-response-output {
margin: 2em 0 0;
}
.wpcf7 p + p,
.wpcf7 table + p {
margin: 1em 0 0;
}
.wpcf7-wpgdprc {
display: inline-block;
}.woocommerce div.product form.cart .variations td {
display: block;
width: 100%;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
.woocommerce div.product form.cart .single_variation_wrap .woocommerce-variation {
margin-bottom: 1em;
}
:where(body.trx_addons_customizable_theme) .woocommerce div.product .variations_button,
:where(body.trx_addons_customizable_theme) .woocommerce div.product form.cart:not(.grouped_form):not(.variations_form) {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
.trx_addons_attrib_item {
cursor: pointer !important;
}
.trx_addons_attrib_item span {
overflow: hidden;
display: block;
} .trx_addons_attrib_item.trx_addons_attrib_image {
vertical-align: top;
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
margin: 0 0.5em 5px 0;
padding: 5px;
border: 1px solid #e0e2e5;
background-color: #fff;
}
.trx_addons_attrib_item.trx_addons_attrib_image img {
width: 70px;
height: auto;
} .trx_addons_attrib_item.trx_addons_attrib_color {
display: inline-block;
vertical-align: top;
margin: 0 0.5em 5px 0;
padding: 3px;
border: 1px solid #e0e2e5;
background-color: #fafafa;
}
.trx_addons_attrib_item.trx_addons_attrib_color span {
display: block;
width: 30px;
height: 30px;
} .trx_addons_attrib_item.trx_addons_attrib_button {
display: inline-block;
vertical-align: top;
margin: 0 0.5em 5px 0;
padding: 3px;
border: 1px solid #e0e2e5;
background-color: #fafafa;
}
.trx_addons_attrib_item.trx_addons_attrib_button span {
padding: 0.5em 1.5em;
} .trx_addons_attrib_item.trx_addons_attrib_selected {
background-color: #f0f0f0;
border-color: red;
} .trx_addons_attrib_item.trx_addons_attrib_disabled {
cursor: not-allowed !important;
}
.trx_addons_attrib_item.trx_addons_attrib_disabled span {
position: relative;
}
.trx_addons_attrib_item.trx_addons_attrib_disabled span:before,
.trx_addons_attrib_item.trx_addons_attrib_disabled span:after {
content: ' ';
position: absolute;
z-index: 1;
top: 50%;
left: -20%;
width: 140%;
height: 1px;
background-color: #f0f0f0;
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg);
}
.trx_addons_attrib_item.trx_addons_attrib_disabled span:after {
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
} .trx_addons_product_attributes {
order: 2;
margin-top: 1em;
clear: both;
padding-bottom: 2px;
}
.product.add-to-wishlist-before_image .trx_addons_product_attributes {
margin-top: 0;
}
.trx_addons_product_attributes .trx_addons_product_attribute {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.trx_addons_product_attributes .trx_addons_product_attribute .trx_addons_product_attribute_label {
display: inline-block;
vertical-align: top;
margin-right: 0.25em;
}
.trx_addons_product_attributes .trx_addons_product_attribute .trx_addons_product_attribute_label:after {
content: ':';
}
.trx_addons_product_attributes .trx_addons_product_attribute .trx_addons_product_attribute_item {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
margin: 0 0.15em;
border: none;
}
.trx_addons_product_attributes .trx_addons_product_attribute .trx_addons_product_attribute_item_action_swap {
display: block;
position: relative;
}
.trx_addons_product_attributes .trx_addons_product_attribute .trx_addons_product_attribute_item_disabled > a {
opacity: 0.5;
cursor: not-allowed;
}
.trx_addons_product_attributes .trx_addons_product_attribute .trx_addons_product_attribute_item_active .trx_addons_product_attribute_item_action_swap:after {
content: ' ';
position: absolute;
z-index: 1;
top: 0;
right: 0;
bottom: 0;
left: 0;
border: 1px solid rgba(128, 128, 128, 0.75);
pointer-events: none;
}
.trx_addons_product_attributes .trx_addons_product_attribute.trx_addons_product_attribute_type_color .trx_addons_product_attribute_item_active .trx_addons_product_attribute_item_action_swap:after {
-webkit-border-radius: 50%;
-ms-border-radius: 50%;
border-radius: 50%;
position: absolute;
z-index: 1;
top: -2px;
right: -2px;
bottom: -2px;
left: -2px;
}
.trx_addons_product_attributes .trx_addons_product_attribute.trx_addons_product_attribute_type_image .trx_addons_product_attribute_item_active .trx_addons_product_attribute_item_action_swap:after {
-webkit-border-radius: 2px;
-ms-border-radius: 2px;
border-radius: 2px;
position: absolute;
z-index: 1;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.trx_addons_product_attributes .trx_addons_product_attribute.trx_addons_product_attribute_type_button .trx_addons_product_attribute_item_active .trx_addons_product_attribute_item_action_swap:after, .trx_addons_product_attributes .trx_addons_product_attribute.trx_addons_product_attribute_type_select .trx_addons_product_attribute_item_active .trx_addons_product_attribute_item_action_swap:after {
border-top: none;
border-left: none;
border-right: none;
bottom: 3px;
}
.trx_addons_product_attributes .trx_addons_product_attribute.trx_addons_product_attribute_type_color .trx_addons_product_attribute_item {
position: relative;
}
.trx_addons_product_attributes .trx_addons_product_attribute.trx_addons_product_attribute_type_color .trx_addons_product_attribute_item .trx_addons_product_attribute_item_inner {
display: block;
width: 1em;
height: 1em;
line-height: 1em;
text-align: center;
-webkit-border-radius: 50%;
-ms-border-radius: 50%;
border-radius: 50%;
border: 1px solid rgba(192, 192, 192, 0.5);
}
.trx_addons_product_attributes .trx_addons_product_attribute.trx_addons_product_attribute_type_image .trx_addons_product_attribute_item {
width: 2em;
height: 2em;
line-height: 2em;
text-align: center;
}
.trx_addons_product_attributes .trx_addons_product_attribute.trx_addons_product_attribute_type_image .trx_addons_product_attribute_item img {
-webkit-border-radius: 2px;
-ms-border-radius: 2px;
border-radius: 2px;
border: 1px solid rgba(192, 192, 192, 0.5);
box-sizing: border-box;
}
.trx_addons_product_attributes .trx_addons_product_attribute.trx_addons_product_attribute_type_image .trx_addons_product_attribute_item img:hover {
transform: none !important;
}
.trx_addons_product_attributes .trx_addons_product_attribute.trx_addons_product_attribute_type_button .trx_addons_product_attribute_item {
-webkit-border-radius: 2px;
-ms-border-radius: 2px;
border-radius: 2px;
border: 1px solid rgba(192, 192, 192, 0.5);
padding: 0 4px;
font-size: 0.8em;
line-height: 1.75em;
} .trx_addons_woocommerce_child_categories {
margin-top: 1em;
}
.trx_addons_woocommerce_child_categories .categories_list,
.trx_addons_woocommerce_tools .categories_list {
overflow-x: auto;
overflow-y: hidden;
}
.trx_addons_woocommerce_child_categories .categories_list .sc_button_wrap,
.trx_addons_woocommerce_tools .categories_list .sc_button_wrap {
white-space: nowrap;
} .trx_addons_woocommerce_tools {
padding-bottom: 1em;
margin-bottom: 2em;
border-bottom: 1px solid #f0f0f0;
}
.list_products_header .trx_addons_woocommerce_tools {
margin-top: 2em;
}
.trx_addons_woocommerce_tools .widget + .widget {
margin-top: 2em;
}
.trx_addons_woocommerce_tools .widget_layered_nav_filters {
margin-top: 1.25em;
}
.trx_addons_woocommerce_tools .widget_layered_nav_filters > ul > li {
padding: 0.25em 0.5em 0.25em 0;
}
.trx_addons_woocommerce_tools ~ ul.products {
position: relative;
z-index: 1;
} .trx_addons_woocommerce_search .trx_addons_woocommerce_search_button:before {
margin-right: 0.5em;
vertical-align: middle;
text-align: center;
}
.trx_addons_woocommerce_search_loading {
position: relative;
z-index: 1;
}
.trx_addons_woocommerce_search_loading .trx_addons_woocommerce_search_form_fields_wrap > .trx_addons_loading {
display: none;
}
.trx_addons_woocommerce_search_loading .trx_addons_woocommerce_search_form_fields_wrap_opened > .trx_addons_loading {
display: block;
} .trx_addons_woocommerce_search_type_filter .trx_addons_woocommerce_search_form_fields_wrap .trx_addons_woocommerce_search_header .trx_addons_woocommerce_search_clear_all {
display: none;
color: #23282d;
}
.trx_addons_woocommerce_search_type_filter .trx_addons_woocommerce_search_form_fields_wrap .trx_addons_woocommerce_search_header .trx_addons_woocommerce_search_clear_all:before {
content: '\e922';
font-family: "trx_addons_icons";
margin-right: 0.3em;
}
.trx_addons_woocommerce_search_type_filter .trx_addons_woocommerce_search_form_fields_wrap .trx_addons_woocommerce_search_header .trx_addons_woocommerce_search_close {
display: none;
}
.trx_addons_woocommerce_search_type_filter .trx_addons_woocommerce_search_form_fields_wrap.trx_addons_woocommerce_search_form_fields_filled .trx_addons_woocommerce_search_header .trx_addons_woocommerce_search_clear_all {
display: block;
}
.trx_addons_woocommerce_search_type_filter .trx_addons_woocommerce_search_form_fields_wrap .trx_addons_woocommerce_search_button_show {
display: none;
text-align: center;
margin-top: 2em;
}
.trx_addons_woocommerce_search_type_filter .trx_addons_woocommerce_search_form_fields_wrap .trx_addons_woocommerce_search_button_show .trx_addons_woocommerce_search_button_show_total {
display: inline-block;
vertical-align: middle;
margin: -3px 0 0 0.5em;
font-size: 0.8571em;
width: 2em;
height: 2em;
line-height: 2em;
text-align: center;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
-webkit-border-radius: 50%;
-ms-border-radius: 50%;
border-radius: 50%;
background-color: #23282d;
color: #fff;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field {
display: block;
margin: 0 0 1em 0;
position: relative;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field .sc_form_field_title {
font-weight: inherit;
cursor: pointer;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field .sc_form_field_title:hover, .trx_addons_woocommerce_search_type_filter .sc_form_field .sc_form_field_title:focus {
cursor: pointer;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field .sc_form_field_title.sc_form_field_title_filled .sc_form_field_title_caption {
font-weight: bold;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field .sc_form_field_arrow {
display: inline-block;
margin-left: 1em;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field .sc_form_field_arrow:before {
content: '\e882';
font-family: "trx_addons_icons";
display: block;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_opened .sc_form_field_arrow:before {
-webkit-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg);
}
.trx_addons_woocommerce_search_type_filter .sc_form_field .sc_form_field_selected_items {
display: block;
color: #9099a2;
font-size: 0.8571em;
line-height: 1.25em;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field .sc_form_field_wrap {
display: none;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
padding: 1em;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field .sc_form_field_wrap .sc_form_field_item {
display: block;
padding: 0.25em 0.5em;
-webkit-transition: color 0.3s ease, background-color 0.3s ease;
-ms-transition: color 0.3s ease, background-color 0.3s ease;
transition: color 0.3s ease, background-color 0.3s ease;
cursor: pointer;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field .sc_form_field_wrap .sc_form_field_item:hover, .trx_addons_woocommerce_search_type_filter .sc_form_field .sc_form_field_wrap .sc_form_field_item:focus {
background-color: #f0f0f0;
cursor: pointer;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field .sc_form_field_wrap .sc_form_field_item .sc_form_field_item_total {
display: inline-block;
vertical-align: top;
margin: -0.5em 0 0 0.5em;
font-size: 0.75em;
color: #9099a2;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field .sc_form_field_wrap .sc_form_field_items_selected {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-justify-content: space-between;
-ms-flex-pack: space-between;
justify-content: space-between;
margin-top: 1em;
font-size: 0.92857em;
color: #9099a2;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field .sc_form_field_wrap .sc_form_field_items_selected .sc_form_field_items_selected_clear,
.trx_addons_woocommerce_search_type_filter .sc_form_field .sc_form_field_wrap .sc_form_field_items_selected .sc_form_field_items_selected_select_all {
color: #23282d;
text-decoration: underline;
-webkit-transition: color 0.3s ease;
-ms-transition: color 0.3s ease;
transition: color 0.3s ease;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field .sc_form_field_wrap .sc_form_field_items_selected .sc_form_field_items_selected_clear:hover,
.trx_addons_woocommerce_search_type_filter .sc_form_field .sc_form_field_wrap .sc_form_field_items_selected .sc_form_field_items_selected_select_all:hover {
color: #a00000;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field .sc_form_field_wrap .sc_form_field_items_selected .sc_form_field_items_selected_clear {
display: none;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field .sc_form_field_wrap .sc_form_field_buttons {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-justify-content: space-between;
-ms-flex-pack: space-between;
justify-content: space-between;
margin-top: 1em;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field .sc_form_field_wrap .sc_form_field_buttons .sc_button {
padding: 0.5em 2.5em;
text-transform: none;
margin: 0;
width: 48%;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field .sc_form_field_title_filled ~ .sc_form_field_wrap .sc_form_field_items_selected .sc_form_field_items_selected_clear {
display: inline-block;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field .sc_form_field_title_filled ~ .sc_form_field_wrap .sc_form_field_items_selected .sc_form_field_items_selected_select_all {
display: none;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_text .sc_form_field_wrap {
margin: 0;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_text .sc_form_field_wrap .sc_form_field_input {
padding: 0 0 0.25em 0;
border: none;
background-color: transparent;
border-bottom: 1px solid #23282d;
-webkit-border-radius: 0;
-ms-border-radius: 0;
border-radius: 0;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_text .sc_form_field_wrap .sc_form_field_buttons {
margin-top: 2em;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_slider .sc_form_field_wrap, .trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_range .sc_form_field_wrap {
margin: 0;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_slider .sc_form_field_wrap .trx_addons_range_slider, .trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_range .sc_form_field_wrap .trx_addons_range_slider {
display: block;
margin: 1.5em 0.5em;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_slider .sc_form_field_wrap .trx_addons_range_result, .trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_range .sc_form_field_wrap .trx_addons_range_result {
display: block;
margin-top: 0.5em;
font-size: 0.92857em;
color: #9099a2;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_select .sc_form_field_wrap .sc_form_field_item {
position: relative;
margin: 0 -0.5em;
display: block;
overflow: hidden;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_select .sc_form_field_wrap .sc_form_field_item.sc_form_field_item_level_1 {
padding-left: 1em;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_select .sc_form_field_wrap .sc_form_field_item.sc_form_field_item_level_2 {
padding-left: 1.5em;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_select .sc_form_field_wrap .sc_form_field_item.sc_form_field_item_level_3 {
padding-left: 2em;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_select .sc_form_field_wrap .sc_form_field_item.sc_form_field_item_level_4 {
padding-left: 2.5em;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_select .sc_form_field_wrap .sc_form_field_item.sc_form_field_item_level_5 {
padding-left: 3em;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_select .sc_form_field_wrap .sc_form_field_item.sc_form_field_item_level_6 {
padding-left: 3.5em;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_select .sc_form_field_wrap .sc_form_field_item.sc_form_field_item_level_7 {
padding-left: 4em;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_select .sc_form_field_wrap .sc_form_field_item.sc_form_field_item_level_8 {
padding-left: 4.5em;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_select .sc_form_field_wrap .sc_form_field_item .sc_form_field_item_total {
vertical-align: top;
margin: 0;
position: absolute;
z-index: 1;
top: 50%;
right: 0.75em;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
color: #9099a2;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_select .sc_form_field_wrap .sc_form_field_item .star-rating {
float: left;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_select .sc_form_field_wrap .sc_form_field_item .star-rating span:before {
color: #23282d;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_select .sc_form_field_wrap .sc_form_field_item[data-value="4"] .star-rating > span {
width: 80%;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_select .sc_form_field_wrap .sc_form_field_item[data-value="3"] .star-rating > span {
width: 60%;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_select .sc_form_field_wrap .sc_form_field_item[data-value="2"] .star-rating > span {
width: 40%;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_select .sc_form_field_wrap .sc_form_field_item[data-value="1"] .star-rating > span {
width: 20%;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_select:not([data-multiple="1"]) .sc_form_field_wrap .sc_form_field_item.sc_form_field_item_checked {
font-weight: bold;
text-decoration: underline;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_select[data-multiple="1"] .sc_form_field_wrap .sc_form_field_item {
padding-left: 2.25em;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_select[data-multiple="1"] .sc_form_field_wrap .sc_form_field_item:before {
content: ' ';
font-family: "trx_addons_icons";
display: block;
width: 1.25em;
height: 1.25em;
line-height: 1.25em;
text-align: center;
line-height: 1.2em;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
-webkit-border-radius: 50%;
-ms-border-radius: 50%;
border-radius: 50%;
-webkit-transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
-ms-transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
border: 1px solid #e0e2e5;
position: absolute;
z-index: 1;
top: 50%;
left: 0.5em;
margin-top: -0.6em;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_select[data-multiple="1"] .sc_form_field_wrap .sc_form_field_item.sc_form_field_item_checked:before {
content: '\e8bd';
background-color: #23282d;
border-color: #23282d;
color: #fff;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_color .sc_form_field_items {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin: 0 -0.5em;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_color .sc_form_field_items .sc_form_field_item {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-justify-content: flex-start;
-ms-flex-pack: start;
justify-content: flex-start;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
width: 25%;
height: auto;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
max-width: 6em;
overflow: hidden;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_color .sc_form_field_items .sc_form_field_item .sc_form_field_item_image {
display: block;
width: 3em;
height: 3em;
line-height: 3em;
text-align: center;
-webkit-flex-shrink: 0;
-ms-flex-shrink: 0;
flex-shrink: 0;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
-webkit-border-radius: 50%;
-ms-border-radius: 50%;
border-radius: 50%;
-webkit-transition: border-color 0.3s ease;
-ms-transition: border-color 0.3s ease;
transition: border-color 0.3s ease;
-webkit-flex-shrink: 0;
-ms-flex-shrink: 0;
flex-shrink: 0;
border: 1px solid rgba(0, 0, 0, 0.15);
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_color .sc_form_field_items .sc_form_field_item.sc_form_field_item_checked .sc_form_field_item_image {
position: relative;
border: none;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_color .sc_form_field_items .sc_form_field_item.sc_form_field_item_checked .sc_form_field_item_image:before {
content: ' ';
position: absolute;
z-index: 1;
top: -3px;
right: -3px;
bottom: -3px;
left: -3px;
-webkit-border-radius: 50%;
-ms-border-radius: 50%;
border-radius: 50%;
border: 1px solid #e0e2e5;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_color .sc_form_field_items .sc_form_field_item .sc_form_field_item_label {
display: block;
margin-top: 0.25em;
font-size: 0.75em;
line-height: 1.6em;
text-align: center;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_image .sc_form_field_items {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin: 0 -0.5em;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_image .sc_form_field_items .sc_form_field_item {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-justify-content: flex-start;
-ms-flex-pack: start;
justify-content: flex-start;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
width: 33.3333%;
height: auto;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
max-width: 6em;
overflow: hidden;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_image .sc_form_field_items .sc_form_field_item .sc_form_field_item_image {
display: block;
width: 100%;
height: 3.5em;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
-webkit-border-radius: 4px;
-ms-border-radius: 4px;
border-radius: 4px;
-webkit-transition: border-color 0.3s ease;
-ms-transition: border-color 0.3s ease;
transition: border-color 0.3s ease;
-webkit-flex-shrink: 0;
-ms-flex-shrink: 0;
flex-shrink: 0;
border: 1px solid #f7f7f7;
background-position: center;
background-size: contain;
background-repeat: no-repeat;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_image .sc_form_field_items .sc_form_field_item.sc_form_field_item_checked .sc_form_field_item_image {
border-color: #e0e2e5;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_image .sc_form_field_items .sc_form_field_item .sc_form_field_item_label {
display: block;
margin-top: 0.25em;
font-size: 0.75em;
line-height: 1.6em;
text-align: center;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_button .sc_form_field_items {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin: 0 -0.25em;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_button .sc_form_field_items .sc_form_field_item {
display: inline-block;
vertical-align: top;
text-align: center;
overflow: hidden;
width: 33.3333%;
max-width: 6em;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
padding: 0.25em 0.25em;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_button .sc_form_field_items .sc_form_field_item:hover {
background-color: transparent !important;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_button .sc_form_field_items .sc_form_field_item .sc_form_field_item_label {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-transition: border-color 0.3s ease;
-ms-transition: border-color 0.3s ease;
transition: border-color 0.3s ease;
width: 100%;
height: 3em;
border: 1px solid #f0f0f0;
font-size: 0.75em;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_button .sc_form_field_items .sc_form_field_item .sc_form_field_item_label:hover {
background-color: #f0f0f0;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_button .sc_form_field_items .sc_form_field_item.sc_form_field_item_checked .sc_form_field_item_label {
border-color: #23282d;
}
.trx_addons_woocommerce_search_type_filter .sc_form_field.sc_form_field_button .sc_form_field_items .sc_form_field_item .sc_form_field_item_total {
margin-top: -1em;
}
.trx_addons_woocommerce_search_type_filter .trx_addons_woocommerce_search_button_filters.sc_button {
display: none;
}
.trx_addons_woocommerce_search_type_filter .trx_addons_woocommerce_search_button_filters:before {
display: inline-block;
vertical-align: middle;
margin-right: 0.3em;
}
.trx_addons_woocommerce_search_type_filter .trx_addons_woocommerce_search_button_filters .trx_addons_woocommerce_search_button_filters_total {
display: inline-block;
vertical-align: middle;
margin: -3px 0 0 0.5em;
font-size: 0.8571em;
width: 2em;
height: 2em;
line-height: 2em;
text-align: center;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
-webkit-border-radius: 50%;
-ms-border-radius: 50%;
border-radius: 50%;
background-color: #23282d;
color: #fff;
}
.trx_addons_woocommerce_search_type_filter .trx_addons_woocommerce_search_button_filters .trx_addons_woocommerce_search_button_filters_total_empty {
display: none;
}
.trx_addons_woocommerce_tools .trx_addons_woocommerce_search_type_filter .trx_addons_woocommerce_search_form_fields_wrap {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-justify-content: space-between;
-ms-flex-pack: space-between;
justify-content: space-between;
}
.trx_addons_woocommerce_tools .trx_addons_woocommerce_search_type_filter .trx_addons_woocommerce_search_form_fields_wrap .trx_addons_woocommerce_search_header {
order: 2;
}
.trx_addons_woocommerce_tools .trx_addons_woocommerce_search_type_filter .sc_form_field {
display: inline-block;
vertical-align: top;
margin: 0 1em 0 0;
}
.trx_addons_woocommerce_tools .trx_addons_woocommerce_search_type_filter .sc_form_field .sc_form_field_title:hover .sc_form_field_title_caption {
text-decoration: underline;
}
.trx_addons_woocommerce_tools .trx_addons_woocommerce_search_type_filter .sc_form_field .sc_form_field_selected_items {
display: none;
}
.trx_addons_woocommerce_tools .trx_addons_woocommerce_search_type_filter .sc_form_field .sc_form_field_wrap {
position: absolute;
z-index: 100;
top: 2em;
left: 0;
width: 18em;
height: auto;
background-color: #fff;
border: 1px solid #e0e2e5;
max-height: 21em;
overflow-x: hidden;
overflow-y: auto;
}
.sidebar .trx_addons_woocommerce_search_type_filter .trx_addons_woocommerce_search_header .trx_addons_woocommerce_search_clear_all {
padding: 0.75em 0;
border-bottom: 1px solid #9099a2;
}
.sidebar .trx_addons_woocommerce_search_type_filter .sc_form_field {
margin: 0;
border-bottom: 1px solid #9099a2; }
.sidebar .trx_addons_woocommerce_search_type_filter .sc_form_field:last-child {
border-bottom: none;
}
.sidebar .trx_addons_woocommerce_search_type_filter .sc_form_field .sc_form_field_title {
padding: 0.75em 0;
position: relative;
}
.sidebar .trx_addons_woocommerce_search_type_filter .sc_form_field .sc_form_field_title .sc_form_field_arrow {
position: absolute;
z-index: 1;
top: 0.75em;
right: 0;
margin-left: 0;
}
.sidebar .trx_addons_woocommerce_search_type_filter .sc_form_field .sc_form_field_wrap {
border: none;
background-color: transparent;
padding-left: 0;
padding-right: 0;
padding-top: 0;
}
.sidebar .trx_addons_woocommerce_search_type_filter .sc_form_field .trx_addons_search_buttons {
display: none;
}
.sidebar .trx_addons_woocommerce_search_type_filter.trx_addons_woocommerce_search_apply .trx_addons_woocommerce_search_button_show {
-webkit-position: sticky;
position: -webkit-sticky;
position: sticky;
z-index: 1;
bottom: 0;
}
.sidebar .trx_addons_woocommerce_search_type_filter.trx_addons_woocommerce_search_apply .trx_addons_woocommerce_search_form_fields_changed .trx_addons_woocommerce_search_button_show {
display: block;
} .trx_addons_woocommerce_search_type_form .trx_addons_woocommerce_search_last_text {
display: block;
margin-bottom: 1.3em;
} .trx_addons_woocommerce_search_type_inline {
font-size: 1.5em;
line-height: 1.7em;
}
.trx_addons_woocommerce_search_type_inline .trx_addons_woocommerce_search_form_options,
.trx_addons_woocommerce_search_type_inline .trx_addons_woocommerce_search_form_button {
display: inline-block;
vertical-align: top;
width: 80%;
}
.trx_addons_woocommerce_search_type_inline .trx_addons_woocommerce_search_form_button {
width: 20%;
text-align: right;
}
.trx_addons_woocommerce_search_type_inline .trx_addons_woocommerce_search_form_field input[type="text"],
.trx_addons_woocommerce_search_type_inline .trx_addons_woocommerce_search_form_field .trx_addons_woocommerce_search_form_field_label {
width: auto;
border: none;
border-bottom: 2px solid #e0e2e5;
background-color: transparent !important;
color: #9099a2;
padding: 0.2em;
margin: 0 0.3em;
-webkit-border-radius: 0 !important;
-ms-border-radius: 0 !important;
border-radius: 0 !important;
}
.trx_addons_woocommerce_search_type_inline .trx_addons_woocommerce_search_form_field input[type="text"] {
width: 4em;
text-align: center;
}
.trx_addons_woocommerce_search_type_inline .trx_addons_woocommerce_search_form_field .trx_addons_woocommerce_search_form_field_label {
cursor: pointer;
}
.trx_addons_woocommerce_search_type_inline .trx_addons_woocommerce_search_form_field_type_select {
position: relative;
}
.trx_addons_woocommerce_search_type_inline .trx_addons_woocommerce_search_form_field_list {
display: none;
position: absolute;
z-index: 10;
top: 2em;
left: 50%;
width: 240px;
height: auto;
font-size: 0.6667em;
line-height: 1.5em;
margin-left: -120px;
max-height: 280px;
overflow-y: auto;
overflow-x: hidden;
border: 1px solid #e0e2e5;
background-color: #f7f7f7;
padding: 0;
}
.trx_addons_woocommerce_search_type_inline .trx_addons_woocommerce_search_form_field_list li {
cursor: pointer;
display: block;
padding: 0.5em 1em;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
.trx_addons_woocommerce_search_type_inline .trx_addons_woocommerce_search_form_field_list li:before {
display: none;
} .trx_addons_woocommerce_title .entry-title {
margin: 0;
} .woocommerce .slider_container ul.products.slider-wrapper,
.woocommerce-page .slider_container ul.products.slider-wrapper {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-flex-wrap: nowrap;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
margin: 0;
}
.woocommerce .slider_container ul.products.slider-wrapper li.product,
.woocommerce-page .slider_container ul.products.slider-wrapper li.product {
width: 100%;
padding: 0;
}  .yith_magnifier_zoom_wrap .yith_magnifier_zoom_magnifier {
border-width: 1px;
margin-left: 4px;
}
.yith_magnifier_gallery li + li {
padding-left: 20px;
}
.yith_magnifier_gallery li a {
margin-left: 0;
margin-right: 0;
} .yith-wcqv-main {
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
padding: 3em;
} .woocommerce .product .summary .woo-social-buttons span.nocount > span,
.woocommerce .product .summary .woo-social-buttons span.hcount > span {
vertical-align: top;
} .elementor-products-grid ul.products.elementor-grid[class*="columns-"] li.product {
width: unset;
}.sc_testimonials_columns_wrap {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.sc_testimonials_slider .sc_testimonials_item,
.sc_testimonials_columns_wrap .sc_testimonials_item {
display: inline-block;
vertical-align: top;
width: 100%;
height: 100%;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
.sc_testimonials_slider .sc_testimonials_item {
margin-bottom: 0 !important;
}
.sc_testimonials {
position: relative;
}
.sc_testimonials_item_content {
text-align: center;
font-size: 1.1333em;
line-height: 1.8824em;
font-weight: 400;
font-style: normal;
}
.sc_testimonials [class*="column"] .sc_testimonials_item_content {
text-align: left;
font-size: 1em;
line-height: 1.4em;
}
.sc_testimonials_item_content:before {
content: '\e8b8';
font-family: "trx_addons_icons";
font-size: 1.5em;
line-height: 1.5em;
color: #efa758;
display: block;
margin-bottom: 0.6em;
}
.sc_testimonials_item_content p {
margin: 0;
}
.sc_testimonials_item_content p + p {
margin-top: 1em;
}
.sc_testimonials_item_author {
margin: 0.6em auto 0;
max-width: none;
padding: 1.5em 0.5em 1.5em 1.3em;
background-color: transparent;
color: #fff;
text-align: center;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
.sc_testimonials [class*="column"] .sc_testimonials_item_author {
text-align: left;
padding-left: 0;
}
.sc_testimonials_item_author_avatar,
.sc_testimonials_item_author_data {
display: inline-block;
vertical-align: middle;
}
.sc_testimonials_item_author_avatar {
overflow: hidden;
margin: 0 1.3em 0 0.6em;
width: 5em;
height: 5em;
-webkit-border-radius: 50%;
-ms-border-radius: 50%;
border-radius: 50%;
}
.sc_testimonials_avatar_with_initials {
position: relative;
background-color: #e7eaed;
color: #c3c3c3;
}
.sc_testimonials_avatar_with_initials .sc_testimonials_item_author_initials {
font-size: 2em;
line-height: 1em;
font-weight: bold;
position: absolute;
z-index: 1;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.sc_testimonials_item_author_data {
max-width: 50%;
}
.sc_testimonials_item_author_title {
margin: 0;
color: #fff;
font-size: 1.0667em;
font-style: italic;
letter-spacing: 0;
text-transform: none;
}
.sc_testimonials_item_author_title + .sc_testimonials_item_author_subtitle {
margin-top: 0.1em;
color: #ddd;
font-size: 0.9286em;
line-height: 1.3em;
}
.sc_testimonials_rating {
position: relative;
height: 1em;
font-size: 1.15em;
line-height: 1em;
display: inline-block;
vertical-align: middle;
}
.sc_testimonials_rating_stars_default {
opacity: 0.3;
}
.sc_testimonials_rating_stars_default,
.sc_testimonials_rating_stars_hover {
white-space: nowrap;
color: #ffe200;
}
.sc_testimonials_rating_stars_hover {
position: absolute;
z-index: 1;
top: 0;
left: 0;
-webkit-transition: width 0.3s ease;
-ms-transition: width 0.3s ease;
transition: width 0.3s ease;
overflow: hidden;
}
.sc_testimonials_rating_stars .sc_testimonials_rating_stars_hover {
-webkit-transition-duration: 1s;
-ms-transition-duration: 1s;
transition-duration: 1s;
-webkit-transition-delay: 0.5s;
-ms-transition-delay: 0.5s;
transition-delay: 0.5s;
}
.sc_testimonials_rating_star {
display: inline-block;
width: 1em;
}
.sc_testimonials_simple .sc_testimonials_item_author_data:before {
content: ' ';
width: 1px;
height: 1.5em;
margin: 1.3em auto;
background-color: #ddd;
display: inline-block;
vertical-align: middle;
}
.sc_testimonials_simple [class*="column"] .sc_testimonials_item_author_data {
border-left: 1px solid #ddd;
padding-left: 1.5em;
}
.sc_testimonials_simple [class*="column"] .sc_testimonials_item_author_data:before {
display: none;
}.sc_action_columns_wrap {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.sc_action_slider .sc_action_item,
.sc_action_columns_wrap .sc_action_item {
display: inline-block;
vertical-align: top;
width: 100%;
height: 100%;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
.sc_action_slider .sc_action_item {
margin-bottom: 0 !important;
}
.sc_action {
position: relative;
padding-top: 0.0001px;
}
.sc_action_item {
position: relative;
}
.sc_action_item_inner {
position: relative;
z-index: 2;
width: 100%;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
.sc_action_item .sc_action_item_icon:before {
display: none;
}
.sc_action_item_icon > span {
font-size: 3em;
line-height: 1em;
}
.sc_action_item_icon .sc_icon_type_svg svg,
.sc_action_item_icon .sc_icon_type_svg object {
width: 1em;
height: 1em;
}
.sc_action_item_icon,
.sc_action_item_image {
margin-bottom: 2em;
}
.sc_action_item_subtitle {
margin: 0;
line-height: 1.3em;
color: #efa758;
}
.sc_action_item_title {
margin: 0;
line-height: 1.3em;
}
.sc_action_item_subtitle + .sc_action_item_title {
margin-top: 0.2em;
}
.sc_action_item_date {
font-size: 1em;
line-height: 1.3em;
text-transform: uppercase;
border-top: 1px dotted #eee;
border-bottom: 1px dotted #eee;
padding: 0.8em 0;
}
.sc_action_item_description {
line-height: 1.3em;
color: #000;
font-style: italic;
letter-spacing: 0;
}
.sc_action_item_subtitle + .sc_action_item_description,
.sc_action_item_title + .sc_action_item_description,
.sc_action_item_date + .sc_action_item_description,
.sc_action_item_date + .sc_action_item_link {
margin-top: 1em;
}
.sc_action_item_description > span {
display: block;
}
.sc_action_item_description > span + span {
margin-top: 0.3em;
}
.sc_action_item_subtitle + .sc_action_item_link,
.sc_action_item_title + .sc_action_item_link,
.sc_action_item_description + .sc_action_item_link {
margin-top: 1em;
}
.sc_action_item_link {
display: inline-block;
padding: 0.5em 2em;
border: 2px solid #fff;
}
.sc_action_item_link:hover {
color: #fff;
}
.sc_action_item_link_over {
position: absolute;
z-index: 3;
top: 0;
left: 0;
right: 0;
bottom: 0;
padding: 0 !important;
border: none !important;
display: block !important;
background: none !important;
}
.sc_action_item_info {
font-size: 13px;
line-height: 1.3em;
font-weight: 400;
margin-top: 2em;
border-top: 1px dotted #eee;
padding: 1em 0 0;
letter-spacing: 0;
}
.sc_action_item.with_image {
position: relative;
text-align: center;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.sc_action_item.with_image .sc_action_item_inner {
padding: 2em;
} .sc_action_item_default .sc_action_item_subtitle {
font-size: 2em;
line-height: 1.2em;
}
.sc_action_item_default .sc_action_item_subtitle + .sc_action_item_title {
margin-top: 0;
}
.sc_action_item_default.with_image {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
min-height: 18em;
}
.sc_action_item_default.with_image:after {
content: ' ';
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
}
.sc_action_item_default.with_bg_color:after {
display: none;
}
.sc_action_item_default.with_image .sc_action_item_icon,
.sc_action_item_default.with_image .sc_action_item_title {
color: #fff;
}
.sc_action_item_default.with_image .sc_action_item_description,
.sc_action_item_default.with_image .sc_action_item_description strong,
.sc_action_item_default.with_image .sc_action_item_description b {
color: #ccc;
}
.sc_action_item_default.with_image .sc_action_item_date {
border-color: #fff;
color: #fff;
}
.sc_action_item_default.with_image .sc_action_item_info {
border-color: #fff;
color: #fff;
}
.sc_action_item_default.with_image.sc_action_item_tl,
.sc_action_item_default.with_image.sc_action_item_tc,
.sc_action_item_default.with_image.sc_action_item_tr {
-webkit-align-items: flex-start;
-ms-flex-align: start;
align-items: flex-start;
vertical-align: top;
}
.sc_action_item_default.with_image.sc_action_item_ml,
.sc_action_item_default.with_image.sc_action_item_mc,
.sc_action_item_default.with_image.sc_action_item_mr {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
vertical-align: middle;
}
.sc_action_item_default.with_image.sc_action_item_bl,
.sc_action_item_default.with_image.sc_action_item_bc,
.sc_action_item_default.with_image.sc_action_item_br {
-webkit-align-items: flex-end;
-ms-flex-align: end;
align-items: flex-end;
vertical-align: bottom;
}
.sc_action_item_default.sc_action_item_tl,
.sc_action_item_default.sc_action_item_ml,
.sc_action_item_default.sc_action_item_bl {
text-align: left;
}
.sc_action_item_default.sc_action_item_tc,
.sc_action_item_default.sc_action_item_mc,
.sc_action_item_default.sc_action_item_bc {
text-align: center;
}
.sc_action_item_default.sc_action_item_tr,
.sc_action_item_default.sc_action_item_mr,
.sc_action_item_default.sc_action_item_br {
text-align: right;
} .sc_action_item_simple.with_image:after {
content: ' ';
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
}
.sc_action_item_simple.with_bg_color:after {
display: none;
}
.sc_action_item_simple.with_image .sc_action_item_icon,
.sc_action_item_simple.with_image .sc_action_item_title {
color: #fff;
}
.sc_action_item_simple.with_image .sc_action_item_description {
color: #ccc;
}
.sc_action_item_simple.with_image .sc_action_item_date {
border-color: #fff;
}
.sc_action_item_simple.with_image .sc_action_item_info {
border-color: #fff;
}
.sc_action_item_simple .sc_action_item_icon > span {
display: inline-block;
font-size: 2em;
border: 2px solid #000;
color: #000;
width: 2em;
height: 2em;
line-height: 2em;
text-align: center;
-webkit-border-radius: 50%;
-ms-border-radius: 50%;
border-radius: 50%;
line-height: 1.9em;
}
.sc_action_item_simple .sc_action_item_icon svg {
width: 1em;
height: 1em;
margin-top: 0.2em;
fill: #000;
stroke: #000;
}
.sc_action_item_simple.with_image .sc_action_item_icon > span {
color: #fff;
border-color: #fff;
}
.sc_action_item_simple.with_image .sc_action_item_icon svg {
fill: #fff;
stroke: #fff;
border-color: #fff;
}
.sc_action_item_simple.sc_action_item_tl,
.sc_action_item_simple.sc_action_item_ml,
.sc_action_item_simple.sc_action_item_bl {
text-align: left;
}
.sc_action_item_simple.sc_action_item_tl .sc_action_item_icon, .sc_action_item_simple.sc_action_item_tl .sc_action_item_image,
.sc_action_item_simple.sc_action_item_ml .sc_action_item_icon, .sc_action_item_simple.sc_action_item_ml .sc_action_item_image,
.sc_action_item_simple.sc_action_item_bl .sc_action_item_icon, .sc_action_item_simple.sc_action_item_bl .sc_action_item_image {
float: left;
margin: 0 1.5em 0 0;
}
.sc_action_item_simple.sc_action_item_tc,
.sc_action_item_simple.sc_action_item_mc,
.sc_action_item_simple.sc_action_item_bc {
text-align: center;
}
.sc_action_item_simple.sc_action_item_tc .sc_action_item_icon, .sc_action_item_simple.sc_action_item_tc .sc_action_item_image,
.sc_action_item_simple.sc_action_item_mc .sc_action_item_icon, .sc_action_item_simple.sc_action_item_mc .sc_action_item_image,
.sc_action_item_simple.sc_action_item_bc .sc_action_item_icon, .sc_action_item_simple.sc_action_item_bc .sc_action_item_image {
text-align: center;
margin-bottom: 1.5em;
}
.sc_action_item_simple.sc_action_item_tr,
.sc_action_item_simple.sc_action_item_mr,
.sc_action_item_simple.sc_action_item_br {
text-align: right;
}
.sc_action_item_simple.sc_action_item_tr .sc_action_item_icon, .sc_action_item_simple.sc_action_item_tr .sc_action_item_image,
.sc_action_item_simple.sc_action_item_mr .sc_action_item_icon, .sc_action_item_simple.sc_action_item_mr .sc_action_item_image,
.sc_action_item_simple.sc_action_item_br .sc_action_item_icon, .sc_action_item_simple.sc_action_item_br .sc_action_item_image {
float: right;
margin: 0 0 0 1.5em;
} .sc_action_item_event.with_image {
overflow: hidden;
}
.sc_action_item_event.with_image .sc_action_item_inner {
width: 70%;
padding: 2.4em 2em;
margin: 15%;
background-color: #fff;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
-webkit-box-shadow: -5px 5px 20px 20px rgba(0, 0, 0, 0.2);
-ms-box-shadow: -5px 5px 20px 20px rgba(0, 0, 0, 0.2);
box-shadow: -5px 5px 20px 20px rgba(0, 0, 0, 0.2);
}
.sc_action_item_event .sc_action_item_title {
margin-top: 0;
margin-bottom: 0.3em;
}
.sc_action_item_event .sc_action_item_subtitle {
margin: 0;
}
.sc_action_item_event .sc_action_item_image + .sc_action_item_subtitle {
margin-top: 0.8em;
}
.sc_action_item_event .sc_action_item_link {
border: none;
background-color: #efa758;
color: #fff;
} .sc_action_item.with_image.sc_action_fixed_height,
.sc_action_item.with_image.trx_addons_stretch_height {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
.sc_action_item.with_image.sc_action_fixed_height:before,
.sc_action_item.with_image.trx_addons_stretch_height:before {
display: none;
}
.sc_action_item_event.with_image.sc_action_fixed_height .sc_action_item_inner,
.sc_action_item_event.with_image.trx_addons_stretch_height .sc_action_item_inner {
margin: 5em;
}
.sc_action_item.with_image.sc_action_fixed_height.sc_action_item_tl .sc_action_item_inner,
.sc_action_item.with_image.trx_addons_stretch_height.sc_action_item_tl .sc_action_item_inner,
.sc_action_item.with_image.sc_action_fixed_height.sc_action_item_ml .sc_action_item_inner,
.sc_action_item.with_image.trx_addons_stretch_height.sc_action_item_ml .sc_action_item_inner,
.sc_action_item.with_image.sc_action_fixed_height.sc_action_item_bl .sc_action_item_inner,
.sc_action_item.with_image.trx_addons_stretch_height.sc_action_item_bl .sc_action_item_inner {
-webkit-align-items: flex-start;
-ms-flex-align: start;
align-items: flex-start;
text-align: left;
}
.sc_action_item.with_image.sc_action_fixed_height.sc_action_item_tc .sc_action_item_inner,
.sc_action_item.with_image.trx_addons_stretch_height.sc_action_item_tc .sc_action_item_inner,
.sc_action_item.with_image.sc_action_fixed_height.sc_action_item_mc .sc_action_item_inner,
.sc_action_item.with_image.trx_addons_stretch_height.sc_action_item_mc .sc_action_item_inner,
.sc_action_item.with_image.sc_action_fixed_height.sc_action_item_bc .sc_action_item_inner,
.sc_action_item.with_image.trx_addons_stretch_height.sc_action_item_bc .sc_action_item_inner {
text-align: center;
}
.sc_action_item.with_image.sc_action_fixed_height.sc_action_item_tr .sc_action_item_inner,
.sc_action_item.with_image.trx_addons_stretch_height.sc_action_item_tr .sc_action_item_inner,
.sc_action_item.with_image.sc_action_fixed_height.sc_action_item_mr .sc_action_item_inner,
.sc_action_item.with_image.trx_addons_stretch_height.sc_action_item_mr .sc_action_item_inner,
.sc_action_item.with_image.sc_action_fixed_height.sc_action_item_br .sc_action_item_inner,
.sc_action_item.with_image.trx_addons_stretch_height.sc_action_item_br .sc_action_item_inner {
-webkit-align-items: flex-end;
-ms-flex-align: end;
align-items: flex-end;
text-align: right;
}
.sc_action_item.with_image.sc_action_fixed_height.sc_action_item_tl .sc_action_item_inner,
.sc_action_item.with_image.trx_addons_stretch_height.sc_action_item_tl .sc_action_item_inner,
.sc_action_item.with_image.sc_action_fixed_height.sc_action_item_tc .sc_action_item_inner,
.sc_action_item.with_image.trx_addons_stretch_height.sc_action_item_tc .sc_action_item_inner,
.sc_action_item.with_image.sc_action_fixed_height.sc_action_item_tr .sc_action_item_inner,
.sc_action_item.with_image.trx_addons_stretch_height.sc_action_item_tr .sc_action_item_inner {
-webkit-justify-content: flex-start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.sc_action_item.with_image.sc_action_fixed_height.sc_action_item_bl .sc_action_item_inner,
.sc_action_item.with_image.trx_addons_stretch_height.sc_action_item_bl .sc_action_item_inner,
.sc_action_item.with_image.sc_action_fixed_height.sc_action_item_bc .sc_action_item_inner,
.sc_action_item.with_image.trx_addons_stretch_height.sc_action_item_bc .sc_action_item_inner,
.sc_action_item.with_image.sc_action_fixed_height.sc_action_item_br .sc_action_item_inner,
.sc_action_item.with_image.trx_addons_stretch_height.sc_action_item_br .sc_action_item_inner {
-webkit-justify-content: flex-end;
-ms-flex-pack: end;
justify-content: flex-end;
}@font-face {
font-family: 'eg-font';
src: url(//www.clarkcraft.co.uk/wp-content/plugins/essential-grid/public/assets/font/fontello/fonts/egfont.eot?40874225);
src: url(//www.clarkcraft.co.uk/wp-content/plugins/essential-grid/public/assets/font/fontello/fonts/egfont.eot?40874225#iefix) format('embedded-opentype'),
url(//www.clarkcraft.co.uk/wp-content/plugins/essential-grid/public/assets/font/fontello/fonts/egfont.woff2?40874225) format('woff2'),
url(//www.clarkcraft.co.uk/wp-content/plugins/essential-grid/public/assets/font/fontello/fonts/egfont.woff?40874225) format('woff'),
url(//www.clarkcraft.co.uk/wp-content/plugins/essential-grid/public/assets/font/fontello/fonts/egfont.ttf?40874225) format('truetype'),
url(//www.clarkcraft.co.uk/wp-content/plugins/essential-grid/public/assets/font/fontello/fonts/egfont.svg?40874225#egfont) format('svg');
font-weight: normal;
font-style: normal;
}   .eg-icon-picture:before { content: '\e800'; } .eg-icon-trash:before { content: '\e801'; } .eg-icon-search:before { content: '\e802'; } .eg-icon-picture-1:before { content: '\e803'; } .eg-icon-layers-alt:before { content: '\e804'; } .eg-icon-video:before { content: '\e805'; } .eg-icon-arrows-ccw:before { content: '\e806'; } .eg-icon-magic:before { content: '\e807'; } .eg-icon-ccw:before { content: '\e808'; } .eg-icon-doc:before { content: '\e809'; } .eg-icon-cancel:before { content: '\e80a'; } .eg-icon-export:before { content: '\e80b'; } .eg-icon-list-add:before { content: '\e80c'; } .eg-icon-ok:before { content: '\e80d'; } .eg-icon-link:before { content: '\e80e'; } .eg-icon-info-circled:before { content: '\e80f'; } .eg-icon-check:before { content: '\e810'; } .eg-icon-ok-1:before { content: '\e811'; } .eg-icon-basket:before { content: '\e812'; } .eg-icon-folder:before { content: '\e813'; } .eg-icon-shuffle:before { content: '\e814'; } .eg-icon-tools:before { content: '\e815'; } .eg-icon-resize-full:before { content: '\e816'; } .eg-icon-left-dir:before { content: '\e817'; } .eg-icon-right-dir:before { content: '\e818'; } .eg-icon-left-open:before { content: '\e819'; } .eg-icon-right-open:before { content: '\e81a'; } .eg-icon-monitor:before { content: '\e81b'; } .eg-icon-droplet:before { content: '\e81c'; } .eg-icon-angle-right:before { content: '\e81d'; } .eg-icon-right-big:before { content: '\e81e'; } .eg-icon-left-big:before { content: '\e81f'; } .eg-icon-angle-left:before { content: '\e820'; } .eg-icon-back-in-time:before { content: '\e821'; } .eg-icon-left-open-mini:before { content: '\e822'; } .eg-icon-right-open-mini:before { content: '\e823'; } .eg-icon-left-open-big:before { content: '\e824'; } .eg-icon-right-open-big:before { content: '\e825'; } .eg-icon-right:before { content: '\e826'; } .eg-icon-arrow-combo:before { content: '\e827'; } .eg-icon-popup:before { content: '\e828'; } .eg-icon-palette:before { content: '\e829'; } .eg-icon-left-open-1:before { content: '\e82a'; } .eg-icon-right-open-1:before { content: '\e82b'; } .eg-icon-left-open-2:before { content: '\e82c'; } .eg-icon-right-open-2:before { content: '\e82d'; } .eg-icon-left-open-outline:before { content: '\e82e'; } .eg-icon-right-open-outline:before { content: '\e82f'; } .eg-icon-menu:before { content: '\e830'; } .eg-icon-pencil-1:before { content: '\e831'; } .eg-icon-cog:before { content: '\e832'; } .eg-icon-login:before { content: '\e833'; } .eg-icon-logout:before { content: '\e834'; } .eg-icon-up-hand:before { content: '\e835'; } .eg-icon-left:before { content: '\e836'; } .eg-icon-gamepad:before { content: '\e837'; } .eg-icon-down-dir:before { content: '\e838'; } .eg-icon-up-dir:before { content: '\e839'; } .eg-icon-equalizer:before { content: '\e83a'; } .eg-icon-down-open:before { content: '\e83b'; } .eg-icon-th-large:before { content: '\e83c'; } .eg-icon-th:before { content: '\e83d'; } .eg-icon-folder-1:before { content: '\e83e'; } .eg-icon-unlink:before { content: '\e83f'; } .eg-icon-link-ext:before { content: '\e840'; } .eg-icon-eye:before { content: '\e841'; } .eg-icon-eye-off:before { content: '\e842'; } .eg-icon-home:before { content: '\e843'; } .eg-icon-info:before { content: '\e844'; } .eg-icon-resize-full-alt:before { content: '\e845'; } .eg-icon-move:before { content: '\e846'; } .eg-icon-cog-alt:before { content: '\e847'; } .eg-icon-wrench:before { content: '\e848'; } .eg-icon-shuffle-1:before { content: '\e849'; } .eg-icon-ajust:before { content: '\e84a'; } .eg-icon-tint:before { content: '\e84b'; } .eg-icon-align-left:before { content: '\e84c'; } .eg-icon-align-center:before { content: '\e84d'; } .eg-icon-align-right:before { content: '\e84e'; } .eg-icon-text-height:before { content: '\e84f'; } .eg-icon-text-width:before { content: '\e850'; } .eg-icon-font:before { content: '\e851'; } .eg-icon-bold:before { content: '\e852'; } .eg-icon-chart-bar:before { content: '\e853'; } .eg-icon-sort-name-up:before { content: '\e854'; } .eg-icon-italic:before { content: '\e855'; } .eg-icon-lock:before { content: '\e856'; } .eg-icon-lock-open:before { content: '\e857'; } .eg-icon-music:before { content: '\e858'; } .eg-icon-videocam:before { content: '\e859'; } .eg-icon-camera:before { content: '\e85a'; } .eg-icon-camera-alt:before { content: '\e85b'; } .eg-icon-tag:before { content: '\e85c'; } .eg-icon-desktop:before { content: '\e85d'; } .eg-icon-laptop:before { content: '\e85e'; } .eg-icon-tablet:before { content: '\e85f'; } .eg-icon-mobile:before { content: '\e860'; } .eg-icon-align-justify:before { content: '\e861'; } .eg-icon-color-adjust:before { content: '\e862'; } .eg-icon-sort-alt-up:before { content: '\e863'; } .eg-icon-sort-alt-down:before { content: '\e864'; } .eg-icon-sort-name-down:before { content: '\e865'; } .eg-icon-indent-left:before { content: '\e866'; } .eg-icon-indent-right:before { content: '\e867'; } .eg-icon-mail:before { content: '\e868'; } .eg-icon-mail-alt:before { content: '\e869'; } .eg-icon-heart:before { content: '\e86a'; } .eg-icon-heart-empty:before { content: '\e86b'; } .eg-icon-star:before { content: '\e86c'; } .eg-icon-star-empty:before { content: '\e86d'; } .eg-icon-plus:before { content: '\e86e'; } .eg-icon-minus:before { content: '\e86f'; } .eg-icon-minus-circled:before { content: '\e870'; } .eg-icon-minus-squared:before { content: '\e871'; } .eg-icon-minus-squared-alt:before { content: '\e872'; } .eg-icon-export-1:before { content: '\e873'; } .eg-icon-forward:before { content: '\e874'; } .eg-icon-plus-squared:before { content: '\e875'; } .eg-icon-plus-circled:before { content: '\e876'; } .eg-icon-ok-circled2:before { content: '\e877'; } .eg-icon-ok-squared:before { content: '\e878'; } .eg-icon-user:before { content: '\e879'; } .eg-icon-male:before { content: '\e87a'; } .eg-icon-female:before { content: '\e87b'; } .eg-icon-basket-1:before { content: '\e87c'; } .eg-icon-calendar:before { content: '\e87d'; } .eg-icon-calendar-empty:before { content: '\e87e'; } .eg-icon-phone:before { content: '\e87f'; } .eg-icon-rss:before { content: '\e880'; } .eg-icon-rss-squared:before { content: '\e881'; } .eg-icon-folder-open-empty:before { content: '\e882'; } .eg-icon-folder-open:before { content: '\e883'; } .eg-icon-doc-inv:before { content: '\e884'; } .eg-icon-doc-text:before { content: '\e885'; } .eg-icon-print:before { content: '\e886'; } .eg-icon-thumbs-up:before { content: '\e887'; } .eg-icon-thumbs-up-alt:before { content: '\e888'; } .eg-icon-upload:before { content: '\e889'; } .eg-icon-download:before { content: '\e88a'; } .eg-icon-lightbulb:before { content: '\e88b'; } .eg-icon-play:before { content: '\e88c'; } .eg-icon-pause:before { content: '\e88d'; } .eg-icon-play-circled:before { content: '\e88e'; } .eg-icon-stop:before { content: '\e88f'; } .eg-icon-fast-fw:before { content: '\e890'; } .eg-icon-ccw-1:before { content: '\e891'; } .eg-icon-angle-double-left:before { content: '\e892'; } .eg-icon-angle-double-right:before { content: '\e893'; } .eg-icon-flight:before { content: '\e894'; } .eg-icon-sort:before { content: '\e895'; } .eg-icon-coffee:before { content: '\e896'; } .eg-icon-food:before { content: '\e897'; } .eg-icon-medkit:before { content: '\e898'; } .eg-icon-puzzle:before { content: '\e899'; } .eg-icon-apple:before { content: '\e89a'; } .eg-icon-facebook:before { content: '\e89b'; } .eg-icon-gplus:before { content: '\e89c'; } .eg-icon-vimeo-squared:before { content: '\e89d'; } .eg-icon-youtube-squared:before { content: '\e89e'; } .eg-icon-youtube:before { content: '\e89f'; } .eg-icon-tumblr:before { content: '\e8a0'; } .eg-icon-twitter:before { content: '\e8a1'; } .eg-icon-twitter-squared:before { content: '\e8a2'; } .eg-icon-level-down:before { content: '\e8a3'; } .eg-icon-level-up:before { content: '\e8a4'; } .eg-icon-back:before { content: '\e8a5'; } .eg-icon-reply:before { content: '\e8a6'; } .eg-icon-forward-1:before { content: '\e8a7'; } .eg-icon-reply-1:before { content: '\e8a8'; } .eg-icon-thumbs-up-1:before { content: '\e8a9'; } .eg-icon-thumbs-down:before { content: '\e8aa'; } .eg-icon-download-1:before { content: '\e8ab'; } .eg-icon-upload-1:before { content: '\e8ac'; } .eg-icon-paper-plane:before { content: '\e8ad'; } .eg-icon-brush:before { content: '\e8ae'; } .eg-icon-key:before { content: '\e8af'; } .eg-icon-clipboard:before { content: '\e8b0'; } .eg-icon-megaphone:before { content: '\e8b1'; } .eg-icon-flickr:before { content: '\e8b2'; } .eg-icon-github:before { content: '\e8b3'; } .eg-icon-github-circled:before { content: '\e8b4'; } .eg-icon-flickr-circled:before { content: '\e8b5'; } .eg-icon-vimeo:before { content: '\e8b6'; } .eg-icon-vimeo-circled:before { content: '\e8b7'; } .eg-icon-twitter-1:before { content: '\e8b8'; } .eg-icon-twitter-circled:before { content: '\e8b9'; } .eg-icon-facebook-1:before { content: '\e8ba'; } .eg-icon-facebook-circled:before { content: '\e8bb'; } .eg-icon-facebook-squared:before { content: '\e8bc'; } .eg-icon-gplus-1:before { content: '\e8bd'; } .eg-icon-gplus-circled:before { content: '\e8be'; } .eg-icon-pinterest:before { content: '\e8bf'; } .eg-icon-pinterest-circled:before { content: '\e8c0'; } .eg-icon-tumblr-1:before { content: '\e8c1'; } .eg-icon-tumblr-circled:before { content: '\e8c2'; } .eg-icon-linkedin:before { content: '\e8c3'; } .eg-icon-linkedin-circled:before { content: '\e8c4'; } .eg-icon-dribbble:before { content: '\e8c5'; } .eg-icon-dribbble-circled:before { content: '\e8c6'; } .eg-icon-picasa:before { content: '\e8c7'; } .eg-icon-rss-1:before { content: '\e8c8'; } .eg-icon-cw:before { content: '\e8c9'; } .eg-icon-soundcloud:before { content: '\e8ca'; } .eg-icon-gplus-squared:before { content: '\f0d4'; } .eg-icon-gplus-2:before { content: '\f0d5'; } .eg-icon-youtube-play:before { content: '\f16a'; } .eg-icon-instagram:before { content: '\f16d'; } .eg-icon-telegram:before { content: '\f2c6'; }.esg-line-height-0{line-height:0}.esg-text-left{text-align:left}.esg-text-right{text-align:right}.esg-text-center{text-align:center}.esg-font-normal{font-style:normal}.esg-font-italic{font-style:italic}.esg-display-none{display:none}.esg-display-block{display:block}.esg-display-inline-block{display:inline-block}.esg-display-inline{display:inline}.esg-display-none-i{display:none!important}.esg-display-block-i{display:block!important}.esg-display-inline-block-i{display:inline-block!important}.esg-display-inline-i{display:inline!important}.esg-overflow-hidden{overflow:hidden}.esg-hidden{visibility:hidden}.esg-visible{visibility:visible}.esg-p-absolute{position:absolute}.esg-p-relative{position:relative}.esg-margin-0{margin:0}.esg-margin-t-0{margin-top:0}.esg-margin-b-0{margin-bottom:0}.esg-margin-l-0{margin-left:0}.esg-margin-r-0{margin-right:0}.esg-margin-5{margin:5px}.esg-margin-t-5{margin-top:5px}.esg-margin-b-5{margin-bottom:5px}.esg-margin-l-5{margin-left:5px}.esg-margin-r-5{margin-right:5px}.esg-margin-10{margin:10px}.esg-margin-t-10{margin-top:10px}.esg-margin-b-10{margin-bottom:10px}.esg-margin-l-10{margin-left:10px}.esg-margin-r-10{margin-right:10px}.esg-margin-15{margin:15px}.esg-margin-t-15{margin-top:15px}.esg-margin-b-15{margin-bottom:15px}.esg-margin-l-15{margin-left:15px}.esg-margin-r-15{margin-right:15px}.esg-padding-0{padding:0}.esg-padding-t-0{padding-top:0}.esg-padding-b-0{padding-bottom:0}.esg-padding-l-0{padding-left:0}.esg-padding-r-0{padding-right:0}.esg-padding-15{padding:15px}.esg-padding-t-15{padding-top:15px}.esg-padding-b-15{padding-bottom:15px}.esg-padding-l-15{padding-left:15px}.esg-padding-r-15{padding-right:15px}.esg-f-left{float:left!important}.esg-f-right{float:right!important}.esg-f-none{float:none!important}.esg-color-black{color:#000}.esg-color-white{color:#fff}.esg-color-red{color:red}.esg-color-green{color:green}.esg-color-blue{color:#00f}.esg-w100{width:100%}.esg-w100-hauto{width:100%;height:auto}.esg-fullscreen-forcer{position:relative;left:0;top:0;width:100%;height:auto}.esg-iframe{position:absolute;top:0;left:0;display:none}.esg-clearfix:after,.esg-clearfix:before{content:" ";display:table}.esg-clearfix:after{clear:both}.esg-starring{line-height:25px;display:inline-block}.esg-starring .star-rating{float:none}.esg-starring .star-rating{color:#ffc321!important}.esg-starring .star-rating,.esg-starring-page .star-rating{float:right;overflow:hidden;position:relative;height:1em;line-height:1em;font-size:1em;width:5.4em;font-family:star}.esg-starring .star-rating:before,.esg-starring-page .star-rating:before{content:"\73\73\73\73\73";color:#e0dadf;float:left;top:0;left:0;position:absolute}.esg-starring .star-rating span{overflow:hidden;float:left;top:0;left:0;position:absolute;padding-top:1.5em}.esg-starring .star-rating span:before{content:"\53\53\53\53\53";top:0;position:absolute;left:0}.esg-starring .star-rating{color:#ffc321!important}.lazyloadcover{position:absolute;top:0;left:0;z-index:10;width:100%;height:100%}.esg-lazyblur{background-repeat:no-repeat;filter:blur(25px);background-size:cover;background-position:center center;width:100%;height:100%;top:0;left:0;overflow:hidden}.esg-media-poster{width:100%;height:100%;position:absolute;top:0;left:0;background-size:cover;background-position:center center;z-index:10;opacity:0}.esg-video-active .esg-media-poster{z-index:0}.esg-vimeo-frame{background:#000}.esg-grid .no-filter-message{position:absolute;bottom:0;left:0;width:100%;text-align:center;pointer-events:none;visibility:hidden;opacity:0;transition:all .2s ease}.esg-grid .esg-loadmore-wrapper{overflow-x:hidden}.esg-grid .esg-loadmore-wrapper+.no-filter-message{position:relative;display:block;text-align:center}.esg-grid.show-message .no-filter-message{transition-duration:1s;visibility:visible;opacity:1}.esg-hover-image{display:none}.esg-media-poster .esg-hover-image{display:block;width:inherit;height:inherit;background-size:inherit;background-position:inherit;visibility:hidden;opacity:0}.esg-starring .star-rating,.esg-starring-page .star-rating{line-height:1em;font-size:1em;font-family:star}.esg-grid{width:100%;max-width:100%;font-family:'Open Sans',sans-serif;backface-visibility:hidden;transform:translateZ(0)}@-moz-document url-prefix(){.esg-grid{transform:none!important}}.esg-grid .mainul,.esg-grid .mainul>li{list-style:none;margin:0;padding:0;transform-style:flat!important}.esg-grid *{-webkit-font-smoothing:antialiased}.esg-grid li,.esg-grid ul{list-style:none;margin:0;padding:0;transform-style:flat!important}.esg-overflowtrick{position:relative;width:100%;height:auto;overflow:hidden;padding:0;box-sizing:border-box;z-index:1}.esg-overflowtrick+.esg-filters:not(.esg-navbutton-solo-left):not(.esg-navbutton-solo-right){z-index:0!important}.esg-grid-wrap-container *{box-sizing:border-box}.esg-container{position:relative;width:100%;height:auto}.esg-container>ul,.esg-overflowtrick>ul{width:100%;max-width:100%;height:0;position:relative;overflow:visible}.esg-grid li{border:0 solid transparent;outline:0 solid transparent;visibility:hidden;display:none}.esg-grid a{border:none;text-decoration:none}.esg-grid a:focus,.esg-grid a:hover{text-decoration:none;border:none}.esg-clear{clear:both;height:5px!important;background:0 0!important}.eg-clearfix,.esg-clear-no-height{clear:both;height:0!important;background:0 0!important}.esg-line-break{height:5px;visibility:hidden}.esg-divide-5{width:100%;height:5px}.esg-divide-15{width:100%;height:15px}.esg-divide-20{width:100%;height:20px}.esg-divide-22{width:100%;height:22px}.esg-divide-30{width:100%;height:30px}.esg-click-to-play-video{cursor:pointer}.esg-entry-media iframe{-webkit-transform-style:flat;transform:translateZ(1000px);border:0}.esg-container .tp-esg-item{position:absolute;top:0;left:0}.esg-container .tp-esg-item{box-sizing:border-box}.esg-container .tp-esg-item .blackoverlay{width:100%;height:100%;position:absolute;background:#000;top:0;left:0}.tp-esg-item{z-index:5}.tp-esg-item.itemonotherpage{z-index:0;display:none}.esg-entry-cover{box-sizing:border-box;width:100%;height:100%;position:absolute;top:0;left:0;overflow:hidden;border:0 solid transparent;outline:0 solid transparent}.eec{display:block;width:auto;height:auto;position:absolute!important;font-size:20px;text-align:center}.esg-entry-cover>.eec{z-index:2;pointer-events:none}.esg-entry-cover>.eec>*{pointer-events:all}.esg-tc{top:0;left:0;width:100%}.esg-lc{top:0;left:0;height:100%}.esg-cc{top:0;left:0;width:100%;vertical-align:middle}.esg-rc{top:0;right:0;height:100%}.esg-bc{bottom:0;left:0;width:100%}.esg-tc .ess-tb-cell{text-align:center;vertical-align:top}.esg-lc .ess-tb-cell{text-align:left;vertical-align:middle}.esg-rc .ess-tb-cell{text-align:right;vertical-align:middle}.esg-blc .ess-tb-cell{text-align:left;vertical-align:bottom}.esg-bc .ess-tb-cell{text-align:center;vertical-align:bottom}.esg-brc .ess-tb-cell{text-align:right;vertical-align:bottom}.esg-bc .leftalign{text-align:left}.esg-entry-media{position:relative;border:0 solid transparent;outline:0 solid transparent;overflow:hidden}.esg-entry-media{width:100%}.esg-entry-media img{width:100%;height:auto;max-width:none!important;min-width:auto!important}.esg-layout-masonry .esg-entry-media img{line-height:0;vertical-align:bottom;display:inline-block}.esg-layout-even .esg-entry-media img{display:none}.esg-media-cover-wrapper{position:relative;width:100%;backface-visibility:hidden}.esg-layout-even .esg-media-cover-wrapper{height:100%}.esg-entry-media-wrapper{z-index:0}.esg-entry-media-wrapper-even{width:100%;height:100%;overflow:hidden;position:relative}.esg-entry-media-wrapper-not-even{overflow:hidden;position:relative}.esg-entry-media-wrapper .esg-video-frame{background:#000}.esg-entry-media-wrapper-item-layout{width:100%;height:100%;position:absolute;overflow:hidden}.esg-entry-cover .esg-overlay{position:absolute;top:0;left:0;width:100%;height:100%;border:0 solid transparent;outline:0 solid transparent}.esg-layout-even .esg-entry-content{display:none}.esg-entry-content{box-sizing:border-box;-webkit-backface-visibility:hidden}.esg-filters,.esg-pagination,.navigationbuttons{position:relative;z-index:50;-webkit-backface-visibility:hidden}.esg-grid .esg-pagination{z-index:100;-webkit-backface-visibility:hidden}.esg-nav-by-shortcode .esg-sortbutton-order .tp-desc,.esg-nav-by-shortcode .esg-sortbutton-order.eg-icon-down-open.tp-asc,.esg-sortbutton-order .tp-desc,.esg-sortbutton-order.eg-icon-down-open.tp-asc{text-align:center}.esg-nav-by-shortcode{box-sizing:border-box;position:relative;display:inline-block;vertical-align:top;text-align:center}.esg-nav-by-shortcode .esg-navbutton-solo-left,.esg-nav-by-shortcode .esg-navbutton-solo-right{position:relative;left:auto;right:auto;top:auto;bottom:auto}.esg-nav-by-shortcode .esg-filter-wrapper{visibility:visible}.esg-singlefilters .esg-filter-checked{display:none;-webkit-backface-visibility:hidden}.esg-filter-wrapper{display:inline-block}.esg-sortbutton-wrapper{display:inline-block}.esg-cartbutton-wrapper{display:inline-block}.esg-filter-wrapper.dropdownstyle{min-width:100px;cursor:pointer;position:relative;z-index:1500;-webkit-backface-visibility:hidden;transform:translateZ(1px)}.esg-filter-wrapper.dropdownstyle.esg-skin-preview{z-index:1570;visibility:visible}.esg-filter-wrapper.dropdownstyle .esg-filterbutton{display:block;margin-right:0;margin-bottom:5px}.esg-filter-wrapper.dropdownstyle .esg-filter-checked{margin-right:5px;margin-left:0}.esg-dropdown-wrapper{display:none;position:absolute;padding:20px;top:100%;backface-visibility:hidden;transform:translateZ(10px)}.esg-selected-filterbutton{color:#999;margin-right:5px;cursor:pointer;padding:0 15px 0 10px;line-height:20px;font-size:12px;font-weight:600;font-family:"Open Sans",sans-serif;display:inline-block;background:rgba(0,0,0,0);margin-bottom:5px;width:100%}.esg-selected-filterbutton.hovered{color:#444}.esg-selected-filterbutton .eg-icon-down-open{display:inline-block;vertical-align:top;width:29px;line-height:inherit;font-size:9px;font-weight:700;color:#999;background:rgba(0,0,0,0);text-align:center}.esg-sortbutton-order.tp-desc{transform:scaleY(-1)}.esg-sorting-select{cursor:pointer;position:absolute;top:0;left:0;width:100%;height:100%;opacity:0;-webkit-appearance:menulist-button}.esg-filters.esg-navbutton-solo-left{position:absolute;left:0;top:50%;z-index:800}.esg-filters.esg-navbutton-solo-right{position:absolute;right:0;top:50%;z-index:800}.esg-navigationbutton.esg-left,.esg-navigationbutton.esg-right{margin-left:0!important;margin-right:0!important;-webkit-transform-style:flat;transform:translateZ(5000px)}.eg-leftright-container{float:left;width:310px;margin-right:20px;box-sizing:border-box;position:relative}.eg-leftright-container.dark{background:#1e1e1e}.eg-leftright-container .pagination{position:absolute;bottom:0}.eg-leftright-container .esg-filters{padding:30px;box-sizing:border-box}.eg-leftright-container .esg-filterbutton{display:block;margin:0 0 5px 0}.eg-leftright-container .esg-filter-wrapper{display:block;margin-right:0}.eg-ajaxtarget-container{position:relative;width:100%;height:auto}.eg-ajaxanimwrapper{position:relative;overflow:hidden}.tp-esg-item .add_to_cart_button.loading:before{content:"";position:absolute;top:0;right:0;left:0;bottom:0;background:url(//www.clarkcraft.co.uk/wp-content/plugins/essential-grid/public/assets/images/ajax-loader.gif) center no-repeat rgba(255,255,255,.65)}.esg-loader{top:50%;left:50%;z-index:10000;position:absolute}.infinityscollavailable.esg-loader{position:relative;top:auto;left:50%;margin-top:25px!important;margin-bottom:25px!important}.esg-loader.spinner0{width:40px;height:40px;background:#fff url(//www.clarkcraft.co.uk/wp-content/plugins/essential-grid/public/assets/images/loader.gif) no-repeat center center;box-shadow:0 0 20px 0 rgba(0,0,0,.15);-webkit-box-shadow:0 0 20px 0 rgba(0,0,0,.15);margin-left:-20px;-webkit-animation:esg-rotateplane 1.2s infinite ease-in-out;animation:esg-rotateplane 1.2s infinite ease-in-out;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px}.esg-loader.spinner1{width:40px;height:40px;background-color:#fff;box-shadow:0 0 20px 0 rgba(0,0,0,.15);-webkit-box-shadow:0 0 20px 0 rgba(0,0,0,.15);margin-left:-20px;-webkit-animation:esg-rotateplane 1.2s infinite ease-in-out;animation:esg-rotateplane 1.2s infinite ease-in-out;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px}.esg-loader.spinner5{background:#fff url(//www.clarkcraft.co.uk/wp-content/plugins/essential-grid/public/assets/images/loader.gif) no-repeat 10px 10px;margin:-22px -22px;width:44px;height:44px;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px}@keyframes esg-rotateplane{0%{transform:perspective(120px) rotateX(0) rotateY(0)}50%{transform:perspective(120px) rotateX(-180.1deg) rotateY(0)}100%{transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg)}}.esg-loader.spinner2{width:40px;height:40px;margin-left:-20px;background-color:red;box-shadow:0 0 20px 0 rgba(0,0,0,.15);-webkit-box-shadow:0 0 20px 0 rgba(0,0,0,.15);border-radius:100%;-webkit-animation:esg-scaleout 1s infinite ease-in-out;animation:esg-scaleout 1s infinite ease-in-out}@keyframes esg-scaleout{0%{transform:scale(0)}100%{transform:scale(1);opacity:0}}.esg-loader.spinner3{margin:-9px 0 0 -35px;width:70px;text-align:center}.eg-search-wrapper .esg-loader.spinner3{margin-top:-30px!important}.simple-dark .eg-search-wrapper .esg-loader.spinner3,.simple-light .eg-search-wrapper .esg-loader.spinner3{margin-top:-25px!important}.text-dark .eg-search-wrapper .esg-loader.spinner3,.text-light .eg-search-wrapper .esg-loader.spinner3{margin-top:-22px!important}.esg-loader.spinner3 .bounce1,.esg-loader.spinner3 .bounce2,.esg-loader.spinner3 .bounce3{width:18px;height:18px;background-color:#fff;box-shadow:0 0 20px 0 rgba(0,0,0,.15);-webkit-box-shadow:0 0 20px 0 rgba(0,0,0,.15);border-radius:100%;display:inline-block;-webkit-animation:esg-bouncedelay 1.4s infinite ease-in-out;animation:esg-bouncedelay 1.4s infinite ease-in-out;-webkit-animation-fill-mode:both;animation-fill-mode:both}.esg-loader.spinner3 .bounce1{-webkit-animation-delay:-.32s;animation-delay:-.32s}.esg-loader.spinner3 .bounce2{-webkit-animation-delay:-.16s;animation-delay:-.16s}@keyframes esg-bouncedelay{0%,100%,80%{transform:scale(0)}40%{transform:scale(1)}}.esg-loader.spinner4{margin:0 0 0 -20px;width:40px;height:40px;text-align:center;-webkit-animation:esg-rotate 2s infinite linear;animation:esg-rotate 2s infinite linear}.esg-loader.spinner4 .dot1,.esg-loader.spinner4 .dot2{width:60%;height:60%;display:inline-block;position:absolute;top:0;background-color:#fff;border-radius:100%;-webkit-animation:esg-bounce 2s infinite ease-in-out;animation:esg-bounce 2s infinite ease-in-out;box-shadow:0 0 20px 0 rgba(0,0,0,.15);-webkit-box-shadow:0 0 20px 0 rgba(0,0,0,.15)}.esg-loader.spinner4 .dot2{top:auto;bottom:0;-webkit-animation-delay:-1s;animation-delay:-1s}@keyframes esg-rotate{100%{transform:rotate(360deg)}}@keyframes esg-bounce{0%,100%{transform:scale(0)}50%{transform:scale(1)}}[class*=" eg-icon-"]:before,[class^=eg-icon-]:before{font-family:eg-font;font-style:normal;font-weight:400;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em}[class*=" fa-icon-"]:before,[class^=fa-icon-]:before{font-family:'Font Awesome 6 Free';font-style:normal;font-weight:400;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em}[class*=" fa-icon-brand-"]:before,[class^=fa-icon-brand-]:before{font-family:'Font Awesome 6 Brands'}.esg-grid [class*=" pe-7s-"]:before,.esg-grid [class^=pe-7s-]:before{font-family:Pe-icon-7-stroke;display:inline-block;font-style:normal;font-weight:400;speak:none;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em}.esg-cartbutton a,.esg-filter-wrapper .esg-filterbutton:last-child,.esg-selected-filterbutton{margin-right:0!important}.esg-singlefilters .esg-filter-checked{display:none!important}.eg-ajaxclicklistener{cursor:pointer}.eg-ajax-video-container{position:relative;padding-bottom:56.25%;padding-top:30px;height:0;overflow:hidden}.eg-ajax-video-container.widevideo{padding-bottom:50%}.eg-ajax-video-container embed,.eg-ajax-video-container iframe,.eg-ajax-video-container object{position:absolute;top:0;left:0;width:100%;height:100%}.forcenotvisible{visibility:hidden!important}.forcenotdisplay{display:none!important}.eg-search-input,input.eg-search-input[type=text]{display:inline-block}.eg-search-clean,.eg-search-submit{display:inline-block;width:auto;user-select:none;text-align:center;vertical-align:top}.eg-search-clean,.eg-search-submit{cursor:pointer}.eg-search-wrapper{vertical-align:top;line-height:40px}input.eg-search-input[type=text]{font-family:"Open Sans",sans-serif;outline:0!important;margin:0 0 5px!important;padding:8px 15px;vertical-align:top;box-sizing:border-box}.eg-ajax-closer-wrapper{display:block;z-index:51000;position:relative}.eg-ajax-navbt{cursor:pointer;display:inline-block;margin-right:5px}.eg-acp-inner.eg-acp-br .eg-ajax-closer.eg-ajax-navbt,.eg-acp-inner.eg-acp-tr .eg-ajax-closer.eg-ajax-navbt{margin-right:0}.eg-ajax-closer-wrapper.eg-acp-bl,.eg-ajax-closer-wrapper.eg-acp-tl{text-align:left}.eg-ajax-closer-wrapper.eg-acp-br,.eg-ajax-closer-wrapper.eg-acp-tr{text-align:right}.eg-ajax-closer-wrapper.eg-acp-b,.eg-ajax-closer-wrapper.eg-acp-t{text-align:center}.eg-ajax-closer-wrapper.eg-acp-t,.eg-ajax-closer-wrapper.eg-acp-tl,.eg-ajax-closer-wrapper.eg-acp-tr{margin-bottom:5px}.eg-ajax-closer-wrapper.eg-acp-b,.eg-ajax-closer-wrapper.eg-acp-bl,.eg-ajax-closer-wrapper.eg-acp-br{margin-top:5px}.eg-acp-inner{display:block;position:absolute;z-index:50;margin:5px}.eg-acp-inner.eg-acp-t,.eg-acp-inner.eg-acp-tl,.eg-acp-inner.eg-acp-tr{top:0}.eg-acp-inner.eg-acp-b,.eg-acp-inner.eg-acp-bl,.eg-acp-inner.eg-acp-br{bottom:0}.eg-acp-inner.eg-acp-bl,.eg-acp-inner.eg-acp-tl{left:0}.eg-acp-inner.eg-acp-br,.eg-acp-inner.eg-acp-tr{right:0}.eg-acp-inner.eg-acp-b,.eg-acp-inner.eg-acp-t{left:50%;transform:translateX(-50%)}.eg-ajax-navbt{line-height:21px;background:#000;background:rgba(0,0,0,.75);color:#fff;border-radius:2px;-moz-border-radius:2px;-webkit-border-radius:2px;text-transform:uppercase;padding:1px 1px 0 0;font-size:11px;font-weight:400}.eg-ajax-closer.eg-ajax-navbt{padding:1px 5px 1px 3px;vertical-align:top}.eg-acp-light .eg-ajax-navbt{background:#e5e5e5;color:#000}.eg-ajax-closer.eg-ajax-navbt i{font-size:13px}.eg-ajax-navbt i{font-size:16px}.eg-ajax-closer-wrapper.eg-acp-type1{margin:0}.eg-acp-type1 .eg-ajax-navbt{border-radius:0;-moz-border-radius:0;-webkit-border-radius:0;padding:10px;margin:0}.eg-acp-type1 .eg-ajax-navbt i{font-size:20px}.eg-acp-type1 .eg-ajax-navbt{width:40px;height:40px;text-align:center;vertical-align:middle!important;line-height:40px;padding:0}.eg-acp-type1 .eg-ajax-closer.eg-ajax-navbt{vertical-align:top;font-size:24px;font-weight:300;font-family:sans-serif;height:auto;line-height:28px;padding:8px 0 4px}span.eg-el-amount:before{content:"("}span.eg-el-amount:after{content:")"}span.eg-el-amount{margin-left:10px}.esg-dropdown-wrapper span.eg-el-amount{margin-left:5px}.esg-split-content .esg-entry-cover,.esg-split-content .esg-entry-media-wrapper{width:50%!important}.esg-split-content .esg-media-cover-wrapper:after{content:"";display:table;clear:both}.esg-split-right .esg-entry-cover,.esg-split-right .esg-entry-media-wrapper{float:right}.esg-split-left .esg-entry-cover,.esg-split-left .esg-entry-media-wrapper{float:left}.esg-split-content .esg-entry-media{height:100%!important}.esg-split-content .esg-entry-cover{position:relative!important}.esg-split-content .esg-entry-content{clear:both}.grayscale{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.esg-revealed .esg-itm-anime:not(.esg-anime-blur) .esg-overflowtrick{overflow:visible!important}.esg-revealed .esg-itm-anime .tp-esg-item{-webkit-mask-image:none!important}.esg-revealed .esg-itm-anime .tp-esg-item:hover{z-index:9999!important;transform:none!important}.esg-revealed .esg-anime-item:before{position:absolute;top:0;left:0;width:100%;height:100%;content:""}.eg-invisiblebutton{box-shadow:none!important;height:inherit!important;display:block!important;font-size:0}.esg-media-cover-wrapper>.eg-invisiblebutton{position:absolute;top:0;left:0;right:0;bottom:0;z-index:1}.esg-entry-cover>.eg-invisiblebutton{position:relative;z-index:1}.esg-lb-dummy{max-width:none!important;box-shadow:none!important;position:absolute;display:none}@media screen and (max-width:736px){.eg-lightbox-post-content-inner>div{width:100%!important;float:none!important}.eg-lightbox-post-content-inner .esg-post-featured-img{padding:30px 0!important}}.esgbox-stage .esgbox-slide>:not(.esgbox-share){margin:0;padding:0}.esgbox-stage .esgbox-slide>.esgbox-loading{margin-top:-30px;margin-left:-30px}.esgbox-toolbar .esgbox-button{transition:background .2s ease-out}.esgbox-toolbar .esgbox-button:active,.esgbox-toolbar .esgbox-button:focus,.esgbox-toolbar .esgbox-button:visited{background:rgba(30,30,30,.6)}.esgbox-toolbar .esgbox-button:hover{background:#000}.esgbox-navigation .esgbox-button:before{transition:background .2s ease-out}.esgbox-navigation .esgbox-button:active:before,.esgbox-navigation .esgbox-button:focus:before,.esgbox-navigation .esgbox-button:visited:before,.esgbox-navigation .esgbox-button[disabled]:hover:before,.esgbox-toolbar .esgbox-button[disabled]:hover{background:rgba(0,0,0,.6)}.esgbox-navigation .esgbox-button:hover:before{background:rgba(0,0,0,.6)}.esgbox-hidearrows .esgbox-navigation .esgbox-button--arrow_left,.esgbox-hidearrows .esgbox-navigation .esgbox-button--arrow_right{display:none!important}.esgbox-single .esgbox-button--arrow_left,.esgbox-single .esgbox-button--arrow_right{display:none!important}.esgbox-slide--video iframe{width:100%!important;height:100%!important;max-width:100%;max-height:100%}.esg-four-by-three .esgbox-slide--video iframe{width:800px;height:600px}.esgbox-container .esgbox-button--arrow_left:focus,.esgbox-container .esgbox-button--arrow_left:hover,.esgbox-container .esgbox-button--arrow_right:focus,.esgbox-container .esgbox-button--arrow_right:hover{background:rgba(0,0,0,.6)}.esg-filter-wrapper{visibility:hidden}.esg-mobile-filter-button{display:none}.esg-filter-wrapper.dropdownstyle .esg-mobile-filter-button{display:inline-block}.esg-mobile-filter-wrap{visibility:visible}.esg-mobile-filter-wrap .esg-dropdown-wrapper{display:none!important;visibility:hidden!important}.eg-esgblankskin-wrapper *{visibility:hidden!important}.eg-item-in-focus{z-index:999!important}.esg-cover-overflow{overflow:hidden}.esg-transition[data-transition^=esg-collapse]{overflow:hidden}.esg-transition[data-transition^=esg-collapse]:after,.esg-transition[data-transition^=esg-collapse]:before{position:absolute;content:""}.esg-transition[data-transition^=esg-collapsevertical]:after,.esg-transition[data-transition^=esg-collapsevertical]:before{width:100%;height:0;left:0}.esg-transition[data-transition^=esg-collapsevertical]:before{top:0}.esg-transition[data-transition^=esg-collapsevertical]:after{bottom:0}.esg-transition[data-transition=esg-collapseverticalout]:after,.esg-transition[data-transition=esg-collapseverticalout]:before{height:50%}.esg-transition[data-transition^=esg-collapsehorizontal]:after,.esg-transition[data-transition^=esg-collapsehorizontal]:before{width:0;height:100%;top:0}.esg-transition[data-transition^=esg-collapsehorizontal]:before{left:0}.esg-transition[data-transition^=esg-collapsehorizontal]:after{right:0}.esg-transition[data-transition=esg-collapsehorizontalout]:before{width:50%}.esg-transition[data-transition=esg-collapsehorizontalout]:after{width:50%}.esg-hovered .esg-transition[data-transition=esg-collapsevertical]:after,.esg-hovered .esg-transition[data-transition=esg-collapsevertical]:before{height:50%}.esg-hovered .esg-transition[data-transition=esg-collapseverticalout]:after,.esg-hovered .esg-transition[data-transition=esg-collapseverticalout]:before{height:0}.esg-hovered .esg-transition[data-transition=esg-collapsehorizontal]:after,.esg-hovered .esg-transition[data-transition=esg-collapsehorizontal]:before{width:50%}.esg-hovered .esg-transition[data-transition=esg-collapsehorizontalout]:after,.esg-hovered .esg-transition[data-transition=esg-collapsehorizontalout]:before{width:0}.esg-transition[data-transition^=esg-line]:after{content:"";position:absolute;width:70%;height:70%;top:15%;left:15%;background-size:100% 100%;background-repeat:no-repeat;background-position:center center}.esg-transition[data-transition=esg-linediagonal]:after,.esg-transition[data-transition=esg-linehorizontal]:after,.esg-transition[data-transition=esg-linevertical]:after{transform:scale(0)}.esg-hovered .esg-transition[data-transition^=esg-line]:after{transform:scale(1)}.esg-hovered .esg-transition[data-transition=esg-linediagonalout]:after,.esg-hovered .esg-transition[data-transition=esg-linehorizontalout]:after,.esg-hovered .esg-transition[data-transition=esg-lineverticalout]:after{transform:scale(0)}.esg-transition[data-transition^=esg-spiral]:after{content:"";position:absolute;top:50%;left:50%;width:100%;height:100%;box-sizing:border-box;padding-bottom:100%;background-size:contain;background-repeat:no-repeat;transform-origin:center;transform:translate(-50%,-50%) rotate(0) scale(0)}.esg-transition[data-transition=esg-spiralzoomout]:after{transform:translate(-50%,-50%) rotate(-300deg) scale(3)}.esg-hovered .esg-transition[data-transition=esg-spiralzoom]:after{transform:translate(-50%,-50%) rotate(-300deg) scale(3)}.esg-hovered .esg-transition[data-transition=esg-spiralzoomout]:after{transform:translate(-50%,-50%) rotate(0) scale(0)}.esg-transition[data-transition^=esg-circlezoom]:after,.esg-transition[data-transition^=esg-circlezoom]:before{content:"";position:absolute;width:150%;height:150%;padding-bottom:150%;top:50%;left:50%;transform:translate(-50%,-50%) scale(0,0);border-radius:50%;box-sizing:border-box}.esg-transition[data-transition=esg-circlezoomout]:after,.esg-transition[data-transition=esg-circlezoomout]:before{transform:translate(-50%,-50%) scale(1,1)}.esg-hovered .esg-transition[data-transition=esg-circlezoom]:after,.esg-hovered .esg-transition[data-transition=esg-circlezoom]:before{transform:translate(-50%,-50%) scale(1,1)}.esg-hovered .esg-transition[data-transition=esg-circlezoomout]:after,.esg-hovered .esg-transition[data-transition=esg-circlezoomout]:before{transform:translate(-50%,-50%) scale(0,0)}.esg-transition[data-transition^=esg-line]:before,.esg-transition[data-transition^=esg-spiral]:before{content:"";position:absolute;width:100%;height:100%;top:0;left:0;opacity:0}.esg-transition[data-transition=esg-linediagonalout]:before,.esg-transition[data-transition=esg-linehorizontalout]:before,.esg-transition[data-transition=esg-lineverticalout]:before,.esg-transition[data-transition=esg-spiralzoomout]:before{opacity:1}.esg-hovered .esg-transition[data-transition=esg-spiralzoom]:before,.esg-hovered .esg-transition[data-transition^=esg-line]:before{opacity:1}.esg-hovered .esg-transition[data-transition=esg-linediagonalout]:before,.esg-hovered .esg-transition[data-transition=esg-linehorizontalout]:before,.esg-hovered .esg-transition[data-transition=esg-lineverticalout]:before,.esg-hovered .esg-transition[data-transition=esg-spiralzoomout]:before{opacity:0}.esg-overlay.esg-cover-blend-multiply{mix-blend-mode:multiply}.esg-overlay.esg-cover-blend-screen{mix-blend-mode:screen}.esg-overlay.esg-cover-blend-overlay{mix-blend-mode:overlay}.esg-overlay.esg-cover-blend-darken{mix-blend-mode:darken}.esg-overlay.esg-cover-blend-lighten{mix-blend-mode:lighten}.esg-overlay.esg-cover-blend-color-dodge{mix-blend-mode:color-dodge}.esg-overlay.esg-cover-blend-color-burn{mix-blend-mode:color-burn}.esg-overlay.esg-cover-blend-hard-light{mix-blend-mode:hard-light}.esg-overlay.esg-cover-blend-soft-light{mix-blend-mode:soft-light}.esg-overlay.esg-cover-blend-difference{mix-blend-mode:difference}.esg-overlay.esg-cover-blend-exclusion{mix-blend-mode:exclusion}.esg-overlay.esg-cover-blend-hue{mix-blend-mode:hue}.esg-overlay.esg-cover-blend-saturation{mix-blend-mode:saturation}.esg-overlay.esg-cover-blend-color{mix-blend-mode:color}.esg-overlay.esg-cover-blend-luminosity{mix-blend-mode:luminosity}.source_type_stream .esg-filter-wrapper{display:none!important}[class*=" pe-7s-"]:before{font-family:Pe-icon-7-stroke}#esg_search_wrapper{height:auto;left:0;opacity:0;position:absolute;top:0;width:100%;z-index:20000}#esg_search_wrapper .esg-filter-wrapper,#esg_search_wrapper .esg-pagination{margin-left:0!important}#esg_big_search_wrapper{padding-top:0;position:relative}#esg_big_search_wrapper .bigsearchfield{-moz-border-bottom-colors:none!important;-moz-border-left-colors:none!important;-moz-border-right-colors:none!important;-moz-border-top-colors:none!important;background:none repeat scroll 0 0 rgba(255,255,255,0)!important;border:none!important;border-bottom:2px solid #333!important;color:#333!important;font-size:40px!important;font-weight:700;line-height:40px!important;padding:0!important;position:relative;width:100%;z-index:10;height:50px!important;border-radius:0!important;-webkit-border-radius:0!important;-moz-border-radius:0!important}#esg_big_search_wrapper::-ms-clear{display:none}#esg_big_search_wrapper .bigsearchfield::-ms-clear{display:none}#esg_big_search_fake_txt{background:none repeat scroll 0 0 rgba(255,255,255,0)!important;border:medium none!important;color:#333!important;font-size:40px!important;font-weight:700;line-height:40px!important;padding:0!important;position:absolute!important;top:7px!important;width:100%;z-index:5;height:50px!important}.esg_big_search_close{color:#333;cursor:pointer;font-size:40px;font-weight:400;position:absolute;right:30px;top:50px;z-index:20}.esg_searchresult_title{color:#333;font-size:11px;font-weight:700;letter-spacing:1px;margin-top:30px;text-transform:uppercase}#esg_search_bg{background:none repeat scroll 0 0 rgba(255,255,255,.85);height:100%;left:0;position:fixed;top:0;width:100%;z-index:19999}.esg_searchcontainer{box-sizing:border-box;padding:40px;position:relative;width:100%}.esg_searchresult{color:#333;font-size:17px;font-weight:600;line-height:26px}#esg_big_search_wrapper.dark .bigsearchfield{background:none repeat scroll 0 0 rgba(0,0,0,0)!important;border-bottom:2px solid #fff!important;color:#fff!important}.dark #esg_big_search_fake_txt{background:none repeat scroll 0 0 rgba(0,0,0,0)!important;color:#fff!important}.dark .esg_big_search_close{color:#fff}.dark .esg_searchresult_title{color:#fff}#esg_search_bg.dark{background:none repeat scroll 0 0 rgba(0,0,0,.85)}.dark .esg_searchresult{color:#fff}@font-face {
font-family: 'Metropolis Extra';
src: url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-ExtraLightItalic.woff2) format('woff2'),
url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-ExtraLightItalic.woff) format('woff');
font-weight: 200;
font-style: italic;
}
@font-face {
font-family: 'Metropolis';
src: url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-BoldItalic.woff2) format('woff2'),
url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-BoldItalic.woff) format('woff');
font-weight: bold;
font-style: italic;
}
@font-face {
font-family: 'Metropolis Extra';
src: url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-ExtraBoldItalic.woff2) format('woff2'),
url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-ExtraBoldItalic.woff) format('woff');
font-weight: 800;
font-style: italic;
}
@font-face {
font-family: 'Metropolis';
src: url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-Thin.woff2) format('woff2'),
url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-Thin.woff) format('woff');
font-weight: 100;
font-style: normal;
}
@font-face {
font-family: 'Metropolis';
src: url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-MediumItalic.woff2) format('woff2'),
url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-MediumItalic.woff) format('woff');
font-weight: 500;
font-style: italic;
}
@font-face {
font-family: 'Metropolis Semi';
src: url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-SemiBoldItalic.woff2) format('woff2'),
url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-SemiBoldItalic.woff) format('woff');
font-weight: 600;
font-style: italic;
}
@font-face {
font-family: 'Metropolis Extra';
src: url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-ExtraBold.woff2) format('woff2'),
url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-ExtraBold.woff) format('woff');
font-weight: 800;
font-style: normal;
}
@font-face {
font-family: 'Metropolis';
src: url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-BlackItalic.woff2) format('woff2'),
url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-BlackItalic.woff) format('woff');
font-weight: 900;
font-style: italic;
}
@font-face {
font-family: 'Metropolis';
src: url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-LightItalic.woff2) format('woff2'),
url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-LightItalic.woff) format('woff');
font-weight: 300;
font-style: italic;
}
@font-face {
font-family: 'Metropolis';
src: url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-Black.woff2) format('woff2'),
url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-Black.woff) format('woff');
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: 'Metropolis';
src: url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-Bold.woff2) format('woff2'),
url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-Bold.woff) format('woff');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'Metropolis';
src: url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-Regular.woff2) format('woff2'),
url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-Regular.woff) format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Metropolis';
src: url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-ThinItalic.woff2) format('woff2'),
url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-ThinItalic.woff) format('woff');
font-weight: 100;
font-style: italic;
}
@font-face {
font-family: 'Metropolis Semi';
src: url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-SemiBold.woff2) format('woff2'),
url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-SemiBold.woff) format('woff');
font-weight: 600;
font-style: normal;
}
@font-face {
font-family: 'Metropolis';
src: url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-Light.woff2) format('woff2'),
url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-Light.woff) format('woff');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Metropolis';
src: url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-Medium.woff2) format('woff2'),
url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-Medium.woff) format('woff');
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'Metropolis';
src: url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-RegularItalic.woff2) format('woff2'),
url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-RegularItalic.woff) format('woff');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'Metropolis Extra';
src: url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-ExtraLight.woff2) format('woff2'),
url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-ExtraLight.woff) format('woff');
font-weight: 200;
font-style: normal;
}
@font-face {
font-family: 'Metropolis Extra';
src: url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-ExtraLightItalic.woff2) format('woff2'),
url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-ExtraLightItalic.woff) format('woff');
font-weight: 200;
font-style: italic;
}
@font-face {
font-family: 'Metropolis';
src: url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-BoldItalic.woff2) format('woff2'),
url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-BoldItalic.woff) format('woff');
font-weight: bold;
font-style: italic;
}
@font-face {
font-family: 'Metropolis';
src: url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-RegularItalic.woff2) format('woff2'),
url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-RegularItalic.woff) format('woff');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'Metropolis';
src: url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-Medium.woff2) format('woff2'),
url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-Medium.woff) format('woff');
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'Metropolis Extra';
src: url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-ExtraLight.woff2) format('woff2'),
url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-ExtraLight.woff) format('woff');
font-weight: 200;
font-style: normal;
}
@font-face {
font-family: 'Metropolis';
src: url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-ThinItalic.woff2) format('woff2'),
url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-ThinItalic.woff) format('woff');
font-weight: 100;
font-style: italic;
}
@font-face {
font-family: 'Metropolis';
src: url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-MediumItalic.woff2) format('woff2'),
url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-MediumItalic.woff) format('woff');
font-weight: 500;
font-style: italic;
}
@font-face {
font-family: 'Metropolis Semi';
src: url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-SemiBold.woff2) format('woff2'),
url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-SemiBold.woff) format('woff');
font-weight: 600;
font-style: normal;
}
@font-face {
font-family: 'Metropolis';
src: url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-LightItalic.woff2) format('woff2'),
url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-LightItalic.woff) format('woff');
font-weight: 300;
font-style: italic;
}
@font-face {
font-family: 'Metropolis';
src: url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-Bold.woff2) format('woff2'),
url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-Bold.woff) format('woff');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'Metropolis';
src: url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-Regular.woff2) format('woff2'),
url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-Regular.woff) format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Metropolis Extra';
src: url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-ExtraBold.woff2) format('woff2'),
url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-ExtraBold.woff) format('woff');
font-weight: 800;
font-style: normal;
}
@font-face {
font-family: 'Metropolis Semi';
src: url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-SemiBoldItalic.woff2) format('woff2'),
url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-SemiBoldItalic.woff) format('woff');
font-weight: 600;
font-style: italic;
}
@font-face {
font-family: 'Metropolis';
src: url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-Light.woff2) format('woff2'),
url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-Light.woff) format('woff');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Metropolis';
src: url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-Black.woff2) format('woff2'),
url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-Black.woff) format('woff');
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: 'Metropolis Extra';
src: url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-ExtraBoldItalic.woff2) format('woff2'),
url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-ExtraBoldItalic.woff) format('woff');
font-weight: 800;
font-style: italic;
}
@font-face {
font-family: 'Metropolis';
src: url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-Thin.woff2) format('woff2'),
url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-Thin.woff) format('woff');
font-weight: 100;
font-style: normal;
}
@font-face {
font-family: 'Metropolis';
src: url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-BlackItalic.woff2) format('woff2'),
url(//www.clarkcraft.co.uk/wp-content/themes/craftis/skins/default/css/font-face/Metropolis/Metropolis-BlackItalic.woff) format('woff');
font-weight: 900;
font-style: italic;
}