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

 [data-animation^="animated"] {
visibility:hidden;
}
.animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
visibility:visible;
}
.animated.infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.animated.fast {
-webkit-animation-duration: 0.5s;
animation-duration: 0.5s;
}
.animated.slow {
-webkit-animation-duration: 2s;
animation-duration: 2s;
}
@-webkit-keyframes 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;
} @-webkit-keyframes pulse {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes pulse {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.pulse {
-webkit-animation-name: pulse;
animation-name: pulse;
}
@-webkit-keyframes rubberBand {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes rubberBand {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.rubberBand {
-webkit-animation-name: rubberBand;
animation-name: rubberBand;
}
@-webkit-keyframes shake {
0%, 100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
@keyframes shake {
0%, 100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
.shake {
-webkit-animation-name: shake;
animation-name: shake;
}
@-webkit-keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
100% {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
@keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
100% {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
.swing {
-webkit-transform-origin: top center;
-ms-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing;
}
@-webkit-keyframes tada {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%, 20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes tada {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%, 20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.tada {
-webkit-animation-name: tada;
animation-name: tada;
} @-webkit-keyframes wobble {
0% {
-webkit-transform: none;
transform: none;
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
100% {
-webkit-transform: none;
transform: none;
}
}
@keyframes wobble {
0% {
-webkit-transform: none;
transform: none;
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
100% {
-webkit-transform: none;
transform: none;
}
}
.wobble {
-webkit-animation-name: wobble;
animation-name: wobble;
}
@-webkit-keyframes bounceIn {
0%, 20%, 40%, 60%, 80%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
100% {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes bounceIn {
0%, 20%, 40%, 60%, 80%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
100% {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.bounceIn {
-webkit-animation-name: bounceIn;
animation-name: bounceIn;
-webkit-animation-duration: .75s;
animation-duration: .75s;
}
@-webkit-keyframes bounceInDown {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
100% {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInDown {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
100% {
-webkit-transform: none;
transform: none;
}
}
.bounceInDown {
-webkit-animation-name: bounceInDown;
animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
100% {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInLeft {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
100% {
-webkit-transform: none;
transform: none;
}
}
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
100% {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInRight {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
100% {
-webkit-transform: none;
transform: none;
}
}
.bounceInRight {
-webkit-animation-name: bounceInRight;
animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInUp {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.bounceInUp {
-webkit-animation-name: bounceInUp;
animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
}
@keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
}
.bounceOut {
-webkit-animation-name: bounceOut;
animation-name: bounceOut;
-webkit-animation-duration: .75s;
animation-duration: .75s;
}
@-webkit-keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.bounceOutDown {
-webkit-animation-name: bounceOutDown;
animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.bounceOutLeft {
-webkit-animation-name: bounceOutLeft;
animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.bounceOutRight {
-webkit-animation-name: bounceOutRight;
animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.bounceOutUp {
-webkit-animation-name: bounceOutUp;
animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
0% {opacity: 0;}
100% {opacity: 1;}
}
@keyframes fadeIn {
0% {opacity: 0;}
100% {opacity: 1;}
}
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
0% {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDownBig {
0% {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDownBig {
-webkit-animation-name: fadeInDownBig;
animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeft {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
0% {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeftBig {
0% {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeftBig {
-webkit-animation-name: fadeInLeftBig;
animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
0% {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRight {
0% {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
0% {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRightBig {
0% {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRightBig {
-webkit-animation-name: fadeInRightBig;
animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 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, 10px, 0);
transform: translate3d(0, 10px, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUpSmall {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 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, 10px, 0);
transform: translate3d(0, 10px, 0);
}
}
@keyframes fadeOutDownSmall {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 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 rollIn {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes rollIn {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.rollIn {
-webkit-animation-name: rollIn;
animation-name: rollIn;
} @-webkit-keyframes rollOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
@keyframes rollOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
.rollOut {
-webkit-animation-name: rollOut;
animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
@keyframes zoomIn {
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
.zoomIn {
-webkit-animation-name: zoomIn;
animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInDown {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInDown {
-webkit-animation-name: zoomInDown;
animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInLeft {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInLeft {
-webkit-animation-name: zoomInLeft;
animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInRight {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInRight {
-webkit-animation-name: zoomInRight;
animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInUp {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInUp {
-webkit-animation-name: zoomInUp;
animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
0% {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
100% {
opacity: 0;
}
}
@keyframes zoomOut {
0% {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
100% {
opacity: 0;
}
}
.zoomOut {
-webkit-animation-name: zoomOut;
animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutDown {
-webkit-animation-name: zoomOutDown;
animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
.zoomOutLeft {
-webkit-animation-name: zoomOutLeft;
animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
@keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
.zoomOutRight {
-webkit-animation-name: zoomOutRight;
animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutUp {
-webkit-animation-name: zoomOutUp;
animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
0% {
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
visibility: visible;
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes slideInDown {
0% {
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
visibility: visible;
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
.slideInDown {
-webkit-animation-name: slideInDown;
animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
0% {
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
visibility: visible;
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes slideInLeft {
0% {
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
visibility: visible;
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
.slideInLeft {
-webkit-animation-name: slideInLeft;
animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
0% {
-webkit-transform: translateX(100%);
transform: translateX(100%);
visibility: visible;
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes slideInRight {
0% {
-webkit-transform: translateX(100%);
transform: translateX(100%);
visibility: visible;
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
.slideInRight {
-webkit-animation-name: slideInRight;
animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
0% {
-webkit-transform: translateY(100%);
transform: translateY(100%);
visibility: visible;
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes slideInUp {
0% {
-webkit-transform: translateY(100%);
transform: translateY(100%);
visibility: visible;
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
.slideInUp {
-webkit-animation-name: slideInUp;
animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
visibility: hidden;
-webkit-transform: translateY(100%);
transform: translateY(100%);
}
}
@keyframes slideOutDown {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
visibility: hidden;
-webkit-transform: translateY(100%);
transform: translateY(100%);
}
}
.slideOutDown {
-webkit-animation-name: slideOutDown;
animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
visibility: hidden;
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
}
}
@keyframes slideOutLeft {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
visibility: hidden;
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
}
}
.slideOutLeft {
-webkit-animation-name: slideOutLeft;
animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
visibility: hidden;
-webkit-transform: translateX(100%);
transform: translateX(100%);
}
}
@keyframes slideOutRight {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
visibility: hidden;
-webkit-transform: translateX(100%);
transform: translateX(100%);
}
}
.slideOutRight {
-webkit-animation-name: slideOutRight;
animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
visibility: hidden;
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
}
}
@keyframes slideOutUp {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
visibility: hidden;
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
}
}
.slideOutUp {
-webkit-animation-name: slideOutUp;
animation-name: slideOutUp;
}
.animate-spin {
-moz-animation: spin 2s infinite linear;
-o-animation: spin 2s infinite linear;
-webkit-animation: spin 2s infinite linear;
animation: spin 2s infinite linear;
}
@-moz-keyframes spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@-webkit-keyframes spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@-o-keyframes spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@-ms-keyframes spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@keyframes spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}.mejs-offscreen{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal}.mejs-container{background:#000;font-family:Helvetica,Arial,serif;position:relative;text-align:left;text-indent:0;vertical-align:top}.mejs-container,.mejs-container *{box-sizing:border-box}.mejs-container video::-webkit-media-controls,.mejs-container video::-webkit-media-controls-panel,.mejs-container video::-webkit-media-controls-panel-container,.mejs-container video::-webkit-media-controls-start-playback-button{-webkit-appearance:none;display:none!important}.mejs-fill-container,.mejs-fill-container .mejs-container{height:100%;width:100%}.mejs-fill-container{background:transparent;margin:0 auto;overflow:hidden;position:relative}.mejs-container:focus{outline:none}.mejs-iframe-overlay{height:100%;position:absolute;width:100%}.mejs-embed,.mejs-embed body{background:#000;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.mejs-fullscreen{overflow:hidden!important}.mejs-container-fullscreen{bottom:0;left:0;overflow:hidden;position:fixed;right:0;top:0;z-index:1000}.mejs-container-fullscreen .mejs-mediaelement,.mejs-container-fullscreen video{height:100%!important;width:100%!important}.mejs-background,.mejs-mediaelement{left:0;position:absolute;top:0}.mejs-mediaelement{height:100%;width:100%;z-index:0}.mejs-poster{background-position:50% 50%;background-repeat:no-repeat;background-size:cover;left:0;position:absolute;top:0;z-index:1}:root .mejs-poster-img{display:none}.mejs-poster-img{border:0;padding:0}.mejs-overlay{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;left:0;position:absolute;top:0}.mejs-layer{z-index:1}.mejs-overlay-play{cursor:pointer}.mejs-overlay-button{background:url(//www.ljdivingtenerife.com/wp-includes/js/mediaelement/mejs-controls.svg) no-repeat;background-position:0 -39px;height:80px;width:80px}.mejs-overlay:hover>.mejs-overlay-button{background-position:-80px -39px}.mejs-overlay-loading{height:80px;width:80px}.mejs-overlay-loading-bg-img{-webkit-animation:a 1s linear infinite;animation:a 1s linear infinite;background:transparent url(//www.ljdivingtenerife.com/wp-includes/js/mediaelement/mejs-controls.svg) -160px -40px no-repeat;display:block;height:80px;width:80px;z-index:1}@-webkit-keyframes a{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes a{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.mejs-controls{bottom:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:40px;left:0;list-style-type:none;margin:0;padding:0 10px;position:absolute;width:100%;z-index:3}.mejs-controls:not([style*="display: none"]){background:rgba(255,0,0,.7);background:-webkit-linear-gradient(transparent,rgba(0,0,0,.35));background:linear-gradient(transparent,rgba(0,0,0,.35))}.mejs-button,.mejs-time,.mejs-time-rail{font-size:10px;height:40px;line-height:10px;margin:0;width:32px}.mejs-button>button{background:transparent url(//www.ljdivingtenerife.com/wp-includes/js/mediaelement/mejs-controls.svg);border:0;cursor:pointer;display:block;font-size:0;height:20px;line-height:0;margin:10px 6px;overflow:hidden;padding:0;position:absolute;text-decoration:none;width:20px}.mejs-button>button:focus{outline:1px dotted #999}.mejs-container-keyboard-inactive [role=slider],.mejs-container-keyboard-inactive [role=slider]:focus,.mejs-container-keyboard-inactive a,.mejs-container-keyboard-inactive a:focus,.mejs-container-keyboard-inactive button,.mejs-container-keyboard-inactive button:focus{outline:0}.mejs-time{box-sizing:content-box;color:#fff;font-size:11px;font-weight:700;height:24px;overflow:hidden;padding:16px 6px 0;text-align:center;width:auto}.mejs-play>button{background-position:0 0}.mejs-pause>button{background-position:-20px 0}.mejs-replay>button{background-position:-160px 0}.mejs-time-rail{direction:ltr;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;height:40px;margin:0 10px;padding-top:10px;position:relative}.mejs-time-buffering,.mejs-time-current,.mejs-time-float,.mejs-time-float-corner,.mejs-time-float-current,.mejs-time-hovered,.mejs-time-loaded,.mejs-time-marker,.mejs-time-total{border-radius:2px;cursor:pointer;display:block;height:10px;position:absolute}.mejs-time-total{background:hsla(0,0%,100%,.3);margin:5px 0 0;width:100%}.mejs-time-buffering{-webkit-animation:b 2s linear infinite;animation:b 2s linear infinite;background:-webkit-linear-gradient(135deg,hsla(0,0%,100%,.4) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.4) 0,hsla(0,0%,100%,.4) 75%,transparent 0,transparent);background:linear-gradient(-45deg,hsla(0,0%,100%,.4) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.4) 0,hsla(0,0%,100%,.4) 75%,transparent 0,transparent);background-size:15px 15px;width:100%}@-webkit-keyframes b{0%{background-position:0 0}to{background-position:30px 0}}@keyframes b{0%{background-position:0 0}to{background-position:30px 0}}.mejs-time-loaded{background:hsla(0,0%,100%,.3)}.mejs-time-current,.mejs-time-handle-content{background:hsla(0,0%,100%,.9)}.mejs-time-hovered{background:hsla(0,0%,100%,.5);z-index:10}.mejs-time-hovered.negative{background:rgba(0,0,0,.2)}.mejs-time-buffering,.mejs-time-current,.mejs-time-hovered,.mejs-time-loaded{left:0;-webkit-transform:scaleX(0);-ms-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;-webkit-transition:all .15s ease-in;transition:all .15s ease-in;width:100%}.mejs-time-buffering{-webkit-transform:scaleX(1);-ms-transform:scaleX(1);transform:scaleX(1)}.mejs-time-hovered{-webkit-transition:height .1s cubic-bezier(.44,0,1,1);transition:height .1s cubic-bezier(.44,0,1,1)}.mejs-time-hovered.no-hover{-webkit-transform:scaleX(0)!important;-ms-transform:scaleX(0)!important;transform:scaleX(0)!important}.mejs-time-handle,.mejs-time-handle-content{border:4px solid transparent;cursor:pointer;left:0;position:absolute;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);z-index:11}.mejs-time-handle-content{border:4px solid hsla(0,0%,100%,.9);border-radius:50%;height:10px;left:-7px;top:-4px;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);width:10px}.mejs-time-rail .mejs-time-handle-content:active,.mejs-time-rail .mejs-time-handle-content:focus,.mejs-time-rail:hover .mejs-time-handle-content{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.mejs-time-float{background:#eee;border:1px solid #333;bottom:100%;color:#111;display:none;height:17px;margin-bottom:9px;position:absolute;text-align:center;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:36px}.mejs-time-float-current{display:block;left:0;margin:2px;text-align:center;width:30px}.mejs-time-float-corner{border:5px solid #eee;border-color:#eee transparent transparent;border-radius:0;display:block;height:0;left:50%;line-height:0;position:absolute;top:100%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:0}.mejs-long-video .mejs-time-float{margin-left:-23px;width:64px}.mejs-long-video .mejs-time-float-current{width:60px}.mejs-broadcast{color:#fff;height:10px;position:absolute;top:15px;width:100%}.mejs-fullscreen-button>button{background-position:-80px 0}.mejs-unfullscreen>button{background-position:-100px 0}.mejs-mute>button{background-position:-60px 0}.mejs-unmute>button{background-position:-40px 0}.mejs-volume-button{position:relative}.mejs-volume-button>.mejs-volume-slider{-webkit-backface-visibility:hidden;background:rgba(50,50,50,.7);border-radius:0;bottom:100%;display:none;height:115px;left:50%;margin:0;position:absolute;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:25px;z-index:1}.mejs-volume-button:hover{border-radius:0 0 4px 4px}.mejs-volume-total{background:hsla(0,0%,100%,.5);height:100px;left:50%;margin:0;position:absolute;top:8px;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:2px}.mejs-volume-current{left:0;margin:0;width:100%}.mejs-volume-current,.mejs-volume-handle{background:hsla(0,0%,100%,.9);position:absolute}.mejs-volume-handle{border-radius:1px;cursor:ns-resize;height:6px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:16px}.mejs-horizontal-volume-slider{display:block;height:36px;position:relative;vertical-align:middle;width:56px}.mejs-horizontal-volume-total{background:rgba(50,50,50,.8);height:8px;top:16px;width:50px}.mejs-horizontal-volume-current,.mejs-horizontal-volume-total{border-radius:2px;font-size:1px;left:0;margin:0;padding:0;position:absolute}.mejs-horizontal-volume-current{background:hsla(0,0%,100%,.8);height:100%;top:0;width:100%}.mejs-horizontal-volume-handle{display:none}.mejs-captions-button,.mejs-chapters-button{position:relative}.mejs-captions-button>button{background-position:-140px 0}.mejs-chapters-button>button{background-position:-180px 0}.mejs-captions-button>.mejs-captions-selector,.mejs-chapters-button>.mejs-chapters-selector{background:rgba(50,50,50,.7);border:1px solid transparent;border-radius:0;bottom:100%;margin-right:-43px;overflow:hidden;padding:0;position:absolute;right:50%;visibility:visible;width:86px}.mejs-chapters-button>.mejs-chapters-selector{margin-right:-55px;width:110px}.mejs-captions-selector-list,.mejs-chapters-selector-list{list-style-type:none!important;margin:0;overflow:hidden;padding:0}.mejs-captions-selector-list-item,.mejs-chapters-selector-list-item{color:#fff;cursor:pointer;display:block;list-style-type:none!important;margin:0 0 6px;overflow:hidden;padding:0}.mejs-captions-selector-list-item:hover,.mejs-chapters-selector-list-item:hover{background-color:#c8c8c8!important;background-color:hsla(0,0%,100%,.4)!important}.mejs-captions-selector-input,.mejs-chapters-selector-input{clear:both;float:left;left:-1000px;margin:3px 3px 0 5px;position:absolute}.mejs-captions-selector-label,.mejs-chapters-selector-label{cursor:pointer;float:left;font-size:10px;line-height:15px;padding:4px 10px 0;width:100%}.mejs-captions-selected,.mejs-chapters-selected{color:#21f8f8}.mejs-captions-translations{font-size:10px;margin:0 0 5px}.mejs-captions-layer{bottom:0;color:#fff;font-size:16px;left:0;line-height:20px;position:absolute;text-align:center}.mejs-captions-layer a{color:#fff;text-decoration:underline}.mejs-captions-layer[lang=ar]{font-size:20px;font-weight:400}.mejs-captions-position{bottom:15px;left:0;position:absolute;width:100%}.mejs-captions-position-hover{bottom:35px}.mejs-captions-text,.mejs-captions-text *{background:hsla(0,0%,8%,.5);box-shadow:5px 0 0 hsla(0,0%,8%,.5),-5px 0 0 hsla(0,0%,8%,.5);padding:0;white-space:pre-wrap}.mejs-container.mejs-hide-cues video::-webkit-media-text-track-container{display:none}.mejs-overlay-error{position:relative}.mejs-overlay-error>img{left:0;max-width:100%;position:absolute;top:0;z-index:-1}.mejs-cannotplay,.mejs-cannotplay a{color:#fff;font-size:.8em}.mejs-cannotplay{position:relative}.mejs-cannotplay a,.mejs-cannotplay p{display:inline-block;padding:0 15px;width:100%}.mejs-container{clear:both;max-width:100%}.mejs-container *{font-family:Helvetica,Arial}.mejs-container,.mejs-container .mejs-controls,.mejs-embed,.mejs-embed body{background:#222}.mejs-time{font-weight:400;word-wrap:normal}.mejs-controls a.mejs-horizontal-volume-slider{display:table}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.mejs-controls .mejs-time-rail .mejs-time-loaded{background:#fff}.mejs-controls .mejs-time-rail .mejs-time-current{background:#0073aa}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,.mejs-controls .mejs-time-rail .mejs-time-total{background:rgba(255,255,255,.33)}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,.mejs-controls .mejs-time-rail span{border-radius:0}.mejs-overlay-loading{background:0 0}.mejs-controls button:hover{border:none;-webkit-box-shadow:none;box-shadow:none}.me-cannotplay{width:auto!important}.media-embed-details .wp-audio-shortcode{display:inline-block;max-width:400px}.audio-details .embed-media-settings{overflow:visible}.media-embed-details .embed-media-settings .setting span:not(.button-group){max-width:400px;width:auto}.media-embed-details .embed-media-settings .checkbox-setting span{display:inline-block}.media-embed-details .embed-media-settings{padding-top:0;top:28px}.media-embed-details .instructions{padding:16px 0;max-width:600px}.media-embed-details .setting .remove-setting,.media-embed-details .setting p{color:#a00;font-size:10px;text-transform:uppercase}.media-embed-details .setting .remove-setting{padding:5px 0}.media-embed-details .setting a:hover{color:#dc3232}.media-embed-details .embed-media-settings .checkbox-setting{float:none;margin:0 0 10px}.wp-video{max-width:100%;height:auto}.wp_attachment_holder .wp-audio-shortcode,.wp_attachment_holder .wp-video{margin-top:18px}.wp-video-shortcode video,video.wp-video-shortcode{max-width:100%;display:inline-block}.video-details .wp-video-holder{width:100%;max-width:640px}.wp-playlist{border:1px solid #ccc;padding:10px;margin:12px 0 18px;font-size:14px;line-height:1.5}.wp-admin .wp-playlist{margin:0 0 18px}.wp-playlist video{display:inline-block;max-width:100%}.wp-playlist audio{display:none;max-width:100%;width:400px}.wp-playlist .mejs-container{margin:0;max-width:100%}.wp-playlist .mejs-controls .mejs-button button{outline:0}.wp-playlist-light{background:#fff;color:#000}.wp-playlist-dark{color:#fff;background:#000}.wp-playlist-caption{display:block;max-width:88%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:14px;line-height:1.5}.wp-playlist-item .wp-playlist-caption{text-decoration:none;color:#000;max-width:-webkit-calc(100% - 40px);max-width:calc(100% - 40px)}.wp-playlist-item-meta{display:block;font-size:14px;line-height:1.5}.wp-playlist-item-title{font-size:14px;line-height:1.5}.wp-playlist-item-album{font-style:italic;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.wp-playlist-item-artist{font-size:12px;text-transform:uppercase}.wp-playlist-item-length{position:absolute;right:3px;top:0;font-size:14px;line-height:1.5}.rtl .wp-playlist-item-length{left:3px;right:auto}.wp-playlist-tracks{margin-top:10px}.wp-playlist-item{position:relative;cursor:pointer;padding:0 3px;border-bottom:1px solid #ccc}.wp-playlist-item:last-child{border-bottom:0}.wp-playlist-light .wp-playlist-caption{color:#333}.wp-playlist-dark .wp-playlist-caption{color:#ddd}.wp-playlist-playing{font-weight:700;background:#f7f7f7}.wp-playlist-light .wp-playlist-playing{background:#fff;color:#000}.wp-playlist-dark .wp-playlist-playing{background:#000;color:#fff}.wp-playlist-current-item{overflow:hidden;margin-bottom:10px;height:60px}.wp-playlist .wp-playlist-current-item img{float:left;max-width:60px;height:auto;margin-right:10px;padding:0;border:0}.rtl .wp-playlist .wp-playlist-current-item img{float:right;margin-left:10px;margin-right:0}.wp-playlist-current-item .wp-playlist-item-artist,.wp-playlist-current-item .wp-playlist-item-title{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.wp-audio-playlist .me-cannotplay span{padding:5px 15px}
 @media (min-width: 1440px) and (max-width: 1679px) {
html { font-size: 13px; }
body { font-size: 15px; } table th, table td,
.sc_table table th, .sc_table table td	{
padding:1rem;
} .toc_menu_item .toc_menu_icon {
height:6.7rem;
line-height:6.7rem;
}
.toc_menu_item .toc_menu_description:before {
height:6.7rem;
} .post_item_404 .post_content {
padding: 9rem 0 5rem;
}
.post_item_none_search .post_content {
padding: 2rem 0;
}
.post_layout_chess_2 .post_content_inner {
display:none;
}
.post_layout_chess_2.post_format_quote .post_content_inner,
.post_layout_chess_2.post_format_link .post_content_inner,
.post_layout_chess_2.post_format_aside .post_content_inner,
.post_layout_chess_2.post_format_status .post_content_inner {
display:block;
}
.post_layout_chess_2.post_format_quote .post_content_inner blockquote {
padding: 2em 2em 2em 4em;
}
.post_layout_chess_2.post_format_quote .post_content_inner blockquote:before {
font-size:2em;
top: 1.2em;
}
.post_layout_chess_2.post_format_quote .post_content_inner p {
font-size: 1em;
line-height:1.25em;
}
.post_layout_chess_2.post_format_quote .post_content_inner a,
.post_layout_chess_2.post_format_quote .post_content_inner cite {
font-size: 0.8667em;
line-height:1.25em;
}
.post_layout_chess_2.post_format_link .post_content_inner,
.post_layout_chess_2.post_format_aside .post_content_inner,
.post_layout_chess_2.post_format_status .post_content_inner {
font-size:1.2em;
line-height:1.4em;
} .sc_action_item_event.with_image .sc_action_item_inner {
width: 60%;
}
.sc_countdown_circle .sc_countdown_digits, .sc_countdown_circle .sc_countdown_separator {
height: 4em;
line-height: 4em;
}
.sc_countdown_circle .sc_countdown_digits {
width: 4em;
}
.post_layout_chess_3 .more-link {
font-size: 0.826em;
}
.post_layout_chess_2 .post_meta, .post_layout_chess_3 .post_meta {
font-size: 10px;
}
.sc_googlemap_content_default {
padding: 2em 3em;
}
}
@media (min-width: 1263px) and (max-width: 1439px) {
html { font-size: 11px; }
body { font-size: 13px; } .body_style_boxed .page_wrap {		width:1120px; }
.content_wrap, .content_container {	width:1000px; }
.sc_content_width_1_1 {	width: 1000px; }
.sc_content_width_1_2 {	width: 500px; }
.sc_content_width_1_3 {	width: 333.33px; }
.sc_content_width_2_3 {	width: 666.66px; }
.sc_content_width_1_4 {	width: 250px; }
.sc_content_width_3_4 {	width: 750px; }  body.woocommerce-page:not(.expand_content):not(.body_style_fullwide):not(.body_style_fullscreen) .content,
body:not(.expand_content):not(.body_style_fullwide):not(.body_style_fullscreen) .content { width: 650px; }
.sidebar { 				 width: 320px; } .body_style_fullwide .content_wrap {
padding-left:100px;
padding-right:100px;
}
.body_style_fullwide.sidebar_right .content, .body_style_fullscreen.sidebar_right .content { padding-right: 350px; }
.body_style_fullwide.sidebar_right .sidebar, .body_style_fullscreen.sidebar_right .sidebar { margin-left: -320px; }
.body_style_fullwide.sidebar_left  .content, .body_style_fullscreen.sidebar_left  .content { padding-left:  350px; }
.body_style_fullwide.sidebar_left  .sidebar, .body_style_fullscreen.sidebar_left  .sidebar { margin-right:-320px; } .toc_menu_item .toc_menu_icon {					height:7.1rem; line-height:7.1rem; }
.toc_menu_item .toc_menu_description:before {	height:7.1rem; }
.toc_menu_item .toc_menu_icon:before {			font-size: 26px; }
.top_panel_navi .search_wrap {
top: 0.3em;
}
.menu_mobile .menu_mobile_nav_area li > a {
font-size: 1.2857em;
line-height:1.5em;
}
.menu_mobile .menu_mobile_nav_area > ul > li > a {
font-size: 2em;
line-height:1.5em;
} .hide_on_notebook {
display: none;
} table th, table td,
.sc_table table th, .sc_table table td	{
padding:1rem;
} .post_item_404 .post_content {
padding: 8.5rem 0 5rem;
}
.post_item_none_search .post_content {
padding: 3rem 0 2rem;
}
.post_layout_chess_2 .post_content_inner {
display:none;
}
.post_layout_chess_2.post_format_quote .post_content_inner,
.post_layout_chess_2.post_format_link .post_content_inner,
.post_layout_chess_2.post_format_aside .post_content_inner,
.post_layout_chess_2.post_format_status .post_content_inner {
display:block;
}
.post_layout_chess_2.post_format_quote .post_content_inner blockquote {
padding: 2em 2em 2em 4em;
}
.post_layout_chess_2.post_format_quote .post_content_inner blockquote:before {
font-size:2em;
top: 1.2em;
}
.post_layout_chess_2.post_format_quote .post_content_inner p {
font-size: 1em;
line-height:1.25em;
}
.post_layout_chess_2.post_format_quote .post_content_inner a,
.post_layout_chess_2.post_format_quote .post_content_inner cite {
font-size: 0.8667em;
line-height:1.25em;
}
.post_layout_chess_2.post_format_link .post_content_inner,
.post_layout_chess_2.post_format_aside .post_content_inner,
.post_layout_chess_2.post_format_status .post_content_inner {
font-size:1.2em;
line-height:1.4em;
}
.post_layout_chess_2 .more-link,
.post_layout_chess_3 .more-link {
padding: 1em 2em;
}
.post_layout_chess_3 .more-link {
display:none;
}
.post_layout_classic .post_content {
font-size:1em;
} .sc_item_subtitle + .sc_item_title {
margin-top: 0.4em;
}
.sc_item_title + .sc_item_descr, .sc_item_subtitle + .sc_item_descr,
.sc_item_title + .sc_item_slider, .sc_item_subtitle + .sc_item_slider, .sc_item_descr + .sc_item_slider,
.sc_item_title + .sc_item_columns, .sc_item_subtitle + .sc_item_columns, .sc_item_descr + .sc_item_columns,
.sc_item_title + .sc_item_content, .sc_item_subtitle + .sc_item_content, .sc_item_descr + .sc_item_content {
margin-top: 2em;
}
.sc_item_title + .sc_item_button, .sc_item_title + .sc_item_button_image,
.sc_item_subtitle + .sc_item_button, .sc_item_subtitle + .sc_item_button_image,
.sc_item_descr + .sc_item_button, .sc_item_descr + .sc_item_button_image,
.sc_item_content + .sc_item_button, .sc_item_content + .sc_item_button_image,
.sc_item_slider + .sc_item_button, .sc_item_slider + .sc_item_button_image,
.sc_item_columns + .sc_item_button, .sc_item_columns + .sc_item_button_image {
margin-top: 2em;
}
.trx_addons_audio_player {
padding: 2em;
}
.sc_blogger_classic .sc_blogger_item .sc_blogger_item_content {
padding:2.1429em;
}
.sc_blogger_classic .sc_blogger_item .sc_blogger_item_button {
margin-top: 1em;
}
.sc_promo.sc_promo_size_normal .sc_promo_text_inner {
padding:2.1429em;
}
.sc_services_iconed .sc_services_item_content {
padding:2.1429em;
}
.slider_swiper .swiper-slide {
min-height:33rem;
}
.slider_style_modern .slider_swiper .swiper-slide {
min-height:24rem;
}
.post_layout_excerpt .slider_swiper .swiper-slide {
min-height:33rem;
}
.columns_wrap .slider_swiper .swiper-slide,
.wpb_column:not(.vc_col-sm-12) .slider_swiper .swiper-slide {
min-height:16rem;
}
.post_layout_classic .slider_swiper .swiper-slide {
min-height:16rem;
}
.sc_blogger_item .slider_swiper .swiper-slide {
min-height:16rem;
}
.sc_team_default .sc_team_item_info {
padding:2.1429em;
} .events-list .tribe-events-loop, .single-tribe_organizer .tribe-events-loop, .single-tribe_venue .tribe-events-loop, .tribe-events-day .tribe-events-loop {
max-width:none;
} .sc_countdown_circle .sc_countdown_digits, .sc_countdown_circle .sc_countdown_separator {
height: 4em;
line-height: 4em;
}
.sc_countdown_circle .sc_countdown_digits {
width: 4em;
}
.post_layout_chess_3 .more-link {
font-size: 0.826em;
}
.post_layout_chess_2 .post_meta, .post_layout_chess_3 .post_meta {
font-size: 0.7em;
}
.sc_googlemap_content_default {
padding: 2em 3em;
}
.menu_main_nav > li > ul:before {
content: '';
position: absolute;
top: -0.4em;
}
.cq-flipbox-container .cq-flipbox-content {
font-size: 0.9em;
}
#sb_instagram #sbi_load {
top: 24%;
}
.sc_blogger .sc_blogger_item .sc_blogger_item_title {
font-size: 1.5em;
}
.top_panel_navi .search_wrap .search_submit {
margin-top: 1em;
}
.body_style_boxed #sb_instagram #sbi_load {
top: 17%;
}
.woocommerce #respond input#submit.disabled, .woocommerce #respond input#submit:disabled, .woocommerce #respond input#submit[disabled]:disabled, .woocommerce a.button.disabled, .woocommerce a.button:disabled, .woocommerce a.button[disabled]:disabled, .woocommerce button.button.disabled, .woocommerce button.button:disabled, .woocommerce button.button[disabled]:disabled, .woocommerce input.button.disabled, .woocommerce input.button:disabled, .woocommerce input.button[disabled]:disabled,
.woocommerce .button, .woocommerce-page .button, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button .woocommerce #respond input#submit, .woocommerce input[type="button"], .woocommerce-page input[type="button"], .woocommerce input[type="submit"], .woocommerce-page input[type="submit"], .woocommerce .woocommerce-message .button, .woocommerce ul.products li.product .button, .woocommerce div.product form.cart .button, .woocommerce #review_form #respond p.form-submit input[type="submit"], .woocommerce-page #review_form #respond p.form-submit input[type="submit"], .woocommerce table.my_account_orders .order-actions .button {
padding: 0.714em 2.6em 0.714em;
}
.sc_item_button a, .sc_form button, .sc_price_link, .sc_action_item_link {
padding: 0.714em 2.6em 0.714em;
}
}
@media (min-width: 1136px) and (max-width: 1262px) { .body_style_boxed .page_wrap {		width:1030px; }
.content_wrap, .content_container {	width:910px; }
.menu_style_side .content_wrap,
.menu_style_side .content_container {	width: 850px; }
.sc_content_width_1_1 {	width: 910px; }
.sc_content_width_1_2 {	width: 455px; }
.sc_content_width_1_3 {	width: 303.33px; }
.sc_content_width_2_3 {	width: 606.66px; }
.sc_content_width_1_4 {	width: 227.5px; }
.sc_content_width_3_4 {	width: 682.5px; }
.menu_style_side .sc_content_width_1_1 {	width: 850px; }
.menu_style_side .sc_content_width_1_2 {	width: 425px; }
.menu_style_side .sc_content_width_1_3 {	width: 283.33px; }
.menu_style_side .sc_content_width_2_3 {	width: 566.66px; }
.menu_style_side .sc_content_width_1_4 {	width: 212.5px; }
.menu_style_side .sc_content_width_3_4 {	width: 637.5px; }  body.woocommerce-page:not(.expand_content):not(.body_style_fullwide):not(.body_style_fullscreen) .content,
body:not(.expand_content):not(.body_style_fullwide):not(.body_style_fullscreen) .content { width: 610px; }
body.menu_style_side:not(.expand_content):not(.body_style_fullwide):not(.body_style_fullscreen) .content { width: 550px; } body.expand_content .sc_recent_news_style_news-announce .post_size_full {	height: 512px; }
body.expand_content .sc_recent_news_style_news-announce .post_size_big {	height: 256px;  }
body.expand_content .sc_recent_news_style_news-announce .post_size_medium,
body.expand_content .sc_recent_news_style_news-announce .post_size_small {	height: 128px;  }
.sc_countdown_circle .sc_countdown_digits, .sc_countdown_circle .sc_countdown_separator {
height: 3em;
line-height: 3em;
}
.sc_countdown_circle .sc_countdown_digits {
width: 3em;
}
.post_layout_chess_3 .more-link {
font-size: 0.826em;
}
.post_layout_chess_2 .post_meta, .post_layout_chess_3 .post_meta {
font-size: 0.7em;
}
.sc_googlemap_content_default {
padding: 2em 3em;
}
.menu_main_nav > li > ul:before {
content: '';
position: absolute;
top: -0.4em;
}
.cq-flipbox-container .cq-flipbox-content {
font-size: 0.9em;
}
#sb_instagram #sbi_load {
top: 24%;
}
.sc_blogger .sc_blogger_item .sc_blogger_item_title {
font-size: 1.5em;
}
.top_panel_fixed .top_panel_navi .search_wrap .search_submit {
margin-top: 0;
}
.top_panel_navi .search_wrap .search_submit {
margin-top: 1em;
}
.body_style_boxed #sb_instagram #sbi_load {
top: 17%;
}
.woocommerce #respond input#submit.disabled, .woocommerce #respond input#submit:disabled, .woocommerce #respond input#submit[disabled]:disabled, .woocommerce a.button.disabled, .woocommerce a.button:disabled, .woocommerce a.button[disabled]:disabled, .woocommerce button.button.disabled, .woocommerce button.button:disabled, .woocommerce button.button[disabled]:disabled, .woocommerce input.button.disabled, .woocommerce input.button:disabled, .woocommerce input.button[disabled]:disabled,
.woocommerce .button, .woocommerce-page .button, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button .woocommerce #respond input#submit, .woocommerce input[type="button"], .woocommerce-page input[type="button"], .woocommerce input[type="submit"], .woocommerce-page input[type="submit"], .woocommerce .woocommerce-message .button, .woocommerce ul.products li.product .button, .woocommerce div.product form.cart .button, .woocommerce #review_form #respond p.form-submit input[type="submit"], .woocommerce-page #review_form #respond p.form-submit input[type="submit"], .woocommerce table.my_account_orders .order-actions .button {
padding: 0.714em 2.6em 0.714em;
}
.sc_item_button a, .sc_form button, .sc_price_link, .sc_action_item_link {
padding: 0.714em 2.6em 0.714em;
}
.sc_services_default .sc_services_item_title {
font-size: 1.7em;
}
.format-audio .post_featured .post_audio_title {
margin-top: 0;
margin-bottom: 0.5em;
}
}
@media (min-width: 1024px) and (max-width: 1135px) { .body_style_boxed .page_wrap {		width:100%; }
.content_wrap, .content_container {	width:964px; }
.menu_style_side .content_wrap,
.menu_style_side .content_container {	width: 904px; }
.sc_content_width_1_1 {	width: 964px; }
.sc_content_width_1_2 {	width: 482px; }
.sc_content_width_1_3 {	width: 321.33px; }
.sc_content_width_2_3 {	width: 642.66px; }
.sc_content_width_1_4 {	width: 241px; }
.sc_content_width_3_4 {	width: 723px; }
.menu_style_side .sc_content_width_1_1 {	width: 904px; }
.menu_style_side .sc_content_width_1_2 {	width: 452px; }
.menu_style_side .sc_content_width_1_3 {	width: 301.33px; }
.menu_style_side .sc_content_width_2_3 {	width: 602.66px; }
.menu_style_side .sc_content_width_1_4 {	width: 226px; }
.menu_style_side .sc_content_width_3_4 {	width: 678px; }  body.woocommerce-page:not(.expand_content):not(.body_style_fullwide):not(.body_style_fullscreen) .content,
body:not(.expand_content):not(.body_style_fullwide):not(.body_style_fullscreen) .content { width: 664px; }
body.menu_style_side:not(.expand_content):not(.body_style_fullwide):not(.body_style_fullscreen) .content { width: 604px; } body.expand_content .sc_recent_news_style_news-announce .post_size_full {	height: 540px; }
body.expand_content .sc_recent_news_style_news-announce .post_size_big {	height: 270px;  }
body.expand_content .sc_recent_news_style_news-announce .post_size_medium,
body.expand_content .sc_recent_news_style_news-announce .post_size_small {	height: 135px;  }
.sc_countdown_circle .sc_countdown_digits, .sc_countdown_circle .sc_countdown_separator {
height: 3em;
line-height: 3em;
}
.sc_countdown_circle .sc_countdown_digits {
width: 3em;
}
.post_layout_chess_3 .more-link {
font-size: 0.826em;
}
.post_layout_chess_2 .post_meta, .post_layout_chess_3 .post_meta {
font-size: 0.7em;
}
.sc_googlemap_content_default {
padding: 2em 3em;
right: 0;
width: 33.3%;
}
.menu_main_nav > li > ul:before {
content: '';
position: absolute;
top: -0.4em;
}
.cq-flipbox-container .cq-flipbox-content {
font-size: 0.9em;
}
#sb_instagram #sbi_load {
top: 18%;
}
.sc_blogger .sc_blogger_item .sc_blogger_item_title {
font-size: 1.5em;
}
.top_panel_fixed .top_panel_navi .search_wrap .search_submit {
margin-top: 0;
}
.top_panel_navi .search_wrap .search_submit {
margin-top: 1em;
}
.body_style_boxed #sb_instagram #sbi_load {
top: 17%;
}
.woocommerce #respond input#submit.disabled, .woocommerce #respond input#submit:disabled, .woocommerce #respond input#submit[disabled]:disabled, .woocommerce a.button.disabled, .woocommerce a.button:disabled, .woocommerce a.button[disabled]:disabled, .woocommerce button.button.disabled, .woocommerce button.button:disabled, .woocommerce button.button[disabled]:disabled, .woocommerce input.button.disabled, .woocommerce input.button:disabled, .woocommerce input.button[disabled]:disabled,
.woocommerce .button, .woocommerce-page .button, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button .woocommerce #respond input#submit, .woocommerce input[type="button"], .woocommerce-page input[type="button"], .woocommerce input[type="submit"], .woocommerce-page input[type="submit"], .woocommerce .woocommerce-message .button, .woocommerce ul.products li.product .button, .woocommerce div.product form.cart .button, .woocommerce #review_form #respond p.form-submit input[type="submit"], .woocommerce-page #review_form #respond p.form-submit input[type="submit"], .woocommerce table.my_account_orders .order-actions .button {
padding: 0.714em 2.6em 0.714em;
}
.sc_services_default .sc_services_item_title {
font-size: 1.7em;
}
.format-audio .post_featured .post_audio_title {
margin-top: 0;
margin-bottom: 0.5em;
}
.comments_list_wrap .comment_info {
font-size: 0.9em;
}
.comments_list_wrap .comment_posted {
margin-left: 0.5em;
}
.comment_author + .comment_posted::before {
margin-right: 0.5em;
}
.comments_list_wrap .comment_content {
padding-left: 8em;
}
.comments_list_wrap .comment_author_avatar {
width: 6em;
height: 6em;
}
.woocommerce .widget_shopping_cart_content .buttons .button {
padding: 0.714em 1em 0.714em;
}
.sc_item_button a, .sc_form button, .sc_price_link, .sc_action_item_link {
padding: 0.714em 2.6em 0.714em;
}
}
@media (min-width: 960px) and (max-width: 1023px) { .body_style_boxed .page_wrap {		width:100%; }
.content_wrap, .content_container {	width:900px; }
.menu_style_side .content_wrap,
.menu_style_side .content_container {	width: 840px; }
.sc_content_width_1_1 {	width: 900px; }
.sc_content_width_1_2 {	width: 450px; }
.sc_content_width_1_3 {	width: 300px; }
.sc_content_width_2_3 {	width: 600px; }
.sc_content_width_1_4 {	width: 225px; }
.sc_content_width_3_4 {	width: 775px; }
.menu_style_side .sc_content_width_1_1 {	width: 840px; }
.menu_style_side .sc_content_width_1_2 {	width: 420px; }
.menu_style_side .sc_content_width_1_3 {	width: 280px; }
.menu_style_side .sc_content_width_2_3 {	width: 560px; }
.menu_style_side .sc_content_width_1_4 {	width: 210px; }
.menu_style_side .sc_content_width_3_4 {	width: 630px; }  body.woocommerce-page:not(.expand_content):not(.body_style_fullwide):not(.body_style_fullscreen) .content,
body:not(.expand_content):not(.body_style_fullwide):not(.body_style_fullscreen) .content { width: 600px; }
body.menu_style_side:not(.expand_content):not(.body_style_fullwide):not(.body_style_fullscreen) .content { width: 540px; } .top_panel_style_1.with_bg_image.header_fullheight .logo {
margin-bottom: 0;
}
.menu_header_nav > li > a, .menu_main_nav > li > a {
padding: 1em 2em;
} body.expand_content .sc_recent_news_style_news-announce .post_size_full {	height: 504px; }
body.expand_content .sc_recent_news_style_news-announce .post_size_big {	height: 252px;  }
body.expand_content .sc_recent_news_style_news-announce .post_size_medium,
body.expand_content .sc_recent_news_style_news-announce .post_size_small {	height: 126px;  } .vc_row.vc_row-o-full-height,
.trx_addons_stretch_height {
min-height: 0 !important;
}
.sc_countdown_circle .sc_countdown_digits, .sc_countdown_circle .sc_countdown_separator {
height: 3em;
line-height: 3em;
}
.sc_countdown_circle .sc_countdown_digits {
width: 3em;
}
.post_layout_chess_3 .more-link {
font-size: 0.826em;
}
.post_layout_chess_2 .post_meta, .post_layout_chess_3 .post_meta {
font-size: 0.7em;
}
.sc_googlemap_content_default {
padding: 2em 3em;
right: 0;
width: 33.3%;
}
.menu_main_nav > li > ul:before {
content: '';
position: absolute;
top: -0.4em;
}
.cq-flipbox-container .cq-flipbox-content {
font-size: 0.9em;
}
#sb_instagram #sbi_load {
top: 18%;
}
.sc_blogger .sc_blogger_item .sc_blogger_item_title {
font-size: 1.5em;
}
.top_panel_fixed .top_panel_navi .search_wrap .search_submit {
margin-top: 0;
}
.top_panel_navi .search_wrap .search_submit {
margin-top: 1em;
}
.body_style_boxed #sb_instagram #sbi_load {
top: 17%;
}
.woocommerce #respond input#submit.disabled, .woocommerce #respond input#submit:disabled, .woocommerce #respond input#submit[disabled]:disabled, .woocommerce a.button.disabled, .woocommerce a.button:disabled, .woocommerce a.button[disabled]:disabled, .woocommerce button.button.disabled, .woocommerce button.button:disabled, .woocommerce button.button[disabled]:disabled, .woocommerce input.button.disabled, .woocommerce input.button:disabled, .woocommerce input.button[disabled]:disabled,
.woocommerce .button, .woocommerce-page .button, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button .woocommerce #respond input#submit, .woocommerce input[type="button"], .woocommerce-page input[type="button"], .woocommerce input[type="submit"], .woocommerce-page input[type="submit"], .woocommerce .woocommerce-message .button, .woocommerce ul.products li.product .button, .woocommerce div.product form.cart .button, .woocommerce #review_form #respond p.form-submit input[type="submit"], .woocommerce-page #review_form #respond p.form-submit input[type="submit"], .woocommerce table.my_account_orders .order-actions .button {
padding: 0.714em 2.6em 0.714em;
}
.sc_services_default .sc_services_item_title {
font-size: 1.7em;
}
.format-audio .post_featured .post_audio_title {
margin-top: 0;
margin-bottom: 0.5em;
}
.comments_list_wrap .comment_info {
font-size: 0.9em;
}
.comments_list_wrap .comment_posted {
margin-left: 0.5em;
}
.comment_author + .comment_posted::before {
margin-right: 0.5em;
}
.comments_list_wrap .comment_content {
padding-left: 8em;
}
.comments_list_wrap .comment_author_avatar {
width: 6em;
height: 6em;
}
.woocommerce .widget_shopping_cart_content .buttons .button {
padding: 0.714em 1em 0.714em;
}
.sc_item_button a, .sc_form button, .sc_price_link, .sc_action_item_link {
padding: 0.714em 2.6em 0.714em;
}
.cq-flipbox-container h4.cq-flipbox-title {
font-size: 1.8em;
}
.post_item .more-link, .gallery_preview_show .post_readmore {
padding: 0.714em 2.6em 0.714em;
}
.comments_list_wrap ul ul {
margin-left: 4em;
}
button, input[type="button"], input[type="reset"], input[type="submit"], .theme_button {
padding: 0.714em 2.6em 0.714em;
}
}
@media (min-width: 960px) and (max-width: 1262px) {
html { font-size: 10px; }
body { font-size: 13px; line-height: 161.54%; }
h1 { font-size: 36px;	line-height:42px;	margin-top: 36px;	margin-bottom: 20px;	letter-spacing: 2px; }
h2 { font-size: 32px;	line-height:38px;	margin-top: 42px;	margin-bottom: 24px;	letter-spacing: 3px; }
h3 { font-size: 24px;	line-height:28px;	margin-top: 40px;	margin-bottom: 22px;	letter-spacing: 0px; }
h4 { font-size: 20px;	line-height:24px;	margin-top: 32px;	margin-bottom: 18px;	letter-spacing: 0px; }
h5 { font-size: 16px;	line-height:20px;	margin-top: 30px; 	margin-bottom: 16px;	letter-spacing: 1px; }
h6 { font-size: 14px;	line-height:18px;	margin-top: 28px;	margin-bottom: 12px;	letter-spacing: 1px; }
p, ul, ol, dl, blockquote, address {
margin-bottom: 1em;
}
.sidebar { 	 width: 270px; } .body_style_fullwide .content_wrap {
padding-left:50px;
padding-right:50px;
}
.body_style_fullwide.sidebar_right .content, .body_style_fullscreen.sidebar_right .content { padding-right: 300px; }
.body_style_fullwide.sidebar_right .sidebar, .body_style_fullscreen.sidebar_right .sidebar { margin-left: -270px; }
.body_style_fullwide.sidebar_left  .content, .body_style_fullscreen.sidebar_left  .content { padding-left:  300px; }
.body_style_fullwide.sidebar_left  .sidebar, .body_style_fullscreen.sidebar_left  .sidebar { margin-right:-270px; } .container, .container-fluid {
padding-left: 15px;
padding-right: 15px;
}
.row, .columns_wrap, .trx_addons_columns_wrap {
margin-right: -30px;
}
.row > [class*="column-"],
.columns_wrap > [class*="column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"] {
padding-right: 30px;
}
.row.columns_padding_left, .columns_wrap.columns_padding_left, .trx_addons_columns_wrap.columns_padding_left, .vc_row.columns_padding_left,  {
margin-left: -30px;
}
.vc_row.columns_padding_left .vc_column_container > .vc_column-inner,
.trx_addons_columns_wrap.columns_padding_left > [class*="trx_addons_column-"], .trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_left,
.row.columns_padding_left > [class*="column-"], .columns_wrap.columns_padding_left > [class*="column-"],
.row > [class*="column-"].columns_padding_left, .columns_wrap > [class*="column-"].columns_padding_left {
padding-left:30px;
}
.vc_row.columns_padding_right,
.row.columns_padding_right,
.trx_addons_columns_wrap.columns_padding_right,
.columns_wrap.columns_padding_right {
margin-right: -30px;
}
.vc_row.columns_padding_right .vc_column_container > .vc_column-inner,
.trx_addons_columns_wrap.columns_padding_right > [class*="trx_addons_column-"], .trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_right,
.row.columns_padding_right > [class*="column-"], .columns_wrap.columns_padding_right > [class*="column-"],
.row > [class*="column-"].columns_padding_right, .columns_wrap > [class*="column-"].columns_padding_right {
padding-right:30px;
}
.vc_row,
.trx_addons_columns_wrap.columns_padding_center,
.row.columns_padding_center,
.columns_wrap.columns_padding_center {
margin-left: -15px;
margin-right: -15px;
}
.vc_column_container > .vc_column-inner,
.trx_addons_columns_wrap.columns_padding_center > [class*="trx_addons_column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_center,
.row.columns_padding_center > [class*="column-"], .columns_wrap.columns_padding_center > [class*="column-"],
.row > [class*="column-"].columns_padding_center, .columns_wrap > [class*="column-"].columns_padding_center {
padding-left:15px;
padding-right:15px;
}
.trx_addons_columns_wrap.columns_padding_bottom > [class*="trx_addons_column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_bottom,
.row.columns_padding_bottom > [class*="column-"], .columns_wrap.columns_padding_bottom > [class*="column-"],
.row > [class*="column-"].columns_padding_bottom, .columns_wrap > [class*="column-"].columns_padding_bottom {
padding-bottom: 30px;
}
hr, .vc_separator { margin: 4em 0 !important; } .menu_side_wrap .logo {							padding: 55% 8%; }
.toc_menu_item .toc_menu_icon {					height:7.2rem; line-height:7.2rem; }
.toc_menu_item .toc_menu_description:before {	height:7.2rem; }
.toc_menu_item .toc_menu_icon:before {			font-size: 24px; }
.toc_menu_item .toc_menu_description span {		letter-spacing:2px;	padding:0 2em; }
.top_panel_navi .search_wrap {
top: 0.4em;
}
.menu_mobile .menu_mobile_nav_area li > a {
font-size: 1.2308em;
line-height:1.5em;
}
.menu_mobile .menu_mobile_nav_area > ul > li > a {
font-size: 2em;
line-height:1.5em;
}
.top_panel_style_2.with_bg_image.header_fullheight .top_panel_title_2 {
margin-top: 4rem;
margin-bottom:6rem;
}
.top_panel_title_2_image, .top_panel_title_2_image img {
max-height:7rem;
} .hide_on_notebook {
display: none;
} table th, table td,
.sc_table table th, .sc_table table td	{
padding:1rem;
}  .post_item_404 .post_content {
padding: 10rem 0 7rem;
}
.post_item_none_search .post_content {
padding: 5rem 0 3rem;
}
.post_item .more-link, .gallery_preview_show .post_readmore {
margin-top: 2em;
}
.post_layout_chess_1.post_format_aside .post_meta {
margin-top: 2rem;
}
.post_layout_chess_1 .post_header + .post_content {
margin-top:2.8rem;
}
.post_layout_chess_1 .more-link {
margin-top: 2rem;
}
.post_layout_chess_2 .post_content_inner {
display:none;
}
.post_layout_chess_2.post_format_audio .mejs-time,
.post_layout_chess_3.post_format_audio .mejs-time {
display:none;
}
.post_layout_chess_2.post_format_quote .post_content_inner,
.post_layout_chess_2.post_format_link .post_content_inner,
.post_layout_chess_2.post_format_aside .post_content_inner,
.post_layout_chess_2.post_format_status .post_content_inner {
display:block;
}
.post_layout_chess_2 .post_title {
font-size: 18px;
line-height:24px;
}
.post_layout_chess_2.post_format_quote .post_content_inner blockquote {
padding: 1.5em 1.5em 1.5em 3em;
}
.post_layout_chess_2.post_format_quote .post_content_inner blockquote:before {
font-size:2em;
top: 0.9em;
left: 0.65em;
}
.post_layout_chess_2.post_format_quote .post_content_inner p {
font-size: 1em;
line-height:1.25em;
}
.post_layout_chess_2.post_format_quote .post_content_inner a,
.post_layout_chess_2.post_format_quote .post_content_inner cite {
font-size: 12px;
line-height:1.25em;
}
.post_layout_chess_2.post_format_link .post_content_inner,
.post_layout_chess_2.post_format_aside .post_content_inner,
.post_layout_chess_2.post_format_status .post_content_inner {
font-size:1.2em;
line-height:1.4em;
}
.post_layout_chess_2 .post_meta,
.post_layout_chess_2.post_format_link .post_meta,
.post_layout_chess_2.post_format_status .post_meta,
.post_layout_chess_3 .post_meta,
.post_layout_chess_3.post_format_link .post_meta,
.post_layout_chess_3.post_format_status .post_meta {
margin-top:0;
}
.post_layout_chess_2 .more-link,
.post_layout_chess_3 .more-link {
padding: 0.5em 1.5em;
margin-top:1rem;
}
.post_layout_chess_3 .more-link {
display:none;
}
.post_layout_chess_3 .post_title {
font-size: 15px;
line-height:1.4em;
}
.post_layout_classic .post_content {
font-size:1em;
}
.post_layout_classic blockquote {
padding: 2.5em 2.5em 2.5em 5em;
}
.post_layout_classic blockquote:before {
top: 1.2em;
left: 0.8em;
} .comments_list_wrap .comment_posted {
font-size:1em;
} .widget_product_tag_cloud a, .widget_tag_cloud a {
} .sc_item_subtitle + .sc_item_title {
margin-top: 0.4em;
}
.sc_item_title + .sc_item_descr, .sc_item_subtitle + .sc_item_descr,
.sc_item_title + .sc_item_slider, .sc_item_subtitle + .sc_item_slider, .sc_item_descr + .sc_item_slider,
.sc_item_title + .sc_item_columns, .sc_item_subtitle + .sc_item_columns, .sc_item_descr + .sc_item_columns,
.sc_item_title + .sc_item_content, .sc_item_subtitle + .sc_item_content, .sc_item_descr + .sc_item_content {
margin-top: 2em;
}
.sc_item_title + .sc_item_button, .sc_item_title + .sc_item_button_image,
.sc_item_subtitle + .sc_item_button, .sc_item_subtitle + .sc_item_button_image,
.sc_item_descr + .sc_item_button, .sc_item_descr + .sc_item_button_image,
.sc_item_content + .sc_item_button, .sc_item_content + .sc_item_button_image,
.sc_item_slider + .sc_item_button, .sc_item_slider + .sc_item_button_image,
.sc_item_columns + .sc_item_button, .sc_item_columns + .sc_item_button_image {
margin-top: 2em;
}
.trx_addons_audio_player {
padding: 2em 1.6em;
}
.sc_blogger_classic .sc_blogger_item .sc_blogger_item_content {
padding:2em 1.6em;
}
.sc_blogger_classic .sc_blogger_item .sc_blogger_item_button {
margin-top: 1em;
}
.sc_icons .sc_icons_icon + .sc_icons_title,
.sc_icons .sc_icons_icon + .sc_icons_description {
margin-top:1em;
}
.sc_icons .sc_icons_description {
font-size: 14px;
}
.sc_promo.sc_promo_size_normal .sc_promo_text_inner {
padding:2.1429em;
}
.slider_swiper .swiper-slide {
min-height:26rem;
}
.slider_style_modern .slider_swiper .swiper-slide {
min-height:20rem;
}
.post_layout_excerpt .slider_swiper .swiper-slide {
min-height:33rem;
}
.columns_wrap .slider_swiper .swiper-slide,
.wpb_column:not(.vc_col-sm-12) .slider_swiper .swiper-slide {
min-height:13rem;
}
.post_layout_classic .slider_swiper .swiper-slide {
min-height:15.7rem;
}
.sc_blogger_item .slider_swiper .swiper-slide {
min-height:15.7rem;
}
.slider_style_modern .slider_controls_label span + span {
font-size:1.5em;
}
.slider_swiper .swiper-pagination-bullet, .slider_swiper_outer .swiper-pagination-bullet {
width: 8px;
height: 8px;
border-width: 1px;
}
.sc_services_iconed .sc_services_item_content {
padding:2.1429em;
}
.sc_team_default .sc_team_item_info {
padding:2.1429em;
} .events-list .tribe-events-loop, .single-tribe_organizer .tribe-events-loop, .single-tribe_venue .tribe-events-loop, .tribe-events-day .tribe-events-loop {
max-width:none;
} .single-product ul.products li.product .post_data .post_header {
margin-top:1em;
}
}
@media (min-width: 768px) and (max-width: 959px) {
html { font-size: 10px; line-height: 160%; }
body { font-size: 13px; line-height: 161.54%; }
h1 { font-size: 32px;	line-height:36px;	margin-top: 30px;	margin-bottom: 16px;	letter-spacing: 1px; }
h2 { font-size: 28px;	line-height:36px;	margin-top: 38px;	margin-bottom: 20px;	letter-spacing: 0.5px; }
h3 { font-size: 22px;	line-height:26px;	margin-top: 36px;	margin-bottom: 18px;	letter-spacing: 0px; }
h4 { font-size: 18px;	line-height:22px;	margin-top: 30px;	margin-bottom: 16px;	letter-spacing: 0px; }
h5 { font-size: 16px;	line-height:20px;	margin-top: 28px; 	margin-bottom: 14px;	letter-spacing: 0px; }
h6 { font-size: 14px;	line-height:18px;	margin-top: 24px;	margin-bottom: 10px;	letter-spacing: 0px; }
p, ul, ol, dl, blockquote, address {
margin-bottom: 1em;
} .body_style_boxed .page_wrap {		width:100%; }
.content_wrap, .content_container {	width:708px; }
.sc_content_width_1_1 {	width: 708px; }
.sc_content_width_1_2 {	width: 354px; }
.sc_content_width_1_3 {	width: 236px; }
.sc_content_width_2_3 {	width: 472px; }
.sc_content_width_1_4 {	width: 177px; }
.sc_content_width_3_4 {	width: 531px; }  body.woocommerce-page:not(.expand_content):not(.body_style_fullwide):not(.body_style_fullscreen) .content,
body:not(.expand_content):not(.body_style_fullwide):not(.body_style_fullscreen) .content {	width:100%; float: none; }
.sidebar { 				 width: 100%; float:none; margin-top: 4em; } .body_style_fullwide .content_wrap {
padding-left:30px;
padding-right:30px;
}
.body_style_fullwide.sidebar_right .content, .body_style_fullscreen.sidebar_right .content { padding-right: 0 !important; float: none; }
.body_style_fullwide.sidebar_right .sidebar, .body_style_fullscreen.sidebar_right .sidebar { margin-left: 0 !important; float: none; }
.body_style_fullwide.sidebar_left  .content, .body_style_fullscreen.sidebar_left  .content { padding-left: 0 !important; float: none; }
.body_style_fullwide.sidebar_left  .sidebar, .body_style_fullscreen.sidebar_left  .sidebar { margin-right: 0 !important; float: none; }
.gallery.gallery-columns-9 .gallery-item {	width: 20% !important; }
.gallery.gallery-columns-8 .gallery-item {	width: 20% !important; }
.gallery.gallery-columns-7 .gallery-item {	width: 20% !important; }
.gallery.gallery-columns-6 .gallery-item {	width: 20% !important; } .container, .container-fluid {
padding-left: 15px;
padding-right: 15px;
}
.row, .columns_wrap, .trx_addons_columns_wrap {
margin-right: -30px;
}
.row > [class*="column-"],
.columns_wrap > [class*="column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"] {
padding-right: 30px; }
.row.columns_padding_left,
.columns_wrap.columns_padding_left,
.trx_addons_columns_wrap.columns_padding_left,
.vc_row.columns_padding_left {
margin-left: -30px;
}
.vc_row.columns_padding_left .vc_column_container > .vc_column-inner,
.trx_addons_columns_wrap.columns_padding_left > [class*="trx_addons_column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_left,
.row.columns_padding_left > [class*="column-"], .columns_wrap.columns_padding_left > [class*="column-"],
.row > [class*="column-"].columns_padding_left, .columns_wrap > [class*="column-"].columns_padding_left {
padding-left:30px;
}
.vc_row.columns_padding_right,
.trx_addons_columns_wrap.columns_padding_right,
.row.columns_padding_right,
.columns_wrap.columns_padding_right {
margin-right: -30px;
}
.vc_row.columns_padding_right .vc_column_container > .vc_column-inner,
.trx_addons_columns_wrap.columns_padding_right > [class*="trx_addons_column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_right,
.row.columns_padding_right > [class*="column-"], .columns_wrap.columns_padding_right > [class*="column-"],
.row > [class*="column-"].columns_padding_right, .columns_wrap > [class*="column-"].columns_padding_right {
padding-right:30px;
}
.vc_row,
.trx_addons_columns_wrap.columns_padding_center,
.row.columns_padding_center,
.columns_wrap.columns_padding_center {
margin-left: -15px;
margin-right: -15px;
}
.vc_column_container > .vc_column-inner,
.trx_addons_columns_wrap.columns_padding_center > [class*="trx_addons_column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_center,
.row.columns_padding_center > [class*="column-"], .columns_wrap.columns_padding_center > [class*="column-"],
.row > [class*="column-"].columns_padding_center, .columns_wrap > [class*="column-"].columns_padding_center {
padding-left:15px;
padding-right:15px;
}
.trx_addons_columns_wrap.columns_padding_bottom > [class*="trx_addons_column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_bottom,
.row.columns_padding_bottom > [class*="column-"], .columns_wrap.columns_padding_bottom > [class*="column-"],
.row > [class*="column-"].columns_padding_bottom, .columns_wrap > [class*="column-"].columns_padding_bottom {
padding-bottom: 30px;
}
body.expand_content .sc_recent_news_style_news-announce .post_size_full {	width: 100%; height: 198px; }
body.expand_content .sc_recent_news_style_news-announce .post_size_big {	width: 100%; height: 198px;  }
body.expand_content .sc_recent_news_style_news-announce .post_size_medium,
body.expand_content .sc_recent_news_style_news-announce .post_size_small {	width: 100%; height: 198px;  } body.no_layout.menu_style_left {	margin-left: 0; }
body.no_layout.menu_style_right {	margin-right: 0; }
body.no_layout.menu_style_right .menu_side_wrap {	right: -6rem; }
body.no_layout.menu_style_left .menu_side_wrap {	left: -6rem; }
.menu_mobile .menu_mobile_nav_area li > a {
font-size: 1.2308em;
line-height:1.5em;
}
.menu_mobile .menu_mobile_nav_area > ul > li > a {
font-size: 2em;
line-height:1.5em;
}
.top_panel {
margin-bottom: 6rem;
}
.site_footer_wrap {
margin-top: 6rem;
}
.top_panel.with_bg_image {
min-height:20em;
}
.top_panel_style_2.with_bg_image.header_fullheight .top_panel_title_2 {
margin-top: 4rem;
margin-bottom:6rem;
}
.top_panel_title_2_image, .top_panel_title_2_image img {
max-height:7rem;
}
.top_panel_title .post_meta + .page_caption {
font-size: 32px;
} .top_panel .slider_engine_revo .slide_subtitle {
margin-bottom: 1em !important;
}
.top_panel .slider_engine_revo .slide_button {
font-size: 12px !important;
} .sidebar .sidebar_inner {
padding: 30px 0;
}
.sidebar[class*="scheme_"] .sidebar_inner {
padding: 30px 15px;
} .sidebar aside, .sidebar[class*="scheme_"] aside {
display: inline-block;
float:none;
vertical-align:top;
width:33.3333%;
padding: 0 15px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.sidebar aside + aside, .sidebar[class*="scheme_"] aside + aside {
margin-top: 0;
padding-top: 0;
border-top-width:0;
}
.footer_wrap aside + aside + aside + aside,
.sidebar aside + aside + aside + aside, .sidebar[class*="scheme_"] aside + aside + aside + aside {
margin-top: 30px !important;
padding-top: 30px !important;
border-top-width:1px;
}
aside.column-1_4, aside.column-1_5, aside.column-1_6, aside.column-1_7, aside.column-1_8, aside.column-1_9, aside.column-1_10, aside.column-1_11, aside.column-1_12 {
width:33.3333%;
}
.header_fullwidth aside,
.footer_fullwidth aside {
width:100% !important;
display:block !important;
margin-left:0 !important;
margin-bottom:0 !important;
}
.footer_wrap aside {
margin-bottom: 0;
}
.widget_product_tag_cloud a, .widget_tag_cloud a {
} .hide_on_notebook {
display: none;
} hr, .vc_separator { 
margin: 3em 0 !important;
}
table th, table td,
.sc_table table th, .sc_table table td	{
padding:1rem;
} button, input[type="button"], input[type="reset"], input[type="submit"], .theme_button,
.sc_item_button a, .sc_form button, .sc_price_link, .sc_action_item_link,
.post_item .more-link, .gallery_preview_show .post_readmore,
.malta_tabs .malta_tabs_titles li a {
font-size: 12px;
line-height: 16px;
padding: 15px 30px;
} .post_item_404 .post_content {
padding: 10rem 0 7rem;
}
.post_item_none_search .post_content {
padding: 5rem 0 3rem;
}
.post_item .more-link, .gallery_preview_show .post_readmore {
margin-top: 2em;
}
.post_layout_excerpt + .post_layout_excerpt {
margin-top: 5rem;
padding-top: 5rem;
}
.post_layout_chess .post_inner_content {
padding:0 10%;
}
.post_layout_chess .post_title {
font-size: 22px;
}
.post_layout_chess.post_format_quote .post_header,
.post_layout_chess.post_format_link .post_header,
.post_layout_chess.post_format_aside .post_header,
.post_layout_chess.post_format_status .post_header {
display:none;
}
.post_layout_chess.post_format_quote .post_content_inner + .post_meta,
.post_layout_chess.post_format_link .post_content_inner + .post_meta,
.post_layout_chess.post_format_aside .post_content_inner + .post_meta,
.post_layout_chess.post_format_status .post_content_inner + .post_meta {
display:block;
}
.post_layout_chess.post_format_quote .post_content_inner + .post_meta,
.post_layout_chess.post_format_link .post_content_inner + .post_meta,
.post_layout_chess.post_format_status .post_content_inner + .post_meta {
margin-top:0 !important;
}
.post_layout_chess.post_format_aside .post_content_inner + .post_meta {
margin-top: 1em;
}
.post_layout_chess .post_header + .post_content {
margin-top:1em;
line-height: 1.3846em;
}
.post_layout_chess .post_content_inner {
display:block;
}
.post_layout_chess .post_content_inner,
.post_layout_chess:not(.post_format_quote):not(.post_format_link):not(.post_format_aside):not(.post_format_status) .post_content_inner {
font-size: 1em;
line-height: 1.3846em;
max-height: none;
}	
.post_layout_chess .post_content_inner:after {
display:none;
}
.post_layout_chess.post_format_link .post_content_inner,
.post_layout_chess.post_format_aside .post_content_inner,
.post_layout_chess.post_format_status .post_content_inner {
font-size: 1.6154em;
}
.post_layout_chess blockquote {
padding: 2em 2em 2em 5em;
}
.post_layout_chess blockquote:before {
top: 1.1em;
left: 0.7em;
}
.post_layout_chess blockquote p {
font-size: 1.3846em;
line-height: 1.3333em;
}
.post_layout_chess blockquote > a, .post_layout_chess blockquote > p > a,
.post_layout_chess blockquote > cite, .post_layout_chess blockquote > p > cite {
font-size: 12px;
line-height: 16px;
}
.post_layout_chess .more-link {
margin-top: 1.3846em;
}
.post_layout_chess_2 {									width: 100%; float:none; }
.post_layout_chess_2:nth-child(4n+3) .post_featured,
.post_layout_chess_2:nth-child(4n+4) .post_featured {	float:right; }
.post_layout_chess_2:nth-child(4n+3) .post_inner,
.post_layout_chess_2:nth-child(4n+4) .post_inner {		left: 0; right:auto; }
.post_layout_chess_3 {									width: 100%; float:none; }
.post_layout_chess_3:nth-child(6n+4) .post_featured,
.post_layout_chess_3:nth-child(6n+5) .post_featured,
.post_layout_chess_3:nth-child(6n+6) .post_featured {	float:right; }
.post_layout_chess_3:nth-child(6n+4) .post_inner,
.post_layout_chess_3:nth-child(6n+5) .post_inner,
.post_layout_chess_3:nth-child(6n+6) .post_inner {		left: 0; right:auto; }
.post_layout_chess:nth-child(2n+2) .post_featured {		float:left; }
.post_layout_chess:nth-child(2n+2) .post_inner {		left: auto; right:0; }
.post_layout_classic .post_content {
font-size:1em;
}
.post_layout_classic blockquote {
padding: 2em 2em 2em 5em;
}
.post_layout_classic blockquote:before {
top: 1.1em;
left: 0.7em;
}
.post_layout_classic blockquote p {
font-size: 15px;
}
.post_layout_classic blockquote > a, .post_layout_classic blockquote > p > a,
.post_layout_classic blockquote > cite, .post_layout_classic blockquote > p > cite {
font-size: 13px;
}
.post_layout_classic .swiper-container-horizontal > .swiper-pagination,
.post_layout_classic .slider_swiper_outer > .swiper-pagination {
bottom: 6px;
}
.post_layout_classic .slider_swiper .swiper-pagination-bullet, 
.post_layout_classic .slider_swiper_outer .swiper-pagination-bullet {
width: 6px;
height: 6px;
border-width: 1px;
}
.post_layout_classic.format-audio .post_featured.with_thumb .post_audio {
bottom: 1em;
}
.post_layout_classic.post_format_audio .mejs-time {
display:none;
}
.gallery_preview .post_description_content {
display: none !important;
}
.gallery_preview_description {
padding: 0 2em;
}
.gallery_preview_show .post_readmore {
margin-top:0;
} .comments_list_wrap .comment_posted {
font-size:1em;
} .sc_item_title {
}
.sc_item_subtitle + .sc_item_title {
margin-top: 0.4em;
}
.sc_item_title + .sc_item_descr, .sc_item_subtitle + .sc_item_descr,
.sc_item_title + .sc_item_slider, .sc_item_subtitle + .sc_item_slider, .sc_item_descr + .sc_item_slider,
.sc_item_title + .sc_item_columns, .sc_item_subtitle + .sc_item_columns, .sc_item_descr + .sc_item_columns,
.sc_item_title + .sc_item_content, .sc_item_subtitle + .sc_item_content, .sc_item_descr + .sc_item_content {
margin-top: 2em;
}
.sc_item_title + .sc_item_button, .sc_item_title + .sc_item_button_image,
.sc_item_subtitle + .sc_item_button, .sc_item_subtitle + .sc_item_button_image,
.sc_item_descr + .sc_item_button, .sc_item_descr + .sc_item_button_image,
.sc_item_content + .sc_item_button, .sc_item_content + .sc_item_button_image,
.sc_item_slider + .sc_item_button, .sc_item_slider + .sc_item_button_image,
.sc_item_columns + .sc_item_button, .sc_item_columns + .sc_item_button_image {
margin-top: 2em;
}
.trx_addons_audio_player {
padding: 2em 1.6em;
}
.sc_blogger_classic .sc_blogger_item .sc_blogger_item_content {
padding:2em 1.6em;
}
.sc_blogger_classic .sc_blogger_item .sc_blogger_item_excerpt {
margin-top:1em;
}
.sc_blogger_classic .sc_blogger_item .sc_blogger_item_button {
margin-top: 1em;
}
.sc_googlemap {
max-height:60vh;
}
.sc_icons .sc_icons_icon + .sc_icons_title,
.sc_icons .sc_icons_icon + .sc_icons_description {
margin-top:1em;
}
.sc_icons .sc_icons_description {
font-size: 14px;
}
.sc_price_title {
font-size:2em;
}
h2.sc_item_title.sc_item_title_style_default {
font-size: 32px;
}
.sc_promo.sc_promo_size_normal .sc_promo_text_inner {
padding:2em;
}
.sc_promo_modern .sc_promo_descr, .sc_promo_modern .sc_promo_button {
padding-left: 4rem;
}
.sc_skills_pie.sc_skills_compact_off .sc_skills_total {
font-size: 2.5rem;
}
.vc_row.vc_inner .sc_skills_counter .sc_skills_item_wrap {
padding:2em 0 0 2em;
}
.sc_services_iconed .sc_services_item_header {
padding: 1.6154em;
}
.sc_services_iconed .sc_services_item_icon {
font-size:2em;
}
.sc_services_iconed .sc_services_item_content {
padding: 1.6154em;
}
.slider_swiper .swiper-slide {
min-height:26rem;
}
.slider_style_modern .slider_swiper .swiper-slide {
min-height:20rem;
}
.post_layout_excerpt .slider_swiper .swiper-slide {
min-height:40rem;
}
.columns_wrap .slider_swiper .swiper-slide,
.wpb_column:not(.vc_col-sm-12) .slider_swiper .swiper-slide {
min-height:10rem;
}
.post_layout_classic .slider_swiper .swiper-slide {
min-height:19rem;
}
.sc_blogger_item .slider_swiper .swiper-slide {
min-height:12rem;
}
.slider_style_modern .slider_controls_label span + span {
font-size:1.5em;
}
.sc_team_item_thumb .sc_team_item_content {
display:none;
}
.sc_team_default .sc_team_item_info {
padding:1.6154em;
}
.sc_team_default .sc_team_item_socials {
margin-top: 1em;
} .wpb_text_column[class*="scheme_"] {
padding: 1.5em;
}
.vc_row.vc_row-o-full-height,
.trx_addons_stretch_height {
min-height: 0 !important;
} .events-list .tribe-events-loop, .single-tribe_organizer .tribe-events-loop, .single-tribe_venue .tribe-events-loop, .tribe-events-day .tribe-events-loop {
max-width:none;
}
#tribe-events-content .tribe-events-calendar td {
height: 8em;
}
.tribe-events-calendar td div[id*="tribe-events-daynum-"] {
margin-bottom: 0.4em;
padding: 1em 1.7em;
}
.tribe-events-event-meta .tribe-event-schedule-details {
padding-left: 12px;
}
.single-tribe_events .tribe-events-single-section {
width:100%;
float: none;
}
.single-tribe_events .tribe-events-event-meta .tribe-events-meta-group {
width: 45%;
}
.single-tribe_events .tribe-events-venue-map {
float:right;
}
.single-tribe_events #tribe-events-footer {
margin-top: 3em;
}
#tribe-events .tribe-events-content p, .tribe-events-after-html p, .tribe-events-before-html p {
line-height: 1.6154em;
} #bbpress-forums > #subscription-toggle, #bbpress-forums > .bbp-topic-tags {
position:static;
margin-bottom: 1em;
}
#buddypress #item-header-cover-image #item-header-avatar,
.bp-user #buddypress #item-header #item-header-cover-image #item-header-avatar,
#buddypress div#item-header #item-header-cover-image #item-header-content {
width: auto;
text-align:left;
}
#buddypress div#item-header #item-header-cover-image #item-header-content {
max-width: 70%;
}
#buddypress .comment-reply-link, #buddypress .generic-button a, #buddypress a.button, #buddypress button, #buddypress input[type="button"], #buddypress input[type="reset"], #buddypress input[type="submit"], #buddypress ul.button-nav li a, #buddypress div.activity-meta a, a.bp-title-button {
font-size: 12px;
padding: 10px 12px 6px;
}
#buddypress .standard-form div.submit {
padding:0;
} .woocommerce .button, .woocommerce-page .button, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button .woocommerce #respond input#submit, .woocommerce input[type="button"], .woocommerce-page input[type="button"], .woocommerce input[type="submit"], .woocommerce-page input[type="submit"], .woocommerce .woocommerce-message .button, .woocommerce ul.products li.product .button, .woocommerce div.product form.cart .button, .woocommerce #review_form #respond p.form-submit input[type="submit"], .woocommerce-page #review_form #respond p.form-submit input[type="submit"], .woocommerce table.my_account_orders .order-actions .button,
.woocommerce #respond input#submit.disabled, .woocommerce #respond input#submit:disabled, .woocommerce #respond input#submit[disabled]:disabled, .woocommerce a.button.disabled, .woocommerce a.button:disabled, .woocommerce a.button[disabled]:disabled, .woocommerce button.button.disabled, .woocommerce button.button:disabled, .woocommerce button.button[disabled]:disabled, .woocommerce input.button.disabled, .woocommerce input.button:disabled, .woocommerce input.button[disabled]:disabled {
font-size:11px;
padding: 11px 16px;
}
.woocommerce div.product div.images, .woocommerce #content div.product div.images, .woocommerce-page div.product div.images, .woocommerce-page #content div.product div.images {
width: 40%;
}
.woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
width:60%;
padding-left:2.5em;
}
.woocommerce div.product .woocommerce-product-rating, .woocommerce-page div.product .woocommerce-product-rating {
margin-top:-4px;
}
.woocommerce div.product p.price {
margin-bottom: 1em;
}
span.amount > .decimals {
font-size: 0.6em;
margin-left: 0.1em;
}
.woocommerce .star-rating, .woocommerce-page .star-rating {
margin-top:0;
}
.single-product ul.products li.product .post_data {
padding:1em;
}
.single-product ul.products li.product .post_data .post_header {
margin-top:1em;
}
.single-product ul.products li.product .post_data .post_header h3 {
font-size: 20px;
}
.single-product ul.products li.product .post_data .price {
margin: 1em 0;
}
.woocommerce #content table.cart td.actions .coupon, .woocommerce table.cart td.actions .coupon, .woocommerce-page #content table.cart td.actions .coupon, .woocommerce-page table.cart td.actions .coupon {
float:left;
}
.woocommerce #content table.cart td.actions .coupon .button.alt, .woocommerce #content table.cart td.actions .coupon .input-text + .button, .woocommerce table.cart td.actions .coupon .button.alt, .woocommerce table.cart td.actions .coupon .input-text + .button, .woocommerce-page #content table.cart td.actions .coupon .button.alt, .woocommerce-page #content table.cart td.actions .coupon .input-text + .button, .woocommerce-page table.cart td.actions .coupon .button.alt, .woocommerce-page table.cart td.actions .coupon .input-text + .button {
float: left;
width: auto;
}
.woocommerce #content table.cart td.actions .button, .woocommerce table.cart td.actions .button, .woocommerce-page #content table.cart td.actions .button, .woocommerce-page table.cart td.actions .button {
width: auto;
display:inline-block;
}
.woocommerce .woocommerce-checkout .woocommerce-shipping-fields {
margin-top:2em;
}
.woocommerce-MyAccount-navigation ul li a {
padding: 1em 0 0.6em;
}
.woocommerce-account .woocommerce-MyAccount-content .addresses.col2-set .col-1 {
float:left;
width: 48%;
}
.woocommerce-account .woocommerce-MyAccount-content .addresses.col2-set .col-2 {
float:right;
width: 48%;
}
.sc_countdown_circle .sc_countdown_digits, .sc_countdown_circle .sc_countdown_separator {
height: 2.7em;
line-height: 2.7em;
}
.sc_countdown_circle .sc_countdown_digits {
width: 2.7em;
}
.post_layout_chess_3 .more-link {
font-size: 0.826em;
}
.post_layout_chess_2 .post_meta, .post_layout_chess_3 .post_meta {
font-size: 0.7em;
}
.sc_googlemap_content_default {
padding: 6em 3em;
right: 0;
width: 33.3%;
}
.menu_main_nav > li > ul:before {
content: '';
position: absolute;
top: -0.4em;
}
.cq-flipbox-container .cq-flipbox-content {
font-size: 0.9em;
}
#sb_instagram #sbi_load {
top: 40%;
padding-top: 0 !important;
margin-top: 0;
}
.sc_blogger .sc_blogger_item .sc_blogger_item_title {
font-size: 1.5em;
}
.top_panel_fixed .top_panel_navi .search_wrap .search_submit {
margin-top: 0;
}
.top_panel_navi .search_wrap .search_submit {
margin-top: 1em;
}
.woocommerce #respond input#submit.disabled, .woocommerce #respond input#submit:disabled, .woocommerce #respond input#submit[disabled]:disabled, .woocommerce a.button.disabled, .woocommerce a.button:disabled, .woocommerce a.button[disabled]:disabled, .woocommerce button.button.disabled, .woocommerce button.button:disabled, .woocommerce button.button[disabled]:disabled, .woocommerce input.button.disabled, .woocommerce input.button:disabled, .woocommerce input.button[disabled]:disabled,
.woocommerce .button, .woocommerce-page .button, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button .woocommerce #respond input#submit, .woocommerce input[type="button"], .woocommerce-page input[type="button"], .woocommerce input[type="submit"], .woocommerce-page input[type="submit"], .woocommerce .woocommerce-message .button, .woocommerce ul.products li.product .button, .woocommerce div.product form.cart .button, .woocommerce #review_form #respond p.form-submit input[type="submit"], .woocommerce-page #review_form #respond p.form-submit input[type="submit"], .woocommerce table.my_account_orders .order-actions .button {
padding: 0.714em 2.6em 0.714em;
}
.sc_services_default .sc_services_item_title {
font-size: 1.2em;
}
.format-audio .post_featured .post_audio_title {
margin-top: 0;
margin-bottom: 0.5em;
}
.comments_list_wrap .comment_info {
font-size: 0.9em;
}
.comments_list_wrap .comment_posted {
margin-left: 0.5em;
}
.comment_author + .comment_posted::before {
margin-right: 0.5em;
}
.comments_list_wrap .comment_content {
padding-left: 8em;
}
.comments_list_wrap .comment_author_avatar {
width: 6em;
height: 6em;
}
.woocommerce .widget_shopping_cart_content .buttons .button {
padding: 0.714em 1em 0.714em;
}
.sc_item_button a, .sc_form button, .sc_price_link, .sc_action_item_link {
padding: 0.714em 2.6em 0.714em;
}
.cq-flipbox-container h4.cq-flipbox-title {
font-size: 1.8em;
}
.post_item .more-link, .gallery_preview_show .post_readmore {
padding: 0.714em 2.6em 0.714em;
}
.comments_list_wrap ul ul {
margin-left: 4em;
}
button, input[type="button"], input[type="reset"], input[type="submit"], .theme_button {
padding: 0.714em 2.6em 0.714em;
}
.vc_row .vc_custom_1476947748964 {
padding-top: 0 !important;
padding-left: 0 !important;
}
#sb_instagram .sbi_follow_btn a {
font-size: 2.6em;
line-height: 1;
padding: 0 1.75em 0 0;
margin-top: 0;
}
#sb_instagram .sbi_follow_btn .fa {
top: 0;
}
#sb_instagram .sbi_follow_btn .fa {
line-height: 1.74em;
}
.post_meta .post_meta_item + .post_meta_item::before {
content: '';
margin: 0;
}
.footer_wrap_inner .widget_text {
font-size: 0.8em;
}
.mobile_layout .top_panel.top_panel_style_2 .menu_mobile_button {
top: 4.5rem;
}
.vc_row .vc_custom_1476879863491 {
padding-top: 0 !important;
padding-left: 15px !important;
}
.sc_team_short .sc_team_item_title {
font-size: 1.5em;
}
.vc_row .trx_addons_audio_player .audio_caption {
font-size: 1.5em;
}
.sc_skills_pie.sc_skills_compact_off .sc_skills_total {
top: 45%;
}
.sc_action_item.with_image .sc_action_item_inner {
padding: 4em 1em 4.5em;
}
.sc_item_title {
font-size: 2.6em;
}
.single-product div.product .trx-stretch-width .woocommerce-tabs .wc-tabs li a {
font-size: 1.2em;
}
.woocommerce div.product form.cart div.quantity, .woocommerce-page div.product form.cart div.quantity {
font-size: 10px;
}
.woocommerce table.cart td.actions .coupon .input-text, .woocommerce #content table.cart td.actions .coupon .input-text, .woocommerce-page table.cart td.actions .coupon .input-text, .woocommerce-page #content table.cart td.actions .coupon .input-text {
font-size: 10px;
}
.woocommerce form.checkout_coupon #coupon_code {
font-size: 10px;
}
.vc_custom_1476713768215 p {
font-size: 11px;
}
.sidebar .sidebar_inner {
background-image: none;
}
}
@media (min-width: 640px) and (max-width: 767px) { .content_wrap, .content_container {	width:600px; }
.sc_content_width_1_1 {	width: 600px; }
.sc_content_width_1_2 {	width: 300px; }
.sc_content_width_1_3 {	width: 200px; }
.sc_content_width_2_3 {	width: 400px; }
.sc_content_width_1_4 {	width: 150px; }
.sc_content_width_3_4 {	width: 450px; }
body.expand_content .sc_recent_news_style_news-announce .post_size_full {	width: 100%; height: 168px; }
body.expand_content .sc_recent_news_style_news-announce .post_size_big {	width: 100%; height: 168px;  }
body.expand_content .sc_recent_news_style_news-announce .post_size_medium,
body.expand_content .sc_recent_news_style_news-announce .post_size_small {	width: 100%; height: 168px;  }
.sc_countdown_circle .sc_countdown_digits, .sc_countdown_circle .sc_countdown_separator {
height: 2.7em;
line-height: 2.7em;
}
.sc_countdown_circle .sc_countdown_digits {
width: 2.7em;
}
.post_layout_chess_3 .more-link {
font-size: 0.826em;
}
.post_layout_chess_2 .post_meta, .post_layout_chess_3 .post_meta {
font-size: 0.7em;
}
.sc_googlemap_content_default {
padding: 2em 7em;
right: 0;
width: 100%;
position: static;
}
.menu_main_nav > li > ul:before {
content: '';
position: absolute;
top: -0.4em;
}
.cq-flipbox-container .cq-flipbox-content {
font-size: 0.9em;
}
#sb_instagram #sbi_load {
top: 48%;
padding-top: 0 !important;
margin-top: 0;
}
.sc_blogger .sc_blogger_item .sc_blogger_item_title {
font-size: 1.5em;
}
.top_panel_fixed .top_panel_navi .search_wrap .search_submit {
margin-top: 0;
}
.top_panel_navi .search_wrap .search_submit {
margin-top: 1em;
}
.woocommerce #respond input#submit.disabled, .woocommerce #respond input#submit:disabled, .woocommerce #respond input#submit[disabled]:disabled, .woocommerce a.button.disabled, .woocommerce a.button:disabled, .woocommerce a.button[disabled]:disabled, .woocommerce button.button.disabled, .woocommerce button.button:disabled, .woocommerce button.button[disabled]:disabled, .woocommerce input.button.disabled, .woocommerce input.button:disabled, .woocommerce input.button[disabled]:disabled,
.woocommerce .button, .woocommerce-page .button, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button .woocommerce #respond input#submit, .woocommerce input[type="button"], .woocommerce-page input[type="button"], .woocommerce input[type="submit"], .woocommerce-page input[type="submit"], .woocommerce .woocommerce-message .button, .woocommerce ul.products li.product .button, .woocommerce div.product form.cart .button, .woocommerce #review_form #respond p.form-submit input[type="submit"], .woocommerce-page #review_form #respond p.form-submit input[type="submit"], .woocommerce table.my_account_orders .order-actions .button {
padding: 0.714em 2.6em 0.714em;
}
.sc_services_default .sc_services_item_title {
font-size: 1.2em;
}
.format-audio .post_featured .post_audio_title {
margin-top: 0;
margin-bottom: 0.5em;
}
.comments_list_wrap .comment_info {
font-size: 0.9em;
}
.comments_list_wrap .comment_posted {
margin-left: 0.5em;
}
.comment_author + .comment_posted::before {
margin-right: 0.5em;
}
.comments_list_wrap .comment_content {
padding-left: 8em;
}
.comments_list_wrap .comment_author_avatar {
width: 6em;
height: 6em;
}
.woocommerce .widget_shopping_cart_content .buttons .button {
padding: 0.714em 1em 0.714em;
}
.sc_item_button a, .sc_form button, .sc_price_link, .sc_action_item_link {
padding: 0.714em 2.6em 0.714em;
}
.cq-flipbox-container h4.cq-flipbox-title {
font-size: 1.8em;
}
.post_item .more-link, .gallery_preview_show .post_readmore {
padding: 0.714em 2.6em 0.714em;
}
.comments_list_wrap ul ul {
margin-left: 4em;
}
button, input[type="button"], input[type="reset"], input[type="submit"], .theme_button {
padding: 0.714em 2.6em 0.714em;
}
.vc_row .vc_custom_1476947748964 {
padding-top: 2em !important;
padding-left: 15px !important;
}
#sb_instagram .sbi_follow_btn a {
font-size: 2.6em;
line-height: 1;
padding: 0 1.75em 0 0;
margin-top: 0;
}
#sb_instagram .sbi_follow_btn .fa {
top: 0;
}
#sb_instagram .sbi_follow_btn .fa {
line-height: 1.74em;
border: 2px solid;
}
.post_meta .post_meta_item + .post_meta_item::before {
content: '';
margin: 0;
}
.footer_wrap_inner .widget_text {
}
.mobile_layout .top_panel.top_panel_style_2 .menu_mobile_button {
top: 4.75rem;
}
.vc_row .vc_custom_1476879863491 {
padding-top: 0 !important;
padding-left: 15px !important;
padding-bottom: 2em !important;
}
.sc_team_short .sc_team_item_title {
font-size: 1.5em;
}
.vc_row .trx_addons_audio_player .audio_caption {
font-size: 1.5em;
}
.sc_skills_pie.sc_skills_compact_off .sc_skills_total {
top: 45%;
}
.sc_action_item.with_image .sc_action_item_inner {
padding: 4em 1em 4.5em;
}
.sc_item_title {
font-size: 2.6em;
}
.single-product div.product .trx-stretch-width .woocommerce-tabs .wc-tabs li a {
font-size: 1.2em;
}
.woocommerce div.product form.cart div.quantity, .woocommerce-page div.product form.cart div.quantity {
font-size: 10px;
}
.woocommerce table.cart td.actions .coupon .input-text, .woocommerce #content table.cart td.actions .coupon .input-text, .woocommerce-page table.cart td.actions .coupon .input-text, .woocommerce-page #content table.cart td.actions .coupon .input-text {
font-size: 10px;
}
.woocommerce form.checkout_coupon #coupon_code {
font-size: 10px;
}
.top_panel_top {
display: none;
}
.mobile_layout .top_panel .menu_mobile_button {
top: 5.5rem;
}
.menu_mobile .menu_mobile_nav_area {
max-height: 32%;
font-size: 0.8em;
padding-left: 15px;
}
.menu_mobile .menu_mobile_nav_area .open_child_menu {
line-height: 0.75em;
}
.vc_row .vc_custom_1476947699499 {
padding-right: 15px !important;
}
.vc_row .vc_custom_1476947699499 .wpb_single_image.vc_align_right {
text-align: center;
}
.sc_services_default .sc_services_item.with_image .sc_services_item_content {
font-size: 1em;
font-weight: 400;
}
.sc_price {
margin-bottom: 2em;
}
.vc_custom_1476962785755 .wpb_single_image.vc_align_left {
text-align: center;
}
.sc_testimonials.slider_swiper.slider_controls_bottom .slider_next, .sc_testimonials.slider_swiper_outer .slider_controls_bottom .slider_next {
margin-left: 235px;
}
.copyright_wrap_inner .copyright_text {
float: none;
text-align: center;
margin-bottom: 1em;
}
.copyright_wrap_inner .socials_wrap {
float: none;
text-align: center;
}
.copyright_wrap_inner .socials_footer_wrap_inner {
text-align: center;
}
.trx_addons_dropcap {
margin: 0 2rem 0 0;
padding: 0.2em 0 0.3em;
}
.vc_custom_1477143962153 .wpb_single_image.vc_align_left,
.vc_custom_1476879683358 .wpb_single_image.vc_align_left,
.vc_custom_1476885050757 .wpb_single_image.vc_align_left {
text-align: center;
}
.vc_custom_1476948385748 .cq-stackgallery {
height: 420px !important;
}
.top_panel_title .page_caption {
line-height: 1;
}
.top_panel.with_bg_image .top_panel_title_wrap {
margin-bottom: 3em;
}
.woocommerce .shop_mode_list ul.products li.product, .woocommerce-page .shop_mode_list ul.products li.product {
width: 100% !important;
}
.vc_custom_1476961881109 .vc_col-sm-12 {
overflow: hidden;
}
.vc_custom_1476714760537 .wpb_column {
margin-bottom: 2em;
}
}
@media (min-width: 480px) and (max-width: 639px) { .content_wrap, .content_container {	width:440px; }
.sc_content_width_1_1 {	width: 440px; }
.sc_content_width_1_2 {	width: 220px; }
.sc_content_width_1_3 {	width: 146.67px; }
.sc_content_width_2_3 {	width: 293.33px; }
.sc_content_width_1_4 {	width: 110px; }
.sc_content_width_3_4 {	width: 330px; }
body.expand_content .sc_recent_news_style_news-announce .post_size_full {	width: 100%; height: 124px; }
body.expand_content .sc_recent_news_style_news-announce .post_size_big {	width: 100%; height: 124px;  }
body.expand_content .sc_recent_news_style_news-announce .post_size_medium,
body.expand_content .sc_recent_news_style_news-announce .post_size_small {	width: 100%; height: 124px;  } .related_wrap .post_header {
max-width:90%;
padding:1em 1.5em;
}
.sc_countdown_circle .sc_countdown_digits, .sc_countdown_circle .sc_countdown_separator {
height: 2.7em;
line-height: 2.7em;
}
.sc_countdown_circle .sc_countdown_digits {
width: 2.7em;
}
.post_layout_chess_3 .more-link {
font-size: 0.826em;
}
.post_layout_chess_2 .post_meta, .post_layout_chess_3 .post_meta {
font-size: 0.7em;
}
.sc_googlemap_content_default {
padding: 2em 7em;
right: 0;
width: 100%;
position: static;
}
.menu_main_nav > li > ul:before {
content: '';
position: absolute;
top: -0.4em;
}
.cq-flipbox-container .cq-flipbox-content {
font-size: 0.9em;
}
#sb_instagram #sbi_load {
top: 48%;
padding-top: 0 !important;
margin-top: 0;
}
.sc_blogger .sc_blogger_item .sc_blogger_item_title {
font-size: 1.5em;
}
.top_panel_fixed .top_panel_navi .search_wrap .search_submit {
margin-top: 0;
}
.top_panel_navi .search_wrap .search_submit {
margin-top: 1em;
}
.woocommerce #respond input#submit.disabled, .woocommerce #respond input#submit:disabled, .woocommerce #respond input#submit[disabled]:disabled, .woocommerce a.button.disabled, .woocommerce a.button:disabled, .woocommerce a.button[disabled]:disabled, .woocommerce button.button.disabled, .woocommerce button.button:disabled, .woocommerce button.button[disabled]:disabled, .woocommerce input.button.disabled, .woocommerce input.button:disabled, .woocommerce input.button[disabled]:disabled,
.woocommerce .button, .woocommerce-page .button, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button .woocommerce #respond input#submit, .woocommerce input[type="button"], .woocommerce-page input[type="button"], .woocommerce input[type="submit"], .woocommerce-page input[type="submit"], .woocommerce .woocommerce-message .button, .woocommerce ul.products li.product .button, .woocommerce div.product form.cart .button, .woocommerce #review_form #respond p.form-submit input[type="submit"], .woocommerce-page #review_form #respond p.form-submit input[type="submit"], .woocommerce table.my_account_orders .order-actions .button {
padding: 0.714em 2.6em 0.714em;
}
.sc_services_default .sc_services_item_title {
font-size: 1.2em;
}
.format-audio .post_featured .post_audio_title {
margin-top: 0;
margin-bottom: 0.5em;
}
.comments_list_wrap .comment_info {
font-size: 0.9em;
}
.comments_list_wrap .comment_posted {
margin-left: 0.5em;
display: inline;
}
.comment_author + .comment_posted::before {
content: '';
margin-right: 0.5em;
}
.comments_list_wrap .comment_content {
padding-left: 8em;
}
.comments_list_wrap .comment_author_avatar {
width: 6em;
height: 6em;
}
.woocommerce .widget_shopping_cart_content .buttons .button {
padding: 0.714em 1em 0.714em;
}
.sc_item_button a, .sc_form button, .sc_price_link, .sc_action_item_link {
padding: 0.714em 2.6em 0.714em;
}
.cq-flipbox-container h4.cq-flipbox-title {
font-size: 1.8em;
}
.post_item .more-link, .gallery_preview_show .post_readmore {
padding: 0.714em 2.6em 0.714em;
}
.comments_list_wrap ul ul {
margin-left: 4em;
}
button, input[type="button"], input[type="reset"], input[type="submit"], .theme_button {
padding: 0.714em 2.6em 0.714em;
}
.vc_row .vc_custom_1476947748964 {
padding-top: 2em !important;
padding-left: 15px !important;
}
#sb_instagram .sbi_follow_btn a {
font-size: 2.6em;
line-height: 1;
padding: 0 1.75em 0 0;
margin-top: 0;
}
#sb_instagram .sbi_follow_btn .fa {
top: 0;
}
#sb_instagram .sbi_follow_btn .fa {
line-height: 1.74em;
border: 2px solid;
}
.post_meta .post_meta_item + .post_meta_item::before {
content: '';
margin: 0;
}
.footer_wrap_inner .widget_text {
}
.mobile_layout .top_panel.top_panel_style_2 .menu_mobile_button {
top: 3.7rem;
}
.vc_row .vc_custom_1476879863491 {
padding-top: 0 !important;
padding-left: 15px !important;
padding-bottom: 2em !important;
}
.sc_team_short .sc_team_item_title {
font-size: 1.5em;
}
.vc_row .trx_addons_audio_player .audio_caption {
font-size: 1.5em;
}
.sc_skills_pie.sc_skills_compact_off .sc_skills_total {
top: 45%;
}
.sc_action_item.with_image .sc_action_item_inner {
padding: 4em 1em 4.5em;
}
.sc_item_title {
font-size: 2.6em;
}
.single-product div.product .trx-stretch-width .woocommerce-tabs .wc-tabs li a {
font-size: 1em;
}
.woocommerce div.product form.cart div.quantity, .woocommerce-page div.product form.cart div.quantity {
font-size: 10px;
}
.woocommerce table.cart td.actions .coupon .input-text, .woocommerce #content table.cart td.actions .coupon .input-text, .woocommerce-page table.cart td.actions .coupon .input-text, .woocommerce-page #content table.cart td.actions .coupon .input-text {
font-size: 10px;
}
.woocommerce form.checkout_coupon #coupon_code {
font-size: 10px;
}
.top_panel_top {
display: none;
}
.mobile_layout .top_panel .menu_mobile_button {
top: 4.5rem;
}
.menu_mobile .menu_mobile_nav_area {
max-height: 60%;
font-size: 0.8em;
padding-left: 15px;
top: 60%;
}
.menu_mobile .menu_mobile_nav_area .open_child_menu {
line-height: 0.75em;
}
.vc_row .vc_custom_1476947699499 {
padding-right: 15px !important;
}
.vc_row .vc_custom_1476947699499 .wpb_single_image.vc_align_right {
text-align: center;
}
.sc_services_default .sc_services_item.with_image .sc_services_item_content {
font-size: 1em;
font-weight: 400;
}
.sc_price {
margin-bottom: 2em;
}
.vc_custom_1476962785755 .wpb_single_image.vc_align_left {
text-align: center;
}
.sc_testimonials.slider_swiper.slider_controls_bottom .slider_next, .sc_testimonials.slider_swiper_outer .slider_controls_bottom .slider_next {
margin-left: 155px;
}
.copyright_wrap_inner .copyright_text {
float: none;
text-align: center;
margin-bottom: 1em;
}
.copyright_wrap_inner .socials_wrap {
float: none;
text-align: center;
}
.copyright_wrap_inner .socials_footer_wrap_inner {
text-align: center;
}
.trx_addons_dropcap {
margin: 0 2rem 0 0;
padding: 0.2em 0 0.3em;
}
.vc_custom_1477143962153 .wpb_single_image.vc_align_left,
.vc_custom_1476879683358 .wpb_single_image.vc_align_left,
.vc_custom_1476885050757 .wpb_single_image.vc_align_left {
text-align: center;
}
.vc_custom_1476948385748 .cq-stackgallery {
height: 420px !important;
}
.top_panel_title .page_caption {
line-height: 1;
font-size: 2.692em;
}
.top_panel.with_bg_image .top_panel_title_wrap {
margin-bottom: 3em;
}
.woocommerce .shop_mode_list ul.products li.product, .woocommerce-page .shop_mode_list ul.products li.product {
width: 100% !important;
}
.vc_custom_1476961881109 .vc_col-sm-12 {
overflow: hidden;
}
.vc_custom_1476714760537 .wpb_column {
margin-bottom: 2em;
}
.vc_row.vc_custom_1476958986222 {
padding-top: 4.8em !important;
padding-bottom: 4.7em !important;
}
.sc_testimonials_item_content {
padding: 0 4em;
}
.vc_row.vc_custom_1476870146947 {
padding-top: 5.5em !important;
padding-bottom: 3.3em !important;
}
.sc_testimonials_item_author {
max-width: 150px;
font-size: 0.75em;
}
.menu_mobile .logo img {
max-height: 50px;
}
.menu_mobile .logo {
text-align: center;
margin: 1.5rem 0 0;
}
.menu_mobile .socials_mobile,
.menu_mobile .search_mobile {
display: none;
}
.vc_row .vc_custom_1477291854329 {
background-size: auto!important;
}
blockquote.trx_addons_blockquote_style_2 {
padding: 1.2em 3.2em 0.6em;
}
table th {
font-size: 1.446em;
}
.comments_list_wrap .comment_posted > span + span::before {
content: '';
margin: 0 0.5em;
}
.woocommerce .woocommerce-result-count {
display: none;
}
}
@media (min-width: 480px) and (max-width: 767px) {
html { font-size: 9px; line-height: 160%; }
body { font-size: 13px; line-height: 161.54%; }
h1 { font-size: 28px;	line-height:32px;	margin-top: 32px;	margin-bottom: 18px;	letter-spacing: 0px; }
h2 { font-size: 26px;	line-height:30px;	margin-top: 30px;	margin-bottom: 18px;	letter-spacing: 0px; }
h3 { font-size: 22px;	line-height:26px;	margin-top: 28px;	margin-bottom: 18px;	letter-spacing: 0px; }
h4 { font-size: 18px;	line-height:22px;	margin-top: 26px;	margin-bottom: 16px;	letter-spacing: 0px; }
h5 { font-size: 16px;	line-height:20px;	margin-top: 24px; 	margin-bottom: 14px;	letter-spacing: 0px; }
h6 { font-size: 14px;	line-height:18px;	margin-top: 22px;	margin-bottom: 10px;	letter-spacing: 0px; }
p, ul, ol, dl, blockquote, address {
margin-bottom: 1em;
} .body_style_boxed .page_wrap {		width:100%; }  body.woocommerce-page:not(.expand_content):not(.body_style_fullwide):not(.body_style_fullscreen) .content,
body:not(.expand_content):not(.body_style_fullwide):not(.body_style_fullscreen) .content { width:100%; float: none; margin-bottom:0;	}
.sidebar { 				 width: 100%; float:none; margin-top:3em; } .body_style_fullwide .content_wrap {
padding-left:20px;
padding-right:20px;
}
.body_style_fullwide.sidebar_right .content, .body_style_fullscreen.sidebar_right .content { padding-right: 0 !important; float: none; }
.body_style_fullwide.sidebar_right .sidebar, .body_style_fullscreen.sidebar_right .sidebar { margin-left: 0 !important; float: none; }
.body_style_fullwide.sidebar_left  .content, .body_style_fullscreen.sidebar_left  .content { padding-left: 0 !important; float: none; }
.body_style_fullwide.sidebar_left  .sidebar, .body_style_fullscreen.sidebar_left  .sidebar { margin-right: 0 !important; float: none; } .container, .container-fluid {
padding-left:  10px;
padding-right: 10px;
}
.row,
.columns_wrap,
.trx_addons_columns_wrap {
margin-right: -20px;
}
.row > [class*="column-"],
.columns_wrap > [class*="column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"] {
padding-right: 20px;
}
.row.columns_padding_left,
.columns_wrap.columns_padding_left,
.trx_addons_columns_wrap.columns_padding_left {
margin-left: -20px;
}
.row.columns_padding_left > [class*="column-"], .columns_wrap.columns_padding_left > [class*="column-"],
.row > [class*="column-"].columns_padding_left, .columns_wrap > [class*="column-"].columns_padding_left,
.trx_addons_columns_wrap.columns_padding_left > [class*="trx_addons_column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_left {
padding-left: 20px;
}
.row.columns_padding_right,
.columns_wrap.columns_padding_right,
.trx_addons_columns_wrap.columns_padding_right {
margin-right: -20px;
}
.row.columns_padding_right > [class*="column-"], .columns_wrap.columns_padding_right > [class*="column-"],
.row > [class*="column-"].columns_padding_right, .columns_wrap > [class*="column-"].columns_padding_right,
.trx_addons_columns_wrap.columns_padding_right > [class*="trx_addons_column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_right {
padding-right:20px;
}
.row.columns_padding_center,
.columns_wrap.columns_padding_center,
.trx_addons_columns_wrap.columns_padding_center {
margin-left: -10px;
margin-right: -10px;
}
.row.columns_padding_center > [class*="column-"], .columns_wrap.columns_padding_center > [class*="column-"],
.row > [class*="column-"].columns_padding_center, .columns_wrap > [class*="column-"].columns_padding_center,
.trx_addons_columns_wrap.columns_padding_center > [class*="trx_addons_column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_center {
padding-left:20px;
}
.row.columns_padding_bottom > [class*="column-"], .columns_wrap.columns_padding_bottom > [class*="column-"],
.row > [class*="column-"].columns_padding_bottom, .columns_wrap > [class*="column-"].columns_padding_bottom,
.trx_addons_columns_wrap.columns_padding_bottom > [class*="trx_addons_column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_bottom {
padding-bottom: 20px;
} .row:not(.columns_fluid) > [class*="column-"], .columns_wrap:not(.columns_fluid) > [class*="column-"] {
width:50%;
}
.row:not(.columns_fluid) > .column-1_1, .row:not(.columns_fluid) > .column-2_2, .row:not(.columns_fluid) > .column-3_3, .row:not(.columns_fluid) > .column-4_4,
.row:not(.columns_fluid) > .column-5_5,	.row:not(.columns_fluid) > .column-6_6, .row:not(.columns_fluid) > .column-7_7, .row:not(.columns_fluid) > .column-8_8,
.row:not(.columns_fluid) > .column-9_9, .row:not(.columns_fluid) > .column-10_10,
.row:not(.columns_fluid) > .column-11_11, .row:not(.columns_fluid) > .column-12_12,
.columns_wrap:not(.columns_fluid) > .column-1_1, .columns_wrap:not(.columns_fluid) > .column-2_2, .columns_wrap:not(.columns_fluid) > .column-3_3,
.columns_wrap:not(.columns_fluid) > .column-4_4, .columns_wrap:not(.columns_fluid) > .column-5_5, .columns_wrap:not(.columns_fluid) > .column-6_6,
.columns_wrap:not(.columns_fluid) > .column-7_7, .columns_wrap:not(.columns_fluid) > .column-8_8, .columns_wrap:not(.columns_fluid) > .column-9_9,
.columns_wrap:not(.columns_fluid) > .column-10_10, .columns_wrap:not(.columns_fluid) > .column-11_11, .columns_wrap:not(.columns_fluid) > .column-12_12,  .row:not(.columns_fluid) > .column-2_3, .columns_wrap:not(.columns_fluid) > .column-2_3,
.row:not(.columns_fluid) > .column-1_3.after_span_2, .columns_wrap:not(.columns_fluid) > .column-1_3.after_span_2,
.row:not(.columns_fluid) > .column-2_4, .columns_wrap:not(.columns_fluid) > .column-3_4,
.row:not(.columns_fluid) > .column-1_4.after_span_2, .columns_wrap:not(.columns_fluid) > .column-1_4.after_span_3,  .row:not(.columns_fluid) > .column-2_5, .columns_wrap:not(.columns_fluid) > .column-2_5,
.row:not(.columns_fluid) > .column-3_5, .columns_wrap:not(.columns_fluid) > .column-3_5,
.row:not(.columns_fluid) > .column-4_5, .columns_wrap:not(.columns_fluid) > .column-4_5,
.row:not(.columns_fluid) > .column-2_6, .columns_wrap:not(.columns_fluid) > .column-2_6,
.row:not(.columns_fluid) > .column-3_6, .columns_wrap:not(.columns_fluid) > .column-3_6,
.row:not(.columns_fluid) > .column-4_6, .columns_wrap:not(.columns_fluid) > .column-4_6,
.row:not(.columns_fluid) > .column-5_6, .columns_wrap:not(.columns_fluid) > .column-5_6,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-1_1, .trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-2_2,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-3_3, .trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-4_4,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-5_5, .trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-6_6,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-7_7, .trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-8_8,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-9_9, .trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-10_10,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-11_11,.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-12_12,  .trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-2_3,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-1_3.after_span_2,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-3_4,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-1_4.after_span_3,  .trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-2_5,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-3_5,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-4_5,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-2_6,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-3_6,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-4_6,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-5_6 {
width:100%;
}
.row:not(.columns_fluid) > [class*="column-"]:nth-child(2n+3), .columns_wrap:not(.columns_fluid) > [class*="column-"]:nth-child(2n+3),
.row:not(.columns_fluid) > [class*="column-"]:nth-child(2n+4), .columns_wrap:not(.columns_fluid) > [class*="column-"]:nth-child(2n+4),
.trx_addons_columns_wrap:not(.columns_fluid) > [class*="trx_addons_column-"]:nth-child(2n+3),
.trx_addons_columns_wrap:not(.columns_fluid) > [class*="trx_addons_column-"]:nth-child(2n+4) {
padding-top: 20px;
} .gallery.gallery-columns-9 .gallery-item {	width: 33.3333% !important; }
.gallery.gallery-columns-8 .gallery-item {	width: 33.3333% !important; }
.gallery.gallery-columns-7 .gallery-item {	width: 33.3333% !important; }
.gallery.gallery-columns-6 .gallery-item {	width: 33.3333% !important; }
.gallery.gallery-columns-5 .gallery-item {	width: 33.3333% !important; }
.gallery.gallery-columns-4 .gallery-item {	width: 33.3333% !important; }
img.alignleft, img.alignright,
figure.alignleft, figure.alignright {
float:none;
display:block;
margin: 1em auto !important;
} body.no_layout.menu_style_left {	margin-left: 0; }
body.no_layout.menu_style_right {	margin-right: 0; }
body.no_layout.menu_style_right .menu_side_wrap {	right: -6rem; }
body.no_layout.menu_style_left .menu_side_wrap {	left: -6rem; }
.toc_menu_item .toc_menu_icon:before {	font-size: 20px; }
.toc_menu_item .toc_menu_description span {	letter-spacing:1px;	padding:0 1.5em; }
.menu_mobile .menu_mobile_nav_area li > a {
font-size: 1.2308em;
line-height:1.5em;
}
.menu_mobile .menu_mobile_nav_area > ul > li > a {
font-size: 2em;
line-height:1.5em;
}
.top_panel {
margin-bottom: 4rem;
}
.site_footer_wrap {
margin-top: 3rem;
}
.top_panel.with_bg_image {
min-height:20em;
}
.top_panel_style_2.with_bg_image.header_fullheight .top_panel_title_2 {
margin-top: 4rem;
margin-bottom:6rem;
}
.top_panel_title_2_image, .top_panel_title_2_image img {
max-height:7rem;
}
.top_panel_title .post_meta + .page_caption {
font-size: 28px;
} .top_panel .slider_engine_revo .slide_subtitle {
margin-bottom: 1em !important;
font-size: 14px !important;
}
.top_panel .slider_engine_revo .slide_button {
font-size: 11px !important;
} .sidebar .sidebar_inner {
padding: 20px 0;
}
.sidebar[class*="scheme_"] .sidebar_inner {
padding: 20px 10px;
} .sidebar aside, .sidebar[class*="scheme_"] aside {
display: inline-block;
float:none;
vertical-align:top;
width:50%;
padding: 0 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.sidebar aside + aside, .sidebar[class*="scheme_"] aside + aside {
margin-top: 0;
padding-top: 0;
border-top-width:0;
}
.footer_wrap aside + aside + aside,
.sidebar aside + aside + aside, .sidebar[class*="scheme_"] aside + aside + aside {
margin-top: 20px !important;
padding-top: 20px !important;
}
aside.column-1_4, aside.column-1_5, aside.column-1_6, aside.column-1_7, aside.column-1_8, aside.column-1_9, aside.column-1_10, aside.column-1_11, aside.column-1_12 {
width:50%;
}
.header_fullwidth aside,
.footer_fullwidth aside {
width:100% !important;
display:block !important;
margin-left:0 !important;
margin-bottom:0 !important;
}
.footer_wrap aside {
margin-bottom: 0;
}
.widget_product_tag_cloud a, .widget_tag_cloud a {
} .hide_on_notebook,
.hide_on_mobile {
display: none;
} hr, .vc_separator { 
margin: 3em 0 !important;
}
table th, table td,
.sc_table table th, .sc_table table td	{
padding:1rem;
} .malta_tabs .malta_tabs_titles {
margin: 0 0 2em;
}
button, input[type="button"], input[type="reset"], input[type="submit"], .theme_button,
.sc_item_button a, .sc_form button, .sc_price_link, .sc_action_item_link,
.post_item .more-link, .gallery_preview_show .post_readmore,
.malta_tabs .malta_tabs_titles li a {
font-size: 12px;
line-height: 16px;
padding: 12px 24px;
} .post_item_404 .post_content {
padding: 3em 0;
}
.post_item_404 .page_title {
font-size:8em;
line-height:1em;
float: none;
width:100%;
text-align:center;
}
.post_item_404 .page_info {
padding-left: 0;
padding-top: 2em;
width:100%;
text-align:center;
}
.post_item_404 .page_description {
line-height:1.7em;
}
.post_item_404 .go_home {
padding: 1em 2em;
}
.post_item .more-link, .gallery_preview_show .post_readmore {
margin-top: 2em;
}
.post_meta {
line-height:1.3em;
}
.post_layout_excerpt + .post_layout_excerpt {
margin-top: 5rem;
padding-top: 5rem;
}
.post_layout_chess .post_inner_content {
padding:0 10%;
}
.post_layout_chess .post_title {
font-size: 22px;
}
.post_layout_chess .post_title + .post_meta {
margin-top:0.4em;
}
.post_layout_chess.post_format_quote .post_header,
.post_layout_chess.post_format_link .post_header,
.post_layout_chess.post_format_aside .post_header,
.post_layout_chess.post_format_status .post_header {
display:block;
}
.post_layout_chess .post_content_inner {
display:none;
}
.post_layout_chess.post_format_quote .post_content_inner + .post_meta,
.post_layout_chess.post_format_link .post_content_inner + .post_meta,
.post_layout_chess.post_format_aside .post_content_inner + .post_meta,
.post_layout_chess.post_format_status .post_content_inner + .post_meta {
display:none;
}
.post_layout_chess.post_format_quote .post_content_inner + .post_meta,
.post_layout_chess.post_format_link .post_content_inner + .post_meta,
.post_layout_chess.post_format_status .post_content_inner + .post_meta {
margin-top:0 !important;
}
.post_layout_chess.post_format_aside .post_content_inner + .post_meta {
margin-top: 1em;
}
.post_layout_chess .post_header + .post_content {
margin-top:1em;
line-height: 1.3846em;
}
.post_layout_chess .post_content_inner,
.post_layout_chess:not(.post_format_quote):not(.post_format_link):not(.post_format_aside):not(.post_format_status) .post_content_inner {
font-size: 1em;
line-height: 1.3846em;
max-height: none;
}	
.post_layout_chess .post_content_inner:after {
display:none;
}
.post_layout_chess.post_format_link .post_content_inner,
.post_layout_chess.post_format_aside .post_content_inner,
.post_layout_chess.post_format_status .post_content_inner {
font-size: 1.6154em;
}
.post_layout_chess blockquote {
padding: 2em 2em 2em 4em;
}
.post_layout_chess blockquote:before {
top: 1.05em;
left: 0.5em;
}
.post_layout_chess blockquote p {
font-size: 1.3846em;
line-height: 1.3333em;
}
.post_layout_chess blockquote > a, .post_layout_chess blockquote > p > a,
.post_layout_chess blockquote > cite, .post_layout_chess blockquote > p > cite {
font-size: 12px;
line-height: 16px;
}
.post_layout_chess .more-link {
margin-top: 0;
}
.post_layout_chess_2 {									width: 100%; float:none; }
.post_layout_chess_2:nth-child(4n+3) .post_featured,
.post_layout_chess_2:nth-child(4n+4) .post_featured {	float:right; }
.post_layout_chess_2:nth-child(4n+3) .post_inner,
.post_layout_chess_2:nth-child(4n+4) .post_inner {		left: 0; right:auto; }
.post_layout_chess_3 {									width: 100%; float:none; }
.post_layout_chess_3:nth-child(6n+4) .post_featured,
.post_layout_chess_3:nth-child(6n+5) .post_featured,
.post_layout_chess_3:nth-child(6n+6) .post_featured {	float:right; }
.post_layout_chess_3:nth-child(6n+4) .post_inner,
.post_layout_chess_3:nth-child(6n+5) .post_inner,
.post_layout_chess_3:nth-child(6n+6) .post_inner {		left: 0; right:auto; }
.post_layout_chess:nth-child(2n+2) .post_featured {		float:left; }
.post_layout_chess:nth-child(2n+2) .post_inner {		left: auto; right:0; }
.post_layout_classic .post_content {
font-size:1em;
}
.post_layout_classic blockquote {
padding: 2em 2em 2em 5em;
}
.post_layout_classic blockquote:before {
top: 1.1em;
left: 0.7em;
}
.post_layout_classic blockquote p {
font-size: 15px;
}
.post_layout_classic blockquote > a, .post_layout_classic blockquote > p > a,
.post_layout_classic blockquote > cite, .post_layout_classic blockquote > p > cite {
font-size: 13px;
}
.post_layout_classic .swiper-container-horizontal > .swiper-pagination,
.post_layout_classic .slider_swiper_outer > .swiper-pagination {
bottom: 6px;
}
.post_layout_classic .slider_swiper .swiper-pagination-bullet, 
.post_layout_classic .slider_swiper_outer .swiper-pagination-bullet {
width: 6px;
height: 6px;
border-width: 1px;
}
.post_layout_classic.format-audio .post_featured.with_thumb .post_audio {
bottom: 1em;
}
.post_layout_classic.post_format_audio .mejs-time {
display:none;
}
.gallery_preview .post_description_content {
display: none !important;
}
.gallery_preview_description {
padding: 0 1.6em;
}
.gallery_preview_show .post_readmore {
margin-top:0;
} .comments_list_wrap .comment_posted {
font-size:1em;
}
.blog_mode_post blockquote, .blog_mode_page blockquote {
margin-left: 0;
}
.post_item_single .post_content > .post_meta_single .post_tags {
max-width: 48%;
}
.post_item_single .post_content > .post_meta_single .post_share {
max-width: 50%;
} .sc_item_title {
letter-spacing:0;
}
.sc_item_subtitle + .sc_item_title {
margin-top: 0.4em;
}
.sc_item_title + .sc_item_descr, .sc_item_subtitle + .sc_item_descr,
.sc_item_title + .sc_item_slider, .sc_item_subtitle + .sc_item_slider, .sc_item_descr + .sc_item_slider,
.sc_item_title + .sc_item_columns, .sc_item_subtitle + .sc_item_columns, .sc_item_descr + .sc_item_columns,
.sc_item_title + .sc_item_content, .sc_item_subtitle + .sc_item_content, .sc_item_descr + .sc_item_content {
margin-top: 1.5em;
}
.sc_item_title + .sc_item_button, .sc_item_title + .sc_item_button_image,
.sc_item_subtitle + .sc_item_button, .sc_item_subtitle + .sc_item_button_image,
.sc_item_descr + .sc_item_button, .sc_item_descr + .sc_item_button_image,
.sc_item_content + .sc_item_button, .sc_item_content + .sc_item_button_image,
.sc_item_slider + .sc_item_button, .sc_item_slider + .sc_item_button_image,
.sc_item_columns + .sc_item_button, .sc_item_columns + .sc_item_button_image {
margin-top: 1.5em;
}
.trx_addons_audio_player {
padding: 2em 1.6em;
}
.sc_blogger_default .sc_blogger_item {
padding:1.4em;
}
.sc_blogger_default .sc_blogger_item .sc_blogger_item_featured {
width: 100%;
margin-bottom: 1.5em;
}
.sc_blogger_default .sc_blogger_item .sc_blogger_item_content {
position:static;
width: 100%;
padding:0;
left: auto;
top: auto;
-webkit-transform:none;
-moz-transform:none;
-ms-transform:none;
transform:none;
}
.sc_blogger_classic .sc_blogger_item .sc_blogger_item_content {
padding:2em 1.6em;
}
.sc_blogger_classic .sc_blogger_item .sc_blogger_item_excerpt {
margin-top:1em;
}
.sc_blogger_classic .sc_blogger_item .sc_blogger_item_button {
margin-top: 1em;
}
.wpb_column:not(.vc_col-sm-12) .sc_blogger_default .sc_blogger_item_featured {
width: 100%;
padding: 0 0 1em;
}
.wpb_column:not(.vc_col-sm-12) .sc_blogger_default .sc_blogger_item_content {
position:static;
width: 100%;
padding:0;
-webkit-transform:none;
-moz-transform:none;
-ms-transform:none;
transform:none;
}
.sc_countdown_default .sc_countdown_digits, .sc_countdown_default .sc_countdown_separator {
font-size: 2.7em;
}
.sc_googlemap {
max-height:60vh;
}
.sc_icons .sc_icons_icon + .sc_icons_title,
.sc_icons .sc_icons_icon + .sc_icons_description {
margin-top:1em;
}
.sc_icons .sc_icons_description {
font-size: 14px;
}
.sc_price_title {
letter-spacing:0;
font-size:2em;
}
h2.sc_item_title.sc_item_title_style_default {
font-size: 28px;
}
.sc_promo_image, .sc_promo_image_wrap {
position:relative;
right: auto;
bottom: auto;
width: 100% !important;
min-height:18em;
}
.sc_promo_text {
width: 100% !important;
float:none !important;
}
.sc_promo_image + .sc_promo_text .sc_promo_text_inner,
.sc_promo_image_wrap + .sc_promo_text .sc_promo_text_inner {
padding-top: 2em !important;
}
.sc_promo.sc_promo_no_paddings.sc_promo_image_position_right .sc_promo_text_inner {
padding-right: 0;
}
.sc_promo.sc_promo_no_paddings.sc_promo_image_position_left .sc_promo_text_inner {
padding-left: 0;
}
.sc_promo_text_inner {
margin: 0 !important;
}
.sc_promo.sc_promo_size_normal .sc_promo_text_inner {
padding:2em;
}
.sc_promo_modern .sc_promo_descr, .sc_promo_modern .sc_promo_button {
padding-left: 0;
}
.sc_promo_modern.sc_promo_image_position_right .sc_promo_image {
right: 0;
}
.sc_promo_modern .sc_promo_link2 {
padding:0.2em 1.2em;
}
.sc_skills_pie.sc_skills_compact_off .sc_skills_total {
font-size: 2.5rem;
}
.vc_row.vc_inner .sc_skills_counter .sc_skills_item_wrap {
padding:2em 0 0 2em;
}
.sc_services_default .sc_services_item_info {
}
.sc_services_default .sc_services_item_content,
.sc_services_default .sc_services_item_button {
}
.sc_services_iconed .sc_services_item_header {
padding: 1.6154em;
width: 100%;
position:relative;
bottom:auto;
}
.sc_services_iconed .sc_services_item_icon {
font-size:2em;
}
.sc_services_iconed .sc_services_item_content {
padding: 1.6154em;
margin-left:0;
}
.sc_services_default .sc_services_item_subtitle {
font-size:12px;
}
.sc_services_default .sc_services_item_featured_left,
.sc_services_default .sc_services_item_featured_right {
text-align:center;
}
.sc_services_default .sc_services_item_featured_left .sc_services_item_icon,
.sc_services_default .sc_services_item_featured_right .sc_services_item_icon {
margin-top: 0 auto;
position:static;
}
.sc_services_default .sc_services_item_featured_left .sc_services_item_thumb,
.sc_services_default .sc_services_item_featured_right .sc_services_item_thumb {
width:100%;
position:relative;
left: auto;
right: auto;
top:auto;
}
.sc_services_default .sc_services_item_featured_left .sc_services_item_info,
.sc_services_default .sc_services_item_featured_right .sc_services_item_info {
text-align:center;
padding: 0;
margin: 1.5em 0 0;
min-height:0;
}
.sc_services_default .sc_services_item_featured_left.without_content .sc_services_item_info,
.sc_services_default .sc_services_item_featured_left.with_image .sc_services_item_info,
.sc_services_default .sc_services_item_featured_right.without_content .sc_services_item_info,
.sc_services_default .sc_services_item_featured_right.with_image .sc_services_item_info {
margin-left: 0;
margin-right: 0;
}
.sc_services_default .sc_services_item_featured_right .sc_services_item_thumb,
.sc_services_default .sc_services_item_featured_right .sc_services_item_icon {
right: auto;
}
.slider_swiper .swiper-slide {
min-height:26rem;
}
.slider_style_modern .slider_swiper .swiper-slide {
min-height:20rem;
}
.columns_wrap .slider_swiper .swiper-slide,
.wpb_column:not(.vc_col-sm-12) .slider_swiper .swiper-slide {
min-height:13rem;
}
.post_layout_classic .slider_swiper .swiper-slide {
min-height:13rem;
}
.sc_blogger_item .slider_swiper .swiper-slide {
min-height:13.5rem;
}
.slider_style_modern .slider_controls_label span + span {
font-size:1.4em;
}
.slider_style_modern .slider_controls_label {
top: 40%;
}
.slider_style_modern.slider_outer_controls_side .slider_controls_wrap > a:before {
top: 75%;
}
.slider_style_modern.slider_outer_controls_side .slider_controls_wrap > a {
top: 2rem;
bottom: 6rem;
}
.slider_style_modern.slider_outer_titles_outside.slider_outer_controls_side .slider_controls_wrap > a {
bottom: 11rem;
}
.slider_swiper .swiper-pagination-bullet, .slider_swiper_outer .swiper-pagination-bullet {
width: 8px;
height: 8px;
border-width: 1px;
}
.sc_team_item_thumb .sc_team_item_content {
display:none;
}
.team_member_page .team_member_featured {
padding: 0 0 1.2em 1.2em;
width: 50%;
}
.team_member_page .team_member_featured .team_member_avatar {
border-width: 10px;
}
.sc_team_default .sc_team_item_info {
padding:1.6154em;
}
.sc_team_default .sc_team_item_socials {
margin-top: 1em;
} .wpb_text_column[class*="scheme_"] {
padding: 1.5em;
}
.vc_row.vc_row-o-full-height,
.trx_addons_stretch_height {
min-height: 0 !important;
} .events-list .tribe-events-loop, .single-tribe_organizer .tribe-events-loop, .single-tribe_venue .tribe-events-loop, .tribe-events-day .tribe-events-loop {
max-width:none;
}
#tribe-events-content .tribe-events-calendar td {
height: 8em;
}
#tribe-events .tribe-events-content p, .tribe-events-after-html p, .tribe-events-before-html p {
line-height: 1.6154em;
}
.tribe-events-calendar td div[id*="tribe-events-daynum-"] {
margin-bottom: 0.4em;
padding: 1em 1.7em;
}
.tribe-events-event-meta .tribe-event-schedule-details {
padding-left: 12px;
}
.single-tribe_events .tribe-events-single-section {
width:100%;
float: none;
}
.single-tribe_events .tribe-events-event-meta .tribe-events-meta-group {
width: 45%;
}
.single-tribe_events .tribe-events-venue-map {
float:right;
}
.single-tribe_events #tribe-events-footer {
margin-top: 3em;
}
#tribe-events .tribe-events-button,
.tribe-events-button,
.tribe-events-cal-links a,
.tribe-events-sub-nav li a {
letter-spacing:0;
}
.single-tribe_events .tribe-events-sub-nav li a {
padding: 1.2em 1.2em 1.2em 4em;
}
.single-tribe_events .tribe-events-sub-nav li+li a {
padding: 1.2em 4em 1.2em 1.2em;
} #bbpress-forums > #subscription-toggle, #bbpress-forums > .bbp-topic-tags {
position:static;
margin-bottom: 1em;
}
#buddypress #item-nav {
float: none;
margin: 0 0 1em 0;
width: auto;
}
#buddypress #item-nav ul li {
display:inline-block;
margin: 0 1px 1px 0;
}
#buddypress #item-header-cover-image #item-header-avatar,
.bp-user #buddypress #item-header #item-header-cover-image #item-header-avatar,
#buddypress div#item-header #item-header-cover-image #item-header-content {
width: auto;
text-align:left;
}
#buddypress div#item-header #item-header-cover-image #item-header-content {
max-width: none;
}
#buddypress #item-header-cover-image #item-header-avatar img.avatar {
margin: 0 0 1em 0;
}
#buddypress div#item-header div#item-meta {
margin: 5px 0 15px;
}
#buddypress .comment-reply-link, #buddypress .generic-button a, #buddypress a.button, #buddypress button, #buddypress input[type="button"], #buddypress input[type="reset"], #buddypress input[type="submit"], #buddypress ul.button-nav li a, #buddypress div.activity-meta a, a.bp-title-button {
font-size: 12px;
padding: 10px 12px 6px;
}
#buddypress .standard-form div.submit {
padding:0;
} .column-1_1 #sb_instagram .sbi_item {
min-width:25%;
} .woocommerce ul.products, .woocommerce-page ul.products {
margin-right: -20px;
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product,
.woocommerce.columns-1 ul.products li.product, .woocommerce-page.columns-1 ul.products li.product,
.woocommerce[class*="columns-"] ul.products li.product, .woocommerce-page[class*="columns-"] ul.products li.product {
padding: 0 20px 20px 0;
}
.woocommerce.columns-3 ul.products li.product, .woocommerce-page.columns-3 ul.products li.product,
.woocommerce ul.products li.product.column-1_3, .woocommerce-page ul.products li.product.column-1_3,
.woocommerce .related.products ul.products li.product.column-1_3, .woocommerce-page .related.products ul.products li.product.column-1_3,
.woocommerce .upcells.products ul.products li.product.column-1_3, .woocommerce-page .upcells.products ul.products li.product.column-1_3,
.woocommerce.columns-4 ul.products li.product, .woocommerce-page.columns-4 ul.products li.product,
.woocommerce ul.products li.product.column-1_4, .woocommerce-page ul.products li.product.column-1_4,
.woocommerce .related.products ul.products li.product.column-1_4, .woocommerce-page .related.products ul.products li.product.column-1_4,
.woocommerce .upcells.products ul.products li.product.column-1_4, .woocommerce-page .upcells.products ul.products li.product.column-1_4,
.woocommerce.columns-5 ul.products li.product, .woocommerce-page.columns-5 ul.products li.product,
.woocommerce ul.products li.product.column-1_5, .woocommerce-page ul.products li.product.column-1_5,
.woocommerce .related.products ul.products li.product.column-1_5, .woocommerce-page .related.products ul.products li.product.column-1_5,
.woocommerce .upcells.products ul.products li.product.column-1_5, .woocommerce-page .upcells.products ul.products li.product.column-1_5,
.woocommerce.columns-6 ul.products li.product, .woocommerce-page.columns-6 ul.products li.product,
.woocommerce ul.products li.product.column-1_6, .woocommerce-page ul.products li.product.column-1_6,
.woocommerce .related.products ul.products li.product.column-1_6, .woocommerce-page .related.products ul.products li.product.column-1_6,
.woocommerce .upcells.products ul.products li.product.column-1_6, .woocommerce-page .upcells.products ul.products li.product.column-1_6 {
width: 50%;
}
.woocommerce ul.products li.first, .woocommerce-page ul.products li.first {
clear: none;
}
.woocommerce ul.products li:nth-child(2n+3), .woocommerce-page ul.products li:nth-child(2n+3) {
clear: both;
}
.woocommerce div.product div.images, .woocommerce #content div.product div.images, .woocommerce-page div.product div.images, .woocommerce-page #content div.product div.images,
.woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
width:100%;
}
.woocommerce .button, .woocommerce-page .button, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button .woocommerce #respond input#submit, .woocommerce input[type="button"], .woocommerce-page input[type="button"], .woocommerce input[type="submit"], .woocommerce-page input[type="submit"], .woocommerce .woocommerce-message .button, .woocommerce ul.products li.product .button, .woocommerce div.product form.cart .button, .woocommerce #review_form #respond p.form-submit input[type="submit"], .woocommerce-page #review_form #respond p.form-submit input[type="submit"], .woocommerce table.my_account_orders .order-actions .button,
.woocommerce #respond input#submit.disabled, .woocommerce #respond input#submit:disabled, .woocommerce #respond input#submit[disabled]:disabled, .woocommerce a.button.disabled, .woocommerce a.button:disabled, .woocommerce a.button[disabled]:disabled, .woocommerce button.button.disabled, .woocommerce button.button:disabled, .woocommerce button.button[disabled]:disabled, .woocommerce input.button.disabled, .woocommerce input.button:disabled, .woocommerce input.button[disabled]:disabled {
font-size:11px;
padding: 11px 16px;
}
.woocommerce .shop_mode_list ul.products li.product .post_content, .woocommerce-page .shop_mode_list ul.products li.product .post_content {
margin: 1em 0 1.2em;
}
.woocommerce div.product div.images, .woocommerce #content div.product div.images, .woocommerce-page div.product div.images, .woocommerce-page #content div.product div.images {
width: 100%;
float: none;
margin:0 0 2em;
}
.woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
width:100%;
float: none;
padding-left:0;
}
.woocommerce div.product .woocommerce-product-rating, .woocommerce-page div.product .woocommerce-product-rating {
margin-top:-4px;
}
.woocommerce div.product p.price {
margin-bottom: 1em;
}
span.amount > .decimals {
font-size: 0.6em;
margin-left: 0.1em;
}
.single-product div.product .trx-stretch-width-wrap {
padding-top: 2em;
}
.single-product div.product .trx-stretch-width .woocommerce-tabs {
padding-top:4em;
}
.single-product div.product .trx-stretch-width .woocommerce-tabs .wc-tabs li a {
padding: 0.4em 0.8em 0.4em;
}
.single-product div.product .trx-stretch-width .woocommerce-tabs .panel {
padding-top: 2em;
}
.woocommerce .star-rating, .woocommerce-page .star-rating {
margin-top:0;
}
.single-product .related {
margin-top: 4em;
padding-top: 3em;
}
.single-product ul.products li.product .post_data {
padding:10px;
}
.single-product ul.products li.product .post_data .post_header {
margin-top:10px;
}
.single-product ul.products li.product .post_data .post_header h3 {
font-size: 18px;
}
.single-product ul.products li.product .post_data .price {
margin: 10px 0;
}
.woocommerce #content table.cart td.actions .coupon, .woocommerce table.cart td.actions .coupon, .woocommerce-page #content table.cart td.actions .coupon, .woocommerce-page table.cart td.actions .coupon {
float:left;
}
.woocommerce #content table.cart td.actions .coupon .button.alt, .woocommerce #content table.cart td.actions .coupon .input-text + .button, .woocommerce table.cart td.actions .coupon .button.alt, .woocommerce table.cart td.actions .coupon .input-text + .button, .woocommerce-page #content table.cart td.actions .coupon .button.alt, .woocommerce-page #content table.cart td.actions .coupon .input-text + .button, .woocommerce-page table.cart td.actions .coupon .button.alt, .woocommerce-page table.cart td.actions .coupon .input-text + .button {
float: left;
width: auto;
}
.woocommerce #content table.cart td.actions .button, .woocommerce table.cart td.actions .button, .woocommerce-page #content table.cart td.actions .button, .woocommerce-page table.cart td.actions .button {
width: auto;
display:inline-block;
}
.woocommerce table.cart .product-remove, .woocommerce #content table.cart .product-remove, .woocommerce-page table.cart .product-remove, .woocommerce-page #content table.cart .product-remove {
width: 12px;
}
.woocommerce .woocommerce-checkout .woocommerce-shipping-fields {
margin-top:2em;
}
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
width: 100%;
float: none;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
border-top: 1px dotted #ddd;
border-bottom: 1px dotted #ddd;
margin-bottom: 2em;
}
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content .woocommerce-Address-title a {
font-size: 12px;
letter-spacing:0;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
width: 100%;
text-align:center;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li {
display:inline-block;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li+li {
border-top-width: 0;
border-left: 1px dotted #ddd;
}
.woocommerce-MyAccount-navigation ul li a {
padding: 8px 10px;
}
.woocommerce-account .woocommerce-MyAccount-content .addresses.col2-set .col-1 {
float:left;
width: 48%;
}
.woocommerce-account .woocommerce-MyAccount-content .addresses.col2-set .col-2 {
float:right;
width: 48%;
}
.mfp-arrow-left {
margin-top:-41px;
}
}
@media (max-width: 479px) {
html { font-size: 8px; line-height: 150%; }
body { font-size: 13px; line-height: 153.85%; }
h1 { font-size: 28px;	line-height:34px;	margin-top: 32px;	margin-bottom: 20px;	letter-spacing: 0px; }
h2 { font-size: 24px;	line-height:32px;	margin-top: 30px;	margin-bottom: 18px;	letter-spacing: 0px; }
h3 { font-size: 20px;	line-height:26px;	margin-top: 28px;	margin-bottom: 16px;	letter-spacing: 0.5px; }
h4 { font-size: 17px;	line-height:21px;	margin-top: 24px;	margin-bottom: 14px;	letter-spacing: 0.4px; }
h5 { font-size: 15px;	line-height:18px;	margin-top: 22px; 	margin-bottom: 10px;	letter-spacing: 0.3px; }
h6 { font-size: 13px;	line-height:16px;	margin-top: 20px;	margin-bottom: 8px;		letter-spacing: 0.3px; }
p, ul, ol, dl, blockquote, address {
margin-bottom: 1em;
}
figure figcaption { font-size: 12px; } .body_style_boxed .page_wrap {		width:100%; }
.content_wrap, .content_container {	width:300px; }
.sc_content_width_1_1 {	width: 300px; }
.sc_content_width_1_2 {	width: 150px; }
.sc_content_width_1_3 {	width: 100px; }
.sc_content_width_2_3 {	width: 200px; }
.sc_content_width_1_4 {	width: 75px; }
.sc_content_width_3_4 {	width: 225px; }  body.woocommerce-page:not(.expand_content):not(.body_style_fullwide):not(.body_style_fullscreen) .content,
body:not(.expand_content):not(.body_style_fullwide):not(.body_style_fullscreen) .content {	width:100%; float: none; }
.sidebar { 				 width: 100%; float:none; margin-top:2.5em; } .body_style_fullwide .content_wrap {
padding-left:10px;
padding-right:10px;
}
.body_style_fullwide.sidebar_right .content, .body_style_fullscreen.sidebar_right .content { padding-right: 0 !important; float: none; }
.body_style_fullwide.sidebar_right .sidebar, .body_style_fullscreen.sidebar_right .sidebar { margin-left: 0 !important; float: none; }
.body_style_fullwide.sidebar_left  .content, .body_style_fullscreen.sidebar_left  .content { padding-left:  0 !important; float: none; }
.body_style_fullwide.sidebar_left  .sidebar, .body_style_fullscreen.sidebar_left  .sidebar { margin-right:0 !important; float: none; } .container, .container-fluid {
padding-left:  5px;
padding-right: 5px;
}
.row, .columns_wrap, .trx_addons_columns_wrap {
margin-right: -10px;
}
.row > [class*="column-"], .columns_wrap > [class*="column-"], .trx_addons_columns_wrap > [class*="trx_addons_column-"] {
padding-right: 10px;
}
.row.columns_padding_left, .columns_wrap.columns_padding_left, .trx_addons_columns_wrap.columns_padding_left {
margin-left: -10px;
}
.row.columns_padding_left > [class*="column-"], .columns_wrap.columns_padding_left > [class*="column-"],
.row > [class*="column-"].columns_padding_left, .columns_wrap > [class*="column-"].columns_padding_left,
.trx_addons_columns_wrap.columns_padding_left > [class*="trx_addons_column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_left {
padding-left: 10px;
}
.row.columns_padding_right, .columns_wrap.columns_padding_right, .trx_addons_columns_wrap.columns_padding_right {
margin-right: -10px;
}
.row.columns_padding_right > [class*="column-"], .columns_wrap.columns_padding_right > [class*="column-"],
.row > [class*="column-"].columns_padding_right, .columns_wrap > [class*="column-"].columns_padding_right,
.trx_addons_columns_wrap.columns_padding_right > [class*="trx_addons_column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_right {
padding-right:10px;
}
.row.columns_padding_center, .columns_wrap.columns_padding_center, .trx_addons_columns_wrap.columns_padding_center {
margin-left: -5px;
margin-right: -5px;
}
.row.columns_padding_center > [class*="column-"], .columns_wrap.columns_padding_center > [class*="column-"],
.row > [class*="column-"].columns_padding_center, .columns_wrap > [class*="column-"].columns_padding_center,
.trx_addons_columns_wrap.columns_padding_center > [class*="trx_addons_column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_center {
padding-left:10px;
}
.row.columns_padding_bottom > [class*="column-"], .columns_wrap.columns_padding_bottom > [class*="column-"],
.row > [class*="column-"].columns_padding_bottom, .columns_wrap > [class*="column-"].columns_padding_bottom,
.trx_addons_columns_wrap.columns_padding_bottom > [class*="trx_addons_column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_bottom {
padding-bottom: 10px;
} .row:not(.columns_fluid) > [class*="column-"], .columns_wrap:not(.columns_fluid) > [class*="column-"], .trx_addons_columns_wrap:not(.columns_fluid) > [class*="trx_addons_column-"] {
width:100%;
}
.row.columns_fluid > [class*="column-"], .columns_wrap.columns_fluid > [class*="column-"], .trx_addons_columns_wrap.columns_fluid > [class*="trx_addons_column-"] {
width:50%;
}
.row.columns_fluid > .column-1_1, .row.columns_fluid > .column-2_2, .row.columns_fluid > .column-3_3, .row.columns_fluid > .column-4_4, .row.columns_fluid > .column-5_5,
.row.columns_fluid > .column-6_6, .row.columns_fluid > .column-7_7, .row.columns_fluid > .column-8_8, .row.columns_fluid > .column-9_9, .row.columns_fluid > .column-10_10,
.row.columns_fluid > .column-11_11, .row.columns_fluid > .column-12_12,
.columns_wrap.columns_fluid > .column-1_1, .columns_wrap.columns_fluid > .column-2_2, .columns_wrap.columns_fluid > .column-3_3,
.columns_wrap.columns_fluid > .column-4_4, .columns_wrap.columns_fluid > .column-5_5, .columns_wrap.columns_fluid > .column-6_6,
.columns_wrap.columns_fluid > .column-7_7, .columns_wrap.columns_fluid > .column-8_8, .columns_wrap.columns_fluid > .column-9_9,
.columns_wrap.columns_fluid > .column-10_10, .columns_wrap.columns_fluid > .column-11_11, .columns_wrap.columns_fluid > .column-12_12,
.row.columns_fluid > .column-1_3:nth-child(3n), .columns_wrap.columns_fluid > .column-1_3:nth-child(3n),
.row.columns_fluid > .column-2_3, .columns_wrap.columns_fluid > .column-2_3,
.row.columns_fluid > .column-1_3.after_span_2, .columns_wrap.columns_fluid > .column-1_3.after_span_2,
.row.columns_fluid > .column-2_4, .columns_wrap.columns_fluid > .column-3_4,
.row.columns_fluid > .column-1_4.after_span_2, .columns_wrap.columns_fluid > .column-1_4.after_span_3,
.row.columns_fluid > .column-1_5:nth-child(5n), .columns_wrap.columns_fluid > .column-1_5:nth-child(5n),
.row.columns_fluid > .column-2_5, .columns_wrap.columns_fluid > .column-2_5,
.row.columns_fluid > .column-3_5, .columns_wrap.columns_fluid > .column-3_5,
.row.columns_fluid > .column-4_5, .columns_wrap.columns_fluid > .column-4_5,
.row.columns_fluid > .column-2_6, .columns_wrap.columns_fluid > .column-2_6,
.row.columns_fluid > .column-3_6, .columns_wrap.columns_fluid > .column-3_6,
.row.columns_fluid > .column-4_6, .columns_wrap.columns_fluid > .column-4_6,
.row.columns_fluid > .column-5_6, .columns_wrap.columns_fluid > .column-5_6,
.trx_addons_columns_wrap.columns_fluid > .trx_addons_column-1_1, .trx_addons_columns_wrap.columns_fluid > .trx_addons_column-2_2, .trx_addons_columns_wrap.columns_fluid > .trx_addons_column-3_3,
.trx_addons_columns_wrap.columns_fluid > .trx_addons_column-4_4, .trx_addons_columns_wrap.columns_fluid > .trx_addons_column-5_5, .trx_addons_columns_wrap.columns_fluid > .trx_addons_column-6_6,
.trx_addons_columns_wrap.columns_fluid > .trx_addons_column-7_7, .trx_addons_columns_wrap.columns_fluid > .trx_addons_column-8_8, .trx_addons_columns_wrap.columns_fluid > .trx_addons_column-9_9,
.trx_addons_columns_wrap.columns_fluid > .trx_addons_column-10_10, .trx_addons_columns_wrap.columns_fluid > .trx_addons_column-11_11, .trx_addons_columns_wrap.columns_fluid > .trx_addons_column-12_12,
.trx_addons_columns_wrap.columns_fluid > .trx_addons_column-1_3:nth-child(3n),
.trx_addons_columns_wrap.columns_fluid > .trx_addons_column-2_3,
.trx_addons_columns_wrap.columns_fluid > .trx_addons_column-1_3.after_span_2,
.trx_addons_columns_wrap.columns_fluid > .trx_addons_column-3_4,
.trx_addons_columns_wrap.columns_fluid > .trx_addons_column-1_4.after_span_3,
.trx_addons_columns_wrap.columns_fluid > .trx_addons_column-1_5:nth-child(5n),
.trx_addons_columns_wrap.columns_fluid > .trx_addons_column-2_5,
.trx_addons_columns_wrap.columns_fluid > .trx_addons_column-3_5,
.trx_addons_columns_wrap.columns_fluid > .trx_addons_column-4_5,
.trx_addons_columns_wrap.columns_fluid > .trx_addons_column-2_6,
.trx_addons_columns_wrap.columns_fluid > .trx_addons_column-3_6,
.trx_addons_columns_wrap.columns_fluid > .trx_addons_column-4_6,
.trx_addons_columns_wrap.columns_fluid > .trx_addons_column-5_6	{
width:100%;
}
.row:not(.columns_fluid) > [class*="column-"]+[class*="column-"], .columns_wrap:not(.columns_fluid) > [class*="column-"]+[class*="column-"],
.row.columns_fluid > [class*="column-"]:nth-child(2n+3), .columns_wrap.columns_fluid > [class*="column-"]:nth-child(2n+3),
.row.columns_fluid > [class*="column-"]:nth-child(2n+4), .columns_wrap.columns_fluid > [class*="column-"]:nth-child(2n+4),
.trx_addons_columns_wrap:not(.columns_fluid) > [class*="trx_addons_column-"]+[class*="trx_addons_column-"],
.trx_addons_columns_wrap.columns_fluid > [class*="trx_addons_column-"]:nth-child(2n+3),
.trx_addons_columns_wrap.columns_fluid > [class*="trx_addons_column-"]:nth-child(2n+4) {
padding-top: 10px;
} .gallery.gallery-columns-9 .gallery-item {	width: 50% !important; }
.gallery.gallery-columns-8 .gallery-item {	width: 50% !important; }
.gallery.gallery-columns-7 .gallery-item {	width: 50% !important; }
.gallery.gallery-columns-6 .gallery-item {	width: 50% !important; }
.gallery.gallery-columns-5 .gallery-item {	width: 50% !important; }
.gallery.gallery-columns-4 .gallery-item {	width: 50% !important; }
.gallery.gallery-columns-3 .gallery-item {	width: 50% !important; }
img.alignleft, img.alignright,
figure.alignleft, figure.alignright {
float:none;
display:block;
margin: 1em auto !important;
} body.no_layout.menu_style_left {	margin-left: 0; }
body.no_layout.menu_style_right {	margin-right: 0; }
body.no_layout.menu_style_right .menu_side_wrap {	right: -6rem; }
body.no_layout.menu_style_left .menu_side_wrap {	left: -6rem; }
.menu_side_wrap .logo {
padding:40% 8%;
}
.toc_menu_item .toc_menu_icon,
.toc_menu_item .toc_menu_description:before {
height: 5.5rem;
}
.toc_menu_item .toc_menu_description span {
padding:0 1.5em;
}
.menu_mobile .menu_mobile_nav_area li > a {
font-size: 14px;
line-height:1.5em;
}
.menu_mobile .menu_mobile_nav_area > ul > li > a {
font-size: 15px;
line-height:1.5em;
}
.mobile_layout .top_panel .menu_mobile_button {
top: 5rem;
}
.top_panel {
margin-bottom: 4rem;
}
.site_footer_wrap {
margin-top: 4rem;
}
.top_panel.with_bg_image {
min-height:18em;
}
.top_panel_style_2.with_bg_image.header_fullheight .top_panel_title_2 {
margin-top: 4rem;
margin-bottom:6rem;
}
.top_panel_title_2_image, .top_panel_title_2_image img {
max-height:7rem;
}
.top_panel_title_2_text {
font-size: 10px;
line-height: 1.8em;
max-width: 90%;
}	
.top_panel_title_2_image + .top_panel_title_2_text {
margin-top:2em;
}
.top_panel_title_wrap {
margin-top:4.5rem;
}
.remove_margins .top_panel.without_bg_image .top_panel_title_wrap {
margin-bottom: 5rem;
}
.top_panel_title .page_caption {
}
.top_panel_title .post_meta + .page_caption {
font-size: 22px;
margin:0.2em 0 0;
}
.top_panel_title .breadcrumbs {
line-height:16px;
} .top_panel .slider_engine_revo .slide_subtitle {
font-size: 13px !important;
margin-bottom: 1em !important;
}
.top_panel .slider_engine_revo .slide_button {
font-size: 9px !important;
} .sidebar .sidebar_inner {
padding: 20px 0;
}
.sidebar[class*="scheme_"] .sidebar_inner {
padding: 20px 10px;
} .sidebar aside, .sidebar[class*="scheme_"] aside {
display: inline-block;
float:none;
vertical-align:top;
width:100%;
padding-left: 10px;
padding-right: 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.footer_wrap aside + aside,
.sidebar aside + aside, .sidebar[class*="scheme_"] aside + aside {
margin-top: 20px !important;
padding-top: 20px !important;
border-top-width:1px;
border-top-style:solid;
}
aside.column-1_4, aside.column-1_5, aside.column-1_6, aside.column-1_7, aside.column-1_8, aside.column-1_9, aside.column-1_10, aside.column-1_11, aside.column-1_12 {
width:100%;
}
.header_fullwidth aside,
.footer_fullwidth aside {
width:100% !important;
display:block !important;
margin-left:0 !important;
margin-bottom:0 !important;
}
.footer_wrap aside {
margin-bottom:0;
} .hide_on_notebook,
.hide_on_mobile {
display: none;
} hr, .vc_separator { 
margin: 3em 0 !important;
}
table th, table td,
.sc_table table th, .sc_table table td	{
padding:0.1rem;
}
blockquote {
padding: 2em 2em 2em 5em;
}
blockquote:before {
top: 1.05em;
left: 0.8em;
}
blockquote p {
font-size:18px;
}
blockquote > a, blockquote > p > a,
blockquote > cite, blockquote > p > cite {
font-size: 15px;
}
input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
select,
textarea,
textarea.wp-editor-area,
.sc_form input[type="text"], .sc_form textarea {
padding:1em;
} .malta_tabs .malta_tabs_titles {
margin: 0 0 2em;
}
button, input[type="button"], input[type="reset"], input[type="submit"], .theme_button,
.sc_item_button a, .sc_form button, .sc_price_link, .sc_action_item_link,
.post_item .more-link, .gallery_preview_show .post_readmore,
.malta_tabs .malta_tabs_titles li a {
font-size: 12px;
line-height: 16px;
padding: 11px 15px 8px;
} .post_item_404 .post_content {
padding: 2em 0;
}
.post_item_404 .page_title {
font-size:8em;
line-height:1em;
float: none;
width:100%;
text-align:center;
}
.post_item_404 .page_info {
padding-left: 0;
padding-top: 1em;
width:100%;
text-align:center;
}
.post_item_404 .page_description {
line-height:1.7em;
margin-bottom:2em;
}
.post_item_404 .go_home {
padding: 1em 2em;
}
.post_item_none_search .page_title, .post_item_none_archive .page_title {
font-size:5em;
}
.post_item .more-link, .gallery_preview_show .post_readmore {
margin-top: 2em;
}
.post_meta {
line-height:1.3em;
}
.mejs-controls a.mejs-horizontal-volume-slider {
width:40px;
}
.post_layout_excerpt + .post_layout_excerpt {
margin-top: 5rem;
padding-top: 5rem;
}
.post_layout_chess .post_inner_content {
padding:0 10%;
}
.post_layout_chess .post_header {
display:block !important;
}
.post_layout_chess .post_title {
font-size: 16px;
line-height:22px;
letter-spacing:0;
}
.post_layout_chess .post_meta {
display:none !important;
}
.post_layout_chess .post_content {
display:none;
}
.post_layout_chess.post_format_audio .mejs-time {
display:none;
}
.post_layout_chess_2 {									width: 100%; float:none; }
.post_layout_chess_2:nth-child(4n+3) .post_featured,
.post_layout_chess_2:nth-child(4n+4) .post_featured {	float:right; }
.post_layout_chess_2:nth-child(4n+3) .post_inner,
.post_layout_chess_2:nth-child(4n+4) .post_inner {		left: 0; right:auto; }
.post_layout_chess_3 {									width: 100%; float:none; }
.post_layout_chess_3:nth-child(6n+4) .post_featured,
.post_layout_chess_3:nth-child(6n+5) .post_featured,
.post_layout_chess_3:nth-child(6n+6) .post_featured {	float:right; }
.post_layout_chess_3:nth-child(6n+4) .post_inner,
.post_layout_chess_3:nth-child(6n+5) .post_inner,
.post_layout_chess_3:nth-child(6n+6) .post_inner {		left: 0; right:auto; }
.post_layout_chess:nth-child(2n+2) .post_featured {		float:left; }
.post_layout_chess:nth-child(2n+2) .post_inner {		left: auto; right:0; }
.post_layout_classic .post_content {
font-size:1em;
}
.post_layout_classic blockquote {
padding: 2em 2em 2em 5em;
}
.post_layout_classic blockquote:before {
top: 1.1em;
left: 0.7em;
}
.post_layout_classic blockquote p {
font-size: 15px;
}
.post_layout_classic blockquote > a, .post_layout_classic blockquote > p > a,
.post_layout_classic blockquote > cite, .post_layout_classic blockquote > p > cite {
font-size: 13px;
}
.post_layout_classic .swiper-container-horizontal > .swiper-pagination,
.post_layout_classic .slider_swiper_outer > .swiper-pagination {
bottom: 6px;
}
.post_layout_classic .slider_swiper .swiper-pagination-bullet, 
.post_layout_classic .slider_swiper_outer .swiper-pagination-bullet {
width: 6px;
height: 6px;
border-width: 1px;
}
.post_layout_classic.format-audio .post_featured.with_thumb .post_audio {
bottom: 1em;
}
.post_layout_classic.post_format_audio .mejs-time {
display:none;
}
.gallery_preview .post_description_content {
display: none !important;
}
.gallery_preview_show .post_title {
font-size: 16px;
line-height: 20px;
}
.gallery_preview_description {
padding: 0 1.4em;
}
.gallery_preview_show .post_readmore {
margin-top:0;
}
.gallery_preview_show .post_meta .post_meta_item {
display:block;
}
.gallery_preview_show .post_meta .post_meta_item:before {
display:none;
}
.body_style_fullwide .format-video .post_featured.with_thumb .post_video_hover,
.post_layout_excerpt.format-video .post_featured.with_thumb .post_video_hover,
.post_layout_chess.format-video .post_featured.with_thumb .post_video_hover,
.trx_addons_video_player.with_cover .video_hover {
font-size:2em;
}
.page_links > span:not(.page_links_title), .page_links > a, .nav-links .page-numbers {
height: 1em;
line-height: 1em;
margin-right: 3px;
width: 1em;
margin-top: 1em;
} .post_item_single > .post_featured {
margin-bottom:2em;
}
.blog_mode_post blockquote, .blog_mode_page blockquote {
margin-left: 0;
}
.post_item_single .post_content > .post_meta_single .post_tags {
max-width: 48%;
}
.post_item_single .post_content > .post_meta_single .post_share {
max-width: 50%;
}
.post_item_single .post_content > .post_meta_single .post_tags,
.post_item_single .post_content > .post_meta_single .post_share {
max-width:none;
float:none;
margin-top: 0;
padding-bottom: 1px;
}
.post_item_single .post_content > .post_meta_single .post_share {
margin-top:1em;
}
.single .nav-links .nav-previous {
padding-right: 8px;
}
.single .nav-links .nav-next {
padding-left: 8px;
}
.single .nav-links .post-title {
letter-spacing:0;
}
.single .nav-links .meta-nav, .single .nav-links .post_date {
font-size:1em;
}
.comments_list_wrap .comment_posted {
font-size:1em;
display:block;
margin-left: 0;
}
.comments_list_wrap li + li, .comments_list_wrap li ul {
margin-top:2em;
}
.comments_list_wrap ul li + li, .comments_list_wrap li > ul > li {
padding-top: 2em;
}
.comments_list_wrap ul ul {
margin-left: 2em;
}
.comments_list_wrap ul ul ul ul {
margin-left:0;
} .sc_item_title {
letter-spacing:0;
}
.sc_item_subtitle + .sc_item_title {
margin-top: 0.4em;
}
.sc_item_title + .sc_item_descr, .sc_item_subtitle + .sc_item_descr,
.sc_item_title + .sc_item_slider, .sc_item_subtitle + .sc_item_slider, .sc_item_descr + .sc_item_slider,
.sc_item_title + .sc_item_columns, .sc_item_subtitle + .sc_item_columns, .sc_item_descr + .sc_item_columns,
.sc_item_title + .sc_item_content, .sc_item_subtitle + .sc_item_content, .sc_item_descr + .sc_item_content {
margin-top: 1.5em;
}
.sc_item_title + .sc_item_button, .sc_item_title + .sc_item_button_image,
.sc_item_subtitle + .sc_item_button, .sc_item_subtitle + .sc_item_button_image,
.sc_item_descr + .sc_item_button, .sc_item_descr + .sc_item_button_image,
.sc_item_content + .sc_item_button, .sc_item_content + .sc_item_button_image,
.sc_item_slider + .sc_item_button, .sc_item_slider + .sc_item_button_image,
.sc_item_columns + .sc_item_button, .sc_item_columns + .sc_item_button_image {
margin-top: 1.5em;
}
.trx_addons_audio_player {
padding: 2em 1.6em;
}
.sc_blogger_default .sc_blogger_item {
padding:1.4em;
}
.sc_blogger_default .sc_blogger_item .sc_blogger_item_featured {
width: 100%;
margin-bottom: 1.5em;
}
.sc_blogger_default .sc_blogger_item .sc_blogger_item_content {
position:static;
width: 100%;
padding:0;
left: auto;
top: auto;
-webkit-transform:none;
-moz-transform:none;
-ms-transform:none;
transform:none;
}
.sc_blogger_classic .sc_blogger_item .sc_blogger_item_content {
padding:2em 1.6em;
}
.sc_blogger_classic .sc_blogger_item .sc_blogger_item_excerpt {
margin-top:1em;
}
.sc_blogger_classic .sc_blogger_item .sc_blogger_item_button {
margin-top: 1em;
}
.sc_countdown_default .sc_countdown_digits, .sc_countdown_default .sc_countdown_separator {
font-size: 1.7em;
}
.sc_countdown_circle .sc_countdown_digits, .sc_countdown_circle .sc_countdown_separator {
font-size: 1.4em;
}
.sc_countdown_circle .sc_countdown_digits {
border-width: 3px;
}
.sc_googlemap {
max-height:60vh;
}
.sc_icons .sc_icons_icon + .sc_icons_title,
.sc_icons .sc_icons_icon + .sc_icons_description {
margin-top:1em;
}
.sc_icons .sc_icons_description {
font-size: 14px;
}
.sc_price_title {
letter-spacing:0;
font-size:2em;
}
.sc_price_link {
margin-top:2em;
}
h2.sc_item_title.sc_item_title_style_default {
font-size: 24px;
}
.sc_promo_image, .sc_promo_image_wrap {
position:relative;
right: auto;
bottom: auto;
width: 100% !important;
min-height:18em;
}
.sc_promo_text {
width: 100% !important;
float:none !important;
}
.sc_promo_image + .sc_promo_text .sc_promo_text_inner,
.sc_promo_image_wrap + .sc_promo_text .sc_promo_text_inner {
padding-top: 2em !important;
}
.sc_promo.sc_promo_no_paddings.sc_promo_image_position_right .sc_promo_text_inner {
padding-right: 0;
}
.sc_promo.sc_promo_no_paddings.sc_promo_image_position_left .sc_promo_text_inner {
padding-left: 0;
}
.sc_promo_text_inner {
margin: 0 !important;
}
.sc_promo.sc_promo_size_normal .sc_promo_text_inner {
padding:2em;
}
.sc_promo_modern .sc_promo_descr, .sc_promo_modern .sc_promo_button {
padding-left: 0;
}
.sc_promo_modern.sc_promo_image_position_right .sc_promo_image {
right: 0;
}
.sc_promo_modern .sc_promo_link2 {
padding:0.2em 1.2em;
}
.sc_promo_modern .sc_promo_link2 span + span {
font-size:1.6em;
}
.sc_skills_counter .sc_skills_total,
.sc_skills_counter .sc_skills_item_title {
text-align:center;
}
.vc_row.vc_inner .sc_skills_counter .sc_skills_item_wrap {
padding:1.2em 1em;
}
.sc_services_default .sc_services_item_info {
padding:1.2em;
}
.sc_services_default .sc_services_item_content,
.sc_services_default .sc_services_item_button {
display:none;
}
.sc_services_default .sc_services_item_subtitle {
font-size:12px;
}
.sc_services_iconed .sc_services_item_header {
padding: 1.6154em;
width: 100%;
position:relative;
bottom:auto;
text-align:center;
}
.sc_services_iconed .sc_services_item_title {
min-height:0;
font-size:14px;
}
.sc_services_iconed .sc_services_item_content {
padding: 1.6154em;
margin-left:0;
}
.sc_services_default .sc_services_item_featured_left,
.sc_services_default .sc_services_item_featured_right {
text-align:center;
}
.sc_services_default .sc_services_item_featured_left .sc_services_item_icon,
.sc_services_default .sc_services_item_featured_right .sc_services_item_icon {
margin-top: 0 auto;
position:static;
}
.sc_services_default .sc_services_item_featured_left .sc_services_item_thumb,
.sc_services_default .sc_services_item_featured_right .sc_services_item_thumb {
width:100%;
position:relative;
left: auto;
right: auto;
top:auto;
}
.sc_services_default .sc_services_item_featured_left .sc_services_item_info,
.sc_services_default .sc_services_item_featured_right .sc_services_item_info {
text-align:center;
padding: 0;
margin: 1.5em 0 0;
min-height:0;
}
.sc_services_default .sc_services_item_featured_left.without_content .sc_services_item_info,
.sc_services_default .sc_services_item_featured_left.with_image .sc_services_item_info,
.sc_services_default .sc_services_item_featured_right.without_content .sc_services_item_info,
.sc_services_default .sc_services_item_featured_right.with_image .sc_services_item_info {
margin-left: 0;
margin-right: 0;
}
.sc_services_default .sc_services_item_featured_right .sc_services_item_thumb,
.sc_services_default .sc_services_item_featured_right .sc_services_item_icon {
right: auto;
}
.slider_swiper .swiper-slide {
min-height:22rem;
}
.slider_style_modern .slider_swiper .swiper-slide {
min-height:18rem;
}
.slider_style_modern {
padding: 0 4rem 4rem;
}
.slider_style_modern .slider_controls_label span + span {
font-size:1.5em;
}
.slider_style_modern .slider_controls_label {
top: 40%;
display:none;
}
.slider_style_modern.slider_outer_controls_side .slider_controls_wrap > a:before {
top: 50%;
}
.slider_style_modern.slider_outer_controls_side .slider_controls_wrap > a {
top: 2rem;
bottom: 6rem;
width: 4rem;
}
.slider_style_modern.slider_outer_titles_outside.slider_outer_controls_side .slider_controls_wrap > a {
bottom: 11rem;
}
.slider_swiper .swiper-pagination-bullet, .slider_swiper_outer .swiper-pagination-bullet {
width: 8px;
height: 8px;
border-width: 1px;
}
.slider_titles_outside_wrap .slide_cats, .slider_titles_outside_wrap .slide_subtitle {
font-size:13px;
}
.team_member_page .team_member_featured {
padding: 0 0 2em;
width: 100%;
float: none;
}
.team_member_page .team_member_featured .team_member_avatar {
border-width: 10px;
}
.team_member_page .team_member_description {
margin-bottom: 2em;
}
.sc_team_default .sc_team_item_info {
padding:1.6154em;
}
.sc_team_default .sc_team_item_socials {
margin-top: 1em;
}
.sc_team_default .sc_team_item_content {
min-height:0;
margin-top:1em;
} .wpb_text_column[class*="scheme_"] {
padding: 1.5em;
}
.vc_row.vc_row-o-full-height,
.trx_addons_stretch_height {
min-height: 0 !important;
} #tribe-bar-views .tribe-bar-views-list .tribe-bar-views-option a, .tribe-bar-mini #tribe-bar-views .tribe-bar-views-list .tribe-bar-views-option a {
padding:1.15em;
}
#tribe-mobile-container {
margin-bottom: 1em;
}
.events-list .tribe-events-loop, .single-tribe_organizer .tribe-events-loop, .single-tribe_venue .tribe-events-loop, .tribe-events-day .tribe-events-loop {
max-width:none;
}
#tribe-events-content .tribe-events-calendar td {
height: 6em;
}
.tribe-events-calendar .tribe-events-has-events.mobile-trigger:after {
margin-top:1em;
}
#tribe-events .tribe-events-content p, .tribe-events-after-html p, .tribe-events-before-html p {
line-height: 1.6154em;
}
.tribe-events-calendar td div[id*="tribe-events-daynum-"] {
margin-bottom: 0.4em;
padding: 1em;
}
.tribe-events-event-meta .tribe-event-schedule-details {
padding-left: 12px;
}
#tribe-events-day .tribe-events-event-image,
.tribe-events-list .tribe-events-event-image,
.single-tribe_events .tribe-events-event-image {
display:block;
float: none;
margin: 0 0 1em;
width: 100%;
}
#tribe-events-day .tribe-events-content {
display:block;
float: none;
margin: 0;
width: 100%;
}
.single-tribe_events .tribe-events-single-section {
width:100%;
float: none;
}
.single-tribe_events .tribe-events-event-meta .tribe-events-meta-group {
width: 46%;
}
.single-tribe_events .tribe-events-event-meta .tribe-events-meta-group + .tribe-events-meta-group {
margin-left:1.4em;
}
.single-tribe_events .tribe-events-event-meta .tribe-events-meta-group-venue {
margin-bottom: 1em;
}
.single-tribe_events .tribe-events-event-meta .tribe-events-meta-group-venue,
.single-tribe_events .tribe-events-event-meta .tribe-events-venue-map {
float:none;
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
.single-tribe_events #tribe-events-footer {
margin-top: 2em;
}
#tribe-events .tribe-events-button,
.tribe-events-button,
.tribe-events-cal-links a,
.tribe-events-sub-nav li a {
letter-spacing:0;
padding: 1.2em 2em;
}
.single-tribe_events .tribe-events-sub-nav li a {
padding: 1.2em 1em 1.2em 3em;
}
.single-tribe_events .tribe-events-sub-nav li a:before {
left: 1em;
}
.single-tribe_events .tribe-events-sub-nav li+li a {
padding: 1.2em 3em 1.2em 1em;
}
.single-tribe_events .tribe-events-sub-nav li + li a:after {
right: 1em;
} #bbpress-forums > #subscription-toggle, #bbpress-forums > .bbp-topic-tags {
position:static;
margin-bottom: 1em;
}
#buddypress #item-nav {
float: none;
margin: 0 0 1em 0;
width: auto;
}
#buddypress #item-nav ul li {
display:inline-block;
margin: 0 1px 1px 0;
}
#buddypress #item-header-cover-image #item-header-avatar,
.bp-user #buddypress #item-header #item-header-cover-image #item-header-avatar,
#buddypress div#item-header #item-header-cover-image #item-header-content {
width: auto;
text-align:left;
}
#buddypress div#subnav.item-list-tabs ul li.last {
display:block;
margin-top:3px;
float: left;
}
#buddypress div#subnav.item-list-tabs ul li.last:before {
display:none;
}
#buddypress div#item-header #item-header-cover-image #item-header-content {
max-width: none;
}
#buddypress #item-header-cover-image #item-header-avatar img.avatar {
margin: 0 0 1em 0;
}
#buddypress div#item-header div#item-meta {
margin: 5px 0 15px;
}
#buddypress .comment-reply-link, #buddypress .generic-button a, #buddypress a.button, #buddypress button, #buddypress input[type="button"], #buddypress input[type="reset"], #buddypress input[type="submit"], #buddypress ul.button-nav li a, #buddypress div.activity-meta a, a.bp-title-button {
font-size: 12px;
padding: 10px 12px 6px;
}
#buddypress .standard-form div.submit {
padding:0;
} .column-1_1 #sb_instagram .sbi_item {
min-width:25%;
} .woocommerce ul.products, .woocommerce-page ul.products {
margin-right: -10px;
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product,
.woocommerce.columns-1 ul.products li.product, .woocommerce-page.columns-1 ul.products li.product,
.woocommerce[class*="columns-"] ul.products li.product, .woocommerce-page[class*="columns-"] ul.products li.product {
padding: 0 10px 10px 0;
}
.woocommerce.columns-3 ul.products li.product, .woocommerce-page.columns-3 ul.products li.product,
.woocommerce ul.products li.product.column-1_3, .woocommerce-page ul.products li.product.column-1_3,
.woocommerce .related.products ul.products li.product.column-1_3, .woocommerce-page .related.products ul.products li.product.column-1_3,
.woocommerce .upcells.products ul.products li.product.column-1_3, .woocommerce-page .upcells.products ul.products li.product.column-1_3,
.woocommerce.columns-4 ul.products li.product, .woocommerce-page.columns-4 ul.products li.product,
.woocommerce ul.products li.product.column-1_4, .woocommerce-page ul.products li.product.column-1_4,
.woocommerce .related.products ul.products li.product.column-1_4, .woocommerce-page .related.products ul.products li.product.column-1_4,
.woocommerce .upcells.products ul.products li.product.column-1_4, .woocommerce-page .upcells.products ul.products li.product.column-1_4,
.woocommerce.columns-5 ul.products li.product, .woocommerce-page.columns-5 ul.products li.product,
.woocommerce ul.products li.product.column-1_5, .woocommerce-page ul.products li.product.column-1_5,
.woocommerce .related.products ul.products li.product.column-1_5, .woocommerce-page .related.products ul.products li.product.column-1_5,
.woocommerce .upcells.products ul.products li.product.column-1_5, .woocommerce-page .upcells.products ul.products li.product.column-1_5,
.woocommerce.columns-6 ul.products li.product, .woocommerce-page.columns-6 ul.products li.product,
.woocommerce ul.products li.product.column-1_6, .woocommerce-page ul.products li.product.column-1_6,
.woocommerce .related.products ul.products li.product.column-1_6, .woocommerce-page .related.products ul.products li.product.column-1_6,
.woocommerce .upcells.products ul.products li.product.column-1_6, .woocommerce-page .upcells.products ul.products li.product.column-1_6 {
width: 50%;
}
.woocommerce ul.products li.first, .woocommerce-page ul.products li.first {
clear: none;
}
.woocommerce ul.products li:nth-child(2n+3), .woocommerce-page ul.products li:nth-child(2n+3) {
clear: both;
}
.woocommerce .woocommerce-ordering, .woocommerce-page .woocommerce-ordering {
float: none;
clear: both;
}
.woocommerce .button, .woocommerce-page .button, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button .woocommerce #respond input#submit, .woocommerce input[type="button"], .woocommerce-page input[type="button"], .woocommerce input[type="submit"], .woocommerce-page input[type="submit"], .woocommerce .woocommerce-message .button, .woocommerce ul.products li.product .button, .woocommerce div.product form.cart .button, .woocommerce #review_form #respond p.form-submit input[type="submit"], .woocommerce-page #review_form #respond p.form-submit input[type="submit"], .woocommerce table.my_account_orders .order-actions .button,
.woocommerce #respond input#submit.disabled, .woocommerce #respond input#submit:disabled, .woocommerce #respond input#submit[disabled]:disabled, .woocommerce a.button.disabled, .woocommerce a.button:disabled, .woocommerce a.button[disabled]:disabled, .woocommerce button.button.disabled, .woocommerce button.button:disabled, .woocommerce button.button[disabled]:disabled, .woocommerce input.button.disabled, .woocommerce input.button:disabled, .woocommerce input.button[disabled]:disabled {
font-size:11px;
padding: 11px 16px;
letter-spacing:0;
}
.woocommerce ul.products li.product .onsale, .woocommerce-page ul.products li.product .onsale {
font-size:9px;
}
.woocommerce ul.products li.product .post_data, .woocommerce-page ul.products li.product .post_data {
height: 7em;
padding: 1.5em 1em;
}
.woocommerce ul.products li.product .post_header .post_tags {
line-height:1.2em;
}
.woocommerce .shop_mode_thumbs ul.products li.product h3, .woocommerce-page .shop_mode_thumbs ul.products li.product h3 {
font-size: 1em;
line-height:1.25em;
}
.woocommerce .shop_mode_list ul.products li.product + li.product .post_item, .woocommerce-page .shop_mode_list ul.products li.product + li.product .post_item {
padding-top: 4em;
}
.woocommerce .shop_mode_list ul.products li.product .post_featured, .woocommerce-page .shop_mode_list ul.products li.product .post_featured {
float: none;
margin: 0 0 2em 0;
max-width: none;
width: 100%;
}
.woocommerce .shop_mode_list ul.products li.product .post_content, .woocommerce-page .shop_mode_list ul.products li.product .post_content {
margin: 1em 0 1.2em;
}
.woocommerce div.product div.images, .woocommerce #content div.product div.images, .woocommerce-page div.product div.images, .woocommerce-page #content div.product div.images {
width: 100%;
float: none;
margin:0 0 2em;
}
.woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
width:100%;
float: none;
padding-left:0;
}
.woocommerce div.product .woocommerce-product-rating, .woocommerce-page div.product .woocommerce-product-rating {
margin-top:-4px;
}
.woocommerce div.product p.price {
margin-bottom: 1em;
line-height:1.25em;
}
span.amount > .decimals {
font-size: 0.6em;
margin-left: 0.1em;
}
.single-product div.product .trx-stretch-width-wrap {
padding-top: 1em;
}
.single-product div.product .trx-stretch-width .woocommerce-tabs {
padding-top:3em;
}
.single-product div.product .trx-stretch-width .woocommerce-tabs .wc-tabs li a {
padding: 0.5em;
letter-spacing:0;
}
.single-product div.product .trx-stretch-width .woocommerce-tabs .panel {
padding-top: 2em;
}
.woocommerce div.product .woocommerce-tabs h2, .woocommerce #content div.product .woocommerce-tabs h2, .woocommerce-page div.product .woocommerce-tabs h2, .woocommerce-page #content div.product .woocommerce-tabs h2,
.woocommerce div.product .woocommerce-tabs h3, .woocommerce #content div.product .woocommerce-tabs h3, .woocommerce-page div.product .woocommerce-tabs h3, .woocommerce-page #content div.product .woocommerce-tabs h3 {
letter-spacing:0;
line-height:1.25em;
}
.woocommerce .star-rating, .woocommerce-page .star-rating {
margin-top:-2px;
}
.single-product .related {
margin-top: 4em;
padding-top: 3em;
}
.single-product .related ul.products li.product {
width: 100%;
}
.single-product ul.products li.product .post_data {
padding:10px;
height:100%;
}
.single-product ul.products li.product .post_data .post_header {
margin-top:12px;
}
.single-product ul.products li.product .post_data .post_header h3 {
font-size: 14px;
line-height: 16px;
}
.single-product ul.products li.product .post_data .price {
margin: 12px 0;
font-size: 1.2em;
}
.single-product ul.products li.product .post_data .button {
display:none;
}
.woocommerce table.shop_table {
letter-spacing:0;
}
.woocommerce table.shop_table_responsive thead, .woocommerce-page table.shop_table_responsive thead {
display:table-header-group;
}
.woocommerce table.shop_table_responsive tbody th, .woocommerce-page table.shop_table_responsive tbody th {
display:table-cell;
}
.woocommerce table.cart th, .woocommerce #content table.cart th, .woocommerce-page table.cart th, .woocommerce-page #content table.cart th, .woocommerce table.cart td, .woocommerce #content table.cart td, .woocommerce-page table.cart td, .woocommerce-page #content table.cart td {
padding:3px;
}
.woocommerce #content table.cart td.actions .coupon .button,
.woocommerce table.cart td.actions .coupon .button,
.woocommerce-page #content table.cart td.actions .coupon .button,
.woocommerce-page table.cart td.actions .coupon .button {
float: right!important;
}
.woocommerce #content table.cart td.actions .coupon, .woocommerce table.cart td.actions .coupon, .woocommerce-page #content table.cart td.actions .coupon, .woocommerce-page table.cart td.actions .coupon {
float:none;
}
.woocommerce #content table.cart td.actions .coupon .button.alt, .woocommerce #content table.cart td.actions .coupon .input-text + .button, .woocommerce table.cart td.actions .coupon .button.alt, .woocommerce table.cart td.actions .coupon .input-text + .button, .woocommerce-page #content table.cart td.actions .coupon .button.alt, .woocommerce-page #content table.cart td.actions .coupon .input-text + .button, .woocommerce-page table.cart td.actions .coupon .button.alt, .woocommerce-page table.cart td.actions .coupon .input-text + .button {
float: left;
width: auto;
}
.woocommerce #content table.cart td.actions .button, .woocommerce table.cart td.actions .button, .woocommerce-page #content table.cart td.actions .button, .woocommerce-page table.cart td.actions .button {
width: auto;
display:inline-block;
}
.woocommerce table.cart .product-remove, .woocommerce #content table.cart .product-remove, .woocommerce-page table.cart .product-remove, .woocommerce-page #content table.cart .product-remove {
width: 12px;
}
.woocommerce .woocommerce-checkout .woocommerce-shipping-fields {
margin-top:2em;
}
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
width: 100%;
float: none;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
border-top: 1px dotted #ddd;
border-bottom: 1px dotted #ddd;
margin-bottom: 2em;
}
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content .woocommerce-Address-title a {
font-size: 12px;
letter-spacing:0;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
width: 100%;
text-align:center;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li {
display:inline-block;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li+li {
border-top-width: 0;
border-left: 1px dotted #ddd;
}
.woocommerce-MyAccount-navigation ul li a {
padding: 8px 10px;
}
.mfp-arrow-left {
margin-top:-41px;
}
.mfp-title {
line-height:13px;
}
.sc_countdown_circle .sc_countdown_digits, .sc_countdown_circle .sc_countdown_separator {
height: 2.7em;
line-height: 2.7em;
}
.sc_countdown_circle .sc_countdown_digits {
width: 2.7em;
}
.post_layout_chess_3 .more-link {
font-size: 0.826em;
}
.post_layout_chess_2 .post_meta, .post_layout_chess_3 .post_meta {
font-size: 0.7em;
}
.sc_googlemap_content_default {
padding: 2em 3em;
right: 0;
width: 100%;
position: static;
}
.menu_main_nav > li > ul:before {
content: '';
position: absolute;
top: -0.4em;
}
.cq-flipbox-container .cq-flipbox-content {
font-size: 0.9em;
}
#sb_instagram #sbi_load {
top: 39%;
padding-top: 0 !important;
margin-top: 0;
}
.sc_blogger .sc_blogger_item .sc_blogger_item_title {
font-size: 1.5em;
}
.top_panel_fixed .top_panel_navi .search_wrap .search_submit {
margin-top: 0;
}
.top_panel_navi .search_wrap .search_submit {
margin-top: 1em;
}
.woocommerce #respond input#submit.disabled, .woocommerce #respond input#submit:disabled, .woocommerce #respond input#submit[disabled]:disabled, .woocommerce a.button.disabled, .woocommerce a.button:disabled, .woocommerce a.button[disabled]:disabled, .woocommerce button.button.disabled, .woocommerce button.button:disabled, .woocommerce button.button[disabled]:disabled, .woocommerce input.button.disabled, .woocommerce input.button:disabled, .woocommerce input.button[disabled]:disabled,
.woocommerce .button, .woocommerce-page .button, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button .woocommerce #respond input#submit, .woocommerce input[type="button"], .woocommerce-page input[type="button"], .woocommerce input[type="submit"], .woocommerce-page input[type="submit"], .woocommerce .woocommerce-message .button, .woocommerce ul.products li.product .button, .woocommerce div.product form.cart .button, .woocommerce #review_form #respond p.form-submit input[type="submit"], .woocommerce-page #review_form #respond p.form-submit input[type="submit"], .woocommerce table.my_account_orders .order-actions .button {
padding: 0.714em 1.6em 0.714em;
}
.sc_services_default .sc_services_item_title {
font-size: 1.2em;
}
.format-audio .post_featured .post_audio_title {
margin-top: 0;
margin-bottom: 0.5em;
}
.comments_list_wrap .comment_info {
font-size: 0.9em;
}
.comments_list_wrap .comment_posted {
margin-left: 0;
display: inline;
}
.comment_author + .comment_posted::before {
display: none;
content: '';
margin-right: 0.5em;
}
.comments_list_wrap .comment_content {
padding-left: 6em;
}
.comments_list_wrap .comment_author_avatar {
width: 5em;
height: 5em;
}
.woocommerce .widget_shopping_cart_content .buttons .button {
padding: 0.714em 1em 0.714em;
}
.sc_item_button a, .sc_form button, .sc_price_link, .sc_action_item_link {
padding: 0.714em 2.6em 0.714em;
}
.cq-flipbox-container h4.cq-flipbox-title {
font-size: 1.8em;
}
.post_item .more-link, .gallery_preview_show .post_readmore {
padding: 0.714em 2.6em 0.714em;
}
.comments_list_wrap ul ul {
margin-left: 0;
}
button, input[type="button"], input[type="reset"], input[type="submit"], .theme_button {
padding: 0.714em 2.6em 0.714em;
}
.vc_row .vc_custom_1476947748964 {
padding-top: 2em !important;
padding-left: 15px !important;
}
#sb_instagram .sbi_follow_btn a {
font-size: 2.6em;
line-height: 1;
padding: 0 1.75em 0 0;
margin-top: 0;
}
#sb_instagram .sbi_follow_btn .fa {
top: 0;
}
#sb_instagram .sbi_follow_btn .fa {
line-height: 1.74em;
border: 2px solid;
}
.post_meta .post_meta_item + .post_meta_item::before {
content: '';
margin: 0;
}
.footer_wrap_inner .widget_text {
}
.mobile_layout .top_panel.top_panel_style_2 .menu_mobile_button {
top: 4.5rem;
}
.vc_row .vc_custom_1476879863491 {
padding-top: 0 !important;
padding-left: 15px !important;
padding-bottom: 2em !important;
}
.sc_team_short .sc_team_item_title {
font-size: 1.5em;
}
.vc_row .trx_addons_audio_player .audio_caption {
font-size: 1.5em;
}
.sc_skills_pie.sc_skills_compact_off .sc_skills_total {
top: 45%;
}
.sc_action_item.with_image .sc_action_item_inner {
padding: 4em 1em 4.5em;
}
.sc_item_title {
font-size: 2.6em;
}
.single-product div.product .trx-stretch-width .woocommerce-tabs .wc-tabs li a {
font-size: 0.8em;
}
.woocommerce div.product form.cart div.quantity, .woocommerce-page div.product form.cart div.quantity {
font-size: 10px;
}
.woocommerce table.cart td.actions .coupon .input-text, .woocommerce #content table.cart td.actions .coupon .input-text, .woocommerce-page table.cart td.actions .coupon .input-text, .woocommerce-page #content table.cart td.actions .coupon .input-text {
font-size: 10px;
}
.woocommerce form.checkout_coupon #coupon_code {
font-size: 10px;
}
.top_panel_top {
display: none;
}
.mobile_layout .top_panel .menu_mobile_button {
top: 2.1rem;
}
.menu_mobile .menu_mobile_nav_area {
max-height: 70%;
font-size: 0.8em;
padding-left: 15px;
top: 8em;
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0%);
}
.menu_mobile .menu_mobile_nav_area .open_child_menu {
line-height: 0.75em;
}
.vc_row .vc_custom_1476947699499 {
padding-right: 15px !important;
}
.vc_row .vc_custom_1476947699499 .wpb_single_image.vc_align_right {
text-align: center;
}
.sc_services_default .sc_services_item.with_image .sc_services_item_content {
font-size: 1em;
font-weight: 400;
}
.sc_price {
margin-bottom: 2em;
}
.vc_custom_1476962785755 .wpb_single_image.vc_align_left {
text-align: center;
}
.sc_testimonials.slider_swiper.slider_controls_bottom .slider_next, .sc_testimonials.slider_swiper_outer .slider_controls_bottom .slider_next {
margin-left: 150px;
}
.copyright_wrap_inner .copyright_text {
float: none;
text-align: center;
margin-bottom: 1em;
}
.copyright_wrap_inner .socials_wrap {
float: none;
text-align: center;
}
.copyright_wrap_inner .socials_footer_wrap_inner {
text-align: center;
}
.trx_addons_dropcap {
margin: 0 2rem 0 0;
padding: 0.2em 0 0.3em;
}
.vc_custom_1477143962153 .wpb_single_image.vc_align_left,
.vc_custom_1476879683358 .wpb_single_image.vc_align_left,
.vc_custom_1476885050757 .wpb_single_image.vc_align_left {
text-align: center;
}
.vc_custom_1476948385748 .cq-stackgallery {
height: 240px !important;
}
.top_panel_title .page_caption {
line-height: 1;
font-size: 2em;
}
.breadcrumbs {
font-size: 1em;
}
.top_panel.with_bg_image .top_panel_title_wrap {
margin-bottom: 3em;
}
.woocommerce .shop_mode_list ul.products li.product, .woocommerce-page .shop_mode_list ul.products li.product {
width: 100% !important;
}
.vc_custom_1476961881109 .vc_col-sm-12 {
overflow: hidden;
}
.vc_custom_1476714760537 .wpb_column {
margin-bottom: 2em;
}
.vc_row.vc_custom_1476958986222 {
padding-top: 4.8em !important;
padding-bottom: 4.7em !important;
}
.sc_testimonials_item_content {
padding: 0 1em;
}
.vc_row.vc_custom_1476870146947 {
padding-top: 5.5em !important;
padding-bottom: 3.3em !important;
}
.sc_testimonials_item_author {
max-width: 150px;
font-size: 0.75em;
}
.menu_mobile .logo img {
max-height: 50px;
}
.menu_mobile .logo {
text-align: center;
margin: 1.5rem 0 0;
}
.menu_mobile .socials_mobile,
.menu_mobile .search_mobile {
display: none;
}
.vc_row .vc_custom_1477291854329 {
background-size: auto!important;
}
blockquote.trx_addons_blockquote_style_2 {
padding: 1.2em 3.2em 0.6em;
}
table th {
font-size: 1.1em;
}
.comments_list_wrap .comment_posted > span + span::before {
content: '';
margin: 0 0.5em;
display: none;
}
.comment_counters {
display: block;
}
.woocommerce .woocommerce-result-count {
display: none;
}
.top_panel .logo {
max-width: 30%;
margin-left: 30px;
}
.slider-subtitle {
display: none!important;
}
.sc_item_title_style_title-medium-size-style.sc_item_title {
font-size: 2.6em;
}
.slider_swiper.slider_controls_bottom .slider_controls_wrap, .slider_swiper_outer .slider_controls_bottom .slider_controls_wrap {
min-width: 220px;
}
body {
overflow-x: hidden;
}
.top_panel_navi {
padding-top: 0.4em;
}
.header_title_off .top_panel_navi {
padding-bottom: 0.4em;
}
.sc_table table {
font-size: 0.8em;
}
.sc_action_item_title {
font-size: 2.5em;
}
.sc_price_price {
font-size: 2.5em;
}
.format-audio .post_featured.with_thumb .post_audio {
bottom: 0;
}
.format-audio .post_featured .post_audio_title {
font-size: 1em;
}
.format-audio .post_featured .post_audio_author {
font-size: 0.8em;
}
.comments_list_wrap .comment_author {
display: block;
}
.comments_wrap .comments_author, .comments_wrap .comments_email {
width: 100%;
}
.nav-links, .page_links {
margin-top: 1.2em;
margin-bottom: 0;
}
.woocommerce div.product form.cart .variations td.label {
padding-top: 0.75em;
}
.woocommerce div.product form.cart .variations {
width: 90%;
}
.single-product .related h2 {
font-size: 2.2em;
}
.site_footer_wrap {
background-size: cover;
}
.woocommerce table.cart td.actions, .woocommerce #content table.cart td.actions, .woocommerce-page table.cart td.actions, .woocommerce-page #content table.cart td.actions {
overflow: hidden;
padding: 1em;
}
.team_member_page .team_member_featured .team_member_avatar {
padding-right: 0;
}
#sb_instagram {
max-height: 320px;
overflow: hidden;
}
.comments_wrap .form-submit {
padding-bottom: 4px;
}
.comments_wrap .form-submit input[type="submit"] {
margin-bottom: 1px;
}
.post_layout_portfolio .post_featured {
font-size: 0.7em;
}
.post_featured.hover_dots.hover_with_info .icons span {
margin-top: 2em;
}
.portfolio_wrap .post_layout_portfolio {
width: 100% !important;
}
input[type="text"], input[type="number"], input[type="email"], input[type="tel"], input[type="password"], input[type="search"], select, textarea, textarea.wp-editor-area {
max-width: 100%;
}
}
@media (max-width: 782px) {
.admin-bar.top_panel_fixed .top_panel_navi,
.admin-bar #debug_log,
.admin-bar .menu_mobile_overlay, 
.admin-bar .menu_mobile { top:46px; }
}
@media (max-width: 799px) {
.mfp-figure figcaption {
margin-bottom:0 !important;
}
.menu_mobile .search_mobile {
bottom: 10rem;
}
.menu_mobile .socials_mobile {
bottom: 6rem;
}
}