@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;
}.sc_accordion .sc_accordion_item {
margin-bottom:1.25em;
}
.sc_accordion > .sc_accordion_item .sc_accordion_content {
overflow: hidden;
display: none;
}
.sc_accordion .sc_accordion_item .sc_accordion_title {
position:relative;
overflow:hidden;
cursor:pointer;
margin:0;
-webkit-transition: all ease 0.3s;
-moz-transition: all ease 0.3s;
-ms-transition: all ease 0.3s;
-o-transition: all ease 0.3s;
transition: all ease 0.3s;
}
.sc_accordion .sc_accordion_item .sc_accordion_title .sc_items_counter:after {
content:'. ';
}
.sc_accordion .sc_accordion_item .sc_accordion_title .sc_accordion_icon {
position:absolute;
left:0;
top:0;
height:100%;
padding:0;
text-align:center;
overflow:hidden;
-webkit-transition: all ease 0.3s;
-moz-transition: all ease 0.3s;
-ms-transition: all ease 0.3s;
-o-transition: all ease 0.3s;
transition: all ease 0.3s;
}
.sc_accordion .sc_accordion_item .sc_accordion_title .sc_accordion_icon:before {
position:absolute;
left:50%;
top:50%;
-webkit-transform:translateX(-50%) translateY(-50%);
-moz-transform:translateX(-50%) translateY(-50%);
transform:translateX(-50%) translateY(-50%);
}
.sc_accordion .sc_accordion_item .sc_accordion_content {
padding:1.5em 1.8em;
}
.sc_accordion .sc_accordion_item .sc_accordion_title {
border:1px solid #e4e7e8;
padding:0.5em 0.5em 0.5em 3em;
}
.sc_accordion .sc_accordion_item .sc_accordion_title .sc_accordion_icon {
width:2.3333em;
background-color:#e4e7e8;
color: #ffffff;
}
.sc_accordion .sc_accordion_item .sc_accordion_title .sc_accordion_icon_opened {
margin-top:-4em; }
.sc_accordion .sc_accordion_item .sc_accordion_title.ui-state-active .sc_accordion_icon_opened {
margin-top:0;
}
.sc_accordion .sc_accordion_item .sc_accordion_title.ui-state-active .sc_accordion_icon_closed {
margin-top:4em; }
.sc_accordion .sc_accordion_item .sc_accordion_content {
border-width:1px;
border-style: solid;
border-top-width:0;
}  .mejs-offscreen {
display:none !important;
}
.mejs-controls .mejs-time-rail .mejs-time-total {
-webkit-border-radius: 0 !important;
-moz-border-radius: 0 !important;
border-radius: 0 !important;
margin-top: 6px !important;
}
.mejs-controls .mejs-time-rail .mejs-time-total,
.mejs-controls .mejs-time-rail .mejs-time-buffering,
.mejs-controls .mejs-time-rail .mejs-time-loaded,
.mejs-controls .mejs-time-rail .mejs-time-current {
height:8px !important;
}
.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total:before,
.mejs-controls .mejs-time-rail .mejs-time-total:before {
content:" ";
display:block;
border:1px solid #575757;
position: absolute;
left: -2px;
right: -2px;
top:-2px;
bottom:-2px;
}
.mejs-container .mejs-controls .mejs-time {
padding-top:10px !important;
}
.sc_audio {
-webkit-transition: all ease .3s;
-moz-transition: all ease .3s;
-ms-transition: all ease .3s;
-o-transition: all ease .3s;
transition: all ease .3s;
}
.sc_audio.sc_show {
opacity: 1;
-moz-opacity: 1;
filter: alpha(opacity=100);
}
.sc_audio .mejs-container {
margin: 0;
}
.sc_audio .mejs-container,
.sc_audio .mejs-embed,
.sc_audio .mejs-embed body,
.sc_audio .mejs-container .mejs-controls,
.wp-audio-shortcode .mejs-controls{
background: transparent !important;
border-width: 0 !important;
}
.sc_audio.sc_audio_image {
padding: 13em 2em 2em 2em;
background-position: center center;
position: relative;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover; 
background-size: cover;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box; 
box-sizing: border-box;
}
.wp-audio-shortcode.mejs-container,
.sc_audio{
background: #0071c3; background: -moz-linear-gradient(left, #0071c3 0%, #00a8eb 100%); background: -webkit-linear-gradient(left, #0071c3 0%,#00a8eb 100%); background: linear-gradient(to right, #0071c3 0%, #00a8eb 100%); }
.sc_audio.sc_audio_info {
position:relative;
padding:7.1em 3em 3.2em;
border-radius: 2em;
}
.sc_audio .sc_audio_header {
padding: 0 0 1.5em 0;
}
.sc_audio.sc_audio_image .sc_audio_header {
min-height: 5em;
}
.sc_audio.sc_audio_image .sc_audio_container {
position:absolute;
left:2em;
right:2em;
bottom: 2em;
}
.sc_audio .sc_audio_header {
position:absolute;
top: 0;
left:0;
padding:2.67em 2em 2em 3.7em;
letter-spacing: 1px;
}
.sc_audio .sc_audio_title {
margin:0;
text-transform: capitalize;
font-size: 1.3571em;
}
.sc_audio .sc_audio_author {
font-size: 0.9285em;
}
.mejs-container:not(.mejs-video) {
height: 44px !important;
border: 0 !important;
}
.mejs-container .mejs-controls {
height: 42px !important;
}
.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total:before,
.mejs-controls .mejs-time-rail .mejs-time-total:before {
content: " ";
display: block;
background: #dddddd;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
-webkit-border-radius: 2px;
border-radius: 2px;
border: 0;
}
.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,
.mejs-controls .mejs-time-rail .mejs-time-total,
.mejs-controls a.mejs-horizontal-volume-slider,
.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 .mejs-time-total, .mejs-controls .mejs-time-rail .mejs-time-buffering, .mejs-controls .mejs-time-rail .mejs-time-loaded, .mejs-controls .mejs-time-rail .mejs-time-current {
height: 4px !important;
}
.mejs-container .mejs-controls .mejs-time {
font-size: 0.666em !important;
margin-top: 5px !important;
}
.mejs-controls a.mejs-horizontal-volume-slider,
.mejs-controls div.mejs-time-rail {
margin-top: 2px !important;
}
.mejs-controls .mejs-button button {
margin: 5px !important;
background-image: url(//ltt-luftsysteme.de/wp-content/plugins/trx_utils/images/controls.png) !important;
}
.mejs-container .mejs-controls .mejs-volume-button {
margin-left: 10px !important;
}
.mejs-container .mejs-controls .mejs-fullscreen-button,
.mejs-container .mejs-controls .mejs-volume-button,
.mejs-container .mejs-controls .mejs-volume-button:hover,
.mejs-container .mejs-controls .mejs-playpause-button {
-webkit-border-radius: 50%;
border-radius: 50%;
margin-top: 7px !important;
margin-right: 6px !important;
}
.mejs-container .mejs-controls .mejs-fullscreen-button {
margin-right: 0 !important;
} .sc_highlight{
padding-bottom: 2px;
padding-left: 5px;
padding-right: 5px;
padding-top: 4px;
border-radius: 3px;
}
.mejs-container .mejs-controls .mejs-button {
margin: 3px 3px 3px 0;
overflow: hidden;
position: relative;
width: 24px;
height: 24px;
line-height: 24px;
text-align: center;
}
.mejs-container .mejs-controls .mejs-button button {
display:block;
margin:0;
position:absolute;
left:0;
top:0;
right:0;
bottom:0;
width: 100%;
height: 100%;
background: none !important;
}
.mejs-container .mejs-controls .mejs-playpause-button.mejs-play:before {
content: '\e8e1';
font-family:'fontello';font-size: 1.3em;
}
.mejs-container .mejs-controls .mejs-playpause-button.mejs-pause:before {
content: '\e8e3';
font-family:'fontello';font-size: 1.3em;
}
.mejs-container .mejs-controls .mejs-volume-button.mejs-mute:before {
content: '\e8f9';
font-family:'fontello';font-size: 1.3em;
}
.mejs-container .mejs-controls .mejs-volume-button.mejs-unmute:before {
content: '\e8f8';
font-family:'fontello';font-size: 1.3em;
}
.mejs-container .mejs-controls .mejs-playpause-button.mejs-replay:before{
content: '\e80e';
font-family:'fontello';font-size: 1.3em;
} input[type="submit"],
input[type="button"],
button,
.sc_button {
display:inline-block;
text-align:center;
padding:1.35em 2em;
font-weight: 400;
border-radius: 2em;
letter-spacing: 1px;
-webkit-transition: all ease .3s;
-moz-transition: all ease .3s;
-ms-transition: all ease .3s;
-o-transition: all ease .3s;
transition: all ease .3s;
}
.sc_button.sc_button_style_border{
padding:1.2em 2em;
}
.sc_button.sc_button_round {
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
}
input[type="submit"]:before,
input[type="button"]:before,
button:before,
.sc_button:before {
margin-right:10px;
}
input[type="submit"].sc_button_size_medium,
input[type="button"].sc_button_size_medium,
button.sc_button_size_medium,
.sc_button.sc_button_size_medium {
font-size:1em;
padding:1.45em 2.2em;
}
input[type="submit"].sc_button_size_large,
input[type="button"].sc_button_size_large,
button.sc_button_size_large,
.sc_button.sc_button_size_large {
font-size:1.125em;
padding:1.55em 2.2em;
}
.sc_button.sc_button_style_border {
border-width: 2px;
border-style: solid;
}
input[type="submit"].sc_button.aligncenter,
input[type="button"].sc_button.aligncenter,
button.sc_button_size.aligncenter,
.sc_button.sc_button.aligncenter {
max-width:30%;
}
input[type="submit"].sc_button_size_medium.aligncenter,
input[type="button"].sc_button_size_medium.aligncenter,
button.sc_button_size_medium.aligncenter,
.sc_button.sc_button_size_medium.aligncenter {
max-width:40%;
}
input[type="submit"].sc_button_size_large.aligncenter,
input[type="button"].sc_button_size_large.aligncenter,
button.sc_button_size_large.aligncenter,
.sc_button.sc_button_size_large.aligncenter {
max-width:50%;
}  [class*="sc_button_hover_slide"] {
-webkit-transition: all ease .3s;
-moz-transition: all ease .3s;
-ms-transition: all ease .3s;
-o-transition: all ease .3s;
transition: all ease .3s;
background-position: right bottom !important;
}
.sc_button_hover_slide_left {
background-size: 210% 100% !important;
}
.sc_button_hover_slide_top {
background-size: 100% 210% !important;
}
.sc_button_hover_slide_left:hover,
.sc_button_hover_slide_left.active {
background-position: left bottom !important;
}
.sc_button_hover_slide_top:hover,
.sc_button_hover_slide_top.active {
background-position: right top !important;
} .sc_button_hover_arrow {
position:relative;
overflow:hidden;
padding-left: 2em !important;
padding-right: 2em !important;
}
.sc_button_hover_arrow:before {
content: '\e8f4';
font-family:'fontello';
position:absolute;
z-index:1;
right: -2em !important;
left: auto !important;
top: 50% !important;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
-webkit-transition: all ease .3s;
-moz-transition: all ease .3s;
-ms-transition: all ease .3s;
-o-transition: all ease .3s;
transition: all ease .3s;
background-color:transparent !important;
color: inherit !important;
}
.sc_button_hover_arrow:hover:before,
.sc_button_hover_arrow.active:before {
right: 0.5em !important;
}  .sc_blogger.sc_scroll_controls {
position: relative;
}
.sc_blogger.sc_scroll_controls_type_top {
overflow: visible !important;	
}
.sc_blogger.sc_scroll_controls_type_top .sc_scroll_controls_wrap {
top: 0;
} .sc_blogger.layout_polaroid .sc_blogger_elements *,
.sc_blogger.layout_polaroid .sc_blogger_elements *:after,
.sc_blogger.layout_polaroid .sc_blogger_elements *:before {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.sc_blogger.layout_polaroid .sc_blogger_elements {
height: 0;
}
.js .sc_blogger.layout_polaroid .sc_blogger_elements .photostack {
height: 40em;
}
.sc_blogger.layout_polaroid .sc_blogger_elements+.sc_blogger_button {
margin-top:3em;
}
.sc_blogger.layout_polaroid .sc_blogger_elements figure {
overflow: visible;
}
.sc_blogger.layout_polaroid .sc_blogger_elements figure figcaption {
background: transparent;
display: block;
height: auto;
margin: 0;
padding: 0;
position:static;
vertical-align: middle;
font-size:1em;
}
.sc_blogger.layout_polaroid .sc_blogger_elements .sc_polaroid_title {
font-weight:400;
margin: 0.6em 0 0 0;
}
.sc_blogger.layout_polaroid .sc_blogger_elements .photostack-back {
font-size:1.0769em;
line-height:1.5em;
padding:2.3077em;
} .sc_blogger.layout_date .sc_blogger_item {
position: relative;
}
.sc_blogger.layout_date .sc_blogger_item:before {
content: ' ';
display: block;
background-color: #ddd;
position: absolute;
z-index: 1;
}
.sc_blogger.layout_date.sc_blogger_vertical .sc_blogger_item:before {
width: 1px;
height: 100%;
left: 40px;
top: 0;
}
.sc_blogger.layout_date.sc_blogger_horizontal .sc_blogger_item:before {
height: 1px;
width: 100%;
left: 0;
top: 40px;
}
.sc_blogger.layout_date.sc_blogger_horizontal .sc_blogger_item.sc_blogger_item_last:before {
content: none;
}
.sc_blogger.layout_date .sc_blogger_item .sc_blogger_date { 
width: 78px;
height: 78px;
border: 1px solid #ddd;
position: relative;
z-index: 2;
background-color: #fff;
text-align: center;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
}
.sc_blogger.layout_date .sc_blogger_item .sc_blogger_date .day_month {
display: block;
padding: 14px 0 6px 0;
font-size: 1.15em;
}
.sc_blogger.layout_date .sc_blogger_item .sc_blogger_date .year {
display: block;
font-size: 0.75em;
margin: 0 auto;
}
.sc_blogger.layout_date .sc_blogger_item .sc_blogger_date .year:before {
width: 33px;
display: block;
margin: 0 auto 3px;
content: ' ';
border-top: 1px solid #ddd;
}
.sc_blogger.layout_date .sc_blogger_item .sc_blogger_title {
margin:0 0 0.6em 0;
}
.sc_blogger.template_masonry .post_item_classic .post_title{
margin-top: 1.5em;
max-height: none;
font-size: 1.5em;
margin-bottom: 0.9em;
}
.sc_blogger.template_masonry .post_item_classic .post_descr p {
margin-bottom: 2.2em;
}
.sc_blogger.template_masonry .post_item_classic .post_info {
margin-bottom: 2.05em;
}
.sc_blogger_title.sc_item_title_without_descr {
margin-bottom: 1em;
}
.sc_blogger.layout_date.sc_blogger_horizontal {
overflow: hidden;	
}
.sc_blogger.layout_date.sc_blogger_horizontal .sc_blogger_item {
float: left;
}
.sc_blogger.layout_date.sc_blogger_horizontal .post_content {
padding-right:2em;
}
.sc_blogger.layout_date.sc_blogger_horizontal .sc_blogger_item .sc_blogger_date {
margin-bottom: 1.25em;
}
.sc_blogger.layout_date.sc_blogger_vertical .sc_blogger_item + .sc_blogger_item {
padding-top: 2em;
}
.sc_blogger.layout_date.sc_blogger_vertical .sc_blogger_item .sc_blogger_date { 
float: left;
}
.sc_blogger.layout_date.sc_blogger_vertical .post_content {
padding-left:100px;
}
.sc_blogger.layout_date.sc_blogger_vertical .post_content:after {
content:' ';
width:100%;
height:0;
display:block;
clear:both;
}
.sc_blogger.layout_date.sc_blogger_vertical .sc_blogger_item .post_info { 
margin: 0;
}
.sc_blogger.layout_date .load_more {
height: 60px;
position: relative;
}
.sc_blogger.layout_date .load_more:before {
width: 28px;
height: 28px;
border: 1px solid #ddd;
background-color: #fff;
font-family: "fontello";
content: '\e82d';
text-align: center;
position: absolute;
z-index: 2;
bottom: 0;
left: 24px;
line-height: 28px;
}
.sc_blogger.layout_date .load_more:after {
content: '';
display: block;
width: 1px;
height: 100%;
background-color: #ddd;
position: absolute;
left: 40px;
top: 0;
z-index: 1;
} .sc_blogger_item.sc_plain_item {
padding: 2.2857em;
background-color:#f0f0f0;
margin-bottom:2px;
text-align:center;
}
.sc_blogger_item.sc_plain_item .post_category {
font-style:italic;
}
.sc_blogger_item.sc_plain_item .post_title {
margin-top:0.6em;
margin-top:0.4em;
}
.sc_blogger_item.sc_plain_item .post_info {
margin-bottom:0;
}
.sc_blogger.layout_plain .sc_item_button {
margin-top:2.2857em;
} .sc_blogger.sc_blogger_horizontal.layout_news {
overflow:hidden;
}
.sc_blogger.sc_blogger_horizontal.layout_news .post_featured {
width: 40%;
float: left;
vertical-align: top;
margin: 0 2em 0.7em 0;
}
.sc_blogger.sc_blogger_horizontal.layout_news .columns_wrap .post_featured {
width: 100%;
float: none;
margin: 0 0 0.7em 0;
}
.sc_blogger.sc_blogger_vertical.layout_news .sc_blogger_item+.sc_blogger_item {
padding-top:2em;
margin-top:2em;
border-top:1px solid #ddd;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
} .article_style_boxed .sc_blogger.template_related .post_content_wrap {
background-color:#f7f7f7;
} .article_style_boxed .sc_blogger.template_masonry .post_content {
background-color:#f7f7f7;
} .sc_blogger .isotope_filters {
margin: 1.5em 0 1em;
} .sc_blogger.no_margins .sc_blogger_button {
margin-top: 2em;
} .sc_scroll_horizontal .sc_blogger .isotope_item,
.sc_scroll_horizontal .sc_blogger [class*=column-],
.sc_blogger .sc_scroll_horizontal .isotope_item,
.sc_blogger .sc_scroll_horizontal [class*=column-] {
width: 400px;
display: inline-block;
vertical-align:top;
position:relative;
padding-bottom:0;
white-space:nowrap; 
}
.sc_scroll_horizontal .sc_blogger .isotope_column_2,
.sc_scroll_horizontal .sc_blogger .column-1_2,
.sc_blogger .sc_scroll_horizontal .isotope_column_2,
.sc_blogger .sc_scroll_horizontal .column-1_2 {
width: 600px;
}
.sc_scroll_horizontal .sc_blogger .isotope_column_4,
.sc_scroll_horizontal .sc_blogger .column-1_4,
.sc_blogger .sc_scroll_horizontal .isotope_column_4,
.sc_blogger .sc_scroll_horizontal .column-1_4 {
width: 300px;
}
.sc_scroll_horizontal .sc_blogger .isotope_column_5,
.sc_scroll_horizontal .sc_blogger .column-1_5,
.sc_blogger .sc_scroll_horizontal .isotope_column_5,
.sc_blogger .sc_scroll_horizontal .column-1_5 {
width: 240px;
}
.sc_scroll_horizontal .sc_blogger .isotope_column_6,
.sc_scroll_horizontal .sc_blogger .column-1_6,
.sc_blogger .sc_scroll_horizontal .isotope_column_6,
.sc_blogger .sc_scroll_horizontal .column-1_6 {
width: 200px;
}
.sc_scroll_vertical .sc_blogger .isotope_wrap,
.sc_blogger .sc_scroll_vertical .isotope_wrap { }
.sc_scroll_vertical .sc_blogger .isotope_item,
.sc_scroll_vertical .sc_blogger [class*=column-],
.sc_blogger .sc_scroll_vertical .isotope_item,
.sc_blogger .sc_scroll_vertical [class*=column-] {
position:relative; width: auto;
max-width:400px;
display: inline-block;
padding-right:50px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
} .sc_call_to_action_align_left .sc_call_to_action_title, .sc_call_to_action_align_left .sc_call_to_action_subtitle, .sc_call_to_action_align_left .sc_call_to_action_descr,
.sc_call_to_action_align_right .sc_call_to_action_title, .sc_call_to_action_align_right .sc_call_to_action_subtitle, .sc_call_to_action_align_right .sc_call_to_action_descr {
text-align:left;
}
.sc_call_to_action_align_left .sc_call_to_action_featured, .sc_call_to_action_align_left .sc_call_to_action_info,
.sc_call_to_action_align_right .sc_call_to_action_featured, .sc_call_to_action_align_right .sc_call_to_action_info {
vertical-align:middle;
}
.sc_call_to_action_align_none .sc_call_to_action_info,
.sc_call_to_action_align_center .sc_call_to_action_info {
text-align:center;
}
.sc_call_to_action_align_none .sc_call_to_action_featured,
.sc_call_to_action_align_center .sc_call_to_action_featured {
margin: 0 auto 2.2857em;
}
.sc_call_to_action .sc_call_to_action_title {
font-weight:600;
margin-bottom:0.85em;
}
.sc_call_to_action .sc_call_to_action_title:after {
display:none;
}
.sc_call_to_action .sc_call_to_action_descr {
font-size: 1em;
font-style:normal;
font-weight:400;
line-height: 2em;
text-transform:capitalize;
margin-bottom:0;
width: 90%;
margin-top: 3em;
}
.sc_call_to_action .sc_call_to_action_buttons {
margin-top:2.95em;
}
.sc_call_to_action.sc_call_to_action_style_1 .sc_item_buttons>.sc_item_button + .sc_item_button a{
font-size: 1.4em;
font-weight: 700;
padding-top: 0.7em;
padding-left: 0;
padding-right: 0;
}
.sc_call_to_action.sc_call_to_action_style_1 .sc_item_buttons>.sc_item_button + .sc_item_button a:before{
font-family: 'fontello';
content: '\e8fa';
display: inline-block;
position: relative;
background: transparent;
font-size: 1.3em;
width: 1.1em;
-moz-transform: rotate(20deg);
-webkit-transform: rotate(20deg);
-o-transform: rotate(20deg);
-ms-transform: rotate(20deg);
transform: rotate(20deg);
} .sc_call_to_action_accented {
padding: 3em 0;
}
.sc_call_to_action_style_2 .sc_call_to_action_info,
.sc_call_to_action_style_2 .sc_call_to_action_buttons {
vertical-align:middle;
}
.sc_call_to_action_style_2 .sc_call_to_action_buttons {
text-align: center;
}
.sc_call_to_action_style_2 .sc_call_to_action_title {
font-size: 1.7857em;
font-weight:300;
margin-bottom:0.25em;
}
.sc_call_to_action_style_2 .sc_call_to_action_descr {
line-height: 1.2857em;
text-transform: none;
}
.sc_call_to_action_style_2.sc_call_to_action_align_none {
text-align:center;
}
.sc_call_to_action_style_2.sc_call_to_action_align_none .sc_call_to_action_info,
.sc_call_to_action_style_2.sc_call_to_action_align_none .sc_call_to_action_buttons {
display:inline-block;
}
.sc_call_to_action_style_2.sc_call_to_action_align_none .sc_call_to_action_buttons {
margin-left:4em;
}
.sc_call_to_action_style_2.sc_call_to_action_align_center {
text-align:center;
}
.sc_call_to_action .sc_item_buttons > .sc_item_button + .sc_item_button a{
background: transparent;
} .sc_chat {
position: relative;
padding-left:20px;
overflow:hidden;
}
.sc_chat+.sc_chat {
margin-top:1.5em;
}
.sc_chat_inner {
position: relative;
background-color: #ffffff;
border: 1px solid #1eaace;
padding: 1.2em 1.2em 0.875em;
overflow:hidden;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
}
.sc_chat:after {
content:' ';
position:absolute;
z-index:1;
top:30%;
left:14px;
width:11px;
height:30px;
-webkit-transform: rotate(30deg) skewY(-45deg);
-moz-transform: rotate(30deg) skewY(-45deg);
-ms-transform: rotate(30deg) skewY(-45deg);
-o-transform: rotate(30deg) skewY(-45deg);
transform: rotate(30deg) skewY(-45deg);
background-color:#ffffff;
border-left:1px solid #1eaace;
border-bottom:1px solid #1eaace;
}
.sc_chat .sc_chat_title {
margin-bottom: 1em;
font-weight:400;
}
.sc_chat .sc_chat_avatar {
width: 75px;
height:75px;
float:left;
margin:0 20px 10px 0;
overflow:hidden;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
}
.sc_chat p {
margin-bottom:0;
} .sc_clients .sc_slider_swiper:not(.sc_slider_height_auto) .slides .swiper-slide {
min-height: 3em;
}
.sc_clients .sc_client_image {
text-align:center;
}
.sc_clients_style_clients-2 .sc_client_hover {
text-align:center;
}
.sc_clients_style_clients-2 .sc_client_title {
margin: 0.5em 0 0 0;
font-size:1.3333em;
font-weight:700;
}
.sc_clients_style_clients-2 .sc_client_position {
margin-top:0.25em;
font-style:italic;
}
.sc_clients_style_clients-2 .sc_client_description {
font-size:1.2857em;
font-weight:300;
font-style:italic;
line-height:1.2857em;
}
.sc_clients_style_clients-2 .sc_client_description:before {
content: '\e8b6';
font-family: 'fontello';
font-size:1.5em;
font-style:normal;
line-height:1.5em;
display:block;
}
.sc_clients_style_clients-2 .sc_client_description p {
margin:0;
}
.sc_clients_style_clients-2 .sc_client_description p+p {
margin-top:0.5em;
}
.sc_clients_style_clients-2 .sc_client_image {
background-color:#fff;
}
.sc_clients_style_clients-2 .sc_client_image img {
vertical-align:middle;
}
.sc_clients_style_clients-2 .sc_client_info {
padding-top: 1.5em;
}
.sc_clients_style_clients-2 .sc_client_image {
position:relative;
}
.sc_clients_style_clients-2 .sc_client_image .sc_client_hover {
position:absolute;
left:0;
right:0;
top:0;
bottom:0;
opacity: 0;
filter: alpha(opacity=0);
text-align:center;
}
.sc_clients_style_clients-2 .sc_clients_item:hover .sc_client_image .sc_client_hover {
opacity: 1;
filter: alpha(opacity=100);
}
.sc_clients_style_clients-2 .sc_client_image .sc_client_hover,
.sc_clients_style_clients-2 .sc_client_image .sc_client_hover .sc_client_info {
overflow:hidden;
-webkit-transition: all ease .3s;
-moz-transition: all ease .3s;
-ms-transition: all ease .3s;
-o-transition: all ease .3s;
transition: all ease .3s;
}
.sc_clients_style_clients-2 .sc_client_image .sc_client_hover .sc_client_info {
position:absolute;
left:0;
top:50%;
width:100%;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
transform: translateY(-50%);
margin-top: 50px;
padding:1.5em;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.sc_clients_style_clients-2 .sc_clients_item:hover .sc_client_image .sc_client_hover .sc_client_info {
margin-top: 0;
}
.sc_clients .sc_slider_controls_side .sc_slider_controls_wrap a {
border: none;
font-size: 1.1em;
font-weight: 700;
width: 3.5em;
height: 3.5em;
line-height: 3.5em;
}
.sc_clients .sc_slider_controls_side:hover .sc_slider_controls_wrap .sc_slider_prev{
margin-left: 0;
}
.sc_clients .sc_slider_controls_side:hover .sc_slider_controls_wrap .sc_slider_next {
margin-right: 0;
} .sc_columns .sc_column_item_inner {
padding:1.5em;
} .sc_form form {
position:relative;
}
.sc_form .result {
display:none;
width:70%;
position:absolute;
z-index:1000;
top:38%;
left:50%;
-webkit-transform:translateX(-50%) translateY(-50%);
-moz-transform:translateX(-50%) translateY(-50%);
-ms-transform:translateX(-50%) translateY(-50%);
transform:translateX(-50%) translateY(-50%);
-webkit-box-shadow: 10px 10px 30px 0px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 10px 10px 30px 0px rgba(0, 0, 0, 0.2);
box-shadow: 10px 10px 30px 0px rgba(0, 0, 0, 0.2);	
}
.sc_form .sc_item_descr .sc_socials {
display:block;
font-size:0.6667em;
margin-top:1em;
}
.sc_form .sc_form_item {
margin-bottom:1.5em;
width:100%;
text-align:center;
}
.sc_form .sc_form_item input[type="text"],
.sc_form .sc_form_item select,
.sc_form .sc_form_item textarea {
padding: 1em;
text-align:center;
font-weight: 400;
border-radius: 2em;
font-size: 1em;
line-height: 2.3em;
}
.sc_form .sc_form_address_field {
margin-bottom:2em;
text-align:left;
}
.sc_form .sc_form_address .sc_socials {
text-align:left;
display:block;
}
.sc_form .sc_form_address_label {
display:block;
font-weight:700;
}
.sc_form .sc_form_field  {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.sc_form .sc_form_item.label_top label {
display:block;
margin-bottom:0.4em;
}
.sc_form .sc_form_item.label_bottom label {
display:block;
margin-top:0.4em;
}
.sc_form .sc_form_item.label_left {
overflow:hidden;
}
.sc_form .sc_form_item.label_left label {
display:inline-block;
margin-right: 1.5em;
vertical-align:middle;
}
.sc_form .sc_form_item.label_left input,
.sc_form .sc_form_item.label_left .sc_form_select_container,
.sc_form .sc_form_item.label_left textarea {
display:inline-block;
width: auto;
vertical-align:middle;
}
.sc_form .sc_form_item .sc_form_element {
width:auto;
display:inline-block;
}
.sc_form .sc_form_item .sc_form_element+.sc_form_element {
margin-left:2em;
}
.sc_form .sc_form_item .sc_form_element input,
.sc_form .sc_form_item .sc_form_element label {
width:auto;
margin-right:0.5em;
display:inline-block;
}
.sc_form .sc_form_item .sc_form_element input[type="radio"],
.sc_form .sc_form_item .sc_form_element input[type="checkbox"] {
display:none;
}
.sc_form .sc_form_item .sc_form_element input[type="radio"] + label,
.sc_form .sc_form_item .sc_form_element input[type="checkbox"] + label {
position:relative;
padding-left:1.75em;
line-height:1.5em;
}
.sc_form .sc_form_item .sc_form_element input[type="radio"] + label:before,
.sc_form .sc_form_item .sc_form_element input[type="checkbox"] + label:before {
content:' ';
font-family:fontello;
display:block;
text-align:center;
border: 1px solid #ebebeb;
position:absolute;
left:0;
top:3px;
width:1em;
height:1em;
line-height:1em;
}
.sc_form .sc_form_item .sc_form_element input[type="radio"] + label:before {
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
}
.sc_form .sc_form_item .sc_form_element input[type="checkbox"]:checked + label:before {
content:'\e8ab';
}
.sc_form .sc_form_item .sc_form_element input[type="radio"]:checked + label:before {
content:'\e8e4';
}
.sc_form .sc_form_field input,
.sc_form .sc_form_message textarea {
width:100%;
padding:0.5em 1em;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.sc_form .sc_form_message textarea {
min-height:8em;
}
.sc_form .sc_form_field input[type="checkbox"]{
width: auto;
} .sc_form .picker {
position: absolute;
z-index: 10000;
left: 0;
top: 4em;
width: 100%;
height: 0;
padding:1.5em;
overflow:hidden;
filter: alpha(opacity=0);
-moz-opacity: 0;
opacity: 0;
-webkit-transition: all 0.15s ease-out;
-moz-transition: all 0.15s ease-out;
transition: all 0.15s ease-out;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.sc_form .picker--opened {
height: auto;
filter: alpha(opacity=100);
-moz-opacity: 1;
opacity: 1;
}
.sc_form .picker__header {
position: relative;
margin: 0 1.5em;
font-size: 1.2857em;
text-transform: uppercase;
text-align: center;
}
.sc_form .picker__month,
.sc_form .picker__year {
display: inline-block;
margin-left: 3px;
margin-right: 3px;
}
.sc_form .picker__nav--prev,
.sc_form .picker__nav--next {
position: absolute;
z-index:1;
top: 0;
left: 0;
line-height: 1.5em;
width: 1.5em;
height: 1.5em;
text-align: center;
}
.sc_form .picker__nav--next {
left: auto;
right: 0;
}
.sc_form .picker__nav--prev:before,
.sc_form .picker__nav--next:before {
font-family: "fontello";
display: inline-block;
line-height:inherit;
}
.sc_form .picker__nav--prev:before {
content: '\e837';
}
.sc_form .picker__nav--next:before {
content: '\e836';
}
.sc_form .picker__nav--prev:hover,
.sc_form .picker__nav--next:hover {
cursor: pointer;
}
.sc_form .picker__nav--disabled,
.sc_form .picker__nav--disabled:hover,
.sc_form .picker__nav--disabled:before,
.sc_form .picker__nav--disabled:before:hover {
cursor: default;
}
.sc_form .picker__table {
width: 100%;
border-collapse: collapse;
border-spacing: 0;
text-align: center;
table-layout: fixed;
margin: 0.8em 0 0 0;
}
.sc_form .picker__table th,
.sc_form .picker__table td {
border: none;
padding:0.25em;
vertical-align: top;
text-align: center;
}
.sc_form .picker__weekday {
width: 14.285714286%;
text-transform: uppercase;
}
.sc_form .picker__day--today {
position: relative;
}
.sc_form .picker__day--today:before {
content: " ";
position: absolute;
top: 2px;
right: 2px;
width: 0;
height: 0;
border-top: 7px solid #f15a23;
border-left: 7px solid transparent !important;
}
.sc_form .picker__day--infocus:hover,
.sc_form .picker__day--outfocus:hover,
.sc_form .picker__day--highlighted:hover,
.sc_form .picker--focused .picker__day--highlighted {
cursor: pointer;
}
.sc_form .picker__day--disabled,
.sc_form .picker__day--disabled:hover,
.sc_form .picker--focused .picker__day--disabled {
cursor: default;
background-color: transparent !important;
}
.sc_form .picker__footer {
text-align: center;
border-top: 1px solid #ddd;
margin-top: 0.5em;
padding: 0.5em 0 0 0;
}
.sc_form .picker__button--today,
.sc_form .picker__button--clear,
.sc_form .picker__button--close {
display: inline-block;
vertical-align: bottom;
font-style: italic;
font-weight:400;
line-height: 2em;
width: 33%;
background-color:transparent !important;
}
.sc_form .picker__button--today:hover,
.sc_form .picker__button--clear:hover,
.sc_form .picker__button--close:hover {
cursor: pointer;
}
.sc_form .picker__button--today:focus,
.sc_form .picker__button--clear:focus,
.sc_form .picker__button--close:focus {
background: transparent;
outline: none;
}
.sc_form .picker__button--today:before,
.sc_form .picker__button--clear:before,
.sc_form .picker__button--close:before {
position: relative;
display: inline-block;
height: 0;
}
.sc_form .picker__button--today:before,
.sc_form .picker__button--clear:before {
content: " ";
margin-right: 0.3em;
}
.sc_form .picker__button--today:before {
top: -1px;
width: 0;
border-top: 7px solid transparent;
border-left: 7px solid transparent !important;
}
.sc_form .picker__button--clear:before {
top: -3px;
width: 10px;
border-top: 3px solid transparent;
}
.sc_form .picker__button--close:before {
content: "\D7";
vertical-align: top;
margin-right: 0.4em;
font-size: 1.5385em;
font-style: normal;
font-weight: 700;
}
.sc_form .picker__button--today[disabled],
.sc_form .picker__button--today[disabled]:hover {
cursor: default;
} .sc_form .picker--time {
padding: 0;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
.sc_form .picker--time.picker--opened {
height: 16em;
}
.sc_form .picker__list {
list-style: none;
padding: 0;
margin: 0;
}
.sc_form .picker__list li {
margin-bottom:0;
}
.sc_form .picker__list-item {
position: relative;
padding: 0.5em 1em;
border-bottom: 1px solid #ddd;
border-top: 1px solid #ddd;
margin-bottom:-1px;
}
.sc_form .picker__list-item:hover {
z-index: 10;
}
.sc_form .picker__list-item:hover,
.sc_form .picker__list-item--highlighted,
.sc_form .picker__list-item--highlighted:hover,
.sc_form .picker--focused .picker__list-item--highlighted,
.sc_form .picker__list-item--selected,
.sc_form .picker__list-item--selected:hover,
.sc_form .picker--focused .picker__list-item--selected {
cursor: pointer;
}
.sc_form .picker__list-item--disabled,
.sc_form .picker__list-item--disabled:hover,
.sc_form .picker--focused .picker__list-item--disabled {
cursor: default;
z-index: auto;
} .sc_form .picker--time .picker__button--clear {
display: block;
width: 100%;
margin: 0 auto;
padding: 0.75em;
background-color: transparent;
border: 0;
text-align: center;
text-transform: uppercase;
}
.sc_form .picker--time .picker__button--clear:hover,
.sc_form .picker--time .picker__button--clear:focus {
outline: none;
}
.sc_form .sc_form_field [class*="icon-"] {
position:relative;
}
.sc_form .sc_form_field [class*="icon-"]:before {
position:absolute;
right: 0.5em;
top: 0.5em;
display:block;
width: 2em;
height: 2em;
line-height:2em;
}
.sc_form_select_container {
width:100%;
overflow:hidden;
position:relative;
}
.sc_form_select_container:after {
content:'\e828';
font-family:fontello;
display:block;
text-align:center;
position:absolute;
right:0;
top:0;
width:1.5em;
height:3.5em;
line-height:3.5em;
z-index:0;
pointer-events: none;
cursor:pointer;
}
.sc_form_select_container select {
width:100%;
padding-left: 0.5em !important;
background:none !important;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
}
.sc_form .sc_form_button { 
text-align:center;
margin: 1.3em 0 0;
}
.sc_form .sc_form_item.sc_form_button button {
-webkit-transition: all ease .3s;
-moz-transition: all ease .3s;
-ms-transition: all ease .3s;
-o-transition: all ease .3s;
transition: all ease .3s;
}
.sc_form_style_form_2 .sc_form_item,
.sc_form_style_form_2 .sc_form_button,
.sc_form_style_form_2 .sc_form_item input[type="text"],
.sc_form_style_form_2 .sc_form_item select,
.sc_form_style_form_2 .sc_form_item textarea {
text-align:left;
}
.sc_form .sc_form_item.sc_form_button button{
-webkit-transition: all ease .3s;
-moz-transition: all ease .3s;
-ms-transition: all ease .3s;
-o-transition: all ease .3s;
transition: all ease .3s;
}
.sc_form .sc_form_item.sc_form_button button:hover {
background-position: 100%;
} .sc_form.sc_form_style_form_1 .sc_form_info .sc_form_item{
width: 48%;
float: left;
}
.sc_form.sc_form_style_form_1 .sc_form_info .sc_form_item:first-child{
margin-right: 26px;
}
.sc_form.sc_form_style_form_1 .sc_form_item.sc_form_message{
clear: both;
} .sc_content { } .sc_countdown {
overflow:hidden;
}
.sc_countdown .sc_countdown_inner {
display:inline-block;
}
.sc_countdown .sc_countdown_item {
display:block;
float:left;
text-align:center;
}
.sc_countdown .sc_countdown_digits {
display:block;
overflow:hidden;
text-align:center;
margin-bottom: 12px;
}
.sc_countdown .sc_countdown_digits span {
display:inline-block;
}
.sc_countdown .sc_countdown_separator {
display:block;
float:left;
margin: 0 8px;
} .sc_countdown.sc_countdown_style_1 .sc_countdown_digits,
.sc_countdown.sc_countdown_style_1 .sc_countdown_separator {
font-size:2.45em;
height: 2.45em;
line-height:2.45em;
margin-bottom:6px;
}
.sc_countdown.sc_countdown_style_1 .sc_countdown_digits {
width: 2.45em;
border-width: 6px;
border-style: solid;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
}
.sc_countdown.sc_countdown_style_1 .sc_countdown_label {
font-weight:400;
} .sc_countdown.sc_countdown_style_2 .sc_countdown_digits,
.sc_countdown.sc_countdown_style_2 .sc_countdown_separator {
font-size:3em;
font-weight:700;
height: 1.3542em;
line-height:1.3542em;
}
.sc_countdown.sc_countdown_style_2 .sc_countdown_separator {
font-weight:300;
}
.sc_countdown.sc_countdown_style_2 .sc_countdown_digits span {
display:inline-block;
text-align:center;
width: 1.1458em;
color: #ffffff;
}
.sc_countdown.sc_countdown_style_2 .sc_countdown_digits span+span {
margin-left:2px;
}
.sc_countdown.sc_countdown_style_2 .sc_countdown_label {
font-weight:400;
} .sc_dropcaps {
overflow:hidden;
}
.sc_dropcaps .sc_dropcaps_item {
font-size: 2.2em;
font-weight: 500;
line-height:1em;
display: block;
padding: 16px 20px;
margin: 8px 8px 2px 0;
float: left;
border-radius: 50%;
} .sc_events_item .sc_events_item_title {
margin:1em 0;
font-size:1.2857em;
}
.sc_events_item .sc_events_item_description {
line-height:1.75em;
overflow:hidden;
}
.sc_events_item .sc_events_item_description p {
margin-bottom:0;
height: 5em;
overflow:hidden;
}
.sc_events_item .sc_events_item_readmore {
display:block;
margin-top: 1em;
}
.sc_events_item .sc_events_item_readmore span {
display:inline-block;
margin-left:0.5em;
}
.sc_events_style_events-1 .sc_events_item {
text-align:center;
padding:0;
}
.sc_events_style_events-1 .sc_events_item_content {
padding:0 2.5em 2.5em;
}
.sc_events_style_events-1 .sc_events_item_date {
font-size:0.8571em;
margin-bottom: 1em;
}
.sc_events_style_events-1 .sc_events_item_title {
margin-top:0;
}
.sc_events_style_events-2 .sc_events_item {
border: 1px solid #eee;
height: 4em;
position:relative;
white-space:nowrap;
padding: 1.1em 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.sc_events_style_events-2 .sc_events_item+.sc_events_item {
margin-top:4px;
}
.sc_events_style_events-2 .sc_events_item > span,
.sc_events_style_events-2 .sc_events_item_title {
display:inline-block;
margin:0;
vertical-align:middle;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.sc_events_style_events-2 .sc_events_item_date {
position:absolute;
z-index:1;
left:-1px;
top:-1px;
bottom: -1px;
width: 4em;
text-align:center;
}
.sc_events_style_events-2 .sc_events_item_month {
display:block;
text-transform:uppercase;
margin-top:0.35em;
font-size:0.8571em;
}
.sc_events_style_events-2 .sc_events_item_day {
display:block;
font-size:1.7em;
}
.sc_events_style_events-2 .sc_events_item_title {
font-size:1em;
padding:0 1em 0 6em;
text-transform:uppercase;
width:50%;
}
.sc_events_style_events-2 .sc_events_item_time {
position:relative;
width:30%;
padding: 0 1em 0 2em;
}
.sc_events_style_events-2 .sc_events_item_details {
position:relative;
width:20%;
padding: 0 1em 0 2em;
}
.sc_events_style_events-2 .sc_events_item_time:before,
.sc_events_style_events-2 .sc_events_item_details:before {
content: ' ';
position:absolute;
z-index:1;
left: 0;
top: -0.2em;
bottom: -0.2em;
width: 1px;
}
.sc_events_style_events-2 .sc_events_button {
margin-top: 2em;
} .sc_googlemap{
border-radius: 2em;
}
.sc_googlemap img {
max-width: none;
}
.sc_googlemap_wrap {
position:relative;
}
.sc_googlemap_content {
position:absolute;
z-index:1;
right:10%;
top: 0;
bottom:0;
width: 25%;
padding:2em 3em;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.sc_googlemap_content .sc_item_title:after {
margin-bottom:0.3em;
display:none;
} .sc_icon {
display:inline-block;
position:relative;
margin-right:0.25em;
-webkit-transition: all ease .3s;
-moz-transition: all ease .3s;
-ms-transition: all ease .3s;
-o-transition: all ease .3s;
transition: all ease .3s;
}
.sc_icon_shape_square,
.sc_icon_shape_round {
display:inline-block; 
padding: 4px;
text-align:center;
width: 1.2em;
height: 1.2em;
line-height: 1.2em;
border: 0.05em solid #f4f7f9;
}
.sc_icon_shape_round,
a.sc_icon.sc_icon_shape_round:after,
a .sc_icon.sc_icon_shape_round:after {
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
}
.sc_icon.sc_icon_shape_square:hover,
.sc_icon.sc_icon_shape_round:hover,
a.sc_icon.sc_icon_shape_square:hover,
a.sc_icon.sc_icon_shape_round:hover,
a:hover .sc_icon.sc_icon_shape_square,
a:hover .sc_icon.sc_icon_shape_round {
background-color:transparent;
}
a.sc_icon.sc_icon_shape_round:after,
a.sc_icon.sc_icon_shape_square:after,
a .sc_icon.sc_icon_shape_round:after,
a .sc_icon.sc_icon_shape_square:after {
background-color: inherit;
box-sizing: content-box;
content: " ";
height: 100%;
width: 100%;
pointer-events: none;
position: absolute;
top: 0;
left: 0;
-webkit-transition: all ease 0.3s;
-moz-transition: all ease 0.3s;
-ms-transition: all ease 0.3s;
-o-transition: all ease 0.3s;
transition: all ease 0.3s;
z-index: -1;
}
a.sc_icon.sc_icon_shape_round:hover:after,
a.sc_icon.sc_icon_shape_square:hover:after,
a:hover .sc_icon.sc_icon_shape_round:after,
a:hover .sc_icon.sc_icon_shape_square:after {
opacity: 0;
transform: scale(1.8);
} .sc_image {
overflow:hidden;
border-radius: 1.8em;
}
.sc_image img {
border-radius: 1.8em;
}
figure figcaption,
.sc_image figcaption {
font-size: 0.8571em;
text-align: center;
line-height: 4em;
border-radius: 0;
}
.sc_image figcaption span {
display:inline-block;
margin-right: 0.3em;
}
.sc_image.sc_image_shape_round {
display: block;
position:relative;
overflow:hidden;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
}
.sc_image.sc_image_shape_round figcaption {
top:0;
bottom:0;
padding:0;
font-size:1em;
line-height:1.2857em;
text-align:center;
overflow:hidden;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
}
.sc_image_shape_round:hover figcaption {
opacity:0;
margin-bottom: 0;
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-o-transform: rotate(360deg);
-ms-transform: rotate(360deg);
}
.sc_image_shape_round figcaption span {
display:block;
margin: 0 auto;
font-size:2em;
}
.sc_image_shape_round figcaption span:before {
display:block;
margin: 35% auto 0.5em;
} .sc_infobox {
display: block;
margin:1.25em 0;
color: #ffffff;
font-size: 0.875em;
line-height:1.5em;
padding:1.5em;
clear: both;
}
.sc_infobox.sc_infobox_style_info {		background-color:#ffb20e; }
.sc_infobox.sc_infobox_style_success {	background-color:#1dbb90; }
.sc_infobox.sc_infobox_style_error {	background-color:#e05100; }
.sc_infobox b,
.sc_infobox strong { 
font-weight: 900;
}
.sc_infobox p {
margin: 0;
}
.sc_infobox p+p,.sc_infobox h1+p,.sc_infobox h2+p,.sc_infobox h3+p,.sc_infobox h4+p,.sc_infobox h5+p,.sc_infobox h6+p {
margin-top: 1em;
}
.sc_infobox h1, .sc_infobox h2, .sc_infobox h3, .sc_infobox h4, .sc_infobox h5, .sc_infobox h6 {
text-align:left;
margin:-0.1em 0 0.5em 0;
line-height:1.2em;
color: inherit;
}
.sc_infobox.sc_infobox_iconed {
position:relative;
padding-left: 5em;
}
.sc_infobox.sc_infobox_iconed:before {
font-size:1.9em;
line-height:1em;
margin-right:0.6em;
position:absolute;
left:0.8em;
top:0.68em;
}
.sc_infobox.sc_infobox_closeable {
cursor: pointer;
padding-right: 3.5em;
}
.sc_infobox.sc_infobox_closeable:after {
content: '\e8ac';
font-family: "fontello";
cursor:pointer;
position:absolute;
right:1.25em;
top:1.5em;
} .sc_intro[data-href] {
cursor: pointer;
}
.sc_intro {
background-size: cover !important;
background-position: center !important;
position: relative;
overflow: hidden;
display: block;
padding: 2em 8%;
box-sizing: border-box;
border-radius: 2em;
}                           .sc_intro.small_padding {
padding: 1.2em;
}
.sc_intro_inner {
position:relative;
z-index:2;
}
.sc_intro .sc_intro_subtitle {
font-size: 0.85em;
font-weight: 700;
text-transform: capitalize;
letter-spacing: 0;
margin: 0;
}
.sc_intro .sc_intro_title {
font-size: 1.5em;
line-height: 1.2em;
font-weight: 700;
text-transform: capitalize;
letter-spacing: 0;
display: inline-block;
margin:0;
}
.sc_intro .sc_intro_subtitle + .sc_intro_title {
margin-top:0.2em;
} .sc_intro_style_1 {
display: table;
height: 100%;
width: 100%;
}
.sc_intro_position_top_right .sc_intro_inner,
.sc_intro_position_bottom_right .sc_intro_inner {
float:right;
}
.sc_intro_style_1 .sc_intro_content {
display: table-cell;
text-align:left;
vertical-align: top;
}
.sc_intro_style_1 .sc_intro_subtitle {
letter-spacing: 1px;
}
.sc_intro_style_1 .sc_intro_title {
margin-bottom: 0;
}
.sc_intro_position_bottom_right .sc_intro_style_1 .sc_intro_content,
.sc_intro_position_bottom_left .sc_intro_style_1 .sc_intro_content {
vertical-align: bottom;
} .sc_intro_style_2 {
display: table;
height: 100%;
width: 100%;
}
.sc_intro_style_2 .sc_intro_content {
display: table-cell;
vertical-align: bottom;
}
.sc_intro_style_2 .sc_intro_subtitle {
font-size: 1.5em;
letter-spacing: 0;
margin-bottom: 0;
line-height: 1.1em;
}
.sc_intro_style_2 .sc_intro_title {
font-size: 2.5em;
letter-spacing: 0;
line-height: 1em;
}
.sc_intro_style_2 .sc_intro_descr {
font-size: 0.9em;
text-transform:uppercase;
font-weight: 700;
line-height: 1.2em;
margin-top:0.8em;
}
.sc_intro_style_2 .sc_intro_buttons {
margin-top: 1.2em; 
} .sc_intro_style_3 {
display: table;
height: 100%;
width: 100%;
padding: 4.8em 0 3.1em 0;
text-align:center;
}
.sc_intro_style_3 .sc_intro_content {
display: table-cell;
vertical-align: middle;
}
.sc_intro_style_3 .sc_intro_subtitle {
font-size: 1.5em;
letter-spacing: 0;
margin-bottom: 0;
line-height: 1.1em;
}
.sc_intro_style_3 .sc_intro_title {
font-size: 3.3em;
line-height: 1em;
letter-spacing: 0;
font-weight: 600;
margin-bottom: 0.2em;
}
.sc_intro_style_3 .sc_intro_descr {
font-size: 0.857em;
text-transform:uppercase;
font-weight: 700;
line-height: 1.2em;
margin-top:0.8em;
}
.sc_intro_style_3 .sc_intro_buttons {
margin-top: 1.2em; 
}
.sc_intro_style_3 .sc_intro_buttons > .sc_item_button {
margin:0;
float: none;
text-align: center;
}
.sc_intro_style_3 .sc_intro_buttons > .sc_item_button + .sc_item_button {
margin-left: 1em;
}
.sc_intro_style_3 .sc_intro_buttons{
display: block;
} .sc_intro_style_4 {
display: table;
height: 100%;
width: 100%;
padding: 0.1em;
text-align: center;
}
.sc_intro_style_4 .sc_intro_content {
display: table-cell;
vertical-align: middle;
}
.sc_intro_style_4 .sc_intro_title {
font-size: 1.28em;
letter-spacing: 0;
line-height: 1em;
margin-bottom: 0;
}
.sc_intro_style_4 .sc_intro_descr {
font-size: 1.142em;
text-transform:none;
font-weight: 400;
} .sc_intro_style_5 {
display: table;
height: 100%;
width: 100%;
text-align: left;
}
.sc_intro_style_5 .sc_intro_icon,
.sc_intro_style_5 .sc_intro_content {
display: table-cell;
vertical-align: middle;
}
.sc_intro_style_5 .sc_intro_icon {
text-align: center;
}
.sc_intro_style_5 .sc_intro_icon:before {
font-size: 2em;
width: 1.7em;
height: 1.7em;
line-height: 1.7em;
border: 4px solid;
border-radius: 50%;
text-align: center;
}
.sc_intro_style_5 .sc_intro_content {
padding-left: 10px;
}
.sc_intro_style_5 .sc_intro_title {
font-size: 1.28em;
letter-spacing: 0;
line-height: 1em;
margin-bottom: 0;
}
.sc_intro_style_5 .sc_intro_descr {
font-size: 1.142em;
text-transform:none;
font-weight: 400;
} ul.sc_list_style_iconed {
padding-left: 0;
}
.sc_list_style_iconed li {
padding: 0 0 0 1.5em !important;
list-style: none;
position: relative;
line-height:1.9em;
}
.sc_list_style_iconed li .sc_list_icon {
position:absolute;
left: 0;
top: 0;
width: 1em;
display:inline-block;
text-align:center;
}
.sc_list li {
line-height:1.9em;
} .sc_line {
display: block;
width: 100%;
height: 0;
border-top: 1px solid #e4e7e8;
margin:5.1em 0 4.95em;
position:relative;
}
.sc_line.sc_line_position_left_top:not(.sc_line_style_image),
.sc_line.sc_line_position_center_top:not(.sc_line_style_image),
.sc_line.sc_line_position_right_top:not(.sc_line_style_image) {
border-top: none;
border-bottom: 1px solid #e4e7e8;
}
.sc_line.sc_line_style_dashed { border-style: dashed; }
.sc_line.sc_line_style_dotted { border-style: dotted; }
.sc_line.sc_line_style_double { height: 4px; border-bottom-width: 1px; }
.sc_line.sc_line_style_image {
background-position:center;
background-repeat:no-repeat;
border:none;
}
.sc_line .sc_line_title {
margin:0;
padding: 0 1em;
text-transform:uppercase;
display:inline-block;
position:absolute;
z-index:1;
}
.sc_line.sc_line_position_left_top { background-position: left bottom; }
.sc_line.sc_line_position_left_top .sc_line_title {
top:0;
left:0;
padding-left:0;
}
.sc_line.sc_line_position_center_top { background-position: center bottom; }
.sc_line.sc_line_position_center_top .sc_line_title {
top:0;
left:50%;
-webkit-transform:translateX(-50%);
-moz-transform:translateX(-50%);
-ms-transform:translateX(-50%);
transform:translateX(-50%);
}
.sc_line.sc_line_position_right_top { background-position: right bottom; }
.sc_line.sc_line_position_right_top .sc_line_title {
top:0;
right: 0;
padding-right:0;
}
.sc_line.sc_line_position_left_center { background-position: left center; }
.sc_line.sc_line_position_left_center .sc_line_title {
top:50%;
left:0;
padding-left:0;
margin-top:-2px;
-webkit-transform:translateY(-50%);
-moz-transform:translateY(-50%);
-ms-transform:translateY(-50%);
transform:translateY(-50%);
}
.sc_line.sc_line_position_center_center { background-position: center center; }
.sc_line.sc_line_position_center_center .sc_line_title {
top:50%;
left:50%;
margin-top:-2px;
-webkit-transform:translateX(-50%) translateY(-50%);
-moz-transform:translateX(-50%) translateY(-50%);
-ms-transform:translateX(-50%) translateY(-50%);
transform:translateX(-50%) translateY(-50%);
}
.sc_line.sc_line_position_right_center { background-position: right center; }
.sc_line.sc_line_position_right_center .sc_line_title {
top:50%;
right: 0;
padding-right:0;
margin-top:-2px;
-webkit-transform:translateY(-50%);
-moz-transform:translateY(-50%);
-ms-transform:translateY(-50%);
transform:translateY(-50%);
}
.sc_line.sc_line_position_left_bottom { background-position: left top; }
.sc_line.sc_line_position_left_bottom .sc_line_title {
bottom:0;
left:0;
padding-left:0;
}
.sc_line.sc_line_position_center_bottom { background-position: center top; }
.sc_line.sc_line_position_center_bottom .sc_line_title {
bottom:0;
left:50%;
-webkit-transform:translateX(-50%);
-moz-transform:translateX(-50%);
-ms-transform:translateX(-50%);
transform:translateX(-50%);
}
.sc_line.sc_line_position_right_bottom { background-position: right top; }
.sc_line.sc_line_position_right_bottom .sc_line_title {
bottom:0;
right: 0;
padding-right:0;
}  .match_block {
display: block;
width: 100%;
margin-bottom: 30px;
text-align: center;
}
.match_block .player, 
.match_block .match_info {
display: inline-block;
vertical-align:middle;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.match_block .player {
width: 35%;
position: relative;
}
.match_block .player_country {
width: 3.5em;
height: 3.5em;
line-height: 3.5em;
text-align: center;
position: absolute;
top: 0;
left: 0;
font-size: 0.7857em;
text-transform: uppercase;
z-index: 2;
}
.match_block .player_name a {
text-align: center;
padding: 1em;
font-weight: 600;
display: block;
}
.match_block .match_info {
width: 30%;
padding: 0 2em;
}
.match_block .match_date {
font-weight: 600;
margin-bottom: 1.2em;
}
.match_block .match_score {
font-size: 3.5714em;
font-weight: 600;
line-height: 1.6em;
padding: 0 0.4em;
display: inline-block;
background-color: #f7f7f7;
margin-bottom: 0.3333em;
}
.match_block .match_category {
font-size: 0.8571em;
text-transform: uppercase;
}
.match_preview {
margin-bottom: 1em;
} .type_match.post_item_colored .match_date {
margin-top: 1.25em;
font-size: 1.125em;
font-weight: 400;
line-height: 1.15em;
margin: 1.8em 1em 0.5em 0;
display: inline-block;
}
.type_match.post_item_colored .match_date + .post_category{
margin: 0 0 0.5em 0;
overflow: visible;	
display: inline-block;
}
.type_match.post_item_colored .post_title{
margin-top: 0 !important;
}
.post_item_colored .match_date,
.post_item_colored .post_category {
font-size: 1.125em;
line-height: 1.15em;
}
.matches_hover > a:before {
content: '\e843';
font-family: 'fontello';
font-size: 3em;
color: #ffffff;
text-shadow: -4px 3px 0px rgba(0, 0, 0, 0.2);
cursor: pointer;
position: absolute;
z-index: 10;
left: 50%;
top: 35%;
-webkit-transform: translateX(-50%) translateY(-50%);
-moz-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
opacity: 0;
filter: alpha(opacity=0);
margin-top: 100px;
-webkit-transition: all ease .3s;
-moz-transition: all ease .3s;
-ms-transition: all ease .3s;
-o-transition: all ease .3s;
transition: all ease .3s;
}
.matches_hover > a:after {
content: ' ';
position: absolute;
z-index: 1;
top: 0;
left: 0;
bottom: 0;
right: 0;
background-color: rgba(0,0,0,0.3);
opacity: 0;
z-index: 0;
-webkit-transition: opacity ease .3s;
-moz-transition: opacity ease .3s;
-ms-transition: opacity ease .3s;
-o-transition: opacity ease .3s;
transition: opacity ease .3s;
}
.matches_hover > a:hover:before {
opacity: 1;
filter: alpha(opacity=100);
margin-top: 0;
}
.matches_hover > a:hover:after {
opacity: 1;
} .sc_matches {
overflow: hidden;
}
.sc_matches_next, .sc_matches_current {
padding: 4em;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
.sc_matches_next {
width: 40%;
float: left;
}
.sc_matches_current {
width: 60%;
float: right;
padding-right: 0;
}
.sc_matches.style_matches-1 .sc_matches_subtitle,
.sc_matches.style_matches-1 .sc_matches_title,
.sc_matches.style_matches-1 .sc_matches_descr,
.sc_matches.style_matches-1 .sc_matches_button {
text-align: left;
}
.sc_matches.style_matches-1 .sc_item_title:after {
width: 2em;
margin-left:0;
}
.sc_matches.style_matches-1 .sc_matches_descr {
font-style:normal;
}
.sc_matches_current .sc_match {
display: none;
}
.sc_matches_current .sc_match:first-child {
display: block;
}
.sc_matches_list {
padding-left: 0;
margin-top: 4em;
list-style-type: none;
}
.sc_matches_next .sc_matches_list .sc_match {
padding-left: 0;
margin-bottom: 3px;
position: relative;
cursor: pointer;
}
.sc_match_date {
width: 5em;
height: 100%;
text-align: center;
position: absolute;
}
.sc_match_date .day {
font-size: 1.7857em;
font-weight: 600;
display: block;
padding-top: 0.6em;
}
.sc_match_date .month {
font-size: 0.8571em;
font-weight: 400;
letter-spacing: 1px;
text-transform: uppercase;
}
.sc_match_info {
padding: 1em 1.5em;
margin-left: 5em;
background-color: rgba(255,255,255,0.1);
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.sc_matches_next .sc_matches_list .sc_match:hover .sc_match_info {
background-color: rgba(255,255,255,0.2);
}
.sc_match_info .name {
font-weight: 600;
}
.sc_match_info .time, .sc_match_info .players{
display: inline;
} .sc_matches.style_matches-2 .match_preview {
text-align: center;
}
.sc_matches.style_matches-2 .sc_matches_next .sc_matches_title {
font-size: 1.7857em;
line-height: 1.3em;
font-weight: 700;
padding: 0.6em 0;
}
.sc_matches.style_matches-2 .sc_matches_next .sc_item_title:after {
display:none;
}
.sc_matches.style_matches-2 .sc_matches_current,
.sc_matches.style_matches-2 .sc_matches_next {
width: 100%;
}
.sc_matches.style_matches-2 .sc_matches_next{
padding: 0;
}
.sc_matches.style_matches-2 .sc_matches_current {
padding: 0 0 2em 0;
}
.sc_matches.style_matches-2 .sc_matches_current .sc_matches_list {
max-width: 900px;
margin-left: auto;
margin-right: auto;
}
.sc_matches.style_matches-2 .sc_matches_next .sc_matches_list {
margin: 0;
width: 50%;
float: left;
}
.sc_matches.style_matches-2 .sc_matches_next .sc_matches_list .sc_match {
margin-right: 2px;
margin-left: 0;
}
.sc_matches.style_matches-2 .sc_matches_next .sc_matches_list:last-child .sc_match {
margin-left: 2px;
margin-right: 0;
}
.sc_matches.style_matches-2 .sc_match_info .photo,
.sc_matches.style_matches-2 .sc_match_info .name,
.sc_matches.style_matches-2 .sc_match_info .vs {
display: inline-block;
vertical-align: middle;
text-align: center;
}
.sc_matches.style_matches-2 .sc_match_info .photo {
max-width:40px;
}
.sc_matches.style_matches-2 .sc_match_info .name {
width: 10em;
line-height: 1.4em;
margin: 0 1em;
text-align: left;
}
.sc_matches.style_matches-2 .sc_match_info .vs+.name {
text-align:right
} .sc_latest_matches_list {
list-style: none;
max-width: 900px;
margin-left: auto;
margin-right: auto;
padding-left: 0;
} .sc_player .sc_player_avatar {
position: relative;
}
.sc_player .sc_player_avatar .sc_player_hover{
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
opacity: 0;
filter: alpha(opacity=0);
text-align: center;
}
.sc_player .sc_player_avatar .sc_player_hover,
.sc_player .sc_player_avatar .sc_player_hover .sc_player_socials {
overflow: hidden;
-webkit-transition: all ease .3s;
-moz-transition: all ease .3s;
-ms-transition: all ease .3s;
-o-transition: all ease .3s;
transition: all ease .3s;
}
.sc_player:hover .sc_player_avatar .sc_player_hover {
opacity: 1;
filter: alpha(opacity=100);
}
.sc_player .sc_player_avatar .sc_player_hover .sc_player_socials {
position: absolute;
left: 0;
top: 50%;
width: 100%;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
transform: translateY(-50%);
margin-top: 3.5em;
}
.sc_player:hover .sc_player_avatar .sc_player_hover .sc_player_socials {
margin-top: 0;
}
.sc_player .sc_player_info {
padding-top: 1.5em;
border-top-width: 5px;
border-top-style: solid;
}
.sc_player .sc_player_info .sc_player_title{
margin: 0;
font-size: 1.3333em;
}
.sc_player .sc_player_info .sc_player_title a{
font-weight: 400;
}
.sc_player .sc_player_info .sc_player_club {
margin-top: 0.5em;
font-style: italic;
} .post_item_colored .player_info {
font-size: 1em;
font-weight: 400;
line-height: 1.4em;
margin: 0;
}
.post_item_colored .player_info span + span:before {
content: '/';
margin: 0 0.7143em;
}
.type_player.post_item_colored .post_featured .post_title {
height: 2em;
}
.type_player.post_item_colored .player_info {
font-size: 1em;
}
.type_player.post_item_colored .player_info span {
display: block;
}
.type_player.post_item_colored .player_info span + span:before {
content: none;
}
.type_player.post_item_colored .post_featured .post_title {
bottom: 22%;
}
.type_player.post_item_colored .post_featured .post_descr {
height: 22%;
} .sc_players_table {
max-width: 100%;
}
.sc_players_table .sc_table {
margin-bottom: 3em;
}
.sc_players_table table {
table-layout: fixed;
text-align: left;
}
.sc_players_table .sc_players_table_category {
margin-bottom: 1.5em;
}
.sc_players_table table td:nth-child(2) {
text-align:right;
}
.sc_players_table table th,
.sc_players_table table td {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.sc_players_table table th:nth-child(2),
.sc_players_table table td:nth-child(2) {
width:25%;
}
.sc_players_table .sort {
cursor: pointer;
}
.sc_players_table .sort:after {
content: '\e8f1';
font-family: fontello;
font-size: 0.7em;
margin-left: 0.5em;
}
.sc_players_table .sort_desc:after {
content: '\e8f0';
}
.sc_players_table .sc_table img {
margin-right: 1em;
}
.sc_players_table .sc_table .title {
margin: 0.3571em 0;
display: inline-block;
} .sc_players_table.style_2 .sc_players_table_category,
.sc_players_table.style_2 .sc_table tr:first-child {
display: none;
}
.sc_players_table.style_2 .sc_table td {
border: none;
border-bottom: 2px solid #ffffff;
padding: 1em;
}
.sc_players_table.style_2 .sc_table tr:nth-child(2) {
counter-reset:plr;
}
.sc_players_table.style_2 .sc_table .player {
padding-left: 3em;
position:relative;
}
.sc_players_table.style_2 .sc_table .player:before {
content: counter(plr) ".";
counter-increment:plr;
position:absolute;
left: 1em;
top: 1.4em;
}
.sc_players_table.style_2 .sc_table .points {
padding-right: 2em;
font-weight: 600;
} .sidebar_hide .post_item_single_players.post_featured_left > .post_featured {
width: 32%;
}
.sidebar_show .post_item_single_players.post_featured_left > .post_featured {
width: 45%;
}
.sidebar_show .post_item_single_players .post_content > .sc_socials {
display: none;
}
.post_item_single_players .post_title {
font-weight: 400;
}
.post_item_single_players .post_title:after {
content: ' ';
display: block;
width: 1em;
height: 2px;
margin: 0.6667em 0;
}
.post_item_single_players .player_info span {
text-transform: uppercase;
font-style: italic;
font-weight: 600;
display: block;
line-height: 2em;
}
.post_item_single_players .player_content {
display: block;
clear: both;
padding-top: 3.5714em;
}  .sc_menuitems_style_menuitems-1 .sc_menuitems_item {
padding-top:1px;
}
.sc_menuitems_style_menuitems-1 .sc_menuitem_image {
float: left;
margin-right: 1em;
}
.sc_menuitems_style_menuitems-1 .sc_menuitem_price {
float: right;
margin-left: 1em;
font-weight: bold;
font-size: 1.3em;
}
.sc_menuitems_style_menuitems-1 .sc_menuitem_title {
margin: -0.25em 0 0;
} .sc_menuitems_style_menuitems-2 .sc_menuitem_image {
position: relative;
}
.sc_menuitems_style_menuitems-2 .sc_menuitem_spicy {
position: absolute;
right: 0;
top: 0;
font-size: 0.857em;
text-transform: uppercase;
padding-right: 0.5em;
vertical-align: top;
}
.sc_menuitems_style_menuitems-2 .sc_menuitem_spicy span {
display: inline-block;
color: #ffffff;
width: 2.143em;
height: 2.143em;
line-height: 2.143em;
text-align: center;
margin-right: 0.5em;
}
.sc_menuitems_style_menuitems-2 .sc_menuitem_spicy span:before {
font-size: 1.35em;
}
.sc_menuitems_style_menuitems-2 .menuitem_spicylevel_1 span { background: #44b21e;}
.sc_menuitems_style_menuitems-2 .menuitem_spicylevel_2 span { background: #97f216;}
.sc_menuitems_style_menuitems-2 .menuitem_spicylevel_3 span { background: #f7dd00;}
.sc_menuitems_style_menuitems-2 .menuitem_spicylevel_4 span { background: #f25e16;}
.sc_menuitems_style_menuitems-2 .menuitem_spicylevel_5 span { background: #e41111;}
.sc_menuitems_style_menuitems-2 .sc_menuitem_box_title {
display: block;
position: relative;
padding: 0.560em 1.200em 0.600em;
font-size: 1.786em;
line-height: normal;
}
.sc_menuitems_style_menuitems-2 .sc_menuitem_title {
float: left;
font-weight: bold;
}
.sc_menuitems_style_menuitems-2 .sc_menuitem_price {
float: right;
}
.sc_menuitems_style_menuitems-2 .sc_menuitem_content,
.sc_menuitems_style_menuitems-2 .sc_menuitem_ingredients,
.sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions {
display: block;
position: relative;
border-bottom: 1px solid #e4e7e8;
padding: 2.143em 2.143em 2.143em 5.000em;
line-height: 1.929em;
}
.sc_menuitems_style_menuitems-2 .sc_menuitem_content_title,
.sc_menuitems_style_menuitems-2 .sc_menuitem_ingredients_title, 
.sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_title {
display: block;
position: relative;
margin-bottom: 0.25em;
font-size: 1.286em;
font-weight: 800;
}
.sc_menuitems_style_menuitems-2 .sc_menuitem_content_title span,
.sc_menuitems_style_menuitems-2 .sc_menuitem_ingredients_title span,
.sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_title span {
position: absolute;
left: -1.5em;
top: 0;
font-size: 1.5em;
}
.sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_list {
list-style-type: none;
padding-left: 0;
margin-bottom: 0;
}
.sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_list li {
position: relative;
display: inline-block;
padding-left: 1em;
width: 35%;
text-transform: uppercase;
}
.sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_list li:before {
content: '\e836';
font-family: 'fontello';
font-weight: bold;
position: absolute;
top: 0;
left: 0;
}
.sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_list li span {
font-weight: bold;
}
.sc_menuitems_style_menuitems-2 .sc_menuitem_more {
padding: 2.143em;
}
.sc_menuitems_style_menuitems-2 .sc_menuitem_share {
float: right;
}
.cL { clear: both; } #overlay {
bottom: 0;
left: 0;
right: 0;
top: 0;
position: fixed;
background-color:#000;
opacity: 0.8;
z-index: 100005;
}
.popup_menuitem {
overflow-y: auto;
overflow-x: hidden;
top: 0;
bottom: 0;
left: 0;
right: -16px;
margin: 0;
padding: 0;
position: fixed;
display: none;
z-index: 100010;
}
.popup_menuitem > .sc_menuitems_wrap {
display: block;
position: relative;
width: 770px;
margin: 50px auto;
z-index: 100020;
}
.popup_menuitem a.close_menuitem {
position: absolute;
font-size: 2em;
top: -0.8em;
right: -0.8em;
color: #fff;
}
.popup_menuitem a.prev_menuitem {
position: absolute;
font-size: 3em;
font-weight: normal;
top: 0.6em;
left: -1em;
color: #fff;
}
.popup_menuitem a.next_menuitem {
position: absolute;
font-size: 3em;
font-weight: normal;
top: 0.6em;
right: -1em;
color: #fff;
}
.popup_menuitem a.prevnext_menuitem {
text-align: center;
display: block;
width: 1em;
height: 1em;
line-height: 0.855em;
} .sc_number_item {
display: inline-block;
text-align:center;
font-size: 3em;
font-weight:700;
width: 1em;
height: 1.25em;
line-height:1.25em;
background-color:rgba(0,0,0, 0.15);
color: #ffffff;
}
.sc_number_item+.sc_number_item {
margin-left:2px;
} .sc_parallax {
position: relative;
overflow: hidden;
background-repeat:no-repeat;
}
.sc_parallax .sc_parallax_content {
position: relative;
overflow: hidden;
z-index: 2;
left:0;
top:0;
right:0;
bottom:0;
background-repeat:no-repeat;
}
.sc_parallax .sc_parallax_overlay {
overflow: hidden;
}
.sc_parallax .sc_video_bg_wrapper {
position:absolute;
z-index: 1;
left: 0;
top: 0;
right:0;
bottom:0;
}
.sc_parallax video.sc_video_bg { 
opacity: 0;
filter: alpha(opacity=0);
} .sc_popup {
position: relative;
background-color: #fff;
padding: 24px 20px 20px 20px;
width: auto;
max-width: 500px;
max-height:600px;
margin: 20px auto;
border: 1px solid #ddd;
overflow-x:hidden;
overflow-y:auto;
}
.sc_popup:before {
height: 4px;
content: ' ';
position: absolute;
width: 100%;
top: -1px;
left: -1px;
display: block;
padding: 0 1px;
}
.sc_popup.mfp-hide {
display:none;
}
.sc_popup .mfp-close {
top:3px;
width:1em;
height:1em;
line-height:1em;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.sc_popup .mfp-close:active {
top:3px;
} .sc_price {
display:inline-block;
position:relative;
}
.sc_price .sc_price_currency,
.sc_price .sc_price_money {
font-size:1.875em;
line-height:1em;
color: #222222;
}
.sc_price .sc_price_info {
display:inline-block;
position:relative;
vertical-align:baseline;
}
.sc_price .sc_price_penny {
display:block;
text-decoration:underline;
margin-bottom:0.2em;
margin-left:0.1em;
font-size: 0.75em;
line-height:1em;
color: #222222;
}
.sc_price .sc_price_period:before {
content:'/';
display:inline-block;
margin-left:0.3em;
margin-right:0;
}
.sc_price .sc_price_period_empty:before {
content:' ';
display:inline-block;
} .sc_price_block {
display:inline-block;
overflow:hidden;
width: 100%;
border-radius: 2em 2em 2em 2em;
}
.sc_price_block .sc_price_block_title {
font-size: 1.7857em;
line-height: 1.3em;
height: 3.1em;
padding-top: 0.5em;
background-color:rgba(0,0,0, 0.1);
position:relative;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
border-radius: 1em 1em 0 0;
}
.sc_price_block .sc_price_block_title span {
display:block;
font-size:0.875em;
text-align:center;
position:absolute;
left: 0;
top:50%;
width: 100%;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
.sc_price_block .sc_price_block_money {
text-align:center;
font-size: 1.125em;
line-height: 8.15em;
height: 8.4em;
overflow:hidden;
}
.sc_price_block.sc_price_block_style_3 .sc_price_block_money{
border-bottom: 1px solid;
}
.sc_price_block .sc_price_block_money .sc_price_period {
font-weight: 600;
font-size: 1.4em;
}
.sc_price_block .sc_price_block_money .sc_price_period:before{
font-size: 1em;
}
.sc_price_block .sc_price_block_money .sc_price_block_icon {
font-size: 4em;
line-height:inherit;
display:inline-block;
}
.sc_price_block .sc_price_block_money .sc_price {
display:inline-block;
}
.sc_price_block .sc_price_block_money .sc_price_block_icon + .sc_price {
margin-left:0.5em;
}
.sc_price_block .sc_price_block_money .sc_price_currency {
font-weight: 300;
font-size: 3.25em;
line-height:inherit;
}
.sc_price_block .sc_price_block_money .sc_price_money {
font-weight: 300;
font-size: 3.3em;
line-height:inherit;
}
.sc_price_block .sc_price_block_description {
text-align: left;
font-size: 1em;
line-height: 1.5em;
padding: 2.3em 2em 0;
overflow: hidden;
}
.sc_price_block:not(.sc_price_block_style_1) .sc_price_block_description {
margin-left: 45%;
-webkit-transform: translateX(-40%);
-moz-transform: translateX(-40%);
transform: translateX(-40%);
}
.sc_price_block .sc_price_block_description .sc_list_item{
line-height: 2.4em;
}
.sc_price_block .sc_price_block_description .sc_list_item span:before{
font-size: 1.2em;
position: relative;
left: -7px;
}
.sc_price_block .sc_price_block_description li,
.sc_price_block .sc_price_block_description p {
margin-bottom:0;
}
.sc_price_block .sc_price_block_link {
height:7.5em;
text-align:center;
padding-top:0.5em;
}
.sc_price_block .sc_price_block_link .sc_button {
background-color:rgba(0,0,0, 0.2);
}
.sc_price_block .sc_price_block_link .sc_button:hover {
background-color:#ef631f !important;
} .sc_promo_inner {
position: relative;
overflow: hidden;
}
.sc_promo_image {
position: absolute;
top: 0;
bottom: 0;
background-position:center center;
background-size:cover;
background-repeat:no-repeat;
}
.sc_promo_size_small .sc_promo_image {
background-size:100%;
}
.sc_promo_block {
width: 50%;
position: relative;
}
.sc_promo_block_inner {
padding: 3em 4em;
}
.sc_promo .sc_promo_title {
font-weight:700;
}
.sc_promo .sc_promo_title:after {
display:none;
}
.sc_promo .sc_promo_descr {
font-weight:400;
font-style:normal;
margin-bottom: 0;
}
.sc_promo .sc_promo_button {
margin-top: 2em;
}
.sc_promo.sc_promo_size_small .sc_promo_block_inner {
padding: 1.5em 2em;
}
.sc_promo.sc_promo_size_small .sc_promo_title {
font-size: 1.5em;
line-height:1.3em;
}
.sc_promo.sc_promo_size_small .sc_promo_descr {
font-size: 1.2857em;
}
.sc_promo.sc_promo_size_small .sc_promo_button {
margin-top:1.25em;
}
.sc_promo_block.sc_align_left *,
.sc_promo_block.sc_align_left *:after {
text-align: left !important;
margin-left: 0;
}
.sc_promo_block.sc_align_right *,
.sc_promo_block.sc_align_right *:after {
text-align: right !important;
margin-right: 0;
} .sc_scroll {
overflow: hidden;
width: 100%;
position:relative;
}
.sc_scroll_wrapper {
overflow: hidden;
}
.sc_scroll_horizontal .sc_scroll_wrapper {
width: 100000px;
}
.sc_scroll_horizontal {
width:100%;
padding-bottom:10px;
}
.sc_scroll_vertical {
min-height:200px;
padding-right:6px;
}
.sc_scroll_vertical .swiper-wrapper {
height: auto;
display:block;
}
.sc_scroll_vertical .swiper-slide {
float: none;
display:block;
height: auto;
} .sc_scroll_bar {
background:transparent;
position:absolute;
z-index:100;
}
.sc_scroll_vertical .sc_scroll_bar {
right:1px;
top:0;
bottom:0;
width:10px;
border-right:1px solid #dddddd;
}
.sc_scroll_horizontal .sc_scroll_bar {
right:0;
left:0;
bottom:1px;
height:10px;
border-bottom:1px solid #dddddd;
}
.sc_scroll_bar .swiper-scrollbar-drag {
background:none !important;
}
.sc_scroll_vertical .sc_scroll_bar .swiper-scrollbar-drag {
width:10px;
left:2px;
}
.sc_scroll_horizontal .sc_scroll_bar .swiper-scrollbar-drag {
height:10px;
top:2px;
}
.sc_scroll_bar .swiper-scrollbar-drag:before {
content:' ';
display:block;
position:absolute;
background-color: #1dbb90;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.sc_scroll_vertical .sc_scroll_bar .swiper-scrollbar-drag:before {
width:3px;
right:-2px;
top:0;
bottom:0;
height:100%;
}
.sc_scroll_horizontal .sc_scroll_bar .swiper-scrollbar-drag:before {
height:3px;
left:0;
right:0;
bottom:-2px;
width:100%;
} .sc_scroll_container {
position:relative;
}
.sc_scroll_controls_type_top .sc_scroll_controls_wrap {
position: absolute;
top:-8em;
right:0;
width:12em;
padding-bottom:5px;
overflow:hidden;
text-align:right;
}
.sc_scroll_controls_type_side .sc_scroll_controls_wrap {
position: absolute;
top:50%;
left:0;
width:100%;
height: 0;
}
.sc_scroll_controls_type_side .sc_scroll_controls_wrap a {
margin-top:-25px;
margin-left: -80px;
display:block;
position:absolute;
top:0;
left:8px;
opacity:0;
}
.sc_scroll_controls_type_side .sc_scroll_controls_wrap a+a {
left:auto;
right:8px;
margin-right: -80px;
}
.sc_scroll_controls_type_side:hover .sc_scroll_controls_wrap a {
margin-left:0;
margin-right:0;
opacity:1;
}
.sc_scroll_controls_wrap a {
display: inline-block;
text-align:center;
font-size: 1.5em;
width: 2em;
height: 2em;
line-height: 2em;
margin-left: 0.6667em;
}
.sc_scroll_controls_wrap a:before {
font-family:fontello;
}
.sc_scroll_controls_wrap .sc_scroll_next:before {
content:'\e836';
}
.sc_scroll_controls_wrap .sc_scroll_prev:before {
content:'\e837';
}
.sc_scroll_controls_vertical .sc_scroll_controls_wrap .sc_scroll_next:before {
content:'\e828';
}
.sc_scroll_controls_vertical .sc_scroll_controls_wrap .sc_scroll_prev:before {
content:'\e835';
} .sc_section {
position: relative;  }
.sc_section:after {
content:' ';
display:block;
width:100%;
height:0;
clear:both;
}
.sc_section:not(.sc_scroll_controls) .sc_section_overlay,
.sc_section .sc_section_overlay {
overflow: hidden;
}
.sc_section .sc_section_content {
padding: 1em 1.5em;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.sc_section .sc_section_content.padding_off {
padding: 0;
}
.sc_section .sc_section_button {
margin-top:2em;
}
.sc_pan {
position:absolute;
width:100%; 
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
} .sc_pan_vertical,
.sc_pan_horizontal {
cursor: all-scroll;
}
.sc_section .sc_section_title{
margin-bottom: 1em;
} .sc_recent_news_header {
padding-bottom: 1em;
border-bottom: 3px solid #000;
margin-bottom:2em;
}
.sc_recent_news_header_captions,
.sc_recent_news_header_categories {
display: inline-block;
vertical-align:bottom;
}
.sc_recent_news_header_split .sc_recent_news_header_captions,
.sc_recent_news_header_split .sc_recent_news_header_categories {
width:50%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.sc_recent_news_header_split .sc_recent_news_header_captions {
padding-right:2em;
}
.sc_recent_news_title {
margin:0;
line-height:1.5em;
text-transform:uppercase;
font-weight: bold;	
}
.sc_recent_news_subtitle {
margin: 0;
line-height:1.5em;
font-size:1em;
text-transform:uppercase;
font-size:0.9231em;
}
.sc_recent_news_header_split .sc_recent_news_header_categories {
line-height:1.5em;
text-align: right;
}
.sc_recent_news_header_split .sc_recent_news_header_categories > * {
display:inline-block;
margin-left: 1em;
text-transform:uppercase;
font-size:0.9231em;
}
.sc_recent_news_header_category_item_more {
position:relative;
cursor:pointer;
}
.sc_recent_news_header_category_item_more:after {
content: '\e828';
font-family:'fontello';
display:inline-block;
margin-left:0.5em;
-webkit-transition: all ease .3s;
-moz-transition: all ease .3s;
-ms-transition: all ease .3s;
-o-transition: all ease .3s;
transition: all ease .3s;
}
.sc_recent_news_header_category_item_more.opened:after {
-webkit-transform:rotate(180deg);
-moz-transform:rotate(180deg);
-ms-transform:rotate(180deg);
transform:rotate(180deg);
}
.sc_recent_news_header_more_categories {
display:none;
position:absolute;
right:0;
top: 2em;
z-index:1;
border: 1px solid #eee;
text-align:left;
padding:0.5em 1px;
}
.sc_recent_news_header_more_categories > a {
display:block;
white-space:nowrap;
line-height:2em;
padding:0 1.5em;
}
.sc_recent_news .post_item {
background-color:transparent;
text-align:left;
overflow:hidden;
margin-bottom:2.1427em;
}
.sc_recent_news .post_item + .post_item {
padding-top: 0 !important;
margin-top: 0 !important;
}
aside .sc_recent_news .post_item.post_accented_on {
margin-bottom: 2.3077em;
}
.sc_recent_news_style_news-magazine .post_accented_border {
border-bottom: 1px solid #eee;
padding-bottom:2.3077em;
}
.sc_recent_news .post_item .post_thumb {
float:none;
width: auto;
height:auto;
margin:0;
}
.sc_recent_news .post_accented_on .post_featured {
margin-bottom:1.2857em;
}
.sc_recent_news_with_accented .post_accented_off .post_featured {
float: left;
margin-bottom: 0;
width: 35%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.sc_recent_news_with_accented .post_accented_off .post_header {
float:left;
width:65%;
}
.sc_recent_news_without_accented .post_accented_off .post_featured {
margin-bottom:1em;
}
.sc_recent_news .post_featured .post_info {
position:absolute;
left: 0;
bottom:0;
padding: 0.5em;
z-index:10;
font-size: 1em;
font-style:normal;
}
.sc_recent_news .post_featured .post_info .post_categories {
display:inline-block;
padding:0 0.5em;
line-height:1.5em;
font-size:0.7692em;
font-weight: bold;
background-color: #000000;
}
.sc_recent_news .post_featured .post_info *,
.sc_recent_news .post_featured .post_info *:hover {
color: #ffffff;
text-shadow:1px 1px #000;
}
.sc_recent_news .post_header {
text-align:left;
}
.sc_recent_news .post_item .post_title {
margin: 0;
}
.sc_recent_news .post_meta {
margin-top: 0.3em;
font-size:0.8462em;
line-height:1.5em;
}
.sc_recent_news .post_meta_author,
.sc_recent_news .post_meta_date {
display:inline-block;
}
.sc_recent_news .post_meta_date:before {
content: '|';
display:inline-block;
margin:0 0.6em;
position:relative;
top: -1px;
}
.sc_recent_news .post_content {
margin-top:1em;
}
.sc_recent_news .post_content p {
margin:0;
}
.sc_recent_news .post_footer {
margin-top: 1.2857em;
overflow:hidden;
}
.sc_recent_news .post_counters {
text-align:left;
float:none;
width: 100%;
line-height:1.8em;
}
.sc_recent_news .post_counters_item,
.sc_recent_news .post_counters .post_edit a {
padding:0 1em;
font-size:0.8462em;
margin-left:0 !important;
margin-right:0.5em;
float:left;
}
.sc_recent_news .post_counters_item .post_counters_number {
margin-left:0.5em;
}
.sc_recent_news .post_counters .post_edit:before {
display:none;
}
.sc_recent_news .post_counters .post_edit a:before {
content:'\e8bb';
font-family:'fontello';
display:inline-block;
margin-right:0.5em;
}
.sc_recent_news .post_delimiter {
margin-bottom: 2.3077em;
}
.sc_recent_news .post_delimiter:before {
content: ' ';
display:block;
height:0;
border-top: 1px solid #eee;
} .sc_recent_news_style_news-excerpt {
overflow:hidden;
}
.sc_recent_news_style_news-excerpt .post_item {
padding-bottom:2.3077em;
border-bottom: 1px solid #eee;
}
.sc_recent_news_style_news-excerpt .post_featured {
margin-bottom:0;
margin-right: 1em;
float:left;
width:33.3333%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.sc_recent_news_style_news-excerpt .post_body {
overflow:hidden;
float:left;
width:66.6667%;
}
.sidebar_show .sc_recent_news_style_news-excerpt .post_featured,
.vc_column_container .sc_recent_news_style_news-excerpt .post_featured,
.columns_wrap .sc_recent_news_style_news-excerpt .post_featured {
width:48%;
}
.sidebar_show .sc_recent_news_style_news-excerpt .post_body,
.vc_column_container .sc_recent_news_style_news-excerpt .post_body,
.columns_wrap .sc_recent_news_style_news-excerpt .post_body {
width:48%;
}
.post_item_excerpt .post_featured {
border-radius: 2em;
}
.post_item_excerpt .hover_icon:after {
border-radius: 2em;
} .sc_recent_news_style_news-portfolio .columns_wrap {
margin-right: -0.4615em !important;
}
.sc_recent_news_style_news-portfolio [class*="column-"] {
padding: 0 0.4615em 0.4615em 0 !important;
}
.sc_recent_news_style_news-portfolio .post_item,
.sc_recent_news_style_news-portfolio .post_featured,
.sc_recent_news_style_news-announce .post_item,
.sc_recent_news_style_news-announce .post_featured {
margin-bottom:0 !important;
}
.sc_recent_news_style_news-portfolio .post_featured .post_info,
.sc_recent_news_style_news-announce .post_featured .post_info {
padding: 1em 1.5em;
}
.sc_recent_news_style_news-announce {					overflow:hidden; }
.sc_recent_news_style_news-announce .post_item {		float:left; }
.sc_recent_news_style_news-announce .post_size_full {	width:100%; height: 432px; }
.sc_recent_news_style_news-announce .post_size_big {	width:50%; height: 216px; }
.sc_recent_news_style_news-announce .post_size_medium {	width:50%; height: 108px;  }
.sc_recent_news_style_news-announce .post_size_small {	width:25%; height: 108px; }
body.sidebar_hide .sc_recent_news_style_news-announce .post_size_full { height: 656px; }
body.sidebar_hide .sc_recent_news_style_news-announce .post_size_big { height: 328px;  }
body.sidebar_hide .sc_recent_news_style_news-announce .post_size_medium,
body.sidebar_hide .sc_recent_news_style_news-announce .post_size_small { height: 164px;  } .sc_services_item .sc_services_item_title {
margin:1em 0 0.7em;
font-size:1.2857em;
}
.sc_services .sc_services_title{
margin-bottom: 1em;
}
.sc_services_item .sc_services_item_description {
line-height:1.75em;
overflow:hidden;
}
.sc_services_item .sc_services_item_description p {
margin-bottom:0;
}
.sc_services_style_services-1 .sc_services_item .sc_services_item_description p:after{
content: '...';
display: block;
position: relative;
font-size: 1.4em;
letter-spacing: 2px;
margin-top: 0.85em;
margin-bottom: 0.85em;
}
.sc_services_style_services-1 .sc_services_item .sc_services_item_description p:after{
margin-top: 0.3em;
margin-bottom: 0.5em;
}
.sc_services_style_services-1 .sc_services_item_title {
margin: 1.3em 0 0.85em;
font-size: 1.4em;
}
.sc_services_style_services-1.sc_services_type_images .sc_services_item .sc_services_item_description p{
line-height: 2em;
}
.sc_services_style_services-1.sc_services_type_images .sc_services_item_title{
margin: 1.3em 0 0.8em;
}
.sc_services_style_services-1.sc_services_type_images .sc_services_item .sc_services_item_description p:after{
margin-top: 0.6em;
}
.sc_services_item .sc_icon {
display: block;
width: 7em;
height: 7em;
line-height: 7em;
margin:0 auto;
text-align:center;
-webkit-border-radius: 2em;
-moz-border-radius:  2em;
border-radius:  2em;
-webkit-transition: all ease .3s;
-moz-transition: all ease .3s;
-ms-transition: all ease .3s;
-o-transition: all ease .3s;
transition: all ease .3s;
}
.sc_services_item .sc_icon:before {
font-size:2em;
}
.sc_services_item .sc_services_item_readmore {
display:block;
margin-top: 1em;
}
.sc_services_item .sc_services_item_readmore span {
display:inline-block;
margin-left:0.5em;
}
.sc_services_style_services-1 .sc_services_item {
text-align:center;
padding: 2.5em;
}
.sc_services_style_services-1.sc_services_type_images .sc_services_item {
padding:0;
}
.sc_services_style_services-1.sc_services_type_images .sc_services_item_content {
padding:0 2.5em 2.5em;
}
.sc_services_style_services-1.sc_services_type_images .sc_services_item_title {
margin-top:0;
}
.sc_services_style_services-2 .sc_icon,
.sc_services_style_services-2.sc_services_type_images .sc_services_item_featured {
float:left;
margin-right:2.2857em;
}
.sc_services_style_services-2.sc_services_type_images .sc_services_item_featured {
width:30%;
min-height:4em;
}
.sc_services_style_services-2 .sc_services_item_title {
margin-top:0;
}
.sc_services_style_services-3 .sc_services_item_title {
text-align:center;
text-transform:uppercase;
font-weight:400;
font-size:1em;
}
.sc_services_style_services-4 .sc_services_item {
margin-bottom:0.5em;
}
.sc_services_style_services-4 .sc_icon {
width:1.5em;
height:1.5em;
line-height:1.4em;
margin:0 0.5em 0 0;
float:left;
}
.sc_services_style_services-4 .sc_icon:before {
font-size:0.8571em;
margin-right:0;
}
.sc_services_style_services-4 .sc_services_item_title {
margin: 0;
font-size:1em;
line-height:1.2857em;
}
.sc_services_style_services-4 .sc_services_button {
margin-top:3em;
}
.sc_services_style_services-5 .sc_service_container {
position: relative;
}
.sc_services_style_services-5 .sc_service_container .columns_wrap > .column-1_2 .sc_services_item {
margin-right: 48%;
position: relative;
top: 1.8em;
}
.sc_services_style_services-5 .sc_service_container .columns_wrap > .column-1_2:nth-child(2n) .sc_services_item {
margin-left: 48%;
margin-right: 0;
}
.sc_services_style_services-5 .sc_services_item.sc_services_item_1, .sc_services_style_services-5 .sc_services_item.sc_services_item_2{
margin-top: 4.3em;
}
.sc_services_style_services-5 .sc_services_item.sc_services_item_3, .sc_services_style_services-5 .sc_services_item.sc_services_item_4{
margin-top: 3.6em;
top: 0!important;
}
.sc_services_style_services-5 .sc_services_item .sc_icon {
margin-bottom:2.2857em;
width: 3.5em;
height: 3.5em;
line-height: 3.5em;
z-index: 1000;
}
.sc_services_style_services-5 .sc_services_item .sc_icon :before {
font-size: 2em;
}
.sc_services_style_services-5 .sc_service_container .sc_services_image{
position: absolute;
width: 43%;
left: 50%;
top:57%;
transform: translateY(-50%) translateX(-50%);
text-align: center;
}
.sc_services_style_services-5 .sc_icon {
border: 2px solid #ddd;
border-radius: 50%;
}
.sc_services_style_services-5 .sc_icon,
.sc_services_style_services-5.sc_services_type_images .sc_services_item_featured {
float:left;
margin-right:2.2857em;
margin-left: 0;
}
.sc_services_style_services-5 .sc_service_container .sc_icon,
.sc_services_style_services-5.sc_services_type_images .sc_service_container .sc_services_item_featured {
float:right;
margin-left:2.2857em;
margin-right:0;
}
.sc_services_style_services-5 .sc_service_container .columns_wrap > .column-1_2:nth-child(2n) .sc_icon,
.sc_services_style_services-5.sc_services_type_images .sc_service_container .columns_wrap > .column-1_2:nth-child(2n) .sc_services_item_featured {
float:left;
margin-right:2.2857em;
margin-left: 0;
}
.sc_services_style_services-5  .columns_wrap > .column-1_2:nth-child(2n) .sc_services_item_content{
text-align: left;
}
.sc_services_style_services-5 .sc_service_container .columns_wrap > .column-1_2 .sc_services_item_content{
text-align: right;
}
.sc_services_style_services-5 .sc_service_container .columns_wrap > .column-1_2:nth-child(2n) .sc_services_item_content{
text-align: left;
} .sc_services_style_services-5 .sc_service_container.sc_align_left .sc_services_image {
left: 0;
transform: translateY(-50%) translateX(0%);
}
.sc_services_style_services-5 .sc_service_container.sc_align_left .columns_wrap > .column-1_2 .sc_services_item, 
.sc_services_style_services-5 .sc_service_container.sc_align_left .columns_wrap > .column-1_2:nth-child(2n) .sc_services_item {
margin-left: 0;
margin-right: 0;
}
.sc_services_style_services-5 .sc_service_container.sc_align_left .sc_icon, 
.sc_services_style_services-5.sc_services_type_images .sc_service_container.sc_align_left .sc_services_item_featured {
float: left;
margin-right: 2.2857em;
margin-left: 0;
}
.sc_services_style_services-5 .sc_service_container.sc_align_left .columns_wrap > .column-1_2 .sc_services_item_content {
text-align: left;
}
.sc_services_style_services-5 .sc_service_container.sc_align_left .columns_wrap {
margin-left: 33%;
} .sc_services_style_services-5 .sc_service_container.sc_align_right .sc_services_image {
right: 0;
left: auto;
transform: translateY(-50%) translateX(0%);
}
.sc_services_style_services-5 .sc_service_container.sc_align_right .columns_wrap > .column-1_2 .sc_services_item, 
.sc_services_style_services-5 .sc_service_container.sc_align_right .columns_wrap > .column-1_2:nth-child(2n) .sc_services_item {
margin-left: 0;
margin-right: 0;
}
.sc_services_style_services-5 .sc_service_container.sc_align_right .columns_wrap > .column-1_2:nth-child(2n) .sc_icon,
.sc_services_style_services-5.sc_services_type_images .sc_service_container.sc_align_right .columns_wrap > .column-1_2:nth-child(2n) .sc_services_item_featured {
float: right;
margin-left: 2.2857em;
margin-right: 0;
}
.sc_services_style_services-5 .sc_service_container.sc_align_right .columns_wrap > .column-1_2 .sc_services_item_content {
text-align: right;
}
.sc_services_style_services-5 .sc_service_container.sc_align_right .columns_wrap {
margin-right: calc(33% - 30px);
}
.sc_services_style_services-5 .sc_item_title {
text-align: center;
margin-bottom: 0.8em;
}
.sc_services_style_services-5 .sc_services_item .sc_services_item_title{
font-size: 1.5em;
position: relative;
top: 0.05em;
}
.sc_services_style_services-5 .sc_services_item .sc_services_item_description p{
line-height: 2em;
margin-top: -0.5em;
}
.sc_services_style_services-5 .sc_item_button{
margin-top: 8em;
} .sc_skills {
width: 100%;
}
.sc_skills .sc_skills_button {
margin-top:3em;
} .sc_skills_counter {
text-align: center;
}
.sc_skills_counter .sc_skills_item {
text-align: center;
display: inline-block;
padding: 0 10px;
}
.sc_skills_counter .sc_skills_item .sc_skills_icon {
font-size: 3em;
font-weight:300;
line-height:1.2857em;
margin-bottom:0.5em;
}
.sc_skills_counter .sc_skills_item .sc_skills_count {
font-size: 3.2143em;
line-height: 1em;
}
.sc_skills_counter .sc_skills_item .sc_skills_count .sc_skills_total {
position:relative;
z-index:1;
}
.sc_skills_counter .sc_skills_item .sc_skills_info {
color: #222222;
font-size: 1.125em;
line-height: 1.2857em;
margin: 10px 0;
}
.sc_skills_counter .sc_skills_item.sc_skills_style_1 {
width:100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 2.25em 1em 1em;
border-radius: 2.1em;
}
.sc_skills_counter .sc_skills_item.sc_skills_style_1 .sc_skills_count {
font-weight: 900;
}
.sc_skills_counter .sc_skills_item.sc_skills_style_1 .sc_skills_info {
margin-top:1.1em;
position:relative;
text-transform:capitalize;
font-size: 0.9285em;
line-height: 1.75em;
}
.sc_skills_counter .sc_skills_item.sc_skills_style_1 .sc_skills_info .sc_skills_label {
min-height:3.5em;
}
.sc_skills_counter .sc_skills_item.sc_skills_style_1 .sc_skills_total{
font-size: 2.8571em;}
.sc_skills_counter .sc_skills_item.sc_skills_style_2 .sc_skills_count {
font-weight: 300;
}
.sc_skills_counter .sc_skills_item.sc_skills_style_3 .sc_skills_count { 
font-weight: 300;
color:#fff;
padding: 0 10px;
position: relative;
overflow: hidden;
font-size: 3.75em;
height: 1.3333em;
line-height: 1.3333em;
}
.sc_skills_counter .sc_skills_item.sc_skills_style_3 .sc_skills_count:before {
content: ' ';
width: 0;
height: 0;
position: absolute;
top: 0;
left: 0;
border-top: 1.3333em solid #fff; 
border-right: 1.6667em solid transparent;	
opacity: 0.2;
filter: alpha(opacity=20);
}
.sc_skills_counter .sc_skills_item.sc_skills_style_4 .sc_skills_count {
font-weight: 300;
color:#fff;
padding: 0 10px;
font-size: 3.75em;
line-height: 1.3333em;
height: 1.3333em;
}
.sc_skills_counter .sc_skills_item.sc_skills_style_4 .sc_skills_info {
color: #fff;
padding: 10px;
margin:0;
position: relative;
border-top: 1px solid #fff;
}
.sc_skills_counter .sc_skills_item.sc_skills_style_4 .sc_skills_info:before {
position: absolute;
top: 0;
left: 0;
content: ' ';
background-color: #000;
z-index: 1;
width: 100%;
height: 100%;  
opacity: 0.1;			
filter: alpha(opacity=10);
}
.sc_skills_counter .sc_skills_item.sc_skills_style_4 .sc_skills_info .sc_skills_label {
position:relative;
z-index:2;
}
.sc_skills_counter .sc_skills_button {
margin-top:3em;
} .sc_skills_bar .sc_skills_item {
height:4px;
line-height: 4px;
background-color:#f4f7f9;
position:relative;
margin-bottom: 1.5em;
}
.sc_skills_bar .sc_skills_item .sc_skills_count {
text-align:right;
width:0;
height: 4px;
color:#fff;
position:absolute;
left:0;
top:0;
bottom:0;
z-index:2;
}
.sc_skills_bar .sc_skills_info {
margin: 10px 0 0 0;
}
.sc_skills_bar .sc_skills_info .sc_skills_label {
font-size: 0.9285em;
}
.sc_skills_bar.sc_skills_vertical .sc_skills_columns .sc_skills_item {
height: 30em;
}
.sc_skills_bar.sc_skills_vertical .sc_skills_columns .sc_skills_item .sc_skills_count {
width: 100%;
height: auto;
top: auto; 
bottom: 0;
}
.sc_skills_bar.sc_skills_vertical .sc_skills_columns .sc_skills_total { 
text-align: center;
font-size: 1.25em;
width: 100%;
line-height: 3em;
font-weight: 300;
}
.sc_skills_bar.sc_skills_vertical .sc_skills_columns .sc_skills_column {
text-align:center;
}
.sc_skills_bar.sc_skills_horizontal .sc_skills_columns .sc_skills_info { 
margin-top: 0;
}
.sc_skills_bar.sc_skills_horizontal .sc_skills_total {
text-align: right;
padding-right: 10px;
}
.sc_skills_bar.sc_skills_horizontal .sc_skills_total {
font-size: 0.9285em;
padding-right: 10px;
position: relative;
text-align: right;
top: -14px;
} .sc_skills_pie.sc_skills_compact_off {
text-align: center;
display: inline-block;
}
.sc_skills_pie.sc_skills_compact_off .sc_skills_total {
font-size: 1.125em;
}
.sc_skills_pie.sc_skills_compact_on {
overflow:hidden;
}
.sc_skills_pie.sc_skills_compact_on .sc_skills_item {
min-width:100px;
min-height:100px;
float:left;
width:50%;
}
.sc_skills_pie.sc_skills_compact_off .sc_skills_item {
position: relative;
padding: 0 40px 0 40px;
}
.sc_skills_pie.sc_skills_compact_off .sc_skills_total {
font-size: 2.8571em;
position: absolute;
text-align: center;
top: 40%;
left: 0;
font-weight: 300;
width: 100%;
z-index: 10;
}
.sc_skills_pie.sc_skills_compact_off  .sc_skills_label{
font-size: 1.1428em;
font-weight: 600;
}
.sc_skills_counter .sc_skills_item.sc_skills_style_1{
-webkit-transition: all ease .3s;
-moz-transition: all ease .3s;
-ms-transition: all ease .3s;
-o-transition: all ease .3s;
transition: all ease .3s;
}
.sc_skills_counter .sc_skills_item.sc_skills_style_1:hover{
background-position: 100%;
} .sc_skills_arc {
overflow:hidden;
}
.sc_skills_arc .sc_skills_arc_canvas {
min-width:100px;
min-height:100px;
float:left;
width:60%;
}
.sc_skills_arc .sc_skills_legend {
width:40%;
} .sc_skills_legend {
width:50%;
float:right;
}
.sc_skills_legend_marker {
display: inline-block;
margin:0 10px 2px 0;
width:6px;
height:6px;
line-height:1.5em;
overflow:hidden;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
}
.sc_skills_legend_title,
.sc_skills_legend_value {
color: #222222;
}
.sc_skills_legend_value {
display:inline-block;
margin-left:6px;
}
.sc_skills_legend_value:before {
content: '(';
}
.sc_skills_legend_value:after {
content: ')';
} .sc_slider {
overflow:hidden;
}
.sc_slider_height_auto {
-webkit-transition: height ease .5s;
-moz-transition: height ease .5s;
-ms-transition: height ease .5s;
-o-transition: height ease .5s;
transition: height ease .5s; 
}
.sc_slider_swiper {
position: relative;
overflow: hidden;
visibility: hidden;
max-width:100%;
}
.sc_slider_swiper.inited {
visibility: visible;
} .sc_slider_swiper .slides .swiper-slide {
background-size:cover;
background-position:center center;
background-repeat:no-repeat;
border-radius: 2.5em;  float: left;
min-height: 8em;
} .sc_slider_swiper .slides .swiper-slide > img {
width: 100%;
height: auto;
} .sc_slider_controls_wrap {
color:#ffffff;
position:absolute;
z-index: 10;
left:0;
right:0;
top:50%;
height:0;
}
.sc_slider_nocontrols .sc_slider_controls_wrap {
display:none !important;
}
.sc_slider_controls_wrap a {
display:block;
cursor:pointer;
width:2.6em;
height:2.6em;
line-height: 2.6em;
border-radius: 50%;
font-size: 1.5em;
border: 2px solid;
text-align:center;
-webkit-transition: all ease .5s;
-moz-transition: all ease .5s;
-ms-transition: all ease .5s;
-o-transition: all ease .5s;
transition: all ease .5s;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
transform: translateY(-50%);
opacity: 0;
filter: alpha(opacity=0);
}
.sc_slider_controls_wrap .sc_slider_prev {
float:left;
margin-left: -100px;
}
.sc_slider_controls_wrap .sc_slider_next {
float:right;
margin-right: -100px;
}
.sc_slider_controls_wrap a:before {
font-family:'fontello';
}
.sc_slider_controls_wrap .sc_slider_next:before {
content:'\e836';
}
.sc_slider_controls_wrap .sc_slider_prev:before {
content:'\e837';
}
.sc_slider_swiper:hover .sc_slider_controls_wrap a,
.sc_slider_swiper + .sc_slider_controls_wrap a {
opacity: 1;
filter: alpha(opacity=100);
}
.sc_slider_swiper:hover .sc_slider_controls_wrap .sc_slider_prev {
margin-left: 1em;
}
.sc_slider_swiper:hover .sc_slider_controls_wrap .sc_slider_next {
margin-right: 1em;
} .sc_slider_swiper + .sc_slider_controls_wrap a {
width:3em;
height:3em;
line-height: 3em;
font-size: 1.5em;
}
.sc_slider_swiper + .sc_slider_controls_wrap .sc_slider_prev {
margin-left: 0.8em;
}
.sc_slider_swiper + .sc_slider_controls_wrap .sc_slider_next {
margin-right: 0.8em;
} .sc_slider_swiper.sc_slider_controls_top + .sc_slider_controls_wrap {
top:6px;
right: 6px;
text-align:right;
cursor:default;
-webkit-transform: none;
-moz-transform: none;
transform: none;
}
.sc_slider_swiper.sc_slider_controls_top + .sc_slider_controls_wrap .sc_slider_next,
.sc_slider_swiper.sc_slider_controls_top + .sc_slider_controls_wrap .sc_slider_prev {
display:inline-block;
float:none;
margin-left: 6px;
margin-right: 0;
} .sc_slider_nopagination .sc_slider_pagination_wrap {
display:none !important;
}
.sc_slider_swiper .sc_slider_pagination_wrap {
position: absolute;
z-index:10;
height:12px;
margin: 0;
left: 0;
right: 0;
bottom: -12px;
text-align:center;
-webkit-transition: all ease .5s;
-moz-transition: all ease .5s;
-ms-transition: all ease .5s;
-o-transition: all ease .5s;
transition: all ease .5s;
}
.sc_slider_swiper:hover .sc_slider_pagination_wrap {
bottom: 20px;
-webkit-transition: all ease .5s .5s;
-moz-transition: all ease .5s .5s;
-ms-transition: all ease .5s .5s;
-o-transition: all ease .5s .5s;
transition: all ease .5s .5s;
}
.sc_slider_swiper .sc_slider_pagination_wrap span {
display:inline-block;
vertical-align:top;
border: 2px solid;
background-color:transparent;
width:8px;
height:8px;
margin:0 8px 0 0;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
cursor:pointer;
opacity: 1;
}
.sc_slider_swiper .sc_slider_pagination_wrap .swiper-pagination-bullet-active,
.sc_slider_swiper .sc_slider_pagination_wrap span:hover {
background-color:#ddd;
} .sc_slider_pagination_area {
overflow:hidden;
position:relative;
}
.sc_slider_pagination_area .sc_slider {
float:left;
}
.sc_slider_pagination_area:not(.sc_slider_pagination_over) .sc_slider {
width:67%;
}
.sc_slider_pagination_area .sc_slider_pagination {
float:left;
width:33%;
position:static;
padding: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.sc_slider_pagination_over .sc_slider_pagination {
position:absolute;
width:40%;
left: auto;
right:-40%;
top:0;
bottom:auto;
float:none;
background-color:rgba(255,255,255, 0.8);
-webkit-transition: all ease .5s;
-moz-transition: all ease .5s;
-ms-transition: all ease .5s;
-o-transition: all ease .5s;
transition: all ease .5s;
}
.sc_slider_pagination_over:hover .sc_slider_pagination {
right:0;
}
.sc_slider_pagination_over .sc_slider_pagination .post_item {
background-color:transparent !important;
}
.slider_fullwide .sc_slider_pagination_over .sc_slider_pagination,
.slider_fullscreen .sc_slider_pagination_over .sc_slider_pagination {
width: 20%;
}
.sc_slider_pagination_area .sc_slider_pagination .post_item {
padding: 1em;
}
.sc_slider_pagination_area .sc_slider_pagination .post_item+.post_item {
margin:0;
}
.sc_slider_pagination_area .sc_slider_pagination .post_item.active {
background-color: rgba(0,0,0,0.1) !important;
}
.sc_slider_pagination_area .sc_slider_pagination .post_item .post_info .post_info_item + .post_info_item:before {
content: "|";
margin:0 5px;
}
.sc_slider_pagination.widget_area .post_item + .post_item {
border-top-width: 1px;
border-top-style: solid;
} .sc_slider_swiper .sc_slider_info {
max-width:80%;
min-width:50%;
max-height:100px;
padding:1em 1.5em;
overflow:hidden;
position:absolute;
right:0;
bottom:0;
background-color: rgba(30,170,206, 0.8);
-webkit-transition: all ease .5s .5s;
-moz-transition: all ease .5s .5s;
-ms-transition: all ease .5s .5s;
-o-transition: all ease .5s .5s;
transition: all ease .5s .5s;
margin-bottom:0;
}
.sc_slider_pagination_area .sc_slider .sc_slider_info { max-width:100%;
}
.sc_slider_swiper:hover .sc_slider_info.sc_slider_info_fixed,
.sc_slider_swiper:hover .sc_slider_info:hover,
.sc_slider_swiper .sc_slider_info:hover {
margin-bottom:0 !important;
}
.sc_slider_pagination_over:hover .sc_slider_info,
.sc_slider_swiper:hover .sc_slider_info {
-webkit-transition: all ease .5s;
-moz-transition: all ease .5s;
-ms-transition: all ease .5s;
-o-transition: all ease .5s;
transition: all ease .5s;
margin-bottom:-130px !important;
}
.sc_slider_swiper .slides .swiper-slide .sc_slider_info a {
display:inline;
min-height:0;
color:#ffffff;
}
.sc_slider_swiper .slides .swiper-slide .sc_slider_info a:hover {
color:#cccccc;
}
.sc_slider_swiper .sc_slider_info .sc_slider_subtitle {
margin:0;
padding:0;
text-transform:uppercase;
font-size:1.5em;
line-height:1.2857em;
margin:0 0 4px;
}
.sc_slider_swiper .sc_slider_info .sc_slider_reviews {
margin:0 0 4px;
}
.sc_slider_swiper .sc_slider_info .sc_slider_reviews.after_category {
display:inline-block;
position: relative;
margin:0 0 0 2px;
top: 2px;
font-size:0.8765em;
}
.sc_slider_reviews.post_rating .reviews_value {
display:none;
}
.sc_slider_reviews.post_rating .reviews_stars_bg,
.sc_slider_reviews.post_rating .reviews_stars_hover,
.sc_slider_reviews.post_rating .reviews_value {
color: #ffffff !important;
}
.sc_slider_swiper .sc_slider_info .sc_slider_descr {
color:#ffffff;
line-height:16px;
}
.sc_slider_swiper .sc_slider_info .sc_slider_category {
display:inline-block;
vertical-align:top;
text-transform:uppercase;
position:relative;  font-size: 0.8765em;
height: 2em;
line-height:2em;
padding:0 2em 0 0;
text-align:left;
overflow:hidden;
}
.sc_slider_pagination_area .sc_slider .sc_slider_info .sc_slider_category {
min-width:0;
}
.slider_fullscreen .sc_slider_swiper .sc_slider_info,
.slider_main .sc_slider_swiper .sc_slider_info {
max-width:50%;
min-width:40%;
padding:30px;
max-height:150px;
}
.slider_fullscreen .sc_slider_swiper:hover .sc_slider_info,
.slider_main .sc_slider_swiper:hover .sc_slider_info {
margin-bottom:-180px;
}
.slider_fullscreen .sc_slider_swiper:hover .sc_slider_info.sc_slider_info_fixed,
.slider_fullscreen .sc_slider_swiper:hover .sc_slider_info:hover,
.slider_fullscreen .sc_slider_swiper .sc_slider_info:hover,
.slider_main .sc_slider_swiper:hover .sc_slider_info.sc_slider_info_fixed,
.slider_main .sc_slider_swiper:hover .sc_slider_info:hover,
.slider_main .sc_slider_swiper .sc_slider_info:hover {
margin-bottom:0;
}
.slider_fullscreen .sc_slider_swiper .sc_slider_info .sc_slider_category,
.slider_main .sc_slider_swiper .sc_slider_info .sc_slider_category {
font-size:14px;
font-weight:300;
}
.slider_fullscreen .sc_slider_swiper .sc_slider_info .sc_slider_subtitle,
.slider_main .sc_slider_swiper .sc_slider_info .sc_slider_subtitle {
font-size:21px;
line-height:28px;
font-weight:300;
}
.slider_fullscreen .sc_slider_swiper .sc_slider_info .sc_slider_descr,
.slider_main .sc_slider_swiper .sc_slider_info .sc_slider_descr {
font-size:13px;
line-height:18px;
font-weight:300;
} .sc_socials {
overflow:hidden;
display:inline-block;
margin-right:-1.25em;
}
.sc_socials .sc_socials_item {
display:inline-block;
margin: 0 1.25em 0.5em 0;
outline:none;
}
.sc_socials a {
display:inline-block;
outline:none;
}
.sc_socials a,
.sc_socials a .sc_socials_hover {
overflow:hidden;
width:4em;
height:4em;
line-height:4em;
text-align:center;
overflow:hidden;
position:relative;
-webkit-border-radius: 6px; background-repeat: no-repeat;
background-position: 0 -4em;
-webkit-background-size: 4em 8em;
-moz-background-size: 4em 8em;
-o-background-size: 4em 8em;
background-size: 4em 8em;
}
.sc_socials .social_icons span {
font-size:4em;
line-height:inherit;
}
.sc_socials.sc_socials_size_tiny {
margin-right:-1em;
}
.sc_socials.sc_socials_size_tiny .sc_socials_item {
margin: 0.25em 1em 0.25em 0;
}
.sc_socials.sc_socials_size_small {
margin-right:-0.5em;
}
.sc_socials.sc_socials_size_small .sc_socials_item {
margin:0.25em 0.65em 0.25em 0;
}
.sc_socials.sc_socials_size_medium {
margin-right:-0.625em;
}
.sc_socials.sc_socials_size_medium .sc_socials_item {
margin:0.25em 0.625em 0.25em 0;
}
.sc_socials.sc_socials_shape_round .sc_socials_item {
margin:0 0.25em 0.25em 0;
}
.sc_socials.sc_socials_shape_round.sc_socials_size_medium .sc_socials_item {
margin:0.25em 0.5em 0.25em 0;
}
.sc_socials.sc_socials_size_tiny a {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.sc_socials.sc_socials_size_tiny a .sc_socials_hover {
-webkit-border-radius: 2px; }
.sc_socials.sc_socials_size_small a,
.sc_socials.sc_socials_size_medium a {
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.sc_socials.sc_socials_size_small a .sc_socials_hover,
.sc_socials.sc_socials_size_medium a .sc_socials_hover {
-webkit-border-radius: 4px; }
.sc_socials.sc_socials_shape_round a {
display:block;
text-align:center;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
}
.sc_socials_shape_round.sc_socials_size_tiny a .sc_socials_hover {
-webkit-border-radius: 50%; }
.sc_socials_shape_round.sc_socials_size_small a .sc_socials_hover,
.sc_socials_shape_round.sc_socials_size_medium a .sc_socials_hover {
-webkit-border-radius: 50%; }
.sc_socials.sc_socials_size_tiny .social_icons span {
font-size: 1.2em;
line-height:inherit;
}
.sc_socials.sc_socials_size_tiny a,
.sc_socials.sc_socials_size_tiny a .sc_socials_hover {
width:1.2em;
height:1.2em;
line-height:1.2em;
background-position: 0 -1.2em;
-webkit-background-size: 1.2em 2.4em;
-moz-background-size: 1.2em 2.4em;
-o-background-size: 1.2em 2.4em;
background-size: 1.2em 2.4em;
}
.sc_socials_type_icons.sc_socials_shape_round.sc_socials_size_tiny a,
.sc_socials_type_icons.sc_socials_shape_round.sc_socials_size_tiny a .sc_socials_hover {
width:2.5em;
height:2.5em;
line-height:2.5em;
}
.sc_socials.sc_socials_size_small .social_icons span {
font-size:1.3em;
line-height:inherit;
}
.sc_socials.sc_socials_size_small a,
.sc_socials.sc_socials_size_small a .sc_socials_hover {
width:2em;
height:2em;
line-height:2em;
background-position: 0 -2em;
-webkit-background-size: 2em 4em;
-moz-background-size: 2em 4em;
-o-background-size: 2em 4em;
background-size: 2em 4em;
}
.sc_socials_type_icons.sc_socials_shape_round.sc_socials_size_small a,
.sc_socials_type_icons.sc_socials_shape_round.sc_socials_size_small a .sc_socials_hover {
width:4em;
height:4em;
line-height:4em;
}
.sc_socials.sc_socials_size_medium .social_icons span {
font-size:2em;
line-height:inherit;
}
.sc_socials.sc_socials_size_medium a,
.sc_socials.sc_socials_size_medium a .sc_socials_hover {
width:2.5em;
height:2.5em;
line-height:2.5em;
background-position: 0 -2.5em;
-webkit-background-size: 2.5em 5em;
-moz-background-size: 2.5em 5em;
-o-background-size: 2.5em 5em;
background-size: 2.5em 5em;
}
.sc_socials_type_icons.sc_socials_shape_round.sc_socials_size_medium a,
.sc_socials_type_icons.sc_socials_shape_round.sc_socials_size_medium a .sc_socials_hover {
width:5em;
height:5em;
line-height:5em;
}
.sc_socials a .sc_socials_hover,
.sc_socials.sc_socials_size_tiny a .sc_socials_hover,
.sc_socials.sc_socials_size_small a .sc_socials_hover,
.sc_socials.sc_socials_size_medium a .sc_socials_hover {
position: absolute;
display:block;
left:0;
top:0;
background-position: 0 0;
opacity: 0;
-moz-opacity: 0;
filter: alpha(opacity=0);
-webkit-transition: all ease .3s;
-moz-transition: all ease .3s;
-ms-transition: all ease .3s;
-o-transition: all ease .3s;
transition: all ease .3s;
}
.sc_socials a:hover .sc_socials_hover {
opacity: 1;
-moz-opacity: 1;
filter: alpha(opacity=100);
}
.sc_socials .sc_socials_item_custom a,
.sc_socials .sc_socials_item_custom a .sc_socials_hover {
background-position: 50% 50%;
background-size: contain;
} .sc_socials .sc_socials_item {
vertical-align:top;
margin: 0.25em 0.85em 0.25em 0;
}
.sc_socials.sc_socials_share .share_caption {
display:inline-block;
font-size:1.25em;
line-height:2em;
color: #222222;
margin-right:0.6em;
}
.single .sc_socials .social_icons{
border-radius: 50%;
padding: 1em;
}
.post_info_share .sc_socials .social_icons{
border-radius: 50%;
padding: 1.3em;
}
.sc_socials .social_icons.social_facebook{
background-color: #2b57b3!important;
}
.sc_socials .social_icons.social_linkedin{
background-color: #d73d32!important;
}
.sc_socials .social_icons.social_gplus{
background-color: #d73d32!important;
}
.sc_socials .social_icons.social_youtube{
background-color: #d73d32!important;
}
.sc_socials .social_icons.social_twitter{
background-color: #35cdff!important;
}
.sc_socials.sc_socials_size_small a, .sc_socials.sc_socials_size_medium a{
border-radius: 50%;
padding: 1em;
}
.sc_socials.sc_socials_share.sc_socials_dir_vertical {
position:fixed;
left:0px;
top:18%;
z-index:9998;
}
.sc_socials.sc_socials_share.sc_socials_dir_vertical .sc_socials_item {
display:block;
margin-top:6px;
line-height:1em;
}
.sc_socials.sc_socials_share.sc_socials_dir_vertical .share_caption {
display:none;
}
.sc_socials.sc_socials_share.sc_socials_dir_vertical .sc_socials_item a {
padding:0.25em;
}
.sc_socials.sc_socials_share .share_counter{
display:inline-block;
vertical-align:top;
margin-left:6px;
position:relative;
background:#fff;
color:#666;
padding:0 8px;
line-height:3.8em;
border: 1px solid #ddd;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.sc_socials.sc_socials_share.sc_socials_dir_vertical .share_counter {
line-height:4.2em;
}
.sc_socials.sc_socials_share .share_counter:before{
content:" ";
position:absolute;
z-index:1;
top:50%;
left:-4px;
width:6px;
height:6px;
border-left: 1px solid #ddd;
border-bottom: 1px solid #ddd;
background:#fff;
-webkit-transform: translateY(-50%) rotate(45deg);
-moz-transform: translateY(-50%) rotate(45deg);
transform: translateY(-50%) rotate(45deg);
}
.sc_socials.sc_socials_share.sc_socials_size_small .share_counter{
line-height:2em;
}
.sc_socials.sc_socials_share.sc_socials_dir_vertical.sc_socials_size_small .share_counter{
line-height:2.4em;
}
.sc_socials.sc_socials_share.sc_socials_size_medium .share_counter{
line-height:2.3em;
}
.sc_socials.sc_socials_share.sc_socials_dir_vertical.sc_socials_size_medium .share_counter{
line-height:2.8em;
} .sc_table table {
width: 100%;
}
.sc_table table th,
.sc_table table td {
padding: 1em;
line-height: 3.7em;
}
.sc_table table tr:first-child{
font-weight: 600;
}
.help_table .sc_price_block .sc_price_block_description {
-moz-transform: translateX(0%);
-webkit-transform: translateX(0%);
-o-transform: translateX(0%);
-ms-transform: translateX(0%);
transform: translateX(0%);
margin-left:0;
height: 13em;
} .sc_tabs .sc_tabs_titles {
overflow:hidden;
margin:0;
padding:0;
}
.sc_tabs .sc_tabs_titles li {
padding:0;
list-style:none;
font-size:1.5em;
float:left;
}
.sc_tabs .sc_tabs_titles li:before {
display:none;
}
.sc_tabs .sc_tabs_titles li a {
display:block;
padding:0.5833em;
}
.sc_tabs .sc_tabs_content {
display: none;
overflow:hidden;
} .sc_tabs.sc_tabs_style_1 .sc_tabs_titles,
.sc_tabs.sc_tabs_style_1 .sc_tabs_titles li {
margin-bottom: 0;
}
.sc_tabs.sc_tabs_style_1 .sc_tabs_titles li a {
border: 1px solid #e4e7e8;
position:relative;
}
.sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.ui-state-active a:after,
.sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.sc_tabs_active a:after {
content: ' ';
position:absolute;
bottom:-1px;
left:0;
right:0;
height: 5px;
}
.sc_tabs.sc_tabs_style_1 .sc_tabs_titles li+li {
margin-left: -1px;
}
.sc_tabs.sc_tabs_style_1 .sc_tabs_content {
margin-top:-1px;
padding: 1.5em;
border: 1px solid #e4e7e8;
} .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li {
margin:0 0 0.6667em 0;
}
.sc_tabs.sc_tabs_style_2 .sc_tabs_titles li+li {
margin-left: 0.6667em;
}
.sc_tabs.sc_tabs_style_2 .sc_tabs_titles li a {
text-transform:uppercase;
border:2px solid #ddd;
}
.sc_tabs.sc_tabs_style_2 .sc_tabs_titles li a:hover,
.sc_tabs.sc_tabs_style_2 .sc_tabs_titles li.ui-state-active a,
.sc_tabs.sc_tabs_style_2 .sc_tabs_titles li.sc_tabs_active a {
background-color: transparent !important;
}
.sc_tabs.sc_tabs_style_2 .sc_tabs_content {
padding: 1.5em;
border: 1px solid #e4e7e8;
} .sc_team_item .sc_team_item_info .sc_team_item_title {
margin:0 0 -0.1em 0;
}
.sc_team_item .sc_team_item_info .sc_team_item_title a {
font-weight:600;
}
.sc_team_item .sc_team_item_info .sc_team_item_position {
margin-top:0;
font-weight: 600;
font-size: 1.1428em;
}
.sc_team_item .sc_team_item_info .sc_team_item_description {
margin-top:1em;
line-height:1.75em;
overflow:hidden;
}
.sc_team_item .sc_team_item_info .sc_socials {
margin-top:1.5em;
}
.sc_team_item .sc_team_item_avatar img {
width: 100%;
}
.sc_team_style_team-3 .sc_team_item .sc_team_item_avatar img {
border-radius: 2em 2em 0 0;
}
.sc_team_style_team-1 .sc_slider_swiper .sc_team_item,
.sc_team_style_team-2 .sc_slider_swiper .sc_team_item {
padding-right: 2em;
}
.sc_team_style_team-1 .sc_team_item_info,
.sc_team_style_team-3 .sc_team_item_info {
padding-top: 2.3em;
border-radius: 0 0 2em 2em;
text-align: center;
padding-bottom: 2.5em;
}
.sc_team_style_team-3 .sc_team_item_avatar,
.sc_team_style_team-4 .sc_team_item_avatar {
position:relative;
}
.sc_team_style_team-3 .sc_team_item_avatar .sc_team_item_hover,
.sc_team_style_team-4 .sc_team_item_avatar .sc_team_item_hover {
position:absolute;
left:0;
right:0;
top:0;
bottom:0;
opacity: 0;
filter: alpha(opacity=0);
text-align:center;
}
.sc_team_style_team-3 .sc_team_item:hover .sc_team_item_avatar .sc_team_item_hover,
.sc_team_style_team-4 .sc_team_item:hover .sc_team_item_avatar .sc_team_item_hover {
opacity: 1;
filter: alpha(opacity=100);
}
.sc_team_style_team-3 .sc_team_item_avatar .sc_team_item_hover,
.sc_team_style_team-3 .sc_team_item_avatar .sc_team_item_hover .sc_team_item_socials,
.sc_team_style_team-4 .sc_team_item_avatar .sc_team_item_hover,
.sc_team_style_team-4 .sc_team_item_avatar .sc_team_item_hover .sc_team_item_info {
overflow:hidden;
-webkit-transition: all ease .3s;
-moz-transition: all ease .3s;
-ms-transition: all ease .3s;
-o-transition: all ease .3s;
transition: all ease .3s;
}
.sc_team_style_team-3 .sc_team_item_avatar .sc_team_item_hover .sc_team_item_socials,
.sc_team_style_team-4 .sc_team_item_avatar .sc_team_item_hover .sc_team_item_info {
position:absolute;
left:0;
top:50%;
width:100%;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
transform: translateY(-50%);
margin-top: 50px;
}
.sc_team_style_team-4 .sc_team_item_avatar .sc_team_item_hover .sc_team_item_info {
padding:1.5em;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.sc_team_style_team-3 .sc_team_item:hover .sc_team_item_avatar .sc_team_item_hover .sc_team_item_socials,
.sc_team_style_team-4 .sc_team_item:hover .sc_team_item_avatar .sc_team_item_hover .sc_team_item_info {
margin-top: 0;
}
.sc_team.sc_team_style_team-3 .sc_socials_item a{
padding: 0.7em;
margin-right: 0.5em;
}
.sc_team.sc_team_style_team-3 .sc_team_item_avatar .sc_team_item_hover{
border-radius: 2em 2em 0 0;
}
.sc_team .sc_team_descr{
margin: 1.8em 0 2.5em 0;
} .sc_testimonials_wrap {
position:relative;
}
.sc_testimonials_wrap .sc_section_overlay {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
width:100%;
padding:1.5em 0;
}
.sc_testimonial_item {
text-align:center;
padding: 0 5em;
}
.sc_testimonials .sc_columns .sc_testimonial_item {
padding: 0;
}
.sc_testimonial_content {
font-size:1.1428em;
line-height:1.85em;
font-weight: 400;
border-radius: 2em;
}
.sc_testimonial_content p {
margin:0;
}
.sc_testimonial_content p+p {
margin-top:0.5em;
}
.sc_testimonials .sc_testimonial_avatar {
overflow:hidden;
margin:0 auto;
width: 4.2em;
height: 4.2em;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
} .sc_testimonials_style_testimonials-1 .sc_testimonial_content p:first-child:before,
.sc_testimonials_style_testimonials-1 .sc_testimonial_content p:last-child:after {
content: '"';
}
.sc_testimonials_style_testimonials-1 .sc_testimonial_content {
margin-bottom:1.5em;
}
.sc_testimonials_style_testimonials-1 .sc_testimonial_avatar,
.sc_testimonials_style_testimonials-1 .sc_testimonial_author {
display: inline-block;
vertical-align:middle;
}
.sc_testimonials_style_testimonials-1 .sc_testimonial_avatar {
margin-right:0.75em;
}
.sc_testimonials_style_testimonials-1 .sc_testimonial_author_name,
.sc_testimonials_style_testimonials-1 .sc_testimonial_author_position {
display:block;
text-align:left;
} .sc_testimonials_style_testimonials-2 .sc_testimonial_content p:first-child:before,
.sc_testimonials_style_testimonials-2 .sc_testimonial_content p:last-child:after {
content: '"';
}
.sc_testimonials_style_testimonials-2 .sc_testimonial_content {
margin-bottom:1.5em;
}
.sc_testimonials_style_testimonials-2 .sc_testimonial_author_name:before {
content:'-';
display:inline-block;
margin-right:0.5em;
}
.sc_testimonials_style_testimonials-2 .sc_testimonial_author_position {
font-style:normal;
} .sc_testimonials_style_testimonials-3 .sc_testimonial_item {
padding: 0 1em;
line-height:1.4em;
text-align:right;
}
.sc_testimonials_style_testimonials-3 .sc_slider_swiper .sc_testimonial_item {
padding: 0;
}
.sc_testimonials_style_testimonials-3 .sc_testimonial_content {
padding: 1em 1em 1em 3em;
background-color:#ffffff;
text-align:left;
position:relative;
margin-bottom:1em;
}
.sc_testimonials_style_testimonials-3 .sc_testimonial_content:after {
content:' ';
display:block;
position:absolute;
width: 0.8em;
height: 0.8em;
right: 1em;
bottom:-0.4em;
background-color:#ffffff;
-webkit-transform:rotate(45deg);
-moz-transform:rotate(45deg);
transform:rotate(45deg);
}
.sc_testimonials_style_testimonials-3 .sc_testimonial_content p:first-child:before,
.sc_testimonials_style_testimonials-4 .sc_testimonial_content p:first-child:before {
content: '\e8b6';
font-family: 'fontello';
font-size:1.3em;
display:block;
position: absolute;
left: 1.9em;
top: 1.9em;
-webkit-transform:rotate(180deg);
-moz-transform:rotate(180deg);
transform:rotate(180deg);
}
.sc_testimonials_style_testimonials-3 .sc_testimonial_avatar,
.sc_testimonials_style_testimonials-3 .sc_testimonial_author {
display: inline-block;
vertical-align:middle;
}
.sc_testimonials_style_testimonials-3 .sc_testimonial_avatar {
margin-left: 0.75em;
}
.sc_testimonials_style_testimonials-3 .sc_testimonial_author_name,
.sc_testimonials_style_testimonials-3 .sc_testimonial_author_position {
display:block;
}
.sc_testimonials_style_testimonials-3 .sc_testimonial_author_name {
font-size:1.2857em;
font-weight:bold;
}
.sc_testimonials_style_testimonials-3 .sc_testimonial_author_position {
font-style:italic;
} .sc_testimonials_style_testimonials-4 .sc_testimonial_item {
padding: 1.5em !important;
line-height:1.4em;
text-align:left;
margin-top: 2em;
}
.sc_testimonials_style_testimonials-4 .sc_testimonial_content {
position:relative;
padding: 2.7em 3em 2.5em 4.6em;
}
.sc_testimonials_style_testimonials-4 .sc_testimonial_avatar,
.sc_testimonials_style_testimonials-4 .sc_testimonial_author {
display: inline-block;
vertical-align:middle;
}
.sc_testimonials_style_testimonials-4 .sc_testimonial_avatar {
margin-right: 0.75em;
margin-top: 1.95em;
margin-left: 4.2em;
}
.sc_testimonials_style_testimonials-4 .sc_testimonial_author_name,
.sc_testimonials_style_testimonials-4 .sc_testimonial_author_position {
display:block;
}
.sc_testimonials_style_testimonials-4 .sc_testimonial_author_name {
font-size:1.1428em;
margin-top: 2em;
font-weight: 600;
margin-bottom: 1px;
}
.sc_testimonials_style_testimonials-4 .sc_testimonial_author_position {
text-transform: capitalize;
font-size:0.928em;
font-weight: 400;
}
.sc_testimonials_style_testimonials-4 .sc_testimonial_content{
position: relative;
}
.sc_testimonials_style_testimonials-4 .sc_testimonial_content:after{
content: " ";
width: 15px;
height: 15px;
background-color: #fff;
border-left: 1px solid;
border-top: 1px solid;
position: absolute;
bottom: -9px;
left: 5.1em;
-moz-transform: rotate(45deg);
-webkit-transform: rotate(45deg);
-o-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
.sc_testimonials_style_testimonials-4 .sc_testimonial_content p:first-child:before{}
.sc_testimonials.sc_testimonials_style_testimonials-4.sc_testimonials_style_test_yes .sc_testimonial_content{
background-color: red;
}
.sc_testimonials_style_testimonials-4.sc_testimonials_style_test_yes .sc_testimonial_content:after{
background-color: red;
} .sc_title {
overflow: hidden;
position:relative;
padding-bottom:2px;
}
.sc_title.sc_align_center {
text-align:center;
margin-left:auto;
margin-right:auto;
} .sc_title_underline {
padding-bottom:16px;
}
.sc_title_underline:after {
content:' ';
display:block;
position:absolute;
border-top: 2px solid #222222;
height:0;
width:8%;
min-width:2em;
left:0;
bottom:0.1em;
}
.sc_title_underline.sc_align_center:after {
left:50%;
-webkit-transform:translateX(-50%);
-moz-transform:translateX(-50%);
transform:translateX(-50%);
}
.sc_title_underline.sc_align_right:after {
right:0;
left:auto;
} .sc_title_divider { 
position:relative; 
padding-left: 5ex; 
padding-right: 5ex;
text-align:center;
}
.sc_title_divider .sc_title_divider_before,
.sc_title_divider .sc_title_divider_after {
display:block;
width:20%;
height:1px;
background-color:#222222;
position:absolute;
top: 50%;
}
.sc_title_divider .sc_title_divider_before {
left:0;
}
.sc_title_divider .sc_title_divider_after {
right:0;
} .sc_title_icon {
display:inline-block;
}
.sc_title_icon_left {
margin-right:0.5em;
}
.sc_title_icon_top {
display:block;
}
.sc_title_icon img {
width:auto;
}
.sc_title_icon_left img {
vertical-align:middle;
}
.sc_title_icon_top img {
vertical-align:baseline;
}
.sc_title_icon_small img {
height: 1em;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.sc_title_icon_medium img {
height: 2em;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
}
.sc_title_icon_large img {
height: 3em;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
} .sc_toggles .sc_toggles_item {
margin-bottom:1.25em;
}
.sc_toggles > .sc_toggles_item .sc_toggles_content {
overflow: hidden;
display: none;
}
.sc_toggles .sc_toggles_item .sc_toggles_title {
position:relative;
overflow:hidden;
cursor:pointer;
margin:0;
-webkit-transition: all ease 0.3s;
-moz-transition: all ease 0.3s;
-ms-transition: all ease 0.3s;
-o-transition: all ease 0.3s;
transition: all ease 0.3s;
}
.sc_toggles .sc_toggles_item .sc_toggles_title .sc_items_counter:after {
content:'. ';
}
.sc_toggles .sc_toggles_item .sc_toggles_title .sc_toggles_icon {
position:absolute;
left:0;
top:0;
height:100%;
padding:0;
text-align:center;
overflow:hidden;
-webkit-transition: all ease 0.3s;
-moz-transition: all ease 0.3s;
-ms-transition: all ease 0.3s;
-o-transition: all ease 0.3s;
transition: all ease 0.3s;
}
.sc_toggles .sc_toggles_item .sc_toggles_title .sc_toggles_icon:before {
position:absolute;
left:50%;
top:50%;
-webkit-transform:translateX(-50%) translateY(-50%);
-moz-transform:translateX(-50%) translateY(-50%);
transform:translateX(-50%) translateY(-50%);
}
.sc_toggles .sc_toggles_item .sc_toggles_content {
padding:1.5em 1.8em;
}
.sc_toggles .sc_toggles_item .sc_toggles_title {
border:1px solid #e4e7e8;
padding:0.5em 0.5em 0.5em 3em;
}
.sc_toggles .sc_toggles_item .sc_toggles_title .sc_toggles_icon {
width:2.3333em;
background-color:#e4e7e8;
color: #ffffff;
}
.sc_toggles .sc_toggles_item .sc_toggles_title .sc_toggles_icon_opened {
margin-top:-4em; }
.sc_toggles .sc_toggles_item .sc_toggles_title.ui-state-active .sc_toggles_icon_opened {
margin-top:0;
}
.sc_toggles .sc_toggles_item .sc_toggles_title.ui-state-active .sc_toggles_icon_closed {
margin-top:4em; }
.sc_toggles .sc_toggles_item .sc_toggles_content {
border-width:1px;
border-style:solid;
border-top-width:0;
} .sc_tooltip_parent {
text-decoration: none;
border-bottom: 1px dashed #666666;
position: relative;
display:inline-block;
}
.sc_tooltip_parent .sc_tooltip {
position: absolute;
color: #fff;
background-color:#333333;
white-space: nowrap;
top: -4em;
left: 50%;
-webkit-transform:translateX(-50%);
-moz-transform:translateX(-50%);
transform:translateX(-50%);
padding: 2px 6px;
z-index: 2;
font-size:0.75em;
opacity: 0;
filter: alpha(opacity=0);
-webkit-transition: all ease-out 0.1s;
-moz-transition: all ease-out 0.1s;
-ms-transition: all ease-out 0.1s;
-o-transition: all ease-out 0.1s;
transition: all ease-out 0.1s;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.sc_tooltip_parent:hover .sc_tooltip {
opacity: 1;
filter: alpha(opacity=100);
top: -2.5em;
}
.sc_tooltip_parent .sc_tooltip:before {
content: ' ';
width: 6px;
height: 6px;
position: absolute;
left: 50%;
bottom: -3px;
margin-left: -3px;
z-index: 1;
background-color:#333333;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-o-transform: rotate(45deg);
-ms-transform: rotate(45deg);
} .sc_twitter_wrap {
position:relative;
}
.sc_twitter_wrap .sc_section_overlay {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
width:100%;
padding:1.5em 0;
}
.sc_twitter_item {
text-align:center;
padding: 0 5em;
}
.sc_twitter_content {
font-size:1.125em;
line-height:1.5em;
}
.sc_twitter_icon {
font-size:2.5em;
line-height:1em;
display:block;
text-align:center;
margin-bottom:0.5em;
}
.sc_twitter_content p {
margin:0;
}
.sc_twitter_content p+p {
margin-top:0.5em;
}
.bg_tint_dark .sc_twitter a {
color: #ffffff;
}
.sc_twitter .sc_slider_swiper:hover .sc_slider_controls_wrap .sc_slider_prev {
margin-left:10px;
}
.sc_twitter .sc_slider_swiper:hover .sc_slider_controls_wrap .sc_slider_next {
margin-right:10px;
}
.sc_twitter .sc_slider_controls_wrap a {
font-size:2.5em;
background-color: transparent;
} .sc_video_player {
background-repeat:no-repeat;
-webkit-background-size: 100% auto;
-moz-background-size: 100% auto;
-o-background-size: 100% auto;
background-size: 100% auto;
}
.sc_video_player.sc_video_bordered {
width:auto;
height:auto;
display:inline-block;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
} .sc_video_frame {
position:relative;
overflow:hidden;
border-radius: 2em;
}
.sc_video_frame.hover_icon:after{
border-radius: 2em;
}
.sc_video_frame.hover_icon:before{
width: 3em;
height: 3em;
line-height: 3em;
}
.sc_video_frame img {
width: 100%;
height:auto;
} .mejs-container {
max-width:100%;
} .sc_zoom_wrap {
width:auto;
height:auto;
display:inline-block;
background-repeat:no-repeat;
-webkit-background-size: 100% auto;
-moz-background-size: 100% auto;
-o-background-size: 100% auto;
background-size: 100% auto;
}
.sc_zoom {
position:relative;
overflow:hidden;
}
.sc_zoom img {
width: 100%;
height:auto;
} .vc_row.inverse_colors * {
color: #fff !important;
border-color: #fff !important;
}  .sc_item_subtitle {
margin:0 0 0.37em;
font-size: 1.5em;
text-align:center;
text-transform: capitalize;
} .sc_item_title {
margin: 0;
font-size: 3.4285em;
} .sc_item_descr {
font-size:0.9285em;
font-weight:600;
line-height:1.8em;
margin:3.25em 0 2em 0;
text-align:center;
letter-spacing: 1px;
left: 50%;
position: relative;
text-transform: uppercase;
width: 45%;
-webkit-transform:translateX(-50%);
-moz-transform:translateX(-50%);
-ms-transform:translateX(-50%);
transform:translateX(-50%);
} .sc_item_button {
display:block;
margin: 0;
text-align:center;
}
.sc_item_button > a {
overflow:hidden;
}
.sc_slider_swiper + .sc_item_button {
margin-top: 2em;
}
.sc_item_buttons {
display:inline-block;
overflow:hidden;
}
.sc_item_buttons > .sc_item_button {
float:left;
margin-right: 1.5em;
}
.sc_item_buttons > .sc_item_button+.sc_item_button {
margin-right: 0;
}
.text_align_left, 
.text_align_left .sc_item_title, 
.text_align_left .sc_item_title:after,
.text_align_left .sc_item_descr, 
.text_align_left .sc_item_button {
text-align: left;
margin-left: 0;
} .sc_slider_controls_side .sc_slider_controls_wrap a {
width: 2em;
height: 2em;
line-height: 2em;
color: #ddd;
border: 2px solid #ddd;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
}
.sc_slider_controls_side:hover .sc_slider_controls_wrap .sc_slider_prev {
margin-left:10px;
}
.sc_slider_controls_side:hover .sc_slider_controls_wrap .sc_slider_next {
margin-right:10px;
} .sc_slider_controls_bottom .swiper-slide {
padding-bottom:5em;
}
.sc_slider_controls_bottom .sc_slider_controls_wrap {
top: auto;
bottom:1px;
text-align:center;
padding-bottom:0;
height: 4em;
}
.sc_slider_controls_bottom .sc_slider_controls_wrap a {
width: 2.6em;
height: 2.6em;
line-height: 2.6em;
margin-left:0;
margin-right:0;
float:none;
display:inline-block;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
opacity: 1;
-webkit-transform: none;
-moz-transform: none;
transform: none;
filter: alpha(opacity=100);
}
.sc_slider_controls_bottom .sc_slider_controls_wrap .sc_slider_prev {
margin-right:0.3em;
}
.sc_slider_controls_bottom:hover .sc_slider_controls_wrap .sc_slider_prev {
margin-left:0;
}
.sc_slider_controls_bottom:hover .sc_slider_controls_wrap .sc_slider_next {
margin-right:0;
}
.sc_slider_controls_bottom .sc_slider_pagination_wrap {
display:none;
} .sc_slider_pagination_bottom .swiper-slide {
padding-bottom: 3em;
}
.sc_slider_pagination_bottom:hover .sc_slider_pagination_wrap {
bottom: 0.5em;
} .mc4wp-form input[type="email"]{
padding: 1.3em 2.5em;
border-radius: 2em;
margin-right: 0.8em;
width: 24.5em;
}body{font-family:"Roboto",sans-serif;	font-size:14px;	font-weight:500; line-height:2em}h1{font-family:"Roboto",sans-serif;	font-size:3.4285em;	font-weight:600; line-height:1.235em; margin-top:1.73em;	margin-bottom:0.9em}h2{font-family:"Roboto",sans-serif;	font-size:2.8571em;	font-weight:600; line-height:1.3em; margin-top:1em;	margin-bottom:1.05em}h3{font-family:"Roboto",sans-serif;	font-size:2.5em;	font-weight:600; line-height:1.3em; margin-top:1.25em;	margin-bottom:0.7em}h4{font-family:"Roboto",sans-serif;	font-size:1.5em;	font-weight:600; line-height:1.7em; margin-top:2.15em;	margin-bottom:1.2em}h5{font-family:"Roboto",sans-serif;	font-size:1.3571em;	font-weight:600; line-height:1.5em; margin-top:2.5em;	margin-bottom:1.45em}h6{font-family:"Roboto",sans-serif;	font-size:1.1428em;	font-weight:600; line-height:1.3em; margin-top:3em;	margin-bottom:1.95em}a{font-family:"Roboto",sans-serif}input[type="text"],input[type="number"],input[type="email"],input[type="search"],input[type="password"],select,textarea{font-family:"Roboto",sans-serif; line-height:1.2857em}input[type="submit"],input[type="reset"],input[type="button"],button:not(.pswp__button),.sc_button{font-family:"Roboto",sans-serif; line-height:1.2857em}.top_panel_middle .logo{margin-top:2.15em;	margin-bottom:0.55em}.logo .logo_text{font-family:"Roboto",sans-serif;	font-size:2.8571em;	font-weight:700; line-height:0.9em}.top_panel_middle .menu_main_wrap{margin-top:1.6125em}.top_panel_style_5 .top_panel_middle .logo{margin-bottom:0.275em}.menu_main_nav>li>a{padding:1em 1.5em 0.95em;	font-family:"Roboto",sans-serif; line-height:1.2857em}.menu_main_nav>li ul{font-family:"Roboto",sans-serif; line-height:1.2857em}.menu_main_nav>li ul li a{padding:inherit 1.5em inherit}.top_panel_bottom .search_wrap,.top_panel_inner_style_4 .search_wrap{padding-top:0.65em;	padding-bottom:0.475em}.top_panel_icon{margin:0.7em 0 0.95em 1em}.top_panel_fixed .menu_main_wrap{padding-top:0.3em}.top_panel_fixed .top_panel_wrap .logo{margin-top:0.6em;	margin-bottom:0.57em}.top_panel_inner_style_8 .top_panel_buttons,.top_panel_inner_style_8 .menu_pushy_wrap .menu_pushy_button{padding-top:1em;	padding-bottom:0.95em}.post_info{font-family:"Roboto",sans-serif;	font-size:0.9285em; line-height:1.2857em; margin-bottom:1.95em}.post_item_404 .page_title,.post_item_404 .page_subtitle{font-family:"Roboto",sans-serif}.sidebar_outer_menu .menu_side_nav>li>a,.sidebar_outer_menu .menu_side_responsive>li>a{font-family:"Roboto",sans-serif; line-height:1.2857em}.sidebar_outer_menu .menu_side_nav>li ul,.sidebar_outer_menu .menu_side_responsive>li ul{font-family:"Roboto",sans-serif; line-height:1.2857em}.sidebar_outer_menu .menu_side_nav>li ul li a,.sidebar_outer_menu .menu_side_responsive>li ul li a{padding:inherit 1.5em inherit}.tp-caption.slider1_slide1_1,.tp-caption.slider1_slide1_2,.tp-caption.slider1_slide1_3{font-family:"Roboto",sans-serif}.booking_font_custom,.booking_day_container,.booking_calendar_container_all{font-family:"Roboto",sans-serif}.booking_weekdays_custom{font-family:"Roboto",sans-serif}body table.booked-calendar thead th .monthName{font-family:"Roboto",sans-serif}.mejs-container .mejs-controls .mejs-time{font-family:"Roboto",sans-serif}.sc_recent_news .post_item .post_title{font-family:"Roboto",sans-serif;	font-size:1.3571em;	font-weight:600; line-height:1.5em; margin-top:2.5em;	margin-bottom:1.45em}.sc_recent_news .post_item h6.post_title{font-family:"Roboto",sans-serif;	font-size:1.1428em;	font-weight:600; line-height:1.3em; margin-top:3em;	margin-bottom:1.95em}.scheme_original h1,.scheme_original h2,.scheme_original h3,.scheme_original h4,.scheme_original h5,.scheme_original h6,.scheme_original h1 a,.scheme_original h2 a,.scheme_original h3 a,.scheme_original h4 a,.scheme_original h5 a,.scheme_original h6 a{color:#11224d}.scheme_original a{color:#11224d}.scheme_original a:hover{color:#009FE3}.scheme_original blockquote:before{color:#ffffff}.scheme_original blockquote a{color:#ffffff}.scheme_original blockquote a:hover{color:#009FE3}.scheme_original blockquote,.scheme_original blockquote p{color:#ffffff}.scheme_original blockquote{background:#0071c3; 	background:-moz-linear-gradient(left,#0071c3 0%,#009FE3 100%); 	background:-webkit-linear-gradient(left,#0071c3 0%,#009FE3 100%); 	background:linear-gradient(to right,#0071c3 0%,#009FE3 100%); 	filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071c3',endColorstr='#009FE3',GradientType=1 ); 	color:#ffffff}.scheme_original .accent1{color:#11224d}.scheme_original .accent1_bgc{background-color:#11224d}.scheme_original .accent1_bg{background:#11224d}.scheme_original .accent1_border{border-color:#11224d}.scheme_original a.accent1:hover{color:#009FE3}.scheme_original .post_content.ih-item.circle.effect1.colored .info,.scheme_original .post_content.ih-item.circle.effect2.colored .info,.scheme_original .post_content.ih-item.circle.effect3.colored .info,.scheme_original .post_content.ih-item.circle.effect4.colored .info,.scheme_original .post_content.ih-item.circle.effect5.colored .info .info-back,.scheme_original .post_content.ih-item.circle.effect6.colored .info,.scheme_original .post_content.ih-item.circle.effect7.colored .info,.scheme_original .post_content.ih-item.circle.effect8.colored .info,.scheme_original .post_content.ih-item.circle.effect9.colored .info,.scheme_original .post_content.ih-item.circle.effect10.colored .info,.scheme_original .post_content.ih-item.circle.effect11.colored .info,.scheme_original .post_content.ih-item.circle.effect12.colored .info,.scheme_original .post_content.ih-item.circle.effect13.colored .info,.scheme_original .post_content.ih-item.circle.effect14.colored .info,.scheme_original .post_content.ih-item.circle.effect15.colored .info,.scheme_original .post_content.ih-item.circle.effect16.colored .info,.scheme_original .post_content.ih-item.circle.effect18.colored .info .info-back,.scheme_original .post_content.ih-item.circle.effect19.colored .info,.scheme_original .post_content.ih-item.circle.effect20.colored .info .info-back,.scheme_original .post_content.ih-item.square.effect1.colored .info,.scheme_original .post_content.ih-item.square.effect2.colored .info,.scheme_original .post_content.ih-item.square.effect3.colored .info,.scheme_original .post_content.ih-item.square.effect4.colored .mask1,.scheme_original .post_content.ih-item.square.effect4.colored .mask2,.scheme_original .post_content.ih-item.square.effect5.colored .info,.scheme_original .post_content.ih-item.square.effect6.colored .info,.scheme_original .post_content.ih-item.square.effect7.colored .info,.scheme_original .post_content.ih-item.square.effect8.colored .info,.scheme_original .post_content.ih-item.square.effect9.colored .info .info-back,.scheme_original .post_content.ih-item.square.effect10.colored .info,.scheme_original .post_content.ih-item.square.effect11.colored .info,.scheme_original .post_content.ih-item.square.effect12.colored .info,.scheme_original .post_content.ih-item.square.effect13.colored .info,.scheme_original .post_content.ih-item.square.effect14.colored .info,.scheme_original .post_content.ih-item.square.effect15.colored .info,.scheme_original .post_content.ih-item.circle.effect20.colored .info .info-back,.scheme_original .post_content.ih-item.square.effect_book.colored .info,.scheme_original .post_content.ih-item.square.effect_pull.colored .post_descr{background:#11224d;	color:#ffffff}.scheme_original .post_content.ih-item.circle.effect1.colored .info,.scheme_original .post_content.ih-item.circle.effect2.colored .info,.scheme_original .post_content.ih-item.circle.effect5.colored .info .info-back,.scheme_original .post_content.ih-item.circle.effect19.colored .info,.scheme_original .post_content.ih-item.square.effect4.colored .mask1,.scheme_original .post_content.ih-item.square.effect4.colored .mask2,.scheme_original .post_content.ih-item.square.effect6.colored .info,.scheme_original .post_content.ih-item.square.effect7.colored .info,.scheme_original .post_content.ih-item.square.effect12.colored .info,.scheme_original .post_content.ih-item.square.effect13.colored .info,.scheme_original .post_content.ih-item.square.effect_more.colored .info,.scheme_original .post_content.ih-item.square.effect_dir.colored .info,.scheme_original .post_content.ih-item.square.effect_shift.colored .info{background:rgba(17,34,77,0.6);	color:#ffffff}.scheme_original .post_content.ih-item.square.effect_border.colored .img,.scheme_original .post_content.ih-item.square.effect_fade.colored .img,.scheme_original .post_content.ih-item.square.effect_slide.colored .img{background:#11224d}.scheme_original .post_content.ih-item.square.effect_border.colored .info,.scheme_original .post_content.ih-item.square.effect_fade.colored .info,.scheme_original .post_content.ih-item.square.effect_slide.colored .info{color:#ffffff}.scheme_original .post_content.ih-item.square.effect_border.colored .info:before,.scheme_original .post_content.ih-item.square.effect_border.colored .info:after{border-color:#ffffff}.scheme_original .post_content.ih-item.circle.effect1 .spinner{border-right-color:#11224d;	border-bottom-color:#11224d}.scheme_original .post_content.ih-item .post_readmore .post_readmore_label,.scheme_original .post_content.ih-item .info a,.scheme_original .post_content.ih-item .info a>span{color:#ffffff}.scheme_original .post_content.ih-item .post_readmore:hover .post_readmore_label,.scheme_original .post_content.ih-item .info a:hover,.scheme_original .post_content.ih-item .info a:hover>span{color:#ffffff}.scheme_original td,.scheme_original th{border-color:rgba(255,255,255,0.8)}.scheme_original table{color:#0a1f54}.scheme_original table tr:nth-child(2n+1){background-color:rgba(240,244,249,0.4)}.scheme_original table:not(.shop_attributes):not(.shop_table):not(.group_table):not(.variations):not(#debug_bar_http) tr:first-child{background-color:#11224d;	color:#ffffff}.scheme_original table tr:first-child td{border-color:rgba(255,255,255,0.1)}.scheme_original table tr:nth-child(2n){background-color:#f0f4f9}.scheme_original table thead + tbody tr:first-child{background-color:rgba(240,244,249,0.4);	color:#0a1f54}.scheme_original .sc_table th{color:#ffffff; background-color:#0a1f54}.scheme_original pre.code,.scheme_original #toc .toc_item.current,.scheme_original #toc .toc_item:hover{border-color:#11224d}.scheme_original::selection,.scheme_original::-moz-selection{background-color:#11224d;	color:#ffffff}.scheme_original input[type="text"],.scheme_original input[type="number"],.scheme_original input[type="tel"],.scheme_original input[type="email"],.scheme_original input[type="search"],.scheme_original input[type="password"],.scheme_original select,.scheme_original textarea{color:#8a8a8a;	border-color:#0a1a41;	background-color:#f0f4f9}.scheme_original input[type="text"]:focus,.scheme_original input[type="number"]:focus,.scheme_original input[type="tel"]:focus,.scheme_original input[type="email"]:focus,.scheme_original input[type="search"]:focus,.scheme_original input[type="password"]:focus,.scheme_original select:focus,.scheme_original textarea:focus{color:#8a8a8a;	border-color:#bbbbbb;	background-color:#f0f4f9}.scheme_original input::-webkit-input-placeholder,.scheme_original textarea::-webkit-input-placeholder{color:#acb4b6}.scheme_original input:focus::-webkit-input-placeholder{color:#009FE3}.scheme_original textarea:focus::-webkit-input-placeholder{color:#009FE3}.scheme_original input:focus:-moz-placeholder{color:#009FE3}.scheme_original textarea:focus:-moz-placeholder{color:#009FE3}.scheme_original input:focus::-moz-placeholder{color:#009FE3}.scheme_original textarea:focus::-moz-placeholder{color:#009FE3}.scheme_original fieldset{border-color:#dfe5ea}.scheme_original fieldset legend{background-color:#ffffff;	color:#656c77} .scheme_original .sc_input_hover_accent input[type="text"]:focus,.scheme_original .sc_input_hover_accent input[type="number"]:focus,.scheme_original .sc_input_hover_accent input[type="email"]:focus,.scheme_original .sc_input_hover_accent input[type="password"]:focus,.scheme_original .sc_input_hover_accent input[type="search"]:focus,.scheme_original .sc_input_hover_accent select:focus,.scheme_original .sc_input_hover_accent textarea:focus{box-shadow:0px 0px 0px 2px #11224d}.scheme_original .sc_input_hover_accent input[type="text"] + label:before,.scheme_original .sc_input_hover_accent input[type="number"] + label:before,.scheme_original .sc_input_hover_accent input[type="email"] + label:before,.scheme_original .sc_input_hover_accent input[type="password"] + label:before,.scheme_original .sc_input_hover_accent input[type="search"] + label:before,.scheme_original .sc_input_hover_accent select + label:before,.scheme_original .sc_input_hover_accent textarea + label:before{color:rgba(17,34,77,0.6)}.scheme_original .sc_input_hover_path input[type="text"] + label>.sc_form_graphic,.scheme_original .sc_input_hover_path input[type="number"] + label>.sc_form_graphic,.scheme_original .sc_input_hover_path input[type="email"] + label>.sc_form_graphic,.scheme_original .sc_input_hover_path input[type="password"] + label>.sc_form_graphic,.scheme_original .sc_input_hover_path input[type="search"] + label>.sc_form_graphic,.scheme_original .sc_input_hover_path textarea + label>.sc_form_graphic{stroke:#0a1a41}.scheme_original .sc_input_hover_jump .sc_form_label_content:before{color:#ffffff}.scheme_original .sc_input_hover_jump input[type="text"],.scheme_original .sc_input_hover_jump input[type="number"],.scheme_original .sc_input_hover_jump input[type="email"],.scheme_original .sc_input_hover_jump input[type="password"],.scheme_original .sc_input_hover_jump input[type="search"],.scheme_original .sc_input_hover_jump textarea{border-color:#0a1a41}.scheme_original .sc_input_hover_jump input[type="text"]:focus,.scheme_original .sc_input_hover_jump input[type="number"]:focus,.scheme_original .sc_input_hover_jump input[type="email"]:focus,.scheme_original .sc_input_hover_jump input[type="password"]:focus,.scheme_original .sc_input_hover_jump input[type="search"]:focus,.scheme_original .sc_input_hover_jump textarea:focus,.scheme_original .sc_input_hover_jump input[type="text"].filled,.scheme_original .sc_input_hover_jump input[type="number"].filled,.scheme_original .sc_input_hover_jump input[type="email"].filled,.scheme_original .sc_input_hover_jump input[type="password"].filled,.scheme_original .sc_input_hover_jump input[type="search"].filled,.scheme_original .sc_input_hover_jump textarea.filled{border-color:#11224d}.scheme_original .sc_input_hover_underline input[type="text"] + label:before,.scheme_original .sc_input_hover_underline input[type="number"] + label:before,.scheme_original .sc_input_hover_underline input[type="email"] + label:before,.scheme_original .sc_input_hover_underline input[type="password"] + label:before,.scheme_original .sc_input_hover_underline input[type="search"] + label:before,.scheme_original .sc_input_hover_underline textarea + label:before{background-color:#0a1a41}.scheme_original .sc_input_hover_jump input[type="text"]:focus + label:before,.scheme_original .sc_input_hover_jump input[type="number"]:focus + label:before,.scheme_original .sc_input_hover_jump input[type="email"]:focus + label:before,.scheme_original .sc_input_hover_jump input[type="password"]:focus + label:before,.scheme_original .sc_input_hover_jump input[type="search"]:focus + label:before,.scheme_original .sc_input_hover_jump textarea:focus + label:before,.scheme_original .sc_input_hover_jump input[type="text"].filled + label:before,.scheme_original .sc_input_hover_jump input[type="number"].filled + label:before,.scheme_original .sc_input_hover_jump input[type="email"].filled + label:before,.scheme_original .sc_input_hover_jump input[type="password"].filled + label:before,.scheme_original .sc_input_hover_jump input[type="search"].filled + label:before,.scheme_original .sc_input_hover_jump textarea.filled + label:before{background-color:#bbbbbb}.scheme_original .sc_input_hover_underline input[type="text"] + label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="number"] + label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="email"] + label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="password"] + label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="search"] + label>.sc_form_label_content,.scheme_original .sc_input_hover_underline textarea + label>.sc_form_label_content{color:#8a8a8a}.scheme_original .sc_input_hover_underline input[type="text"]:focus + label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="number"]:focus + label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="email"]:focus + label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="password"]:focus + label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="search"]:focus + label>.sc_form_label_content,.scheme_original .sc_input_hover_underline textarea:focus + label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="text"].filled + label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="number"].filled + label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="email"].filled + label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="password"].filled + label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="search"].filled + label>.sc_form_label_content,.scheme_original .sc_input_hover_underline textarea.filled + label>.sc_form_label_content{color:#020817}.scheme_original .sc_input_hover_iconed input[type="text"] + label,.scheme_original .sc_input_hover_iconed input[type="number"] + label,.scheme_original .sc_input_hover_iconed input[type="email"] + label,.scheme_original .sc_input_hover_iconed input[type="password"] + label,.scheme_original .sc_input_hover_iconed input[type="search"] + label,.scheme_original .sc_input_hover_iconed textarea + label{color:#8a8a8a}.scheme_original .sc_input_hover_iconed input[type="text"]:focus + label,.scheme_original .sc_input_hover_iconed input[type="number"]:focus + label,.scheme_original .sc_input_hover_iconed input[type="email"]:focus + label,.scheme_original .sc_input_hover_iconed input[type="password"]:focus + label,.scheme_original .sc_input_hover_iconed input[type="search"]:focus + label,.scheme_original .sc_input_hover_iconed textarea:focus + label,.scheme_original .sc_input_hover_iconed input[type="text"].filled + label,.scheme_original .sc_input_hover_iconed input[type="number"].filled + label,.scheme_original .sc_input_hover_iconed input[type="email"].filled + label,.scheme_original .sc_input_hover_iconed input[type="password"].filled + label,.scheme_original .sc_input_hover_iconed input[type="search"].filled + label,.scheme_original .sc_input_hover_iconed textarea.filled + label{color:#8a8a8a} .scheme_original .body_wrap{color:#656c77}.scheme_original .body_style_boxed .body_wrap{background-color:#ffffff}.scheme_original body:not(.video_bg_show),.scheme_original body:not(.video_bg_show) .page_wrap,.scheme_original .copy_wrap,.scheme_original .sidebar_cart,.scheme_original .widget_area_inner,.scheme_original #page_preloader{background-color:#ffffff}.scheme_original .widget_area_inner{background-color:#f0f4f9}.scheme_original .footer_wrap_inner.widget_area_inner{background-color:#ffffff}.scheme_original .widget_rss .widget_title a{color:#0a1f54}.scheme_original .widget_rss .widget_title a:hover{color:#009FE3}.scheme_original .footer_wrap_inner .widget_rss .widget_title a,.scheme_original .footer_wrap_inner .widget_rss .rsswidget,.scheme_original .footer_wrap_inner .widget_rss .rss-date,.scheme_original .footer_wrap_inner .widget_rss .rssSummary{color:#11224d}.scheme_original .footer_wrap_inner .widget_rss .widget_title a:hover,.scheme_original .footer_wrap_inner .widget_rss a.rsswidget:hover{color:#009FE3}.scheme_original .article_style_boxed .content>article>.post_content,.scheme_original .article_style_boxed[class*="single-"] .content>.comments_wrap,.scheme_original .article_style_boxed[class*="single-"] .content>article>.post_info_share,.scheme_original .article_style_boxed:not(.layout_excerpt):not(.single) .content .post_item{background-color:#f0f4f9}.scheme_original .top_panel_wrap_inner{background-color:#ffffff}.scheme_original .top_panel_fixed .top_panel_position_over.top_panel_wrap_inner{background-color:#f0f4f9 !important}.scheme_original .top_panel_inner_style_3 .top_panel_cart_button,.scheme_original .top_panel_inner_style_4 .top_panel_cart_button{background-color:rgba(0,159,227,0.2)}.scheme_original .top_panel_style_8 .top_panel_buttons .top_panel_cart_button:before{background-color:#11224d}.scheme_original .top_panel_style_8 .top_panel_buttons .top_panel_cart_button:after{color:#ffffff}.scheme_original .top_panel_middle .sidebar_cart:after,.scheme_original .top_panel_middle .sidebar_cart{border-color:#dfe5ea;	background-color:#ffffff}.scheme_original .top_panel_inner_style_3 .top_panel_top,.scheme_original .top_panel_inner_style_4 .top_panel_top,.scheme_original .top_panel_inner_style_5 .top_panel_top,.scheme_original .top_panel_inner_style_3 .top_panel_top .sidebar_cart,.scheme_original .top_panel_inner_style_4 .top_panel_top .sidebar_cart{color:#ffffff;	background-color:#11224d}.scheme_original .top_panel_top a{color:#656c77}.scheme_original .top_panel_top a:hover{color:#009FE3}.scheme_original .top_panel_inner_style_3 .top_panel_top strong,.scheme_original .top_panel_inner_style_3 .top_panel_top a,.scheme_original .top_panel_inner_style_3 .sc_socials.sc_socials_type_icons a,.scheme_original .top_panel_inner_style_4 .top_panel_top a,.scheme_original .top_panel_inner_style_4 .sc_socials.sc_socials_type_icons a,.scheme_original .top_panel_inner_style_5 .top_panel_top a,.scheme_original .top_panel_inner_style_5 .sc_socials.sc_socials_type_icons a{color:#ffffff}.scheme_original .top_panel_inner_style_3 .top_panel_top a:hover,.scheme_original .top_panel_inner_style_3 .sc_socials.sc_socials_type_icons a:hover,.scheme_original .top_panel_inner_style_4 .top_panel_top a:hover,.scheme_original .top_panel_inner_style_4 .sc_socials.sc_socials_type_icons a:hover,.scheme_original .top_panel_inner_style_5 .top_panel_top a:hover,.scheme_original .top_panel_inner_style_5 .sc_socials.sc_socials_type_icons a:hover{color:#ffffff}.scheme_original .top_panel_inner_style_3 .search_results .post_info a>span,.scheme_original .top_panel_inner_style_3 .search_results .post_info a[class*="icon-"]{color:#ffffff}.scheme_original .top_panel_inner_style_3 .search_results .post_info a[class*="icon-"]:hover{color:#ffffff}.scheme_original .top_panel_wrap .contact_label{color:#009FE3}.scheme_original .top_panel_bottom .search_wrap .search_form button:before{color:#009FE3}.scheme_original .top_panel_bottom .search_wrap .search_form button:hover:before{color:#009FE3}.scheme_original .menu_user_nav>li>a{color:#656c77}.scheme_original .menu_user_nav>li>a:hover{color:#009FE3}.scheme_original .top_panel_inner_style_3 .menu_user_nav>li>a,.scheme_original .top_panel_inner_style_4 .menu_user_nav>li>a,.scheme_original .top_panel_inner_style_5 .menu_user_nav>li>a{color:#ffffff}.scheme_original .top_panel_inner_style_3 .menu_user_nav>li>a:hover,.scheme_original .top_panel_inner_style_4 .menu_user_nav>li>a:hover,.scheme_original .top_panel_inner_style_5 .menu_user_nav>li>a:hover{color:#ffffff}.scheme_original .menu_user_nav>li ul:not(.cart_list){border-color:#dfe5ea;	background-color:#ffffff}.scheme_original .top_panel_inner_style_1 .menu_user_nav>li>ul:after,.scheme_original .top_panel_inner_style_2 .menu_user_nav>li>ul:after{border-color:#dfe5ea;	background-color:#ffffff}.scheme_original .top_panel_inner_style_3 .menu_user_nav>li>ul:after,.scheme_original .top_panel_inner_style_4 .menu_user_nav>li>ul:after,.scheme_original .top_panel_inner_style_5 .menu_user_nav>li>ul:after,.scheme_original .top_panel_inner_style_3 .menu_user_nav>li ul,.scheme_original .top_panel_inner_style_4 .menu_user_nav>li ul,.scheme_original .top_panel_inner_style_5 .menu_user_nav>li ul{color:#ffffff;	background-color:#11224d;	border-color:#009FE3}.scheme_original .menu_user_nav>li ul li a{color:#8a8a8a}.scheme_original .menu_user_nav>li ul li a:hover,.scheme_original .menu_user_nav>li ul li.current-menu-item>a,.scheme_original .menu_user_nav>li ul li.current-menu-ancestor>a{color:#232a34;	background-color:#f0f0f0}.scheme_original .top_panel_inner_style_3 .menu_user_nav>li ul li a:hover,.scheme_original .top_panel_inner_style_3 .menu_user_nav>li ul li.current-menu-item>a,.scheme_original .top_panel_inner_style_3 .menu_user_nav>li ul li.current-menu-ancestor>a,.scheme_original .top_panel_inner_style_4 .menu_user_nav>li ul li a:hover,.scheme_original .top_panel_inner_style_4 .menu_user_nav>li ul li.current-menu-item>a,.scheme_original .top_panel_inner_style_4 .menu_user_nav>li ul li.current-menu-ancestor>a,.scheme_original .top_panel_inner_style_5 .menu_user_nav>li ul li a:hover,.scheme_original .top_panel_inner_style_5 .menu_user_nav>li ul li.current-menu-item>a,.scheme_original .top_panel_inner_style_5 .menu_user_nav>li ul li.current-menu-ancestor>a{background-color:#009FE3}.scheme_original .menu_user_nav>li.menu_user_controls .user_avatar{border-color:#dfe5ea}.scheme_original .top_panel_inner_style_3 .menu_user_nav>li.menu_user_controls .user_avatar,.scheme_original .top_panel_inner_style_4 .menu_user_nav>li.menu_user_controls .user_avatar,.scheme_original .top_panel_inner_style_5 .menu_user_nav>li.menu_user_controls .user_avatar{border-color:#ffffff}.scheme_original .menu_user_nav>li.menu_user_bookmarks .bookmarks_add{border-bottom-color:#dddddd}.scheme_original .logo .logo_text{color:#0a1f54}.scheme_original .logo .logo_slogan{color:#656c77} .scheme_original .top_panel_image_hover{background-color:rgba(0,159,227,0.8)}.scheme_original .top_panel_image_header,.scheme_original .top_panel_image_title,.scheme_original .top_panel_over:not(.top_panel_fixed) .top_panel_style_7 .logo_text,.scheme_original .top_panel_over:not(.top_panel_fixed) .top_panel_style_7 .logo_slogan{color:#ffffff}.scheme_original .top_panel_image_header a,.scheme_original .top_panel_image_title>a,.scheme_original .top_panel_over:not(.top_panel_fixed) .top_panel_style_7 .menu_main_nav>li>a{color:#ffffff}.scheme_original .post_featured .post_header a:hover,.scheme_original .top_panel_over:not(.top_panel_fixed) .top_panel_style_7 .menu_main_nav>li>a:hover{color:#ffffff}.scheme_original .menu_main_nav>li>a{color:#0a1f54}.scheme_original .menu_main_nav>li ul{color:#ffffff;	background-color:#009FE3}.scheme_original .menu_main_nav>a:hover,.scheme_original .menu_main_nav>li>a:hover,.scheme_original .menu_main_nav>li.sfHover>a,.scheme_original .menu_main_nav>li.current-menu-item>a,.scheme_original .menu_main_nav>li.current-menu-parent>a,.scheme_original .menu_main_nav>li.current-menu-ancestor>a{border-color:#009FE3;	color:#009FE3}.scheme_original .menu_main_nav>li ul li a{color:#ffffff}.scheme_original .menu_main_nav>li ul li a:hover,.scheme_original .menu_main_nav>li ul li.current-menu-item>a,.scheme_original .menu_main_nav>li ul li.current-menu-ancestor>a{color:#0a1f54}.scheme_original .menu_hover_slide_box .menu_main_nav>li#blob{background-color:#f0f0f0}.scheme_original .top_panel_inner_style_1 .menu_hover_slide_box .menu_main_nav>li#blob,.scheme_original .top_panel_inner_style_2 .menu_hover_slide_box .menu_main_nav>li#blob{background-color:#009FE3}.scheme_original .menu_hover_slide_line .menu_main_nav>li#blob{background-color:#0071c3}.scheme_original .top_panel_inner_style_1 .menu_hover_slide_line .menu_main_nav>li#blob,.scheme_original .top_panel_inner_style_2 .menu_hover_slide_line .menu_main_nav>li#blob{background-color:#ffffff}.scheme_original .menu_hover_zoom_line .menu_main_nav>li>a:before{background-color:#0071c3}.scheme_original .top_panel_inner_style_1 .menu_hover_zoom_line .menu_main_nav>li>a:before,.scheme_original .top_panel_inner_style_2 .menu_hover_zoom_line .menu_main_nav>li>a:before{background-color:#ffffff}.scheme_original .menu_hover_path_line .menu_main_nav>li:before,.scheme_original .menu_hover_path_line .menu_main_nav>li:after,.scheme_original .menu_hover_path_line .menu_main_nav>li>a:before,.scheme_original .menu_hover_path_line .menu_main_nav>li>a:after{background-color:#0071c3}.scheme_original .top_panel_inner_style_1 .menu_hover_path_line .menu_main_nav>li:before,.scheme_original .top_panel_inner_style_1 .menu_hover_path_line .menu_main_nav>li:after,.scheme_original .top_panel_inner_style_1 .menu_hover_path_line .menu_main_nav>li>a:before,.scheme_original .top_panel_inner_style_1 .menu_hover_path_line .menu_main_nav>li>a:after,.scheme_original .top_panel_inner_style_2 .menu_hover_path_line .menu_main_nav>li:before,.scheme_original .top_panel_inner_style_2 .menu_hover_path_line .menu_main_nav>li:after,.scheme_original .top_panel_inner_style_2 .menu_hover_path_line .menu_main_nav>li>a:before,.scheme_original .top_panel_inner_style_2 .menu_hover_path_line .menu_main_nav>li>a:after{background-color:#ffffff}.scheme_original .menu_hover_roll_down .menu_main_nav>li>a:before{background-color:#0071c3}.scheme_original .top_panel_inner_style_1 .menu_hover_roll_down .menu_main_nav>li>a:before,.scheme_original .top_panel_inner_style_2 .menu_hover_roll_down .menu_main_nav>li>a:before{background-color:#ffffff}.scheme_original .menu_hover_color_line .menu_main_nav>li>a:hover,.scheme_original .menu_hover_color_line .menu_main_nav>li>a:focus{color:#232a34}.scheme_original .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li>a:hover,.scheme_original .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li>a:focus,.scheme_original .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li>a:hover,.scheme_original .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li>a:focus{color:#ffffff}.scheme_original .menu_hover_color_line .menu_main_nav>li>a:before{background-color:#232a34}.scheme_original .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li>a:before,.scheme_original .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li>a:before{background-color:#ffffff}.scheme_original .menu_hover_color_line .menu_main_nav>li>a:after{background-color:#0071c3}.scheme_original .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li>a:after,.scheme_original .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li>a:after{background-color:#ffffff}.scheme_original .menu_hover_color_line .menu_main_nav>li.sfHover>a,.scheme_original .menu_hover_color_line .menu_main_nav>li>a:hover,.scheme_original .menu_hover_color_line .menu_main_nav>li>a:focus{color:#0071c3}.scheme_original .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li.sfHover>a,.scheme_original .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li>a:hover,.scheme_original .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li>a:focus,.scheme_original .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li.sfHover>a,.scheme_original .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li>a:hover,.scheme_original .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li>a:focus{color:#ffffff}.scheme_original .top_panel_middle .contact_field,.scheme_original .top_panel_middle .contact_field>a{color:#0a1f54}.scheme_original .top_panel_middle .contact_icon{color:rgba(157,170,176,0.6)}.scheme_original .top_panel_middle .content_wrap>.columns_wrap{border-color:#dddddd}.scheme_original .top_panel_inner_style_1 .search_field,.scheme_original .top_panel_inner_style_2 .search_field,.scheme_original .top_panel_inner_style_3 .search_field{border-color:rgba(255,255,255,0.1);	background-color:rgba(0,159,227,0.2)}.scheme_original .top_panel_inner_style_4 .search_field{background-color:rgba(10,31,84,0.05)}.scheme_original .content .search_field{background-color:#f0f4f9}.scheme_original .content .search_field,.scheme_original .content .search_submit{color:#8a8a8a}.scheme_original .content .search_submit:before{color:#ffffff}.scheme_original .content .search_field:focus,.scheme_original .content .search_submit:hover{color:#232a34}.scheme_original .top_panel_inner_style_1 .search_field,.scheme_original .top_panel_inner_style_1 .search_submit,.scheme_original .top_panel_inner_style_2 .search_field,.scheme_original .top_panel_inner_style_2 .search_submit,.scheme_original .top_panel_inner_style_4 .search_field,.scheme_original .top_panel_inner_style_4 .search_submit{color:#0a1f54}.scheme_original .top_panel_inner_style_3 .search_field,.scheme_original .top_panel_inner_style_3 .search_submit{color:#ffffff}.scheme_original .top_panel_inner_style_3 .search_field:focus,.scheme_original .top_panel_inner_style_3 .search_submit:focus,.scheme_original .top_panel_inner_style_3 .search_submit:hover{color:#ffffff}.scheme_original .top_panel_inner_style_8 .search_field:hover,.scheme_original .top_panel_inner_style_8 .search_field:focus{color:#232a34 !important;	background-color:#f0f0f0 !important}.scheme_original .top_panel_icon.search_wrap{background-color:#ffffff;	color:#11224d}.scheme_original .top_panel_icon .contact_icon,.scheme_original .top_panel_icon .search_submit{color:#11224d}.scheme_original .top_panel_icon.menu_main_cart .contact_icon{background-color:#ffffff}.scheme_original .top_panel_middle a:hover .contact_icon,.scheme_original .top_panel_icon.search_wrap:hover,.scheme_original .top_panel_icon:hover .contact_icon,.scheme_original .top_panel_icon:hover .search_submit{background-color:#11224d}.scheme_original .top_panel_middle a:hover .contact_icon,.scheme_original .top_panel_icon.search_wrap:hover input,.scheme_original .top_panel_icon.search_wrap:hover button,.scheme_original .top_panel_icon:hover .contact_icon,.scheme_original .top_panel_icon:hover .search_submit{color:#ffffff}.scheme_original .search_style_fullscreen.search_state_closed:not(.top_panel_icon) .search_submit,.scheme_original .search_style_slide.search_state_closed:not(.top_panel_icon) .search_submit{color:#ffffff}.scheme_original .search_style_expand.search_state_opened:not(.top_panel_icon) .search_submit:hover,.scheme_original .search_style_slide.search_state_opened:not(.top_panel_icon) .search_submit:hover{color:#020817}.scheme_original .top_panel_inner_style_3 .search_style_expand.search_state_opened .search_submit:hover,.scheme_original .top_panel_inner_style_3 .search_style_slide.search_state_opened .search_submit:hover{color:#ffffff}.scheme_original .search_style_slide.search_state_opened:not(.top_panel_icon) .search_form_wrap{top:0.8em}.scheme_original .search_results .post_more,.scheme_original .search_results .search_results_close{color:#11224d}.scheme_original .search_results .post_more:hover,.scheme_original .search_results .search_results_close:hover{color:#009FE3}.scheme_original .top_panel_inner_style_1 .search_results,.scheme_original .top_panel_inner_style_1 .search_results:after,.scheme_original .top_panel_inner_style_2 .search_results,.scheme_original .top_panel_inner_style_2 .search_results:after,.scheme_original .top_panel_inner_style_3 .search_results,.scheme_original .top_panel_inner_style_3 .search_results:after{color:#ffffff;	background-color:#11224d; border-color:#009FE3}.scheme_original .top_panel_inner_style_1 .search_results a,.scheme_original .top_panel_inner_style_1 .search_results .post_info a,.scheme_original .top_panel_inner_style_1 .search_results .post_info a>span,.scheme_original .top_panel_inner_style_1 .search_results .post_more,.scheme_original .top_panel_inner_style_1 .search_results .search_results_close,.scheme_original .top_panel_inner_style_2 .search_results a,.scheme_original .top_panel_inner_style_2 .search_results .post_info a,.scheme_original .top_panel_inner_style_2 .search_results .post_info a>span,.scheme_original .top_panel_inner_style_2 .search_results .post_more,.scheme_original .top_panel_inner_style_2 .search_results .search_results_close,.scheme_original .top_panel_inner_style_3 .search_results a,.scheme_original .top_panel_inner_style_3 .search_results .post_info a,.scheme_original .top_panel_inner_style_3 .search_results .post_info a>span,.scheme_original .top_panel_inner_style_3 .search_results .post_more,.scheme_original .top_panel_inner_style_3 .search_results .search_results_close{color:#ffffff}.scheme_original .top_panel_inner_style_1 .search_results a:hover,.scheme_original .top_panel_inner_style_1 .search_results .post_info a:hover,.scheme_original .top_panel_inner_style_1 .search_results .post_info a:hover>span,.scheme_original .top_panel_inner_style_1 .search_results .post_more:hover,.scheme_original .top_panel_inner_style_1 .search_results .search_results_close:hover,.scheme_original .top_panel_inner_style_2 .search_results a:hover,.scheme_original .top_panel_inner_style_2 .search_results .post_info a:hover,.scheme_original .top_panel_inner_style_2 .search_results .post_info a:hover>span,.scheme_original .top_panel_inner_style_2 .search_results .post_more:hover,.scheme_original .top_panel_inner_style_2 .search_results .search_results_close:hover,.scheme_original .top_panel_inner_style_3 .search_results a:hover,.scheme_original .top_panel_inner_style_3 .search_results .post_info a:hover,.scheme_original .top_panel_inner_style_3 .search_results .post_info a:hover>span,.scheme_original .top_panel_inner_style_3 .search_results .post_more:hover,.scheme_original .top_panel_inner_style_3 .search_results .search_results_close:hover{color:#ffffff}.scheme_original .top_panel_inner_style_8 .menu_pushy_wrap .menu_pushy_button{color:#8a8a8a}.scheme_original .top_panel_inner_style_8 .menu_pushy_wrap .menu_pushy_button:hover{color:#232a34}.scheme_original .top_panel_inner_style_8 .top_panel_buttons .contact_icon,.scheme_original .top_panel_inner_style_8 .top_panel_buttons .top_panel_icon .search_submit{color:#8a8a8a}.scheme_original .top_panel_inner_style_8 .top_panel_buttons a:hover .contact_icon,.scheme_original .top_panel_inner_style_8 .top_panel_buttons .top_panel_icon:hover .search_submit{color:#232a34}.scheme_original .pushy_inner{color:#656c77; background-color:#ffffff}.scheme_original .pushy_inner a{color:#11224d}.scheme_original .pushy_inner a:hover{color:#009FE3}.scheme_original .top_panel_inner_style_3 .popup_wrap a,.scheme_original .top_panel_inner_style_3 .popup_wrap .sc_socials.sc_socials_type_icons a:hover,.scheme_original .top_panel_inner_style_4 .popup_wrap a,.scheme_original .top_panel_inner_style_4 .popup_wrap .sc_socials.sc_socials_type_icons a:hover,.scheme_original .top_panel_inner_style_5 .popup_wrap a,.scheme_original .top_panel_inner_style_5 .popup_wrap .sc_socials.sc_socials_type_icons a:hover{color:#11224d}.scheme_original .top_panel_inner_style_3 .popup_wrap a:hover,.scheme_original .top_panel_inner_style_4 .popup_wrap a:hover,.scheme_original .top_panel_inner_style_5 .popup_wrap a:hover{color:#009FE3}.scheme_original .top_panel_inner_style_3 .popup_wrap,.scheme_original .top_panel_inner_style_4 .popup_wrap,.scheme_original .top_panel_inner_style_5 .popup_wrap,.scheme_original .top_panel_inner_style_3 .popup_wrap .popup_close,.scheme_original .top_panel_inner_style_3 .popup_wrap .sc_socials.sc_socials_type_icons a,.scheme_original .top_panel_inner_style_4 .popup_wrap .popup_close,.scheme_original .top_panel_inner_style_4 .popup_wrap .sc_socials.sc_socials_type_icons a,.scheme_original .top_panel_inner_style_5 .popup_wrap .popup_close,.scheme_original .top_panel_inner_style_5 .popup_wrap .sc_socials.sc_socials_type_icons a{color:#656c77}.scheme_original .top_panel_inner_style_3 .popup_wrap .popup_close:hover,.scheme_original .top_panel_inner_style_4 .popup_wrap .popup_close:hover,.scheme_original .top_panel_inner_style_5 .popup_wrap .popup_close:hover{color:#0a1f54}.scheme_original .header_mobile .menu_button,.scheme_original .header_mobile .menu_main_cart .top_panel_cart_button .contact_icon{color:#0a1f54}.scheme_original .header_mobile .side_wrap{color:#ffffff}.scheme_original .header_mobile .panel_top,.scheme_original .header_mobile .side_wrap{background-color:#11224d}.scheme_original .header_mobile .panel_middle{background-color:#11224d}.scheme_original .header_mobile .menu_button:hover,.scheme_original .header_mobile .menu_main_cart .top_panel_cart_button .contact_icon:hover,.scheme_original .header_mobile .menu_main_cart.top_panel_icon:hover .top_panel_cart_button .contact_icon,.scheme_original .header_mobile .side_wrap .close:hover{color:#11224d}.scheme_original .header_mobile .menu_main_nav>li a,.scheme_original .header_mobile .menu_main_nav>li>a:hover{color:#ffffff}.scheme_original .header_mobile .menu_main_nav>a:hover,.scheme_original .header_mobile .menu_main_nav>li.sfHover>a,.scheme_original .header_mobile .menu_main_nav>li.current-menu-item>a,.scheme_original .header_mobile .menu_main_nav>li.current-menu-parent>a,.scheme_original .header_mobile .menu_main_nav>li.current-menu-ancestor>a,.scheme_original .header_mobile .menu_main_nav>li>a:hover,.scheme_original .header_mobile .menu_main_nav>li ul li a:hover,.scheme_original .header_mobile .menu_main_nav>li ul li.current-menu-item>a,.scheme_original .header_mobile .menu_main_nav>li ul li.current-menu-ancestor>a,.scheme_original .header_mobile .login a:hover{color:#ffffff}.scheme_original .header_mobile .popup_wrap .popup_close:hover{color:#0a1f54}.scheme_original .header_mobile .search_wrap,.scheme_original .header_mobile .login{border-color:#11224d}.scheme_original .header_mobile .login .popup_link,.scheme_original .header_mobile .sc_socials.sc_socials_type_icons a{color:#ffffff}.scheme_original .header_mobile .search_wrap .search_field,.scheme_original .header_mobile .search_wrap .search_field:focus{color:#ffffff}.scheme_original .header_mobile .popup_wrap .sc_socials.sc_socials_type_icons a{color:#9daab0}.scheme_original .tparrows.default{color:#ffffff}.scheme_original .tp-bullets.simplebullets.round .bullet{background-color:#ffffff}.scheme_original .tp-bullets.simplebullets.round .bullet.selected{border-color:#ffffff}.scheme_original .slider_over_content_inner{background-color:rgba(255,255,255,0.8)}.scheme_original .slider_over_button{color:#0a1f54;	background-color:rgba(255,255,255,0.8)}.scheme_original .slider_over_close{color:#0a1f54}.scheme_original .sc_button.slider_button{background:#ffffff!important; color:#0a1f54!important}.scheme_original .sc_button.slider_button:hover{background:#0a1f54!important; color:#ffffff!important}.scheme_original .persephone.tparrows{border-color:rgba(255,255,255,0.3)!important}.scheme_original .persephone.tparrows:before{color:rgba(255,255,255,0.7)!important}.scheme_original .persephone.tparrows:hover{border-color:#009FE3!important}.scheme_original .persephone.tparrows:hover:before{color:#009FE3!important} .scheme_original .top_panel_title_inner{background-color:#f0f4f9;	border-color:rgba(221,221,221,0.1)}.scheme_original .top_panel_title_inner .page_title{color:#0a1f54}.scheme_original .top_panel_title_inner .post_navi .post_navi_item a,.scheme_original .top_panel_title_inner .breadcrumbs a.breadcrumbs_item{color:#232a34}.scheme_original .top_panel_title_inner .post_navi .post_navi_item a:hover,.scheme_original .top_panel_title_inner .breadcrumbs a.breadcrumbs_item:hover{color:#acb4b6}.scheme_original .top_panel_title_inner .post_navi span,.scheme_original .top_panel_title_inner .breadcrumbs span{color:#acb4b6}.scheme_original .post_navi .post_navi_item + .post_navi_item:before,.scheme_original .top_panel_title_inner .breadcrumbs .breadcrumbs_delimiter{color:#acb4b6}.scheme_original .post_title .post_icon{color:#11224d}.scheme_original .pagination>a{border-color:#11224d}.scheme_original .post_format_aside.post_item_single .post_content p,.scheme_original .post_format_aside .post_descr{border-color:#11224d;	background-color:#ffffff}.scheme_original .hover_icon:before{color:#ffffff;	background-color:#009FE3}.scheme_original .hover_icon:after{background-color:rgba(17,34,77,0.8)}.scheme_original .post_info a,.scheme_original .post_info a>span{color:#9daab0}.scheme_original .post_info a[class*="icon-"]{color:#11224d}.scheme_original .post_info a:hover,.scheme_original .post_info a:hover>span{color:#009FE3}.scheme_original .post_item .post_readmore_label{color:#0a1f54}.scheme_original .post_item .post_readmore:hover .post_readmore_label{color:#009FE3}.scheme_original .post_info .post_info_counters .post_counters_item:before,.scheme_original .post_info .post_info_posted:before{color:#009FE3}.scheme_original .post_info .post_info_posted_by:before,.scheme_original .post_info .post_info_tags:before{color:#9daab0}.scheme_original .post_info .post_info_posted_by,.scheme_original .post_info .post_info_tags{color:#9daab0}.scheme_original .post_info.post_info_bottom .post_info_tags a{background-color:#dfe5ea;	color:#656c77}.scheme_original .post_info.post_info_bottom .post_info_tags a:hover{color:#ffffff;	background-color:#009FE3}.scheme_original .post_info_bottom_cat_tag{border-color:#dfe5ea}.scheme_original .post_item_related .post_info a{color:#656c77}.scheme_original .post_item_related .post_info a:hover,.scheme_original .post_item_related .post_title a:hover{color:#009FE3}.scheme_original .article_style_boxed.sidebar_show[class*="single-"] .related_wrap .post_item_related{background-color:#f0f4f9}.scheme_original .post_item_related .post_content .post_content_wrap .post_title a{color:#0a1f54}.scheme_original .post_item_related .post_content .post_content_wrap .post_title a:hover{color:#009FE3}.scheme_original .post_item_related .post_content .post_featured + .post_content_wrap .post_title a{color:#ffffff}.scheme_original .post_item_related .post_content .post_featured + .post_content_wrap .post_title a:hover{color:#009FE3}.scheme_original .post_item_related .post_content .post_featured .hover_icon:after{background:-moz-linear-gradient(bottom,rgba(17,34,77,0.8) 0%,rgba(125,185,232,0) 100%); background:-webkit-linear-gradient(bottom,rgba(17,34,77,0.8) 0%,rgba(125,185,232,0) 100%); background:linear-gradient(to top,rgba(17,34,77,0.8) 0%,rgba(125,185,232,0) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799',endColorstr='#007db9e8',GradientType=0 ); }.scheme_original .single-post .related_wrap{border-color:#dfe5ea}.scheme_original .isotope_item_colored .post_featured .post_mark_new,.scheme_original .isotope_item_colored .post_featured .post_title,.scheme_original .isotope_item_colored .post_content.ih-item.square.colored .info{color:#ffffff;	background-color:#11224d}.scheme_original .isotope_item_colored .post_featured .post_title a{color:#ffffff}.scheme_original .isotope_item_colored .post_category a,.scheme_original .isotope_item_colored .post_rating .reviews_stars_bg,.scheme_original .isotope_item_colored .post_rating .reviews_stars_hover,.scheme_original .isotope_item_colored .post_rating .reviews_value{color:#11224d}.scheme_original .isotope_item_colored .post_featured .post_descr{background-color:#f0f4f9}.scheme_original .article_style_boxed .isotope_item_colored .post_featured .post_descr{background-color:#f0f4f9}.scheme_original .isotope_item_colored .post_info_wrap .post_button .sc_button{color:#11224d;	background-color:#ffffff}.scheme_original .isotope_item_colored_1 .post_item{background-color:#f0f4f9;	color:#8a8a8a}.scheme_original .isotope_item_colored_1 a,.scheme_original .isotope_item_colored_1 .post_title a{color:#009FE3}.scheme_original .isotope_item_colored_1 a:hover,.scheme_original .isotope_item_colored_1 .post_title a:hover,.scheme_original .isotope_item_colored_1 .post_category a:hover{color:#0071c3}.scheme_original .isotope_wrap .isotope_item_colored_1 .post_featured{border-color:#11224d}.scheme_original .isotope_filters a{border-color:#11224d;	background-color:#11224d;	color:#ffffff}.scheme_original .isotope_filters a.active,.scheme_original .isotope_filters a:hover{border-color:#009FE3;	background-color:#009FE3}.scheme_original .pagination_single>.pager_numbers,.scheme_original .pagination_single a,.scheme_original .pagination_single .current,.scheme_original .pagination_slider .pager_cur,.scheme_original .pagination_pages>a,.scheme_original .pagination_pages>span{background-color:#ffffff;	color:#009FE3;	border-color:#009FE3}.scheme_original .pagination_single>.pager_numbers,.scheme_original .pagination_single a:hover,.scheme_original .pagination_single .current,.scheme_original .pagination_slider .pager_cur:hover,.scheme_original .pagination_slider .pager_cur:focus,.scheme_original .pagination_pages>.active,.scheme_original .pagination_pages>a:hover{border-color:#009FE3;	background-color:#009FE3;	color:#ffffff}.scheme_original .pagination_slider .pager_slider{border-color:#dfe5ea;	background-color:#ffffff}.scheme_original .pagination_wrap .pager_next,.scheme_original .pagination_wrap .pager_prev,.scheme_original .pagination_wrap .pager_last,.scheme_original .pagination_wrap .pager_first{color:#11224d}.scheme_original .pagination_wrap .pager_next:hover,.scheme_original .pagination_wrap .pager_prev:hover,.scheme_original .pagination_wrap .pager_last:hover,.scheme_original .pagination_wrap .pager_first:hover{color:#009FE3}.scheme_original .pagination_viewmore>a{color:#ffffff;	background-color:#11224d}.scheme_original .pagination_viewmore>a:hover{color:#ffffff;	background-color:#009FE3}.scheme_original .viewmore_loader,.scheme_original .mfp-preloader span,.scheme_original .sc_video_frame.sc_video_active:before{background-color:#009FE3}.scheme_original .post_featured .post_nav_item{color:#ffffff}.scheme_original .post_featured .post_nav_item:before{background-color:#11224d;	color:#ffffff}.scheme_original .post_featured .post_nav_item .post_nav_info{background-color:#11224d}.scheme_original .reviews_block .reviews_summary .reviews_item{background-color:#11224d}.scheme_original .reviews_block .reviews_summary,.scheme_original .reviews_block .reviews_max_level_100 .reviews_stars_bg{background-color:#f0f0f0}.scheme_original .reviews_block .reviews_max_level_100 .reviews_stars_hover,.scheme_original .reviews_block .reviews_item .reviews_slider{color:#ffffff;	background-color:#11224d}.scheme_original .reviews_block .reviews_item .reviews_stars_hover{color:#11224d}.scheme_original .reviews_block .reviews_value{color:#0a1f54}.scheme_original .reviews_block .reviews_summary .reviews_criteria{color:#656c77}.scheme_original .reviews_block .reviews_summary .reviews_value{color:#ffffff} .scheme_original .post_item .post_rating .reviews_stars_bg,.scheme_original .post_item .post_rating .reviews_stars_hover,.scheme_original .post_item .post_rating .reviews_value{color:#11224d}.scheme_original .post_author{background-color:#f0f4f9;	color:#232a34}.scheme_original .post_author .post_author_title{color:#232a34}.scheme_original .post_author .post_author_title a{color:#11224d}.scheme_original .post_author .post_author_title a:hover{color:#009FE3}.scheme_original .post_author .post_author_info .sc_socials_shape_square a{color:#232a34}.scheme_original .post_author .post_author_info .sc_socials_shape_square a:hover{color:#009FE3}.scheme_original .post_author_inner{border-color:#dfe5ea}.scheme_original .comments_list_wrap ul.children,.scheme_original .comments_list_wrap ul>li + li{border-top-color:#9daab0}.scheme_original .comments_list_wrap .comment-respond{border-bottom-color:#11224d}.scheme_original .comments_list_wrap>ul{border-bottom-color:#dfe5ea}.scheme_original .comments_list_wrap .comment_info>.comment_date>.comment_date_value,.scheme_original .comments_list_wrap .comment_info .comment_date + span:before,.scheme_original .comments_list_wrap .comment_time{color:#9daab0}.scheme_original .comments_list_wrap .comment_author{color:#0a1f54}.scheme_original .comments_list_wrap .comment_reply a{color:#009FE3}.scheme_original .comments_list_wrap .comment_reply a:hover{color:#0071c3}.scheme_original .post_item_404 .page_title,.scheme_original .post_item_404 .page_subtitle,.scheme_original .post_item_404 .page_search .search_wrap .search_submit:before{color:#0a1f54}.scheme_original .post_item_404 .page_search .search_wrap .search_submit:hover:before{color:#009FE3}.scheme_original .sidebar_outer_menu .menu_side_nav li>a,.scheme_original .sidebar_outer_menu .menu_side_responsive li>a{color:#0a1f54}.scheme_original .sidebar_outer_menu .menu_side_nav li>a:hover,.scheme_original .sidebar_outer_menu .menu_side_nav li.sfHover>a,.scheme_original .sidebar_outer_menu .menu_side_responsive li>a:hover,.scheme_original .sidebar_outer_menu .menu_side_responsive li.sfHover>a{color:#232a34;	background-color:#f0f0f0}.scheme_original .sidebar_outer_menu .menu_side_nav>li ul,.scheme_original .sidebar_outer_menu .menu_side_responsive>li ul{color:#0a1f54;	background-color:#ffffff;	border-color:#dfe5ea}.scheme_original .sidebar_outer_menu .menu_side_nav li.current-menu-item>a,.scheme_original .sidebar_outer_menu .menu_side_nav li.current-menu-parent>a,.scheme_original .sidebar_outer_menu .menu_side_nav li.current-menu-ancestor>a,.scheme_original .sidebar_outer_menu .menu_side_responsive li.current-menu-item>a,.scheme_original .sidebar_outer_menu .menu_side_responsive li.current-menu-parent>a,.scheme_original .sidebar_outer_menu .menu_side_responsive li.current-menu-ancestor>a{color:#9daab0}.scheme_original .sidebar_outer_menu .sidebar_outer_menu_buttons>a{color:#0a1f54}.scheme_original .sidebar_outer_menu .sidebar_outer_menu_buttons>a:hover{color:#11224d}.scheme_original .sidebar_inner aside:nth-child(3n+4),.scheme_original .sidebar_inner aside:nth-child(3n+5),.scheme_original .sidebar_inner aside:nth-child(3n+6),.scheme_original .sidebar_outer_inner aside:nth-child(3n+4),.scheme_original .sidebar_outer_inner aside:nth-child(3n+5),.scheme_original .sidebar_outer_inner aside:nth-child(3n+6),.scheme_original .widget_area_inner aside:nth-child(2n+3),.scheme_original .widget_area_inner aside:nth-child(2n+4),.scheme_original .widget_area_inner aside+aside{border-color:#dfe5ea}.scheme_original .widget_area_inner{color:#656c77}.scheme_original .widget_area_inner a,.scheme_original .widget_area_inner ul li:before,.scheme_original .widget_area_inner ul li a:hover,.scheme_original .widget_area_inner button:before{color:#656c77}.scheme_original .widget_area_inner button:before,.scheme_original .widget_area_inner ul li:before{color:#009FE3}.scheme_original .widget_area_inner a:hover,.scheme_original .widget_area_inner ul li a,.scheme_original .widget_area_inner button:hover:before{color:#11224d}.scheme_original .widget_area_inner ul li a:hover{color:#009FE3}.scheme_original .widget_area_inner .post_title a{color:#0a1f54}.scheme_original .widget_area_inner .widget_text a:not(.sc_button),.scheme_original .widget_area_inner .post_info a{color:#11224d}.scheme_original .widget_area_inner .widget_text a:not(.sc_button):hover,.scheme_original .widget_area_inner .post_info a:hover{color:#009FE3} .scheme_original .widget_area_inner .widget_product_search .search_form,.scheme_original .widget_area_inner .widget_search .search_form,.scheme_original .widget_area_inner .widget_categories select,.scheme_original .widget_area_inner .widget_text select,.scheme_original .widget_area_inner .widget_archive select{background-color:#ffffff}.scheme_original .footer_wrap_inner.widget_area_inner .widget_search .search_form,.scheme_original .footer_wrap_inner.widget_area_inner .widget_archive select,.scheme_original .footer_wrap_inner.widget_area_inner .widget_text select,.scheme_original .footer_wrap_inner.widget_area_inner .widget_categories select{background-color:#f0f4f9}.scheme_original .widget_area_inner .widget_product_search .search_field,.scheme_original .widget_area_inner .widget_search .search_field{color:#8a8a8a}.scheme_original .widget_area_inner .widget_product_search .search_button:before,.scheme_original .widget_area_inner .widget_search .search_button:before{color:#9daab0}.scheme_original .widget_area_inner .widget_product_search .search_button,.scheme_original .widget_area_inner .widget_search .search_button{color:#656c77}.scheme_original .widget_area_inner .widget_product_search .search_button:hover,.scheme_original .widget_area_inner .widget_search .search_button:hover{color:#232a34} .scheme_original .widget_area_inner .widget_calendar .weekday{color:#0a1f54}.scheme_original .widget_area_inner .widget_calendar td a:hover{background-color:#009FE3;	color:#ffffff}.scheme_original .wp-block-calendar .today .day_wrap,.scheme_original .widget_area_inner .widget_calendar .today .day_wrap{color:#ffffff}.scheme_original .wp-block-calendar .today .day_wrap:before,.scheme_original .widget_area_inner .widget_calendar .today .day_wrap:before{background-color:#009FE3}.scheme_original .widget_area .widget_calendar td a:after{color:#009FE3}.scheme_original .widget_area .widget_calendar th.month_prev a,.scheme_original .widget_area .widget_calendar th.month_next a{color:#009FE3}.scheme_original .widget_area .widget_calendar th.month_prev a:hover,.scheme_original .widget_area .widget_calendar th.month_next a:hover{color:#0071c3}.scheme_original .widget_area .widget_calendar .month_cur{color:#009FE3}.scheme_original .widget_area .widget_calendar td{color:#656c77}.scheme_original .widget_area .widget_calendar .weekday{color:#0a1f54} .scheme_original .widget_area .widget_recent_comments ul li .comment-author-link{color:#11224d}.scheme_original .footer_wrap.widget_area .widget_recent_comments ul li .comment-author-link{color:#ffffff}.scheme_original .footer_wrap.widget_area .widget_rss cite{color:#ffffff} .scheme_original .wp-block-tag-cloud a,.scheme_original .widget_area_inner .widget_product_tag_cloud a,.scheme_original .widget_area_inner .widget_tag_cloud a{background-color:#dfe5ea;	color:#656c77}.scheme_original .wp-block-tag-cloud a:not([class*="sc_button_hover_"]):hover,.scheme_original .widget_area_inner .widget_product_tag_cloud a:not([class*="sc_button_hover_"]):hover,.scheme_original .widget_area_inner .widget_tag_cloud a:not([class*="sc_button_hover_"]):hover{color:#ffffff;	background-color:#009FE3} .scheme_original .widget_text .mail_footer,.scheme_original .widget_text .address_footer,.scheme_original .widget_text .mail_footer:before,.scheme_original .widget_text .address_footer:before{color:#009FE3}.scheme_original .widget_text .textwidget h5{color:#ffffff}.scheme_original .sidebar_outer_inner aside,.scheme_original .sidebar_inner aside{border-top-color:#dfe5ea}.scheme_original .pre_footer_wrap{background-color:#0a1a41}.scheme_original .pre_footer_wrap a{color:#ffffff}.scheme_original gi.pre_footer_wrap a:hover{color:#009FE3}.scheme_original .footer_wrap_inner.widget_area_inner .content_wrap{border-color:rgba(255,255,255,0.1)}.scheme_original .contacts_wrap_inner{color:#656c77;	background-color:#ffffff}.scheme_original .testimonials_wrap_inner,.scheme_original .twitter_wrap_inner{color:#656c77;	background-color:#ffffff}.scheme_original .copyright_wrap_inner{background-color:#ffffff}.scheme_original .copyright_wrap_inner .copyright_text{color:#8a8a8a}.scheme_original .copyright_wrap_inner .menu_footer_nav li a{color:#656c77}.scheme_original .copyright_wrap_inner .menu_footer_nav li a:hover{color:#11224d}.scheme_original .scroll_to_top{background:#0071c3; 	background:-moz-linear-gradient(left,#0071c3 9%,#009FE3 55%); 	background:-webkit-linear-gradient(left,#0071c3 9%,#009FE3 55%); 	background:linear-gradient(to right,#0071c3 9%,#009FE3 55%); 	filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071c3',endColorstr='#009FE3',GradientType=1 );  background-size:200%; background-position:0; color:#ffffff}.scheme_original .scroll_to_top:hover{color:#ffffff}.scheme_original #page_preloader{background-color:#ffffff}.scheme_original .preloader_wrap>div{background-color:#11224d}.scheme_original.gallery_preview:before{background-color:#ffffff}.scheme_original .popup_wrap{background-color:#ffffff}.scheme_original .woocommerce .woocommerce-message:before,.scheme_original .woocommerce-page .woocommerce-message:before,.scheme_original .woocommerce div.product span.price,.scheme_original .woocommerce div.product p.price,.scheme_original .woocommerce #content div.product span.price,.scheme_original .woocommerce #content div.product p.price,.scheme_original .woocommerce-page div.product span.price,.scheme_original .woocommerce-page div.product p.price,.scheme_original .woocommerce-page #content div.product span.price,.scheme_original .woocommerce-page #content div.product p.price,.scheme_original .woocommerce ul.products li.product .price,.scheme_original .woocommerce-page ul.products li.product .price,.scheme_original .woocommerce ul.cart_list li>.amount,.scheme_original .woocommerce ul.product_list_widget li>.amount,.scheme_original .woocommerce-page ul.cart_list li>.amount,.scheme_original .woocommerce-page ul.product_list_widget li>.amount,.scheme_original .woocommerce ul.cart_list li span .amount,.scheme_original .woocommerce ul.product_list_widget li span .amount,.scheme_original .woocommerce-page ul.cart_list li span .amount,.scheme_original .woocommerce-page ul.product_list_widget li span .amount,.scheme_original .woocommerce ul.cart_list li ins .amount,.scheme_original .woocommerce ul.product_list_widget li ins .amount,.scheme_original .woocommerce-page ul.cart_list li ins .amount,.scheme_original .woocommerce-page ul.product_list_widget li ins .amount,.scheme_original .woocommerce.widget_shopping_cart .total .amount,.scheme_original .woocommerce .widget_shopping_cart .total .amount,.scheme_original .woocommerce-page.widget_shopping_cart .total .amount,.scheme_original .woocommerce-page .widget_shopping_cart .total .amount,.scheme_original .woocommerce a:hover h3,.scheme_original .woocommerce-page a:hover h3,.scheme_original .woocommerce .cart-collaterals .order-total strong,.scheme_original .woocommerce-page .cart-collaterals .order-total strong,.scheme_original .woocommerce .checkout #order_review .order-total .amount,.scheme_original .woocommerce-page .checkout #order_review .order-total .amount,.scheme_original .woocommerce .star-rating,.scheme_original .woocommerce-page .star-rating,.scheme_original .woocommerce .star-rating:before,.scheme_original .woocommerce-page .star-rating:before,.scheme_original .widget_area_inner .widgetWrap ul>li .star-rating span,.scheme_original .woocommerce #review_form #respond .stars a,.scheme_original .woocommerce-page #review_form #respond .stars a{}.scheme_original .woocommerce div.quantity span,.scheme_original .woocommerce-page div.quantity span{color:#0a1f54;	background-color:#f0f4f9}.scheme_original .woocommerce div.quantity span:hover,.scheme_original .woocommerce-page div.quantity span:hover{color:#0071c3;	background-color:#f0f4f9}.scheme_original .woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content{background-color:#acb4b6}.scheme_original .woocommerce .widget_price_filter .ui-slider .ui-slider-range,.scheme_original .woocommerce-page .widget_price_filter .ui-slider .ui-slider-range{background-color:#0a1f54}.scheme_original .woocommerce .widget_price_filter .ui-slider .ui-slider-handle,.scheme_original .woocommerce-page .widget_price_filter .ui-slider .ui-slider-handle{background:#11224d}.scheme_original .woocommerce .woocommerce-message,.scheme_original .woocommerce-page .woocommerce-message,.scheme_original .woocommerce a.button.alt:active,.scheme_original .woocommerce button.button.alt:active,.scheme_original .woocommerce input.button.alt:active,.scheme_original .woocommerce #respond input#submit.alt:active,.scheme_original .woocommerce #content input.button.alt:active,.scheme_original .woocommerce-page a.button.alt:active,.scheme_original .woocommerce-page button.button.alt:active,.scheme_original .woocommerce-page input.button.alt:active,.scheme_original .woocommerce-page #respond input#submit.alt:active,.scheme_original .woocommerce-page #content input.button.alt:active,.scheme_original .woocommerce a.button:active,.scheme_original .woocommerce button.button:active,.scheme_original .woocommerce input.button:active,.scheme_original .woocommerce #respond input#submit:active,.scheme_original .woocommerce #content input.button:active,.scheme_original .woocommerce-page a.button:active,.scheme_original .woocommerce-page button.button:active,.scheme_original .woocommerce-page input.button:active,.scheme_original .woocommerce-page #respond input#submit:active,.scheme_original .woocommerce-page #content input.button:active{border-top-color:#11224d}.scheme_original .woocommerce a.button:not(.pswp__button),.scheme_original .woocommerce button.button,.scheme_original .woocommerce input.button,.scheme_original .woocommerce #respond input#submit,.scheme_original .woocommerce #content input.button,.scheme_original .woocommerce-page a.button,.scheme_original .woocommerce-page button.button,.scheme_original .woocommerce-page input.button,.scheme_original .woocommerce-page #respond input#submit,.scheme_original .woocommerce-page #content input.button,.scheme_original .woocommerce a.button.alt,.scheme_original .woocommerce button.button.alt,.scheme_original .woocommerce input.button.alt,.scheme_original .woocommerce #respond input#submit.alt,.scheme_original .woocommerce #content input.button.alt,.scheme_original .woocommerce-page a.button.alt,.scheme_original .woocommerce-page button.button.alt,.scheme_original .woocommerce-page input.button.alt,.scheme_original .woocommerce-page #respond input#submit.alt,.scheme_original .woocommerce-page #content input.button.alt,.scheme_original .woocommerce-account .addresses .title .edit,.scheme_original .woocommerce ul.products li.product .add_to_cart_button,.scheme_original .woocommerce-page ul.products li.product .add_to_cart_button{background-color:#11224d;	color:#ffffff}.scheme_original .article_style_boxed.woocommerce .woocommerce-error,.scheme_original .article_style_boxed.woocommerce .woocommerce-info,.scheme_original .article_style_boxed.woocommerce .woocommerce-message,.scheme_original .article_style_boxed.woocommerce-page .woocommerce-error,.scheme_original .article_style_boxed.woocommerce-page .woocommerce-info,.scheme_original .article_style_boxed.woocommerce-page .woocommerce-message{background-color:#f0f4f9}.scheme_original .article_style_boxed.woocommerce.archive .woocommerce-error,.scheme_original .article_style_boxed.woocommerce.archive .woocommerce-info,.scheme_original .article_style_boxed.woocommerce.archive .woocommerce-message,.scheme_original .article_style_boxed.woocommerce-page.archive .woocommerce-error,.scheme_original .article_style_boxed.woocommerce-page.archive .woocommerce-info,.scheme_original .article_style_boxed.woocommerce-page.archive .woocommerce-message{background-color:#f0f4f9}.scheme_original .woocommerce span.new,.scheme_original .woocommerce-page span.new,.scheme_original .woocommerce span.onsale,.scheme_original .woocommerce-page span.onsale{background-color:#009FE3;	color:#ffffff}.scheme_original .article_style_boxed.woocommerce ul.products li.product .post_item_wrap,.scheme_original .article_style_boxed.woocommerce-page ul.products li.product .post_item_wrap{background-color:#f0f4f9}.scheme_original .woocommerce ul.products li.product .price,.scheme_original .woocommerce-page ul.products li.product .price,.scheme_original .woocommerce ul.products li.product .star-rating:before,.scheme_original .woocommerce ul.products li.product .star-rating span{}.scheme_original .woocommerce ul.products li.product .price del,.scheme_original .woocommerce-page ul.products li.product .price del{color:#9daab0}.scheme_original.article_style_boxed.woocommerce ul.products li.product .post_item_wrap{background-color:#f0f0f0}.scheme_original.article_style_boxed.woocommerce-page ul.products li.product .post_item_wrap{background-color:#f0f0f0}.scheme_original.article_style_boxed.woocommerce ul.products li.product .post_content{background-color:#f0f4f9}.scheme_original.article_style_boxed.woocommerce-page ul.products li.product .post_content{background-color:#f0f4f9}.scheme_original .woocommerce nav.woocommerce-pagination ul li a,.scheme_original .woocommerce nav.woocommerce-pagination ul li span.current{background-color:#ffffff;	color:#009FE3;	border-color:#009FE3}.scheme_original .woocommerce nav.woocommerce-pagination ul li a:focus,.scheme_original .woocommerce nav.woocommerce-pagination ul li a:hover,.scheme_original .woocommerce nav.woocommerce-pagination ul li span.current{color:#ffffff;	background-color:#009FE3}.scheme_original .woocommerce nav.woocommerce-pagination ul li .next,.scheme_original .woocommerce nav.woocommerce-pagination ul li .prev{color:#11224d}.scheme_original .woocommerce nav.woocommerce-pagination ul li .next:hover,.scheme_original .woocommerce nav.woocommerce-pagination ul li .prev:hover{color:#009FE3}.scheme_original .woocommerce div.product .woocommerce-tabs .panel,.scheme_original .woocommerce #content div.product .woocommerce-tabs .panel,.scheme_original .woocommerce-page div.product .woocommerce-tabs .panel,.scheme_original .woocommerce-page #content div.product .woocommerce-tabs .panel{border-color:#dfe5ea}.scheme_original.woocommerce-tabs.trx-stretch-width{background-color:#ffffff}.scheme_original .single-product div.product .woocommerce-tabs.trx-stretch-width .wc-tabs li a{color:#656c77}.scheme_original .single-product div.product .woocommerce-tabs.trx-stretch-width .wc-tabs li a:hover,.scheme_original .single-product div.product .woocommerce-tabs.trx-stretch-width .wc-tabs li.active a{color:#0a1f54}.scheme_original .single-product div.product .woocommerce-tabs.trx-stretch-width .wc-tabs li.active a:after{background-color:#11224d}.scheme_original .single-product div.product .woocommerce-tabs.trx-stretch-width .wc-tabs li.active a::after{background-color:#009FE3}.scheme_original .woocommerce table.cart thead th,.scheme_original .woocommerce #content table.cart thead th,.scheme_original .woocommerce-page table.cart thead th,.scheme_original .woocommerce-page #content table.cart thead th{background-color:#11224d;	color:#ffffff}.scheme_original .woocommerce-account .woocommerce-MyAccount-navigation,.scheme_original .woocommerce-MyAccount-navigation li+li{border-color:#dfe5ea}.scheme_original .woocommerce-MyAccount-navigation li.is-active a{color:#0a1f54}.scheme_original .top_panel_inner_style_4 .widget_shopping_cart .empty,.scheme_original .top_panel_inner_style_4 .widget_shopping_cart .quantity,.scheme_original .top_panel_inner_style_4 .widget_shopping_cart .quantity .amount,.scheme_original .top_panel_inner_style_4 .widget_shopping_cart .total,.scheme_original .top_panel_inner_style_4 .widget_shopping_cart .total .amount{color:#ffffff}.scheme_original .top_panel_wrap .widget_shopping_cart ul.cart_list>li>a:hover{color:#009FE3}.scheme_original body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories li+li{border-color:#dddddd}.scheme_original body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories li,.scheme_original body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories li>a{color:#656c77}.scheme_original body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories li:hover,.scheme_original body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories li:hover>a,.scheme_original body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories li>a:hover{color:#0a1f54}.scheme_original body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories ul{background-color:#f0f4f9}.scheme_original .widget_shopping_cart_content .woocommerce-Price-amount,.scheme_original .product_list_widget ins .woocommerce-Price-amount{color:#009FE3}.scheme_original .woocommerce-page .product .entry-summary p.price del{color:#9daab0}.scheme_original .woocommerce-page .product .entry-summary p.price ins{color:#009FE3}.scheme_original .woocommerce div.product form.cart .variations tr{color:#656c77}.scheme_original .tribe-events-calendar thead th{background-color:#11224d}.scheme_original a.tribe-events-read-more,.scheme_original .tribe-events-button,.scheme_original .tribe-events-nav-previous a,.scheme_original .tribe-events-nav-next a,.scheme_original .tribe-events-widget-link a,.scheme_original .tribe-events-viewmore a{background-color:#11224d;	color:#ffffff}.scheme_original a.tribe-events-read-more:hover,.scheme_original .tribe-events-button:hover,.scheme_original .tribe-events-nav-previous a:hover,.scheme_original .tribe-events-nav-next a:hover,.scheme_original .tribe-events-widget-link a:hover,.scheme_original .tribe-events-viewmore a:hover{background-color:#009FE3;	color:#ffffff}.scheme_original #bbpress-forums div.bbp-topic-content a,.scheme_original #buddypress button,.scheme_original #buddypress a.button,.scheme_original #buddypress input[type="submit"],.scheme_original #buddypress input[type="button"],.scheme_original #buddypress input[type="reset"],.scheme_original #buddypress ul.button-nav li a,.scheme_original #buddypress div.generic-button a,.scheme_original #buddypress .comment-reply-link,.scheme_original a.bp-title-button,.scheme_original #buddypress div.item-list-tabs ul li.selected a,.scheme_original #buddypress .acomment-options a{background:#11224d;	color:#ffffff}.scheme_original #bbpress-forums div.bbp-topic-content a:hover,.scheme_original #buddypress button:hover,.scheme_original #buddypress a.button:hover,.scheme_original #buddypress input[type="submit"]:hover,.scheme_original #buddypress input[type="button"]:hover,.scheme_original #buddypress input[type="reset"]:hover,.scheme_original #buddypress ul.button-nav li a:hover,.scheme_original #buddypress div.generic-button a:hover,.scheme_original #buddypress .comment-reply-link:hover,.scheme_original a.bp-title-button:hover,.scheme_original #buddypress div.item-list-tabs ul li.selected a:hover,.scheme_original #buddypress .acomment-options a:hover{background:#009FE3;	color:#ffffff}.scheme_original #buddypress #item-nav,.scheme_original #buddypress div#subnav.item-list-tabs,.scheme_original #buddypress div.item-list-tabs{background-color:#f0f4f9}.scheme_original #buddypress #item-nav li:not(.selected) a,.scheme_original #buddypress div#subnav.item-list-tabs li:not(.selected) a,.scheme_original #buddypress div.item-list-tabs li:not(.selected) a{color:#8a8a8a}.scheme_original #buddypress #item-nav li:not(.selected) a:hover,.scheme_original #buddypress div#subnav.item-list-tabs li:not(.selected) a:hover,.scheme_original #buddypress div.item-list-tabs li:not(.selected) a:hover{color:#232a34;	background-color:#f0f0f0}.scheme_original #buddypress .dir-search input[type="search"],.scheme_original #buddypress .dir-search input[type="text"],.scheme_original #buddypress .groups-members-search input[type="search"],.scheme_original #buddypress .groups-members-search input[type="text"],.scheme_original #buddypress .standard-form input[type="color"],.scheme_original #buddypress .standard-form input[type="date"],.scheme_original #buddypress .standard-form input[type="datetime-local"],.scheme_original #buddypress .standard-form input[type="datetime"],.scheme_original #buddypress .standard-form input[type="email"],.scheme_original #buddypress .standard-form input[type="month"],.scheme_original #buddypress .standard-form input[type="number"],.scheme_original #buddypress .standard-form input[type="password"],.scheme_original #buddypress .standard-form input[type="range"],.scheme_original #buddypress .standard-form input[type="search"],.scheme_original #buddypress .standard-form input[type="tel"],.scheme_original #buddypress .standard-form input[type="text"],.scheme_original #buddypress .standard-form input[type="time"],.scheme_original #buddypress .standard-form input[type="url"],.scheme_original #buddypress .standard-form input[type="week"],.scheme_original #buddypress .standard-form select,.scheme_original #buddypress .standard-form textarea,.scheme_original #buddypress form#whats-new-form textarea{color:#8a8a8a;	background-color:#ffffff;	border-color:#0a1a41}.scheme_original #buddypress .dir-search input[type="search"]:focus,.scheme_original #buddypress .dir-search input[type="text"]:focus,.scheme_original #buddypress .groups-members-search input[type="search"]:focus,.scheme_original #buddypress .groups-members-search input[type="text"]:focus,.scheme_original #buddypress .standard-form input[type="color"]:focus,.scheme_original #buddypress .standard-form input[type="date"]:focus,.scheme_original #buddypress .standard-form input[type="datetime-local"]:focus,.scheme_original #buddypress .standard-form input[type="datetime"]:focus,.scheme_original #buddypress .standard-form input[type="email"]:focus,.scheme_original #buddypress .standard-form input[type="month"]:focus,.scheme_original #buddypress .standard-form input[type="number"]:focus,.scheme_original #buddypress .standard-form input[type="password"]:focus,.scheme_original #buddypress .standard-form input[type="range"]:focus,.scheme_original #buddypress .standard-form input[type="search"]:focus,.scheme_original #buddypress .standard-form input[type="tel"]:focus,.scheme_original #buddypress .standard-form input[type="text"]:focus,.scheme_original #buddypress .standard-form input[type="time"]:focus,.scheme_original #buddypress .standard-form input[type="url"]:focus,.scheme_original #buddypress .standard-form input[type="week"]:focus,.scheme_original #buddypress .standard-form select:focus,.scheme_original #buddypress .standard-form textarea:focus,.scheme_original #buddypress form#whats-new-form textarea:focus{color:#8a8a8a;	background-color:#f0f0f0;	border-color:#bbbbbb}.scheme_original #buddypress #reply-title small a span,.scheme_original #buddypress a.bp-primary-action span{color:#11224d;	background-color:#ffffff}.scheme_original #buddypress .activity .activity-item:nth-child(2n+1){background-color:#f0f4f9}.scheme_original.vc_row{background-color:#ffffff}.scheme_original .booking_month_container_custom,.scheme_original .booking_month_navigation_button_custom{background-color:#f0f4f9 !important}.scheme_original .booking_month_name_custom,.scheme_original .booking_month_navigation_button_custom{color:#232a34 !important}.scheme_original .booking_month_navigation_button_custom:hover{color:#ffffff !important;	background-color:#009FE3 !important}.scheme_original #learndash_next_prev_link>a{color:#ffffff;	background-color:#11224d}.scheme_original #learndash_next_prev_link>a:hover{background-color:#009FE3}.scheme_original .widget_area dd.course_progress div.course_progress_blue{background-color:#009FE3}.scheme_original #myplayer .ttw-music-player .progress-wrapper{background-color:#f0f0f0}.scheme_original #myplayer .ttw-music-player .tracklist li.track{border-color:#dfe5ea}.scheme_original #myplayer .ttw-music-player .tracklist,.scheme_original #myplayer .ttw-music-player .buy,.scheme_original #myplayer .ttw-music-player .description,.scheme_original #myplayer .ttw-music-player .artist,.scheme_original #myplayer .ttw-music-player .artist-outer{color:#656c77}.scheme_original #myplayer .ttw-music-player .player .title,.scheme_original #myplayer .ttw-music-player .tracklist li:hover{color:#0a1f54}.scheme_original .sc_accordion .sc_accordion_item .sc_accordion_title{border-color:#dfe5ea}.scheme_original .sc_accordion .sc_accordion_item .sc_accordion_title .sc_accordion_icon{color:#acb4b6;	background-color:#f0f4f9}.scheme_original .sc_accordion .sc_accordion_item .sc_accordion_title.ui-state-active{color:#11224d;	border-color:#11224d}.scheme_original .sc_accordion .sc_accordion_item .sc_accordion_title.ui-state-active .sc_accordion_icon_opened{color:#ffffff;	background-color:#11224d}.scheme_original .sc_accordion .sc_accordion_item .sc_accordion_title:hover{color:#009FE3;	border-color:#009FE3}.scheme_original .sc_accordion .sc_accordion_item .sc_accordion_title:hover .sc_accordion_icon_opened{background-color:#009FE3}.scheme_original .sc_accordion .sc_accordion_item .sc_accordion_content{border-color:#dfe5ea}.scheme_original .sc_audio.sc_audio_info,.scheme_original .sc_audio_player.sc_audio,.scheme_original .wp-audio-shortcode{background:#0071c3; background:-moz-linear-gradient(left,#0071c3 0%,#009FE3 100%); background:-webkit-linear-gradient(left,#0071c3 0%,#009FE3 100%); background:linear-gradient(to right,#0071c3 0%,#009FE3 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071c3',endColorstr='#009FE3',GradientType=1 ); }.scheme_original .sc_audio .sc_audio_title{color:#ffffff}.scheme_original .sc_audio .sc_audio_author_name{color:#ffffff}.scheme_original .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.scheme_original .wp-audio-shortcode .mejs-controls .mejs-volume-button .mejs-volume-slider,.scheme_original .mejs-controls .mejs-time-rail .mejs-time-current{background:#f0f4f9 !important}.scheme_original .mejs-container .mejs-controls .mejs-time{color:#11224d}.scheme_original .mejs-container.wp-video-shortcode .mejs-controls .mejs-time{color:#f0f4f9}.scheme_original .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total:before,.scheme_original .mejs-controls .mejs-time-rail .mejs-time-total:before{background-color:rgba(255,255,255,0.1)}.scheme_original .mejs-controls .mejs-time-rail .mejs-time-loaded{background:rgba(138,138,138,0.1) !important}.scheme_original .mejs-container .mejs-controls .mejs-fullscreen-button,.scheme_original .mejs-container .mejs-controls .mejs-volume-button,.scheme_original .mejs-container .mejs-controls .mejs-playpause-button{background:#ffffff !important}.scheme_original .footer_wrap .mejs-container .mejs-controls .mejs-fullscreen-button,.scheme_original .footer_wrap .mejs-container .mejs-controls .mejs-volume-button,.scheme_original .footer_wrap .mejs-container .mejs-controls .mejs-playpause-button{background:#f0f4f9 !important}.scheme_original .mejs-container .mejs-controls .mejs-playpause-button.mejs-play:before,.scheme_original .mejs-container .mejs-controls .mejs-playpause-button.mejs-pause:before,.scheme_original .mejs-container .mejs-controls .mejs-playpause-button.mejs-replay:before,.scheme_original .mejs-container .mejs-controls .mejs-fullscreen-button:before,.scheme_original .mejs-container .mejs-controls .mejs-volume-button.mejs-mute:before,.scheme_original .mejs-container .mejs-controls .mejs-volume-button.mejs-unmute:before{color:#0071c3}.scheme_original input[type="submit"],.scheme_original input[type="reset"],.scheme_original input[type="button"],.scheme_original button:not(.pswp__button),.scheme_original .sc_button.sc_button_style_filled,	.scheme_original .woocommerce a.button,.scheme_original .woocommerce button.button,.scheme_original .woocommerce input.button,.scheme_original .woocommerce #respond input#submit,.scheme_original .woocommerce #content input.button,.scheme_original .woocommerce-page a.button,.scheme_original .woocommerce-page button.button,.scheme_original .woocommerce-page input.button,.scheme_original .woocommerce-page #respond input#submit,.scheme_original .woocommerce-page #content input.button,.scheme_original .woocommerce a.button.alt,.scheme_original .woocommerce button.button.alt,.scheme_original .woocommerce input.button.alt,.scheme_original .woocommerce #respond input#submit.alt,.scheme_original .woocommerce #content input.button.alt,.scheme_original .woocommerce-page a.button.alt,.scheme_original .woocommerce-page button.button.alt,.scheme_original .woocommerce-page input.button.alt,.scheme_original .woocommerce-page #respond input#submit.alt,.scheme_original .woocommerce-page #content input.button.alt,.scheme_original .woocommerce-account .addresses .title .edit,.scheme_original #btn-buy,.scheme_original #btn-pay{background:#0071c3; 	background:-moz-linear-gradient(left,#0071c3 9%,#009FE3 55%); 	background:-webkit-linear-gradient(left,#0071c3 9%,#009FE3 55%); 	background:linear-gradient(to right,#0071c3 9%,#009FE3 55%); 	filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071c3',endColorstr='#009FE3',GradientType=1 );  background-size:200%; background-position:0; color:#ffffff}.scheme_original input[type="submit"].sc_button_style_color_style2,.scheme_original input[type="reset"].sc_button_style_color_style2,.scheme_original input[type="button"].sc_button_style_color_style2,.scheme_original button.sc_button_style_color_style2,.scheme_original .cff-container-field input[type="button"],.scheme_original .sc_button.sc_button_style_filled.sc_button_style_color_style2{color:#ffffff;	background:#0071c3; 	background:-moz-linear-gradient(left,#0071c3 9%,#009FE3 55%); 	background:-webkit-linear-gradient(left,#0071c3 9%,#009FE3 55%); 	background:linear-gradient(to right,#0071c3 9%,#009FE3 55%); 	filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071c3',endColorstr='#009FE3',GradientType=1 ); 	background-size:200%; background-position:0}.scheme_original .sc_button.sc_button_style_border{border-color:#11224d;	color:#11224d}.scheme_original .sc_button.sc_button_style_border:hover{border-color:#009FE3 !important;	color:#009FE3 !important}.scheme_original .sc_button.sc_button_style_filled.sc_button_style_color_style1.dark_button{background:#ffffff ;	color:#0a1f54}.scheme_original .sc_button.sc_button_style_filled.sc_button_style_color_style1.dark_button:hover{background:#009FE3 ;	color:#ffffff} .scheme_original [class*="sc_button_hover_fade"]:hover{background-color:#009FE3 !important;	color:#ffffff !important}.scheme_original [class*="sc_button_hover_slide"]{color:#ffffff !important;	background-color:#11224d}.scheme_original [class*="sc_button_hover_slide"]:hover{background-color:#009FE3 !important}.scheme_original .sc_button_hover_slide_left{background:linear-gradient(to right,#009FE3 50%,#11224d 50%) repeat scroll right bottom / 210% 100% rgba(0,0,0,0) !important}.scheme_original .sc_button_hover_slide_top{background:linear-gradient(to bottom,#009FE3 50%,#11224d 50%) repeat scroll right bottom / 100% 210% rgba(0,0,0,0) !important} .scheme_original .sc_blogger.layout_date .sc_blogger_item .sc_blogger_date{background-color:#11224d;	border-color:#11224d;	color:#ffffff}.scheme_original .sc_blogger.layout_date .sc_blogger_item .sc_blogger_date .year:before{border-color:#ffffff}.scheme_original .sc_blogger.layout_date .sc_blogger_item::before{background-color:#f0f4f9}.scheme_original .sc_blogger_item.sc_plain_item{background-color:#f0f4f9}.scheme_original .sc_blogger.layout_polaroid .photostack nav span.current{color:#ffffff;	background-color:#11224d}.scheme_original .sc_blogger.layout_polaroid .photostack nav span.current.flip{background-color:#009FE3}.scheme_original .sc_call_to_action .sc_call_to_action_descr{color:#656c77}.scheme_original .sc_call_to_action_accented{color:#ffffff;	background-color:#11224d}.scheme_original .sc_call_to_action_accented .sc_item_title,.scheme_original .sc_call_to_action_accented .sc_item_subtitle,.scheme_original .sc_call_to_action_accented .sc_item_descr{color:#ffffff}.scheme_original .sc_call_to_action_accented .sc_item_button>a{color:#11224d;	background-color:#ffffff}.scheme_original .sc_call_to_action_accented .sc_item_button>a:before{background-color:#11224d;	color:#ffffff}.scheme_original .sc_call_to_action .sc_item_subtitle{color:#0071c3}.scheme_original .sc_call_to_action .sc_item_buttons>.sc_item_button + .sc_item_button a{color:#0071c3}.scheme_original .sc_call_to_action.sc_call_to_action_style_1 .sc_item_buttons>.sc_item_button + .sc_item_button a:before{color:#0071c3}.scheme_original .sc_chat:after{background-color:#f0f4f9;	border-color:#dddddd}.scheme_original .sc_chat_inner{color:#8a8a8a;	background-color:#f0f4f9;	border-color:#dddddd}.scheme_original .sc_chat_inner a{color:#009FE3}.scheme_original .sc_chat_inner a:hover{color:#0071c3}.scheme_original .sc_clients_style_clients-2 .sc_client_image .sc_client_hover{color:#ffffff;	background-color:rgba(10,31,84,0.8)}.scheme_original .sc_clients_style_clients-2 .sc_client_title,.scheme_original .sc_clients_style_clients-2 .sc_client_title a{color:#ffffff}.scheme_original .sc_clients_style_clients-2 .sc_client_title a:hover{color:#11224d}.scheme_original .sc_clients_style_clients-2 .sc_client_description:before,.scheme_original .sc_clients_style_clients-2 .sc_client_position{color:#11224d}.scheme_original .sc_clients .sc_slider_controls_side .sc_slider_controls_wrap a{background:#ffffff;	color:#0a1f54}.scheme_original .sc_form .sc_form_item.sc_form_button button{color:#ffffff; background:#0071c3; background:-moz-linear-gradient(left,#0071c3 9%,#009FE3 55%); background:-webkit-linear-gradient(left,#0071c3 9%,#009FE3 55%); background:linear-gradient(to right,#0071c3 9%,#009FE3 55%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071c3',endColorstr='#009FE3',GradientType=1 );  background-size:200%; background-position:0}.scheme_original .sc_form .sc_form_item .sc_form_element input[type="radio"] + label:before,.scheme_original .sc_form .sc_form_item .sc_form_element input[type="checkbox"] + label:before{border-color:#0a1a41;	background-color:#ffffff}.scheme_original .sc_form_select_container{background-color:#ffffff}.scheme_original .sc_form .sc_form_item input[type="text"],.scheme_original .sc_form .sc_form_item select,.scheme_original .sc_form .sc_form_item textarea{background-color:#f0f4f9}.scheme_original .sc_form .picker{color:#8a8a8a;	border-color:#0a1a41;	background-color:#ffffff}.scheme_original .picker__month,.scheme_original .picker__year{color:#020817}.scheme_original .sc_form .picker__nav--prev:before,.scheme_original .sc_form .picker__nav--next:before{color:#8a8a8a}.scheme_original .sc_form .picker__nav--prev:hover:before,.scheme_original .sc_form .picker__nav--next:hover:before{color:#020817}.scheme_original .sc_form .picker__nav--disabled,.scheme_original .sc_form .picker__nav--disabled:hover,.scheme_original .sc_form .picker__nav--disabled:before,.scheme_original .sc_form .picker__nav--disabled:before:hover{color:#acb4b6}.scheme_original .sc_form table.picker__table th{color:#ffffff;	background-color:#11224d}.scheme_original .sc_form .picker__day--infocus{color:#020817}.scheme_original .sc_form .picker__day--today,.scheme_original .sc_form .picker__day--infocus:hover,.scheme_original .sc_form .picker__day--outfocus:hover,.scheme_original .sc_form .picker__day--highlighted:hover,.scheme_original .sc_form .picker--focused .picker__day--highlighted{color:#020817;	background-color:#f0f0f0}.scheme_original .sc_form .picker__day--disabled,.scheme_original .sc_form .picker__day--disabled:hover{color:#acb4b6}.scheme_original .sc_form .picker__day--highlighted.picker__day--disabled,.scheme_original .sc_form .picker__day--highlighted.picker__day--disabled:hover{color:#acb4b6;	background-color:#f0f0f0 !important}.scheme_original .sc_form .picker__day--today:before,.scheme_original .sc_form .picker__button--today:before,.scheme_original .sc_form .picker__button--clear:before,.scheme_original .sc_form button:focus{border-color:#11224d}.scheme_original .sc_form .picker__button--close:before{color:#11224d}.scheme_original .sc_form .picker--time .picker__button--clear:hover,.scheme_original .sc_form .picker--time .picker__button--clear:focus{background-color:#009FE3}.scheme_original .sc_form .picker__footer{border-color:#0a1a41}.scheme_original .sc_form .picker__button--today,.scheme_original .sc_form .picker__button--clear,.scheme_original .sc_form .picker__button--close{color:#8a8a8a}.scheme_original .sc_form .picker__button--today:hover,.scheme_original .sc_form .picker__button--clear:hover,.scheme_original .sc_form .picker__button--close:hover{color:#020817;	background-color:#f0f0f0 !important}.scheme_original .sc_form .picker__button--today[disabled],.scheme_original .sc_form .picker__button--today[disabled]:hover{color:#acb4b6;	background-color:#f0f0f0;	border-color:#f0f0f0}.scheme_original .sc_form .picker__button--today[disabled]:before{border-top-color:#acb4b6}.scheme_original .sc_form .picker__list-item{color:#8a8a8a;	border-color:#0a1a41}.scheme_original .sc_form .picker__list-item:hover,.scheme_original .sc_form .picker__list-item--highlighted,.scheme_original .sc_form .picker__list-item--highlighted:hover,.scheme_original .sc_form .picker--focused .picker__list-item--highlighted,.scheme_original .sc_form .picker__list-item--selected,.scheme_original .sc_form .picker__list-item--selected:hover,.scheme_original .sc_form .picker--focused .picker__list-item--selected{color:#020817;	background-color:#f0f0f0;	border-color:#bbbbbb}.scheme_original .sc_form .picker__list-item--disabled,.scheme_original .sc_form .picker__list-item--disabled:hover,.scheme_original .sc_form .picker--focused .picker__list-item--disabled{color:#acb4b6;	background-color:#ffffff;	border-color:#0a1a41}.scheme_original .sc_countdown.sc_countdown_style_1 .sc_countdown_digits,.scheme_original .sc_countdown.sc_countdown_style_1 .sc_countdown_separator{color:#11224d}.scheme_original .sc_countdown.sc_countdown_style_1 .sc_countdown_digits{border-color:#dddddd;	background-color:#f0f4f9}.scheme_original .sc_countdown.sc_countdown_style_1 .sc_countdown_label{color:#11224d}.scheme_original .sc_countdown.sc_countdown_style_2 .sc_countdown_separator{color:#11224d}.scheme_original .sc_countdown.sc_countdown_style_2 .sc_countdown_digits span{background-color:#11224d}.scheme_original .sc_countdown.sc_countdown_style_2 .sc_countdown_label{color:#11224d}.scheme_original .sc_dropcaps .sc_dropcaps_item{color:#ffffff}.scheme_original .sc_dropcaps.sc_dropcaps_style_1 .sc_dropcaps_item{background:#0071c3; background:-moz-linear-gradient(left,#0071c3 0%,#009FE3 100%); background:-webkit-linear-gradient(left,#0071c3 0%,#009FE3 100%); background:linear-gradient(to right,#0071c3 0%,#009FE3 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071c3',endColorstr='#009FE3',GradientType=1 ); }.scheme_original .sc_dropcaps.sc_dropcaps_style_2 .sc_dropcaps_item{background:#0071c3; background:-moz-linear-gradient(left,#0071c3 0%,#009FE3 100%); background:-webkit-linear-gradient(left,#0071c3 0%,#009FE3 100%); background:linear-gradient(to right,#0071c3 0%,#009FE3 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071c3',endColorstr='#009FE3',GradientType=1 ); }.scheme_original .mc4wp-form input[type="email"]{background-color:#020817}.scheme_original .sc_video_frame.hover_icon:before{background:#0071c3; background:-moz-linear-gradient(left,#0071c3 0%,#009FE3 100%); background:-webkit-linear-gradient(left,#0071c3 0%,#009FE3 100%); background:linear-gradient(to right,#0071c3 0%,#009FE3 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071c3',endColorstr='#009FE3',GradientType=1 ); 	color:#ffffff}.scheme_original .sc_events_item .sc_events_item_readmore{color:#0a1f54}.scheme_original .sc_events_item .sc_events_item_readmore span{color:#11224d}.scheme_original .sc_events_item .sc_events_item_readmore:hover,.scheme_original .sc_events_item .sc_events_item_readmore:hover span{color:#009FE3}.scheme_original .sc_events_style_events-1 .sc_events_item{background-color:#ffffff;	color:#656c77}.scheme_original .sc_events_style_events-2 .sc_events_item{border-color:#dfe5ea}.scheme_original .sc_events_style_events-2 .sc_events_item_date{background-color:#11224d;	color:#ffffff}.scheme_original .sc_events_style_events-2 .sc_events_item_time:before,.scheme_original .sc_events_style_events-2 .sc_events_item_details:before{background-color:#dfe5ea}.scheme_original .sc_googlemap_content{background-color:#ffffff}.scheme_original .sc_highlight_style_1{background-color:#11224d;	color:#ffffff}.scheme_original .sc_highlight_style_2{background-color:#009FE3;	color:#ffffff}.scheme_original .sc_highlight_style_3{background-color:#f0f4f9;	color:#8a8a8a}.scheme_original .sc_icon_hover:hover,.scheme_original a:hover .sc_icon_hover{color:#ffffff !important;	background-color:#11224d !important}.scheme_original .sc_icon_shape_round.sc_icon,.scheme_original .sc_icon_shape_square.sc_icon{background-color:#11224d;	border-color:#11224d;	color:#ffffff}.scheme_original .sc_icon_shape_round.sc_icon:hover,.scheme_original .sc_icon_shape_square.sc_icon:hover,.scheme_original a:hover .sc_icon_shape_round.sc_icon,.scheme_original a:hover .sc_icon_shape_square.sc_icon{color:#11224d;	background-color:#ffffff}.scheme_original figure figcaption,.scheme_original .sc_image figcaption,.scheme_original .wp-caption .wp-caption-text,{background-color:#f0f4f9;	color:#9daab0}.scheme_original figure figcaption a,.scheme_original .sc_image figcaption a,.scheme_original .wp-caption .wp-caption-text a{color:#009FE3}.scheme_original figure figcaption a:hover,.scheme_original .sc_image figcaption a:hover,.scheme_original .wp-caption .wp-caption-text a:hover{color:#009FE3}.scheme_original .sc_infobox.sc_infobox_style_regular{background-color:#11224d}.scheme_original .sc_intro_inner .sc_intro_subtitle{color:#009FE3}.scheme_original .sc_intro_inner .sc_intro_title{color:#ffffff}.scheme_original .sc_intro_inner .sc_intro_descr,.scheme_original .sc_intro_inner .sc_intro_icon{color:#ffffff}.scheme_original .sc_list_style_iconed li:before,.scheme_original .sc_list_style_iconed .sc_list_icon{color:#11224d}.scheme_original .sc_list_style_iconed li .sc_list_title{color:#0a1f54}.scheme_original .sc_list_style_iconed li a:hover .sc_list_title{color:#009FE3}.scheme_original .sc_list .sc_list_item{color:#0a1f54}.scheme_original .sc_line{border-color:#dfe5ea}.scheme_original .sc_line .sc_line_title{color:#0a1f54;	background-color:#ffffff}.scheme_original .match_block .player_country{background-color:#11224d;	color:#ffffff}.scheme_original .match_block .player_name a{color:#232a34;	background-color:#f0f4f9}.scheme_original .match_block .player_name a:hover{color:#ffffff;	background-color:#11224d}.scheme_original .match_block .match_score{color:#232a34;	background-color:#f0f4f9}.scheme_original .match_block .match_category a{color:#656c77}.scheme_original .match_block .match_category a:hover,.scheme_original .match_block .match_date{color:#11224d}.scheme_original .post_item_colored .match_date{color:#11224d}.scheme_original .matches_hover>a:after{background-color:rgba(17,34,77,0.3)}.scheme_original .sc_matches.style_matches-1 .sc_matches_next{background-color:#11224d;	color:#ffffff}.scheme_original .sc_matches_next h2,.scheme_original .sc_matches_next .sc_item_subtitle{color:#ffffff}.scheme_original .sc_matches_next .sc_item_title:after{background-color:#ffffff}.scheme_original .sc_match_date{background-color:#ffffff;	color:#009FE3}.scheme_original .sc_matches.style_matches-2 .sc_match_info{background-color:rgba(240,240,240,0.5)}.scheme_original .sc_matches.style_matches-2 .sc_matches_next .sc_item_title{background-color:#11224d}.scheme_original .sc_matches.style_matches-2 .sc_matches_next .sc_match_date{background-color:#f0f0f0}.scheme_original .post_item_single_players .post_title:after{background-color:#11224d}.scheme_original .post_item_single_players .player_info span{color:#0a1f54}.scheme_original .sc_player .sc_player_info .sc_player_title a{color:#0a1f54}.scheme_original .sc_player .sc_player_info .sc_player_club,.scheme_original .sc_player .sc_player_info .sc_player_title a:hover{color:#11224d}.scheme_original .sc_player .sc_player_info{border-color:#11224d}.scheme_original .sc_player .sc_player_avatar .sc_player_hover{background-color:rgba(17,34,77,0.8)}.scheme_original .sc_player .sc_socials.sc_socials_type_icons a,.scheme_original .sc_player .sc_socials.sc_socials_type_icons a:hover{color:#ffffff;	border-color:#ffffff}.scheme_original .post_item_colored .player_info{color:#11224d}.scheme_original .sc_players_table table tr .country{color:#9daab0}.scheme_original .sc_players_table.style_2 table tr:nth-child(n+2){background-color:rgba(240,240,240,0.5)}.scheme_original .sc_players_table.style_2 .sc_table td{border-color:#ffffff}.scheme_original .sc_menuitems_style_menuitems-1 .sc_menuitem_price{color:#0a1f54}.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_spicy{color:#0a1f54;	background-color:#ffffff}.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_box_title{color:#ffffff;	background-color:#11224d}.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_content,.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_ingredients,.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions{color:#656c77;	border-color:#dfe5ea}.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_content_title,.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_ingredients_title,.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_title{color:#0a1f54}.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_content_title span,.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_ingredients_title span,.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_title span{color:#11224d}.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_list li{color:#0a1f54}.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_list li:before,.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_list li span{color:#11224d}.scheme_original .popup_menuitem>.sc_menuitems_wrap{background-color:#ffffff}.scheme_original .sc_popup:before{background-color:#11224d}.scheme_original .sc_price .sc_price_currency,.scheme_original .sc_price .sc_price_money,.scheme_original .sc_price .sc_price_penny{color:#0a1f54}.scheme_original .sc_price .sc_price_info{color:#9daab0}.scheme_original .sc_price_block,.scheme_original .sc_price_block .sc_price_block_money *{color:#ffffff}.scheme_original .sc_price_block.sc_price_block_style_1{background-color:#11224d}.scheme_original .sc_price_block.sc_price_block_style_1 .sc_price_block_link .sc_button{background-color:#009FE3}.scheme_original .sc_price_block.sc_price_block_style_2{background-color:#009FE3}.scheme_original .sc_price_block.sc_price_block_style_3,.scheme_original .sc_price_block.sc_price_block_style_3 .sc_price_block_money *{color:#11224d;	background-color:#f0f4f9}.scheme_original .sc_price_block.sc_price_block_style_3 .sc_price_block_title{background:#0071c3; 	background:-moz-linear-gradient(left,#0071c3 0%,#009FE3 100%); 	background:-webkit-linear-gradient(left,#0071c3 0%,#009FE3 100%); 	background:linear-gradient(to right,#0071c3 0%,#009FE3 100%); 	filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071c3',endColorstr='#009FE3',GradientType=1 ); 	color:#ffffff}.scheme_original .sc_price_block.sc_price_block_style_3 .sc_price_block_money{border-color:#dfe5ea}.scheme_original .sc_promo_image,.scheme_original .sc_promo_block{background-color:#f0f0f0}.scheme_original .sc_promo_title{color:#232a34}.scheme_original .sc_promo_descr{color:#8a8a8a}.scheme_original .sc_recent_news_header{border-color:#0a1f54}.scheme_original .sc_recent_news_header_category_item_more{color:#11224d}.scheme_original .sc_recent_news_header_more_categories{border-color:#dddddd;	background-color:#f0f4f9}.scheme_original .sc_recent_news_header_more_categories>a{color:#009FE3}.scheme_original .sc_recent_news_header_more_categories>a:hover{color:#0071c3;	background-color:#f0f0f0}.scheme_original .sc_recent_news .post_counters_item,.scheme_original .sc_recent_news .post_counters .post_edit a{background-color:#f0f4f9}.scheme_original .sidebar .sc_recent_news .post_counters_item,.scheme_original .sidebar .sc_recent_news .post_counters .post_edit a{background-color:#ffffff}.scheme_original .sc_recent_news .post_counters .post_edit a{color:#232a34}.scheme_original .sc_recent_news_style_news-magazine .post_accented_border{border-color:#dfe5ea}.scheme_original .sc_recent_news_style_news-excerpt .post_item{border-color:#dfe5ea}.scheme_original .sc_section_inner{color:#656c77}.scheme_original .sc_services_item .sc_services_item_readmore{color:#0a1f54}.scheme_original .sc_services_item .sc_services_item_readmore span{color:#11224d}.scheme_original .sc_services_item .sc_services_item_readmore:hover,.scheme_original .sc_services_item .sc_services_item_readmore:hover span{color:#009FE3}.scheme_original .sc_services_style_services-1 .sc_services_item{color:#656c77}.scheme_original .sc_services_style_services-1 .sc_icon,.scheme_original .sc_services_style_services-2 .sc_icon{color:#009FE3;	background-color:#ffffff}.scheme_original .sc_services_style_services-1 .sc_icon:hover,.scheme_original .sc_services_style_services-1 a:hover .sc_icon,.scheme_original .sc_services_style_services-2 .sc_icon:hover,.scheme_original .sc_services_style_services-2 a:hover .sc_icon{background:#0071c3; background:-moz-linear-gradient(left,#0071c3 0%,#009FE3 100%); background:-webkit-linear-gradient(left,#0071c3 0%,#009FE3 100%); background:linear-gradient(to right,#0071c3 0%,#009FE3 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071c3',endColorstr='#009FE3',GradientType=1 );  color:#ffffff}.scheme_original .sc_services_style_services-3 a:hover .sc_icon,.scheme_original .sc_services_style_services-3 .sc_icon:hover{color:#11224d;	background-color:#ffffff}.scheme_original .sc_services_style_services-3 a:hover .sc_services_item_title{color:#11224d}.scheme_original .sc_services_style_services-4 .sc_icon{color:#ffffff;	background-color:#11224d}.scheme_original .sc_services_style_services-4 .sc_services_item_title{color:#0a1f54}.scheme_original .sc_services_style_services-4 a:hover .sc_icon,.scheme_original .sc_services_style_services-4 .sc_icon:hover{background-color:#009FE3}.scheme_original .sc_services_style_services-4 a:hover .sc_services_item_title{color:#11224d}.scheme_original .sc_services_style_services-5 .sc_icon{border-color:#0071c3}.scheme_original .sc_services_style_services-5 .sc_icon{color:#0071c3}.scheme_original .sc_services_style_services-5 .sc_icon:hover,.scheme_original .sc_services_style_services-5 a:hover .sc_icon{background-color:#0071c3}.scheme_original .sc_services_style_services-5 .sc_icon:hover,.scheme_original .sc_services_style_services-5 a:hover .sc_icon{color:#ffffff}.scheme_original .sc_services_style_services-1 .sc_services_item .sc_services_item_description p:after{color:#009FE3}.scheme_original .sc_scroll_controls_wrap a{background-color:#11224d;	color:#ffffff}.scheme_original .sc_scroll_controls_type_side .sc_scroll_controls_wrap a{background-color:rgba(17,34,77,0.8)}.scheme_original .sc_scroll_controls_wrap a:hover{color:#ffffff;	background-color:#009FE3}.scheme_original .sc_scroll_bar .swiper-scrollbar-drag:before{background-color:#11224d}.scheme_original .sc_scroll .sc_scroll_bar{border-color:#f0f4f9}.scheme_original .sc_skills_bar .sc_skills_item{background-color:#f0f4f9}.scheme_original .sc_skills_counter .sc_skills_item .sc_skills_icon{color:#11224d}.scheme_original .sc_skills_counter .sc_skills_item:hover .sc_skills_icon{color:#009FE3}.scheme_original .sc_skills_counter .sc_skills_item .sc_skills_info{color:#0a1f54}.scheme_original .sc_skills_bar .sc_skills_item .sc_skills_count{border-color:#11224d}.scheme_original .sc_skills_bar .sc_skills_info .sc_skills_label{color:#11224d}.scheme_original .sc_skills_bar.sc_skills_horizontal .sc_skills_total{color:#9daab0}.scheme_original .sc_skills_legend_title,.scheme_original .sc_skills_legend_value{color:#0a1f54}.scheme_original .sc_skills_counter .sc_skills_item.sc_skills_style_1{color:#ffffff;	background:#0071c3; 	background:-moz-linear-gradient(left,#0071c3 9%,#009FE3 55%); 	background:-webkit-linear-gradient(left,#0071c3 9%,#009FE3 55%); 	background:linear-gradient(to right,#0071c3 9%,#009FE3 55%); 	filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071c3',endColorstr='#009FE3',GradientType=1 ); 	background-size:200%; background-position:0}.scheme_original .sc_skills_counter .sc_skills_item.sc_skills_style_1:hover{}.scheme_original .sc_skills_counter .sc_skills_item.sc_skills_style_1 .sc_skills_count{color:#232a34}.scheme_original .sc_skills_counter .sc_skills_item.sc_skills_style_1 .sc_skills_info{color:#ffffff}.scheme_original .sc_skills_bar .sc_skills_item .sc_skills_count,.scheme_original .sc_skills_counter .sc_skills_item.sc_skills_style_3 .sc_skills_count,.scheme_original .sc_skills_counter .sc_skills_item.sc_skills_style_4 .sc_skills_count,.scheme_original .sc_skills_counter .sc_skills_item.sc_skills_style_4 .sc_skills_info{color:#ffffff;	background-color:#11224d}.scheme_original .sc_skills_pie.sc_skills_compact_off .sc_skills_total,.scheme_original .sc_skills_pie.sc_skills_compact_off .sc_skills_label{color:#11224d}.scheme_original .sc_skills .sc_skills_descr{color:#9daab0}.scheme_original .sc_slider_controls_wrap a{color:#ffffff;	border-color:#ffffff}.scheme_original .sc_slider_controls_bottom .sc_slider_controls_wrap a:hover{color:#ffffff;	background-color:#11224d}.scheme_original .sc_slider_swiper .sc_slider_pagination_wrap span{border-color:#dfe5ea}.scheme_original .sc_slider_swiper .sc_slider_pagination_wrap .swiper-pagination-bullet-active,.scheme_original .sc_slider_swiper .sc_slider_pagination_wrap span:hover{border-color:#009FE3;	background-color:#009FE3}.scheme_original .sc_slider_swiper .sc_slider_info{background-color:rgba(17,34,77,0.8) !important}.scheme_original .sc_slider_pagination.widget_area .post_item + .post_item{border-color:#dfe5ea}.scheme_original .sc_slider_pagination_over .sc_slider_pagination_wrap span{border-color:#dfe5ea}.scheme_original .sc_slider_pagination_over .sc_slider_pagination_wrap span:hover,.scheme_original .sc_slider_pagination_over .sc_slider_pagination_wrap .swiper-pagination-bullet-active{border-color:#11224d;	background-color:#11224d}.scheme_original .sc_slider_pagination_over .sc_slider_pagination .post_title{color:#232a34}.scheme_original .sc_slider_pagination_over .sc_slider_pagination .post_info{color:#8a8a8a}.scheme_original .sc_slider_pagination_area .sc_slider_pagination .post_item.active{background-color:#f0f4f9 !important}.scheme_original .sc_slider_controls_bottom .sc_slider_controls_wrap a{background-color:#009FE3;	color:#ffffff}.scheme_original .sc_socials.sc_socials_type_icons a{color:#acb4b6;	border-color:#acb4b6}.scheme_original .sc_socials.sc_socials_type_icons a:hover{color:#11224d;	border-color:#11224d}.scheme_original .sc_socials.sc_socials_share.sc_socials_dir_vertical .sc_socials_item a{background-color:#f0f4f9}.scheme_original .sc_socials .social_icons{background-color:#009FE3}.scheme_original .sc_socials .social_icons span{color:#ffffff}.scheme_original .sc_socials .social_icons:hover span{color:#009FE3}.scheme_original .sc_socials .social_icons:hover{background-color:#ffffff!important}.scheme_original .post_author .post_author_info a{color:#009FE3}.scheme_original .post_author .post_author_info a:hover{color:#009FE3}.scheme_original .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li a{color:#0a1f54;	border-color:#dfe5ea}.scheme_original .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.ui-state-active a,.scheme_original .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.sc_tabs_active a,.scheme_original .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li a:hover{color:#11224d}.scheme_original .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.ui-state-active a:after,.scheme_original .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.sc_tabs_active a:after{background-color:#11224d}.scheme_original .sc_tabs.sc_tabs_style_1 .sc_tabs_content,.scheme_original .sc_tabs.sc_tabs_style_2 .sc_tabs_content{border-color:#dfe5ea}.scheme_original .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li a{border-color:#11224d;	background-color:#11224d;	color:#ffffff}.scheme_original .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li a:hover,.scheme_original .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li.ui-state-active a,.scheme_original .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li.sc_tabs_active a{color:#11224d}.scheme_original .sc_team_item .sc_team_item_info .sc_team_item_title a{color:#0a1f54}.scheme_original .sc_team_item .sc_team_item_info .sc_team_item_title a:hover{color:#009FE3}.scheme_original .sc_team_item .sc_team_item_info .sc_team_item_position{color:#009FE3}.scheme_original .sc_team_style_team-1 .sc_team_item_info,.scheme_original .sc_team_style_team-3 .sc_team_item_info{border-color:#11224d;	color:#656c77;	background-color:#ffffff}.scheme_original .sc_team_style_team-1.team_grey .sc_team_item_info,.scheme_original .sc_team_style_team-3.team_grey .sc_team_item_info{background-color:#f0f4f9}.scheme_original .sc_team.sc_team_style_team-3 .sc_socials_item a{color:#ffffff;	border-color:#ffffff}.scheme_original .sc_team.sc_team_style_team-3 .sc_socials_item a:hover{color:#ffffff;	border-color:#ffffff}.scheme_original .sc_team.sc_team_style_team-3 .sc_team_item_avatar .sc_team_item_hover{background-color:rgba(17,34,77,0.8)}.scheme_original .sc_team.sc_team_style_team-4 .sc_socials_item a{color:#ffffff;	border-color:#ffffff}.scheme_original .sc_team.sc_team_style_team-4 .sc_socials_item a:hover{color:#11224d;	border-color:#11224d}.scheme_original .sc_team.sc_team_style_team-4 .sc_team_item_avatar .sc_team_item_hover{color:#ffffff;	background-color:rgba(10,31,84,0.8)}.scheme_original .sc_team_style_team-4 .sc_team_item_info .sc_team_item_title a{color:#ffffff}.scheme_original .sc_team_style_team-4 .sc_team_item_info .sc_team_item_title a:hover{color:#11224d}.scheme_original .sc_team_style_team-4 .sc_team_item_info .sc_team_item_position{color:#ffffff}.scheme_original .sc_team .sc_team_descr{color:#9daab0}.scheme_original .post_item_single_team .single_team_post_description .team_position{color:#009FE3}.scheme_original .post_item_single_team .single_team_post_description .team_meta{color:#9daab0}.scheme_original .post_item_single_team .single_team_post_description .team_brief_info_text p:after{background-color:#dfe5ea}.scheme_original .sc_testimonials{color:#656c77}.scheme_original .sc_testimonial_author_name{color:#0a1f54}.scheme_original .sc_testimonial_position_position{color:#9daab0}.scheme_original .sc_testimonials_style_testimonials-2 .sc_testimonial_author_name:before{color:#9daab0}.scheme_original .sc_testimonials_style_testimonials-3 .sc_testimonial_content,.scheme_original .sc_testimonials_style_testimonials-3 .sc_testimonial_content:after{background-color:#ffffff}.scheme_original .sc_testimonials_style_testimonials-3 .sc_testimonial_content p:first-child:before{color:#11224d}.scheme_original .sc_testimonials_style_testimonials-4 .sc_testimonial_content p:first-child:before{color:#009FE3}.scheme_original .sc_testimonials_style_testimonials-4 .sc_testimonial_author_position{color:#11224d}.scheme_original .sc_testimonials_style_testimonials-4 .sc_testimonial_content{background-color:#ffffff}.scheme_original .sc_testimonials_style_testimonials-4 .sc_testimonial_content:after{background-color:#ffffff;	border-color:#ffffff}.scheme_original .sc_testimonials_style_testimonials-4 .sc_testimonial_author_position{color:#9daab0}.scheme_original .sc_testimonials.sc_testimonials_style_testimonials-4.sc_testimonials_style_test_yes .sc_testimonial_content{background-color:#f0f4f9}.scheme_original .sc_testimonials_style_testimonials-4.sc_testimonials_style_test_yes .sc_testimonial_content:after{background-color:#f0f4f9;	border-color:#f0f4f9}.scheme_original .sc_title_icon{color:#11224d}.scheme_original .sc_title_underline::after{border-color:#11224d}.scheme_original .sc_title_divider .sc_title_divider_before,.scheme_original .sc_title_divider .sc_title_divider_after{background-color:#0a1f54}.scheme_original .sc_toggles .sc_toggles_item .sc_toggles_title{border-color:#dfe5ea}.scheme_original .sc_toggles .sc_toggles_item .sc_toggles_title .sc_toggles_icon{color:#acb4b6;	background-color:#f0f4f9}.scheme_original .sc_toggles .sc_toggles_item .sc_toggles_title.ui-state-active{color:#11224d;	border-color:#11224d}.scheme_original .sc_toggles .sc_toggles_item .sc_toggles_title.ui-state-active .sc_toggles_icon_opened{color:#ffffff;	background-color:#11224d}.scheme_original .sc_toggles .sc_toggles_item .sc_toggles_title:hover{color:#009FE3;	border-color:#009FE3}.scheme_original .sc_toggles .sc_toggles_item .sc_toggles_title:hover .sc_toggles_icon_opened{background-color:#009FE3}.scheme_original .sc_toggles .sc_toggles_item .sc_toggles_content{border-color:#dfe5ea}.scheme_original .sc_tooltip_parent .sc_tooltip,.scheme_original .sc_tooltip_parent .sc_tooltip:before{background-color:#11224d}.scheme_original .sc_twitter{color:#656c77}.scheme_original .sc_twitter .sc_slider_controls_wrap a{color:#ffffff} .scheme_original .sc_item_subtitle{color:#0071c3}.scheme_original .sc_item_title:after{background-color:#11224d}.scheme_original .sc_item_button>a:before{color:#11224d;	background-color:#ffffff}.scheme_original .sc_item_button>a:hover:before{color:#009FE3}.scheme_original body table.booked-calendar thead th .monthName,.scheme_original body table.booked-calendar thead th .monthName a{color:#0a1f54}.scheme_original body table.booked-calendar thead th .monthName a:hover{color:#009FE3}.scheme_original body table.booked-calendar thead th .page-right,.scheme_original body table.booked-calendar thead th .page-left{color:#009FE3 !important}.scheme_original body table.booked-calendar td .date{background-color:#f0f4f9}.scheme_original body table.booked-calendar .booked-appt-list .timeslot .timeslot-people button:hover{background-color:#0a1f54 !important}.scheme_original .wpcf7-form-control-wrap .select_container:after{color:#acb4b6}.scheme_original .cff-container-field label,.scheme_original .cff-number-field label,.scheme_original .cff-dropdown-field label,.scheme_original .cff-date-field label,.scheme_original .calculated-result .field[type="text"],.scheme_original .cff-calculated-field label{color:#0a1f54}.scheme_original .wp-block-button:not(.is-style-outline) .wp-block-button__link{color:#009FE3}.scheme_original .wp-block-button:not(.is-style-outline) .wp-block-button__link:hover{color:#009FE3}.scheme_original .is-style-outline>.wp-block-button__link:not(.has-text-color),.scheme_original .wp-block-button__link.is-style-outline:not(.has-text-color){color:#009FE3}.scheme_original .is-style-outline>.wp-block-button__link:not(.has-text-color):hover,.scheme_original .wp-block-button__link.is-style-outline:not(.has-text-color):hover{color:#009FE3}.scheme_original .wp-block-audio .mejs-container .mejs-controls .mejs-time{color:#009FE3}.scheme_original body .booked-modal input[type=submit].button-primary:hover{color:#009FE3}.scheme_dark h1,.scheme_dark h2,.scheme_dark h3,.scheme_dark h4,.scheme_dark h5,.scheme_dark h6,.scheme_dark h1 a,.scheme_dark h2 a,.scheme_dark h3 a,.scheme_dark h4 a,.scheme_dark h5 a,.scheme_dark h6 a{color:#ffffff}.scheme_dark a{color:#ffffff}.scheme_dark a:hover{color:#00a5ea}.scheme_dark blockquote:before{color:#ffffff}.scheme_dark blockquote a{color:#ffffff}.scheme_dark blockquote a:hover{color:#00a5ea}.scheme_dark blockquote,.scheme_dark blockquote p{color:#ffffff}.scheme_dark blockquote{background:#0071c3; 	background:-moz-linear-gradient(left,#0071c3 0%,#00a8eb 100%); 	background:-webkit-linear-gradient(left,#0071c3 0%,#00a8eb 100%); 	background:linear-gradient(to right,#0071c3 0%,#00a8eb 100%); 	filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071c3',endColorstr='#00a8eb',GradientType=1 ); 	color:#ffffff}.scheme_dark .accent1{color:#ffffff}.scheme_dark .accent1_bgc{background-color:#ffffff}.scheme_dark .accent1_bg{background:#ffffff}.scheme_dark .accent1_border{border-color:#ffffff}.scheme_dark a.accent1:hover{color:#00a5ea}.scheme_dark .post_content.ih-item.circle.effect1.colored .info,.scheme_dark .post_content.ih-item.circle.effect2.colored .info,.scheme_dark .post_content.ih-item.circle.effect3.colored .info,.scheme_dark .post_content.ih-item.circle.effect4.colored .info,.scheme_dark .post_content.ih-item.circle.effect5.colored .info .info-back,.scheme_dark .post_content.ih-item.circle.effect6.colored .info,.scheme_dark .post_content.ih-item.circle.effect7.colored .info,.scheme_dark .post_content.ih-item.circle.effect8.colored .info,.scheme_dark .post_content.ih-item.circle.effect9.colored .info,.scheme_dark .post_content.ih-item.circle.effect10.colored .info,.scheme_dark .post_content.ih-item.circle.effect11.colored .info,.scheme_dark .post_content.ih-item.circle.effect12.colored .info,.scheme_dark .post_content.ih-item.circle.effect13.colored .info,.scheme_dark .post_content.ih-item.circle.effect14.colored .info,.scheme_dark .post_content.ih-item.circle.effect15.colored .info,.scheme_dark .post_content.ih-item.circle.effect16.colored .info,.scheme_dark .post_content.ih-item.circle.effect18.colored .info .info-back,.scheme_dark .post_content.ih-item.circle.effect19.colored .info,.scheme_dark .post_content.ih-item.circle.effect20.colored .info .info-back,.scheme_dark .post_content.ih-item.square.effect1.colored .info,.scheme_dark .post_content.ih-item.square.effect2.colored .info,.scheme_dark .post_content.ih-item.square.effect3.colored .info,.scheme_dark .post_content.ih-item.square.effect4.colored .mask1,.scheme_dark .post_content.ih-item.square.effect4.colored .mask2,.scheme_dark .post_content.ih-item.square.effect5.colored .info,.scheme_dark .post_content.ih-item.square.effect6.colored .info,.scheme_dark .post_content.ih-item.square.effect7.colored .info,.scheme_dark .post_content.ih-item.square.effect8.colored .info,.scheme_dark .post_content.ih-item.square.effect9.colored .info .info-back,.scheme_dark .post_content.ih-item.square.effect10.colored .info,.scheme_dark .post_content.ih-item.square.effect11.colored .info,.scheme_dark .post_content.ih-item.square.effect12.colored .info,.scheme_dark .post_content.ih-item.square.effect13.colored .info,.scheme_dark .post_content.ih-item.square.effect14.colored .info,.scheme_dark .post_content.ih-item.square.effect15.colored .info,.scheme_dark .post_content.ih-item.circle.effect20.colored .info .info-back,.scheme_dark .post_content.ih-item.square.effect_book.colored .info,.scheme_dark .post_content.ih-item.square.effect_pull.colored .post_descr{background:#ffffff;	color:#ffffff}.scheme_dark .post_content.ih-item.circle.effect1.colored .info,.scheme_dark .post_content.ih-item.circle.effect2.colored .info,.scheme_dark .post_content.ih-item.circle.effect5.colored .info .info-back,.scheme_dark .post_content.ih-item.circle.effect19.colored .info,.scheme_dark .post_content.ih-item.square.effect4.colored .mask1,.scheme_dark .post_content.ih-item.square.effect4.colored .mask2,.scheme_dark .post_content.ih-item.square.effect6.colored .info,.scheme_dark .post_content.ih-item.square.effect7.colored .info,.scheme_dark .post_content.ih-item.square.effect12.colored .info,.scheme_dark .post_content.ih-item.square.effect13.colored .info,.scheme_dark .post_content.ih-item.square.effect_more.colored .info,.scheme_dark .post_content.ih-item.square.effect_dir.colored .info,.scheme_dark .post_content.ih-item.square.effect_shift.colored .info{background:rgba(255,255,255,0.6);	color:#ffffff}.scheme_dark .post_content.ih-item.square.effect_border.colored .img,.scheme_dark .post_content.ih-item.square.effect_fade.colored .img,.scheme_dark .post_content.ih-item.square.effect_slide.colored .img{background:#ffffff}.scheme_dark .post_content.ih-item.square.effect_border.colored .info,.scheme_dark .post_content.ih-item.square.effect_fade.colored .info,.scheme_dark .post_content.ih-item.square.effect_slide.colored .info{color:#ffffff}.scheme_dark .post_content.ih-item.square.effect_border.colored .info:before,.scheme_dark .post_content.ih-item.square.effect_border.colored .info:after{border-color:#ffffff}.scheme_dark .post_content.ih-item.circle.effect1 .spinner{border-right-color:#ffffff;	border-bottom-color:#ffffff}.scheme_dark .post_content.ih-item .post_readmore .post_readmore_label,.scheme_dark .post_content.ih-item .info a,.scheme_dark .post_content.ih-item .info a>span{color:#ffffff}.scheme_dark .post_content.ih-item .post_readmore:hover .post_readmore_label,.scheme_dark .post_content.ih-item .info a:hover,.scheme_dark .post_content.ih-item .info a:hover>span{color:#e5e5e5}.scheme_dark td,.scheme_dark th{border-color:rgba(40,40,40,0.8)}.scheme_dark table{color:#0a1f54}.scheme_dark table tr:nth-child(2n+1){background-color:rgba(255,255,255,0.4)}.scheme_dark table:not(.shop_attributes):not(.shop_table):not(.group_table):not(.variations):not(#debug_bar_http) tr:first-child{background-color:#ffffff;	color:#ffffff}.scheme_dark table tr:first-child td{border-color:rgba(40,40,40,0.1)}.scheme_dark table tr:nth-child(2n){background-color:#ffffff}.scheme_dark table thead + tbody tr:first-child{background-color:rgba(255,255,255,0.4);	color:#0a1f54}.scheme_dark .sc_table th{color:#ffffff; background-color:#0a1f54}.scheme_dark pre.code,.scheme_dark #toc .toc_item.current,.scheme_dark #toc .toc_item:hover{border-color:#ffffff}.scheme_dark::selection,.scheme_dark::-moz-selection{background-color:#ffffff;	color:#ffffff}.scheme_dark input[type="text"],.scheme_dark input[type="number"],.scheme_dark input[type="tel"],.scheme_dark input[type="email"],.scheme_dark input[type="search"],.scheme_dark input[type="password"],.scheme_dark select,.scheme_dark textarea{color:#999999;	border-color:#909090;	background-color:#ffffff}.scheme_dark input[type="text"]:focus,.scheme_dark input[type="number"]:focus,.scheme_dark input[type="tel"]:focus,.scheme_dark input[type="email"]:focus,.scheme_dark input[type="search"]:focus,.scheme_dark input[type="password"]:focus,.scheme_dark select:focus,.scheme_dark textarea:focus{color:#999999;	border-color:#888888;	background-color:#ffffff}.scheme_dark input::-webkit-input-placeholder,.scheme_dark textarea::-webkit-input-placeholder{color:#aaaaaa}.scheme_dark input:focus::-webkit-input-placeholder{color:#00a5ea}.scheme_dark textarea:focus::-webkit-input-placeholder{color:#00a5ea}.scheme_dark input:focus:-moz-placeholder{color:#00a5ea}.scheme_dark textarea:focus:-moz-placeholder{color:#00a5ea}.scheme_dark input:focus::-moz-placeholder{color:#00a5ea}.scheme_dark textarea:focus::-moz-placeholder{color:#00a5ea}.scheme_dark fieldset{border-color:#29395f}.scheme_dark fieldset legend{background-color:#282828;	color:#9daab0} .scheme_dark .sc_input_hover_accent input[type="text"]:focus,.scheme_dark .sc_input_hover_accent input[type="number"]:focus,.scheme_dark .sc_input_hover_accent input[type="email"]:focus,.scheme_dark .sc_input_hover_accent input[type="password"]:focus,.scheme_dark .sc_input_hover_accent input[type="search"]:focus,.scheme_dark .sc_input_hover_accent select:focus,.scheme_dark .sc_input_hover_accent textarea:focus{box-shadow:0px 0px 0px 2px #ffffff}.scheme_dark .sc_input_hover_accent input[type="text"] + label:before,.scheme_dark .sc_input_hover_accent input[type="number"] + label:before,.scheme_dark .sc_input_hover_accent input[type="email"] + label:before,.scheme_dark .sc_input_hover_accent input[type="password"] + label:before,.scheme_dark .sc_input_hover_accent input[type="search"] + label:before,.scheme_dark .sc_input_hover_accent select + label:before,.scheme_dark .sc_input_hover_accent textarea + label:before{color:rgba(255,255,255,0.6)}.scheme_dark .sc_input_hover_path input[type="text"] + label>.sc_form_graphic,.scheme_dark .sc_input_hover_path input[type="number"] + label>.sc_form_graphic,.scheme_dark .sc_input_hover_path input[type="email"] + label>.sc_form_graphic,.scheme_dark .sc_input_hover_path input[type="password"] + label>.sc_form_graphic,.scheme_dark .sc_input_hover_path input[type="search"] + label>.sc_form_graphic,.scheme_dark .sc_input_hover_path textarea + label>.sc_form_graphic{stroke:#909090}.scheme_dark .sc_input_hover_jump .sc_form_label_content:before{color:#ffffff}.scheme_dark .sc_input_hover_jump input[type="text"],.scheme_dark .sc_input_hover_jump input[type="number"],.scheme_dark .sc_input_hover_jump input[type="email"],.scheme_dark .sc_input_hover_jump input[type="password"],.scheme_dark .sc_input_hover_jump input[type="search"],.scheme_dark .sc_input_hover_jump textarea{border-color:#909090}.scheme_dark .sc_input_hover_jump input[type="text"]:focus,.scheme_dark .sc_input_hover_jump input[type="number"]:focus,.scheme_dark .sc_input_hover_jump input[type="email"]:focus,.scheme_dark .sc_input_hover_jump input[type="password"]:focus,.scheme_dark .sc_input_hover_jump input[type="search"]:focus,.scheme_dark .sc_input_hover_jump textarea:focus,.scheme_dark .sc_input_hover_jump input[type="text"].filled,.scheme_dark .sc_input_hover_jump input[type="number"].filled,.scheme_dark .sc_input_hover_jump input[type="email"].filled,.scheme_dark .sc_input_hover_jump input[type="password"].filled,.scheme_dark .sc_input_hover_jump input[type="search"].filled,.scheme_dark .sc_input_hover_jump textarea.filled{border-color:#ffffff}.scheme_dark .sc_input_hover_underline input[type="text"] + label:before,.scheme_dark .sc_input_hover_underline input[type="number"] + label:before,.scheme_dark .sc_input_hover_underline input[type="email"] + label:before,.scheme_dark .sc_input_hover_underline input[type="password"] + label:before,.scheme_dark .sc_input_hover_underline input[type="search"] + label:before,.scheme_dark .sc_input_hover_underline textarea + label:before{background-color:#909090}.scheme_dark .sc_input_hover_jump input[type="text"]:focus + label:before,.scheme_dark .sc_input_hover_jump input[type="number"]:focus + label:before,.scheme_dark .sc_input_hover_jump input[type="email"]:focus + label:before,.scheme_dark .sc_input_hover_jump input[type="password"]:focus + label:before,.scheme_dark .sc_input_hover_jump input[type="search"]:focus + label:before,.scheme_dark .sc_input_hover_jump textarea:focus + label:before,.scheme_dark .sc_input_hover_jump input[type="text"].filled + label:before,.scheme_dark .sc_input_hover_jump input[type="number"].filled + label:before,.scheme_dark .sc_input_hover_jump input[type="email"].filled + label:before,.scheme_dark .sc_input_hover_jump input[type="password"].filled + label:before,.scheme_dark .sc_input_hover_jump input[type="search"].filled + label:before,.scheme_dark .sc_input_hover_jump textarea.filled + label:before{background-color:#888888}.scheme_dark .sc_input_hover_underline input[type="text"] + label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="number"] + label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="email"] + label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="password"] + label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="search"] + label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline textarea + label>.sc_form_label_content{color:#999999}.scheme_dark .sc_input_hover_underline input[type="text"]:focus + label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="number"]:focus + label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="email"]:focus + label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="password"]:focus + label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="search"]:focus + label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline textarea:focus + label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="text"].filled + label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="number"].filled + label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="email"].filled + label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="password"].filled + label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="search"].filled + label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline textarea.filled + label>.sc_form_label_content{color:#d0d0d0}.scheme_dark .sc_input_hover_iconed input[type="text"] + label,.scheme_dark .sc_input_hover_iconed input[type="number"] + label,.scheme_dark .sc_input_hover_iconed input[type="email"] + label,.scheme_dark .sc_input_hover_iconed input[type="password"] + label,.scheme_dark .sc_input_hover_iconed input[type="search"] + label,.scheme_dark .sc_input_hover_iconed textarea + label{color:#999999}.scheme_dark .sc_input_hover_iconed input[type="text"]:focus + label,.scheme_dark .sc_input_hover_iconed input[type="number"]:focus + label,.scheme_dark .sc_input_hover_iconed input[type="email"]:focus + label,.scheme_dark .sc_input_hover_iconed input[type="password"]:focus + label,.scheme_dark .sc_input_hover_iconed input[type="search"]:focus + label,.scheme_dark .sc_input_hover_iconed textarea:focus + label,.scheme_dark .sc_input_hover_iconed input[type="text"].filled + label,.scheme_dark .sc_input_hover_iconed input[type="number"].filled + label,.scheme_dark .sc_input_hover_iconed input[type="email"].filled + label,.scheme_dark .sc_input_hover_iconed input[type="password"].filled + label,.scheme_dark .sc_input_hover_iconed input[type="search"].filled + label,.scheme_dark .sc_input_hover_iconed textarea.filled + label{color:#999999} .scheme_dark .body_wrap{color:#9daab0}.scheme_dark .body_style_boxed .body_wrap{background-color:#282828}.scheme_dark body:not(.video_bg_show),.scheme_dark body:not(.video_bg_show) .page_wrap,.scheme_dark .copy_wrap,.scheme_dark .sidebar_cart,.scheme_dark .widget_area_inner,.scheme_dark #page_preloader{background-color:#282828}.scheme_dark .widget_area_inner{background-color:#ffffff}.scheme_dark .footer_wrap_inner.widget_area_inner{background-color:#282828}.scheme_dark .widget_rss .widget_title a{color:#0a1f54}.scheme_dark .widget_rss .widget_title a:hover{color:#00a5ea}.scheme_dark .footer_wrap_inner .widget_rss .widget_title a,.scheme_dark .footer_wrap_inner .widget_rss .rsswidget,.scheme_dark .footer_wrap_inner .widget_rss .rss-date,.scheme_dark .footer_wrap_inner .widget_rss .rssSummary{color:#ffffff}.scheme_dark .footer_wrap_inner .widget_rss .widget_title a:hover,.scheme_dark .footer_wrap_inner .widget_rss a.rsswidget:hover{color:#00a5ea}.scheme_dark .article_style_boxed .content>article>.post_content,.scheme_dark .article_style_boxed[class*="single-"] .content>.comments_wrap,.scheme_dark .article_style_boxed[class*="single-"] .content>article>.post_info_share,.scheme_dark .article_style_boxed:not(.layout_excerpt):not(.single) .content .post_item{background-color:#ffffff}.scheme_dark .top_panel_wrap_inner{background-color:#282828}.scheme_dark .top_panel_fixed .top_panel_position_over.top_panel_wrap_inner{background-color:#ffffff !important}.scheme_dark .top_panel_inner_style_3 .top_panel_cart_button,.scheme_dark .top_panel_inner_style_4 .top_panel_cart_button{background-color:rgba(0,165,234,0.2)}.scheme_dark .top_panel_style_8 .top_panel_buttons .top_panel_cart_button:before{background-color:#ffffff}.scheme_dark .top_panel_style_8 .top_panel_buttons .top_panel_cart_button:after{color:#ffffff}.scheme_dark .top_panel_middle .sidebar_cart:after,.scheme_dark .top_panel_middle .sidebar_cart{border-color:#29395f;	background-color:#282828}.scheme_dark .top_panel_inner_style_3 .top_panel_top,.scheme_dark .top_panel_inner_style_4 .top_panel_top,.scheme_dark .top_panel_inner_style_5 .top_panel_top,.scheme_dark .top_panel_inner_style_3 .top_panel_top .sidebar_cart,.scheme_dark .top_panel_inner_style_4 .top_panel_top .sidebar_cart{color:#ffffff;	background-color:#ffffff}.scheme_dark .top_panel_top a{color:#9daab0}.scheme_dark .top_panel_top a:hover{color:#00a5ea}.scheme_dark .top_panel_inner_style_3 .top_panel_top strong,.scheme_dark .top_panel_inner_style_3 .top_panel_top a,.scheme_dark .top_panel_inner_style_3 .sc_socials.sc_socials_type_icons a,.scheme_dark .top_panel_inner_style_4 .top_panel_top a,.scheme_dark .top_panel_inner_style_4 .sc_socials.sc_socials_type_icons a,.scheme_dark .top_panel_inner_style_5 .top_panel_top a,.scheme_dark .top_panel_inner_style_5 .sc_socials.sc_socials_type_icons a{color:#ffffff}.scheme_dark .top_panel_inner_style_3 .top_panel_top a:hover,.scheme_dark .top_panel_inner_style_3 .sc_socials.sc_socials_type_icons a:hover,.scheme_dark .top_panel_inner_style_4 .top_panel_top a:hover,.scheme_dark .top_panel_inner_style_4 .sc_socials.sc_socials_type_icons a:hover,.scheme_dark .top_panel_inner_style_5 .top_panel_top a:hover,.scheme_dark .top_panel_inner_style_5 .sc_socials.sc_socials_type_icons a:hover{color:#e5e5e5}.scheme_dark .top_panel_inner_style_3 .search_results .post_info a>span,.scheme_dark .top_panel_inner_style_3 .search_results .post_info a[class*="icon-"]{color:#ffffff}.scheme_dark .top_panel_inner_style_3 .search_results .post_info a[class*="icon-"]:hover{color:#e5e5e5}.scheme_dark .top_panel_wrap .contact_label{color:#00a5ea}.scheme_dark .top_panel_bottom .search_wrap .search_form button:before{color:#00a5ea}.scheme_dark .top_panel_bottom .search_wrap .search_form button:hover:before{color:#00a5ea}.scheme_dark .menu_user_nav>li>a{color:#9daab0}.scheme_dark .menu_user_nav>li>a:hover{color:#00a5ea}.scheme_dark .top_panel_inner_style_3 .menu_user_nav>li>a,.scheme_dark .top_panel_inner_style_4 .menu_user_nav>li>a,.scheme_dark .top_panel_inner_style_5 .menu_user_nav>li>a{color:#ffffff}.scheme_dark .top_panel_inner_style_3 .menu_user_nav>li>a:hover,.scheme_dark .top_panel_inner_style_4 .menu_user_nav>li>a:hover,.scheme_dark .top_panel_inner_style_5 .menu_user_nav>li>a:hover{color:#e5e5e5}.scheme_dark .menu_user_nav>li ul:not(.cart_list){border-color:#29395f;	background-color:#282828}.scheme_dark .top_panel_inner_style_1 .menu_user_nav>li>ul:after,.scheme_dark .top_panel_inner_style_2 .menu_user_nav>li>ul:after{border-color:#29395f;	background-color:#282828}.scheme_dark .top_panel_inner_style_3 .menu_user_nav>li>ul:after,.scheme_dark .top_panel_inner_style_4 .menu_user_nav>li>ul:after,.scheme_dark .top_panel_inner_style_5 .menu_user_nav>li>ul:after,.scheme_dark .top_panel_inner_style_3 .menu_user_nav>li ul,.scheme_dark .top_panel_inner_style_4 .menu_user_nav>li ul,.scheme_dark .top_panel_inner_style_5 .menu_user_nav>li ul{color:#ffffff;	background-color:#ffffff;	border-color:#00a5ea}.scheme_dark .menu_user_nav>li ul li a{color:#5e657c}.scheme_dark .menu_user_nav>li ul li a:hover,.scheme_dark .menu_user_nav>li ul li.current-menu-item>a,.scheme_dark .menu_user_nav>li ul li.current-menu-ancestor>a{color:#d0d0d0;	background-color:#505050}.scheme_dark .top_panel_inner_style_3 .menu_user_nav>li ul li a:hover,.scheme_dark .top_panel_inner_style_3 .menu_user_nav>li ul li.current-menu-item>a,.scheme_dark .top_panel_inner_style_3 .menu_user_nav>li ul li.current-menu-ancestor>a,.scheme_dark .top_panel_inner_style_4 .menu_user_nav>li ul li a:hover,.scheme_dark .top_panel_inner_style_4 .menu_user_nav>li ul li.current-menu-item>a,.scheme_dark .top_panel_inner_style_4 .menu_user_nav>li ul li.current-menu-ancestor>a,.scheme_dark .top_panel_inner_style_5 .menu_user_nav>li ul li a:hover,.scheme_dark .top_panel_inner_style_5 .menu_user_nav>li ul li.current-menu-item>a,.scheme_dark .top_panel_inner_style_5 .menu_user_nav>li ul li.current-menu-ancestor>a{background-color:#00a5ea}.scheme_dark .menu_user_nav>li.menu_user_controls .user_avatar{border-color:#29395f}.scheme_dark .top_panel_inner_style_3 .menu_user_nav>li.menu_user_controls .user_avatar,.scheme_dark .top_panel_inner_style_4 .menu_user_nav>li.menu_user_controls .user_avatar,.scheme_dark .top_panel_inner_style_5 .menu_user_nav>li.menu_user_controls .user_avatar{border-color:#ffffff}.scheme_dark .menu_user_nav>li.menu_user_bookmarks .bookmarks_add{border-bottom-color:#909090}.scheme_dark .logo .logo_text{color:#0a1f54}.scheme_dark .logo .logo_slogan{color:#9daab0} .scheme_dark .top_panel_image_hover{background-color:rgba(0,165,234,0.8)}.scheme_dark .top_panel_image_header,.scheme_dark .top_panel_image_title,.scheme_dark .top_panel_over:not(.top_panel_fixed) .top_panel_style_7 .logo_text,.scheme_dark .top_panel_over:not(.top_panel_fixed) .top_panel_style_7 .logo_slogan{color:#ffffff}.scheme_dark .top_panel_image_header a,.scheme_dark .top_panel_image_title>a,.scheme_dark .top_panel_over:not(.top_panel_fixed) .top_panel_style_7 .menu_main_nav>li>a{color:#ffffff}.scheme_dark .post_featured .post_header a:hover,.scheme_dark .top_panel_over:not(.top_panel_fixed) .top_panel_style_7 .menu_main_nav>li>a:hover{color:#e5e5e5}.scheme_dark .menu_main_nav>li>a{color:#0a1f54}.scheme_dark .menu_main_nav>li ul{color:#ffffff;	background-color:#00a5ea}.scheme_dark .menu_main_nav>a:hover,.scheme_dark .menu_main_nav>li>a:hover,.scheme_dark .menu_main_nav>li.sfHover>a,.scheme_dark .menu_main_nav>li.current-menu-item>a,.scheme_dark .menu_main_nav>li.current-menu-parent>a,.scheme_dark .menu_main_nav>li.current-menu-ancestor>a{border-color:#00a5ea;	color:#00a5ea}.scheme_dark .menu_main_nav>li ul li a{color:#ffffff}.scheme_dark .menu_main_nav>li ul li a:hover,.scheme_dark .menu_main_nav>li ul li.current-menu-item>a,.scheme_dark .menu_main_nav>li ul li.current-menu-ancestor>a{color:#0a1f54}.scheme_dark .menu_hover_slide_box .menu_main_nav>li#blob{background-color:#505050}.scheme_dark .top_panel_inner_style_1 .menu_hover_slide_box .menu_main_nav>li#blob,.scheme_dark .top_panel_inner_style_2 .menu_hover_slide_box .menu_main_nav>li#blob{background-color:#00a5ea}.scheme_dark .menu_hover_slide_line .menu_main_nav>li#blob{background-color:#e5631b}.scheme_dark .top_panel_inner_style_1 .menu_hover_slide_line .menu_main_nav>li#blob,.scheme_dark .top_panel_inner_style_2 .menu_hover_slide_line .menu_main_nav>li#blob{background-color:#ffffff}.scheme_dark .menu_hover_zoom_line .menu_main_nav>li>a:before{background-color:#e5631b}.scheme_dark .top_panel_inner_style_1 .menu_hover_zoom_line .menu_main_nav>li>a:before,.scheme_dark .top_panel_inner_style_2 .menu_hover_zoom_line .menu_main_nav>li>a:before{background-color:#ffffff}.scheme_dark .menu_hover_path_line .menu_main_nav>li:before,.scheme_dark .menu_hover_path_line .menu_main_nav>li:after,.scheme_dark .menu_hover_path_line .menu_main_nav>li>a:before,.scheme_dark .menu_hover_path_line .menu_main_nav>li>a:after{background-color:#e5631b}.scheme_dark .top_panel_inner_style_1 .menu_hover_path_line .menu_main_nav>li:before,.scheme_dark .top_panel_inner_style_1 .menu_hover_path_line .menu_main_nav>li:after,.scheme_dark .top_panel_inner_style_1 .menu_hover_path_line .menu_main_nav>li>a:before,.scheme_dark .top_panel_inner_style_1 .menu_hover_path_line .menu_main_nav>li>a:after,.scheme_dark .top_panel_inner_style_2 .menu_hover_path_line .menu_main_nav>li:before,.scheme_dark .top_panel_inner_style_2 .menu_hover_path_line .menu_main_nav>li:after,.scheme_dark .top_panel_inner_style_2 .menu_hover_path_line .menu_main_nav>li>a:before,.scheme_dark .top_panel_inner_style_2 .menu_hover_path_line .menu_main_nav>li>a:after{background-color:#ffffff}.scheme_dark .menu_hover_roll_down .menu_main_nav>li>a:before{background-color:#e5631b}.scheme_dark .top_panel_inner_style_1 .menu_hover_roll_down .menu_main_nav>li>a:before,.scheme_dark .top_panel_inner_style_2 .menu_hover_roll_down .menu_main_nav>li>a:before{background-color:#ffffff}.scheme_dark .menu_hover_color_line .menu_main_nav>li>a:hover,.scheme_dark .menu_hover_color_line .menu_main_nav>li>a:focus{color:#d0d0d0}.scheme_dark .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li>a:hover,.scheme_dark .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li>a:focus,.scheme_dark .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li>a:hover,.scheme_dark .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li>a:focus{color:#ffffff}.scheme_dark .menu_hover_color_line .menu_main_nav>li>a:before{background-color:#d0d0d0}.scheme_dark .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li>a:before,.scheme_dark .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li>a:before{background-color:#ffffff}.scheme_dark .menu_hover_color_line .menu_main_nav>li>a:after{background-color:#e5631b}.scheme_dark .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li>a:after,.scheme_dark .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li>a:after{background-color:#e5e5e5}.scheme_dark .menu_hover_color_line .menu_main_nav>li.sfHover>a,.scheme_dark .menu_hover_color_line .menu_main_nav>li>a:hover,.scheme_dark .menu_hover_color_line .menu_main_nav>li>a:focus{color:#e5631b}.scheme_dark .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li.sfHover>a,.scheme_dark .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li>a:hover,.scheme_dark .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li>a:focus,.scheme_dark .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li.sfHover>a,.scheme_dark .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li>a:hover,.scheme_dark .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li>a:focus{color:#e5e5e5}.scheme_dark .top_panel_middle .contact_field,.scheme_dark .top_panel_middle .contact_field>a{color:#0a1f54}.scheme_dark .top_panel_middle .contact_icon{color:rgba(157,170,176,0.6)}.scheme_dark .top_panel_middle .content_wrap>.columns_wrap{border-color:#909090}.scheme_dark .top_panel_inner_style_1 .search_field,.scheme_dark .top_panel_inner_style_2 .search_field,.scheme_dark .top_panel_inner_style_3 .search_field{border-color:rgba(255,255,255,0.1);	background-color:rgba(0,165,234,0.2)}.scheme_dark .top_panel_inner_style_4 .search_field{background-color:rgba(10,31,84,0.05)}.scheme_dark .content .search_field{background-color:#ffffff}.scheme_dark .content .search_field,.scheme_dark .content .search_submit{color:#5e657c}.scheme_dark .content .search_submit:before{color:#ffffff}.scheme_dark .content .search_field:focus,.scheme_dark .content .search_submit:hover{color:#d0d0d0}.scheme_dark .top_panel_inner_style_1 .search_field,.scheme_dark .top_panel_inner_style_1 .search_submit,.scheme_dark .top_panel_inner_style_2 .search_field,.scheme_dark .top_panel_inner_style_2 .search_submit,.scheme_dark .top_panel_inner_style_4 .search_field,.scheme_dark .top_panel_inner_style_4 .search_submit{color:#0a1f54}.scheme_dark .top_panel_inner_style_3 .search_field,.scheme_dark .top_panel_inner_style_3 .search_submit{color:#ffffff}.scheme_dark .top_panel_inner_style_3 .search_field:focus,.scheme_dark .top_panel_inner_style_3 .search_submit:focus,.scheme_dark .top_panel_inner_style_3 .search_submit:hover{color:#ffffff}.scheme_dark .top_panel_inner_style_8 .search_field:hover,.scheme_dark .top_panel_inner_style_8 .search_field:focus{color:#d0d0d0 !important;	background-color:#505050 !important}.scheme_dark .top_panel_icon.search_wrap{background-color:#282828;	color:#ffffff}.scheme_dark .top_panel_icon .contact_icon,.scheme_dark .top_panel_icon .search_submit{color:#ffffff}.scheme_dark .top_panel_icon.menu_main_cart .contact_icon{background-color:#282828}.scheme_dark .top_panel_middle a:hover .contact_icon,.scheme_dark .top_panel_icon.search_wrap:hover,.scheme_dark .top_panel_icon:hover .contact_icon,.scheme_dark .top_panel_icon:hover .search_submit{background-color:#ffffff}.scheme_dark .top_panel_middle a:hover .contact_icon,.scheme_dark .top_panel_icon.search_wrap:hover input,.scheme_dark .top_panel_icon.search_wrap:hover button,.scheme_dark .top_panel_icon:hover .contact_icon,.scheme_dark .top_panel_icon:hover .search_submit{color:#ffffff}.scheme_dark .search_style_fullscreen.search_state_closed:not(.top_panel_icon) .search_submit,.scheme_dark .search_style_slide.search_state_closed:not(.top_panel_icon) .search_submit{color:#ffffff}.scheme_dark .search_style_expand.search_state_opened:not(.top_panel_icon) .search_submit:hover,.scheme_dark .search_style_slide.search_state_opened:not(.top_panel_icon) .search_submit:hover{color:#d0d0d0}.scheme_dark .top_panel_inner_style_3 .search_style_expand.search_state_opened .search_submit:hover,.scheme_dark .top_panel_inner_style_3 .search_style_slide.search_state_opened .search_submit:hover{color:#ffffff}.scheme_dark .search_style_slide.search_state_opened:not(.top_panel_icon) .search_form_wrap{top:0.8em}.scheme_dark .search_results .post_more,.scheme_dark .search_results .search_results_close{color:#ffffff}.scheme_dark .search_results .post_more:hover,.scheme_dark .search_results .search_results_close:hover{color:#00a5ea}.scheme_dark .top_panel_inner_style_1 .search_results,.scheme_dark .top_panel_inner_style_1 .search_results:after,.scheme_dark .top_panel_inner_style_2 .search_results,.scheme_dark .top_panel_inner_style_2 .search_results:after,.scheme_dark .top_panel_inner_style_3 .search_results,.scheme_dark .top_panel_inner_style_3 .search_results:after{color:#ffffff;	background-color:#ffffff; border-color:#00a5ea}.scheme_dark .top_panel_inner_style_1 .search_results a,.scheme_dark .top_panel_inner_style_1 .search_results .post_info a,.scheme_dark .top_panel_inner_style_1 .search_results .post_info a>span,.scheme_dark .top_panel_inner_style_1 .search_results .post_more,.scheme_dark .top_panel_inner_style_1 .search_results .search_results_close,.scheme_dark .top_panel_inner_style_2 .search_results a,.scheme_dark .top_panel_inner_style_2 .search_results .post_info a,.scheme_dark .top_panel_inner_style_2 .search_results .post_info a>span,.scheme_dark .top_panel_inner_style_2 .search_results .post_more,.scheme_dark .top_panel_inner_style_2 .search_results .search_results_close,.scheme_dark .top_panel_inner_style_3 .search_results a,.scheme_dark .top_panel_inner_style_3 .search_results .post_info a,.scheme_dark .top_panel_inner_style_3 .search_results .post_info a>span,.scheme_dark .top_panel_inner_style_3 .search_results .post_more,.scheme_dark .top_panel_inner_style_3 .search_results .search_results_close{color:#ffffff}.scheme_dark .top_panel_inner_style_1 .search_results a:hover,.scheme_dark .top_panel_inner_style_1 .search_results .post_info a:hover,.scheme_dark .top_panel_inner_style_1 .search_results .post_info a:hover>span,.scheme_dark .top_panel_inner_style_1 .search_results .post_more:hover,.scheme_dark .top_panel_inner_style_1 .search_results .search_results_close:hover,.scheme_dark .top_panel_inner_style_2 .search_results a:hover,.scheme_dark .top_panel_inner_style_2 .search_results .post_info a:hover,.scheme_dark .top_panel_inner_style_2 .search_results .post_info a:hover>span,.scheme_dark .top_panel_inner_style_2 .search_results .post_more:hover,.scheme_dark .top_panel_inner_style_2 .search_results .search_results_close:hover,.scheme_dark .top_panel_inner_style_3 .search_results a:hover,.scheme_dark .top_panel_inner_style_3 .search_results .post_info a:hover,.scheme_dark .top_panel_inner_style_3 .search_results .post_info a:hover>span,.scheme_dark .top_panel_inner_style_3 .search_results .post_more:hover,.scheme_dark .top_panel_inner_style_3 .search_results .search_results_close:hover{color:#e5e5e5}.scheme_dark .top_panel_inner_style_8 .menu_pushy_wrap .menu_pushy_button{color:#5e657c}.scheme_dark .top_panel_inner_style_8 .menu_pushy_wrap .menu_pushy_button:hover{color:#d0d0d0}.scheme_dark .top_panel_inner_style_8 .top_panel_buttons .contact_icon,.scheme_dark .top_panel_inner_style_8 .top_panel_buttons .top_panel_icon .search_submit{color:#5e657c}.scheme_dark .top_panel_inner_style_8 .top_panel_buttons a:hover .contact_icon,.scheme_dark .top_panel_inner_style_8 .top_panel_buttons .top_panel_icon:hover .search_submit{color:#d0d0d0}.scheme_dark .pushy_inner{color:#9daab0; background-color:#282828}.scheme_dark .pushy_inner a{color:#ffffff}.scheme_dark .pushy_inner a:hover{color:#00a5ea}.scheme_dark .top_panel_inner_style_3 .popup_wrap a,.scheme_dark .top_panel_inner_style_3 .popup_wrap .sc_socials.sc_socials_type_icons a:hover,.scheme_dark .top_panel_inner_style_4 .popup_wrap a,.scheme_dark .top_panel_inner_style_4 .popup_wrap .sc_socials.sc_socials_type_icons a:hover,.scheme_dark .top_panel_inner_style_5 .popup_wrap a,.scheme_dark .top_panel_inner_style_5 .popup_wrap .sc_socials.sc_socials_type_icons a:hover{color:#ffffff}.scheme_dark .top_panel_inner_style_3 .popup_wrap a:hover,.scheme_dark .top_panel_inner_style_4 .popup_wrap a:hover,.scheme_dark .top_panel_inner_style_5 .popup_wrap a:hover{color:#00a5ea}.scheme_dark .top_panel_inner_style_3 .popup_wrap,.scheme_dark .top_panel_inner_style_4 .popup_wrap,.scheme_dark .top_panel_inner_style_5 .popup_wrap,.scheme_dark .top_panel_inner_style_3 .popup_wrap .popup_close,.scheme_dark .top_panel_inner_style_3 .popup_wrap .sc_socials.sc_socials_type_icons a,.scheme_dark .top_panel_inner_style_4 .popup_wrap .popup_close,.scheme_dark .top_panel_inner_style_4 .popup_wrap .sc_socials.sc_socials_type_icons a,.scheme_dark .top_panel_inner_style_5 .popup_wrap .popup_close,.scheme_dark .top_panel_inner_style_5 .popup_wrap .sc_socials.sc_socials_type_icons a{color:#9daab0}.scheme_dark .top_panel_inner_style_3 .popup_wrap .popup_close:hover,.scheme_dark .top_panel_inner_style_4 .popup_wrap .popup_close:hover,.scheme_dark .top_panel_inner_style_5 .popup_wrap .popup_close:hover{color:#0a1f54}.scheme_dark .header_mobile .menu_button,.scheme_dark .header_mobile .menu_main_cart .top_panel_cart_button .contact_icon{color:#0a1f54}.scheme_dark .header_mobile .side_wrap{color:#ffffff}.scheme_dark .header_mobile .panel_top,.scheme_dark .header_mobile .side_wrap{background-color:#ffffff}.scheme_dark .header_mobile .panel_middle{background-color:#ffffff}.scheme_dark .header_mobile .menu_button:hover,.scheme_dark .header_mobile .menu_main_cart .top_panel_cart_button .contact_icon:hover,.scheme_dark .header_mobile .menu_main_cart.top_panel_icon:hover .top_panel_cart_button .contact_icon,.scheme_dark .header_mobile .side_wrap .close:hover{color:#ffffff}.scheme_dark .header_mobile .menu_main_nav>li a,.scheme_dark .header_mobile .menu_main_nav>li>a:hover{color:#ffffff}.scheme_dark .header_mobile .menu_main_nav>a:hover,.scheme_dark .header_mobile .menu_main_nav>li.sfHover>a,.scheme_dark .header_mobile .menu_main_nav>li.current-menu-item>a,.scheme_dark .header_mobile .menu_main_nav>li.current-menu-parent>a,.scheme_dark .header_mobile .menu_main_nav>li.current-menu-ancestor>a,.scheme_dark .header_mobile .menu_main_nav>li>a:hover,.scheme_dark .header_mobile .menu_main_nav>li ul li a:hover,.scheme_dark .header_mobile .menu_main_nav>li ul li.current-menu-item>a,.scheme_dark .header_mobile .menu_main_nav>li ul li.current-menu-ancestor>a,.scheme_dark .header_mobile .login a:hover{color:#e5e5e5}.scheme_dark .header_mobile .popup_wrap .popup_close:hover{color:#0a1f54}.scheme_dark .header_mobile .search_wrap,.scheme_dark .header_mobile .login{border-color:#ffffff}.scheme_dark .header_mobile .login .popup_link,.scheme_dark .header_mobile .sc_socials.sc_socials_type_icons a{color:#ffffff}.scheme_dark .header_mobile .search_wrap .search_field,.scheme_dark .header_mobile .search_wrap .search_field:focus{color:#ffffff}.scheme_dark .header_mobile .popup_wrap .sc_socials.sc_socials_type_icons a{color:#656c77}.scheme_dark .tparrows.default{color:#282828}.scheme_dark .tp-bullets.simplebullets.round .bullet{background-color:#282828}.scheme_dark .tp-bullets.simplebullets.round .bullet.selected{border-color:#282828}.scheme_dark .slider_over_content_inner{background-color:rgba(40,40,40,0.8)}.scheme_dark .slider_over_button{color:#0a1f54;	background-color:rgba(40,40,40,0.8)}.scheme_dark .slider_over_close{color:#0a1f54}.scheme_dark .sc_button.slider_button{background:#ffffff!important; color:#0a1f54!important}.scheme_dark .sc_button.slider_button:hover{background:#0a1f54!important; color:#ffffff!important}.scheme_dark .persephone.tparrows{border-color:rgba(255,255,255,0.3)!important}.scheme_dark .persephone.tparrows:before{color:rgba(255,255,255,0.7)!important}.scheme_dark .persephone.tparrows:hover{border-color:#00a5ea!important}.scheme_dark .persephone.tparrows:hover:before{color:#00a5ea!important} .scheme_dark .top_panel_title_inner{background-color:#ffffff;	border-color:rgba(144,144,144,0.1)}.scheme_dark .top_panel_title_inner .page_title{color:#0a1f54}.scheme_dark .top_panel_title_inner .post_navi .post_navi_item a,.scheme_dark .top_panel_title_inner .breadcrumbs a.breadcrumbs_item{color:#d0d0d0}.scheme_dark .top_panel_title_inner .post_navi .post_navi_item a:hover,.scheme_dark .top_panel_title_inner .breadcrumbs a.breadcrumbs_item:hover{color:#aaaaaa}.scheme_dark .top_panel_title_inner .post_navi span,.scheme_dark .top_panel_title_inner .breadcrumbs span{color:#aaaaaa}.scheme_dark .post_navi .post_navi_item + .post_navi_item:before,.scheme_dark .top_panel_title_inner .breadcrumbs .breadcrumbs_delimiter{color:#aaaaaa}.scheme_dark .post_title .post_icon{color:#ffffff}.scheme_dark .pagination>a{border-color:#ffffff}.scheme_dark .post_format_aside.post_item_single .post_content p,.scheme_dark .post_format_aside .post_descr{border-color:#ffffff;	background-color:#282828}.scheme_dark .hover_icon:before{color:#ffffff;	background-color:#00a5ea}.scheme_dark .hover_icon:after{background-color:rgba(255,255,255,0.8)}.scheme_dark .post_info a,.scheme_dark .post_info a>span{color:#656c77}.scheme_dark .post_info a[class*="icon-"]{color:#ffffff}.scheme_dark .post_info a:hover,.scheme_dark .post_info a:hover>span{color:#00a5ea}.scheme_dark .post_item .post_readmore_label{color:#0a1f54}.scheme_dark .post_item .post_readmore:hover .post_readmore_label{color:#00a5ea}.scheme_dark .post_info .post_info_counters .post_counters_item:before,.scheme_dark .post_info .post_info_posted:before{color:#00a5ea}.scheme_dark .post_info .post_info_posted_by:before,.scheme_dark .post_info .post_info_tags:before{color:#656c77}.scheme_dark .post_info .post_info_posted_by,.scheme_dark .post_info .post_info_tags{color:#656c77}.scheme_dark .post_info.post_info_bottom .post_info_tags a{background-color:#29395f;	color:#9daab0}.scheme_dark .post_info.post_info_bottom .post_info_tags a:hover{color:#ffffff;	background-color:#00a5ea}.scheme_dark .post_info_bottom_cat_tag{border-color:#29395f}.scheme_dark .post_item_related .post_info a{color:#9daab0}.scheme_dark .post_item_related .post_info a:hover,.scheme_dark .post_item_related .post_title a:hover{color:#00a5ea}.scheme_dark .article_style_boxed.sidebar_show[class*="single-"] .related_wrap .post_item_related{background-color:#ffffff}.scheme_dark .post_item_related .post_content .post_content_wrap .post_title a{color:#0a1f54}.scheme_dark .post_item_related .post_content .post_content_wrap .post_title a:hover{color:#00a5ea}.scheme_dark .post_item_related .post_content .post_featured + .post_content_wrap .post_title a{color:#ffffff}.scheme_dark .post_item_related .post_content .post_featured + .post_content_wrap .post_title a:hover{color:#00a5ea}.scheme_dark .post_item_related .post_content .post_featured .hover_icon:after{background:-moz-linear-gradient(bottom,rgba(255,255,255,0.8) 0%,rgba(125,185,232,0) 100%); background:-webkit-linear-gradient(bottom,rgba(255,255,255,0.8) 0%,rgba(125,185,232,0) 100%); background:linear-gradient(to top,rgba(255,255,255,0.8) 0%,rgba(125,185,232,0) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799',endColorstr='#007db9e8',GradientType=0 ); }.scheme_dark .single-post .related_wrap{border-color:#29395f}.scheme_dark .isotope_item_colored .post_featured .post_mark_new,.scheme_dark .isotope_item_colored .post_featured .post_title,.scheme_dark .isotope_item_colored .post_content.ih-item.square.colored .info{color:#ffffff;	background-color:#ffffff}.scheme_dark .isotope_item_colored .post_featured .post_title a{color:#ffffff}.scheme_dark .isotope_item_colored .post_category a,.scheme_dark .isotope_item_colored .post_rating .reviews_stars_bg,.scheme_dark .isotope_item_colored .post_rating .reviews_stars_hover,.scheme_dark .isotope_item_colored .post_rating .reviews_value{color:#ffffff}.scheme_dark .isotope_item_colored .post_featured .post_descr{background-color:#ffffff}.scheme_dark .article_style_boxed .isotope_item_colored .post_featured .post_descr{background-color:#ffffff}.scheme_dark .isotope_item_colored .post_info_wrap .post_button .sc_button{color:#ffffff;	background-color:#282828}.scheme_dark .isotope_item_colored_1 .post_item{background-color:#ffffff;	color:#5e657c}.scheme_dark .isotope_item_colored_1 a,.scheme_dark .isotope_item_colored_1 .post_title a{color:#00a5ea}.scheme_dark .isotope_item_colored_1 a:hover,.scheme_dark .isotope_item_colored_1 .post_title a:hover,.scheme_dark .isotope_item_colored_1 .post_category a:hover{color:#e5631b}.scheme_dark .isotope_wrap .isotope_item_colored_1 .post_featured{border-color:#ffffff}.scheme_dark .isotope_filters a{border-color:#ffffff;	background-color:#ffffff;	color:#ffffff}.scheme_dark .isotope_filters a.active,.scheme_dark .isotope_filters a:hover{border-color:#00a5ea;	background-color:#00a5ea}.scheme_dark .pagination_single>.pager_numbers,.scheme_dark .pagination_single a,.scheme_dark .pagination_single .current,.scheme_dark .pagination_slider .pager_cur,.scheme_dark .pagination_pages>a,.scheme_dark .pagination_pages>span{background-color:#ffffff;	color:#00a5ea;	border-color:#00a5ea}.scheme_dark .pagination_single>.pager_numbers,.scheme_dark .pagination_single a:hover,.scheme_dark .pagination_single .current,.scheme_dark .pagination_slider .pager_cur:hover,.scheme_dark .pagination_slider .pager_cur:focus,.scheme_dark .pagination_pages>.active,.scheme_dark .pagination_pages>a:hover{border-color:#00a5ea;	background-color:#00a5ea;	color:#ffffff}.scheme_dark .pagination_slider .pager_slider{border-color:#29395f;	background-color:#282828}.scheme_dark .pagination_wrap .pager_next,.scheme_dark .pagination_wrap .pager_prev,.scheme_dark .pagination_wrap .pager_last,.scheme_dark .pagination_wrap .pager_first{color:#ffffff}.scheme_dark .pagination_wrap .pager_next:hover,.scheme_dark .pagination_wrap .pager_prev:hover,.scheme_dark .pagination_wrap .pager_last:hover,.scheme_dark .pagination_wrap .pager_first:hover{color:#00a5ea}.scheme_dark .pagination_viewmore>a{color:#ffffff;	background-color:#ffffff}.scheme_dark .pagination_viewmore>a:hover{color:#ffffff;	background-color:#00a5ea}.scheme_dark .viewmore_loader,.scheme_dark .mfp-preloader span,.scheme_dark .sc_video_frame.sc_video_active:before{background-color:#00a5ea}.scheme_dark .post_featured .post_nav_item{color:#ffffff}.scheme_dark .post_featured .post_nav_item:before{background-color:#ffffff;	color:#ffffff}.scheme_dark .post_featured .post_nav_item .post_nav_info{background-color:#ffffff}.scheme_dark .reviews_block .reviews_summary .reviews_item{background-color:#ffffff}.scheme_dark .reviews_block .reviews_summary,.scheme_dark .reviews_block .reviews_max_level_100 .reviews_stars_bg{background-color:#505050}.scheme_dark .reviews_block .reviews_max_level_100 .reviews_stars_hover,.scheme_dark .reviews_block .reviews_item .reviews_slider{color:#ffffff;	background-color:#ffffff}.scheme_dark .reviews_block .reviews_item .reviews_stars_hover{color:#ffffff}.scheme_dark .reviews_block .reviews_value{color:#0a1f54}.scheme_dark .reviews_block .reviews_summary .reviews_criteria{color:#9daab0}.scheme_dark .reviews_block .reviews_summary .reviews_value{color:#ffffff} .scheme_dark .post_item .post_rating .reviews_stars_bg,.scheme_dark .post_item .post_rating .reviews_stars_hover,.scheme_dark .post_item .post_rating .reviews_value{color:#ffffff}.scheme_dark .post_author{background-color:#ffffff;	color:#d0d0d0}.scheme_dark .post_author .post_author_title{color:#d0d0d0}.scheme_dark .post_author .post_author_title a{color:#ffffff}.scheme_dark .post_author .post_author_title a:hover{color:#00a5ea}.scheme_dark .post_author .post_author_info .sc_socials_shape_square a{color:#d0d0d0}.scheme_dark .post_author .post_author_info .sc_socials_shape_square a:hover{color:#00a5ea}.scheme_dark .post_author_inner{border-color:#29395f}.scheme_dark .comments_list_wrap ul.children,.scheme_dark .comments_list_wrap ul>li + li{border-top-color:#656c77}.scheme_dark .comments_list_wrap .comment-respond{border-bottom-color:#ffffff}.scheme_dark .comments_list_wrap>ul{border-bottom-color:#29395f}.scheme_dark .comments_list_wrap .comment_info>.comment_date>.comment_date_value,.scheme_dark .comments_list_wrap .comment_info .comment_date + span:before,.scheme_dark .comments_list_wrap .comment_time{color:#656c77}.scheme_dark .comments_list_wrap .comment_author{color:#0a1f54}.scheme_dark .comments_list_wrap .comment_reply a{color:#00a5ea}.scheme_dark .comments_list_wrap .comment_reply a:hover{color:#e5631b}.scheme_dark .post_item_404 .page_title,.scheme_dark .post_item_404 .page_subtitle,.scheme_dark .post_item_404 .page_search .search_wrap .search_submit:before{color:#0a1f54}.scheme_dark .post_item_404 .page_search .search_wrap .search_submit:hover:before{color:#00a5ea}.scheme_dark .sidebar_outer_menu .menu_side_nav li>a,.scheme_dark .sidebar_outer_menu .menu_side_responsive li>a{color:#0a1f54}.scheme_dark .sidebar_outer_menu .menu_side_nav li>a:hover,.scheme_dark .sidebar_outer_menu .menu_side_nav li.sfHover>a,.scheme_dark .sidebar_outer_menu .menu_side_responsive li>a:hover,.scheme_dark .sidebar_outer_menu .menu_side_responsive li.sfHover>a{color:#d0d0d0;	background-color:#505050}.scheme_dark .sidebar_outer_menu .menu_side_nav>li ul,.scheme_dark .sidebar_outer_menu .menu_side_responsive>li ul{color:#0a1f54;	background-color:#282828;	border-color:#29395f}.scheme_dark .sidebar_outer_menu .menu_side_nav li.current-menu-item>a,.scheme_dark .sidebar_outer_menu .menu_side_nav li.current-menu-parent>a,.scheme_dark .sidebar_outer_menu .menu_side_nav li.current-menu-ancestor>a,.scheme_dark .sidebar_outer_menu .menu_side_responsive li.current-menu-item>a,.scheme_dark .sidebar_outer_menu .menu_side_responsive li.current-menu-parent>a,.scheme_dark .sidebar_outer_menu .menu_side_responsive li.current-menu-ancestor>a{color:#656c77}.scheme_dark .sidebar_outer_menu .sidebar_outer_menu_buttons>a{color:#0a1f54}.scheme_dark .sidebar_outer_menu .sidebar_outer_menu_buttons>a:hover{color:#ffffff}.scheme_dark .sidebar_inner aside:nth-child(3n+4),.scheme_dark .sidebar_inner aside:nth-child(3n+5),.scheme_dark .sidebar_inner aside:nth-child(3n+6),.scheme_dark .sidebar_outer_inner aside:nth-child(3n+4),.scheme_dark .sidebar_outer_inner aside:nth-child(3n+5),.scheme_dark .sidebar_outer_inner aside:nth-child(3n+6),.scheme_dark .widget_area_inner aside:nth-child(2n+3),.scheme_dark .widget_area_inner aside:nth-child(2n+4),.scheme_dark .widget_area_inner aside+aside{border-color:#29395f}.scheme_dark .widget_area_inner{color:#9daab0}.scheme_dark .widget_area_inner a,.scheme_dark .widget_area_inner ul li:before,.scheme_dark .widget_area_inner ul li a:hover,.scheme_dark .widget_area_inner button:before{color:#9daab0}.scheme_dark .widget_area_inner button:before,.scheme_dark .widget_area_inner ul li:before{color:#00a5ea}.scheme_dark .widget_area_inner a:hover,.scheme_dark .widget_area_inner ul li a,.scheme_dark .widget_area_inner button:hover:before{color:#ffffff}.scheme_dark .widget_area_inner ul li a:hover{color:#00a5ea}.scheme_dark .widget_area_inner .post_title a{color:#0a1f54}.scheme_dark .widget_area_inner .widget_text a:not(.sc_button),.scheme_dark .widget_area_inner .post_info a{color:#ffffff}.scheme_dark .widget_area_inner .widget_text a:not(.sc_button):hover,.scheme_dark .widget_area_inner .post_info a:hover{color:#00a5ea} .scheme_dark .widget_area_inner .widget_product_search .search_form,.scheme_dark .widget_area_inner .widget_search .search_form,.scheme_dark .widget_area_inner .widget_categories select,.scheme_dark .widget_area_inner .widget_text select,.scheme_dark .widget_area_inner .widget_archive select{background-color:#666666}.scheme_dark .footer_wrap_inner.widget_area_inner .widget_search .search_form,.scheme_dark .footer_wrap_inner.widget_area_inner .widget_archive select,.scheme_dark .footer_wrap_inner.widget_area_inner .widget_text select,.scheme_dark .footer_wrap_inner.widget_area_inner .widget_categories select{background-color:#ffffff}.scheme_dark .widget_area_inner .widget_product_search .search_field,.scheme_dark .widget_area_inner .widget_search .search_field{color:#5e657c}.scheme_dark .widget_area_inner .widget_product_search .search_button:before,.scheme_dark .widget_area_inner .widget_search .search_button:before{color:#656c77}.scheme_dark .widget_area_inner .widget_product_search .search_button,.scheme_dark .widget_area_inner .widget_search .search_button{color:#9daab0}.scheme_dark .widget_area_inner .widget_product_search .search_button:hover,.scheme_dark .widget_area_inner .widget_search .search_button:hover{color:#d0d0d0} .scheme_dark .widget_area_inner .widget_calendar .weekday{color:#0a1f54}.scheme_dark .widget_area_inner .widget_calendar td a:hover{background-color:#00a5ea;	color:#ffffff}.scheme_dark .wp-block-calendar .today .day_wrap,.scheme_dark .widget_area_inner .widget_calendar .today .day_wrap{color:#ffffff}.scheme_dark .wp-block-calendar .today .day_wrap:before,.scheme_dark .widget_area_inner .widget_calendar .today .day_wrap:before{background-color:#00a5ea}.scheme_dark .widget_area .widget_calendar td a:after{color:#00a5ea}.scheme_dark .widget_area .widget_calendar th.month_prev a,.scheme_dark .widget_area .widget_calendar th.month_next a{color:#00a5ea}.scheme_dark .widget_area .widget_calendar th.month_prev a:hover,.scheme_dark .widget_area .widget_calendar th.month_next a:hover{color:#e5631b}.scheme_dark .widget_area .widget_calendar .month_cur{color:#00a5ea}.scheme_dark .widget_area .widget_calendar td{color:#9daab0}.scheme_dark .widget_area .widget_calendar .weekday{color:#0a1f54} .scheme_dark .widget_area .widget_recent_comments ul li .comment-author-link{color:#ffffff}.scheme_dark .footer_wrap.widget_area .widget_recent_comments ul li .comment-author-link{color:#ffffff}.scheme_dark .footer_wrap.widget_area .widget_rss cite{color:#ffffff} .scheme_dark .wp-block-tag-cloud a,.scheme_dark .widget_area_inner .widget_product_tag_cloud a,.scheme_dark .widget_area_inner .widget_tag_cloud a{background-color:#29395f;	color:#9daab0}.scheme_dark .wp-block-tag-cloud a:not([class*="sc_button_hover_"]):hover,.scheme_dark .widget_area_inner .widget_product_tag_cloud a:not([class*="sc_button_hover_"]):hover,.scheme_dark .widget_area_inner .widget_tag_cloud a:not([class*="sc_button_hover_"]):hover{color:#ffffff;	background-color:#00a5ea} .scheme_dark .widget_text .mail_footer,.scheme_dark .widget_text .address_footer,.scheme_dark .widget_text .mail_footer:before,.scheme_dark .widget_text .address_footer:before{color:#00a5ea}.scheme_dark .widget_text .textwidget h5{color:#ffffff}.scheme_dark .sidebar_outer_inner aside,.scheme_dark .sidebar_inner aside{border-top-color:#29395f}.scheme_dark .pre_footer_wrap{background-color:#909090}.scheme_dark .pre_footer_wrap a{color:#ffffff}.scheme_dark gi.pre_footer_wrap a:hover{color:#00a5ea}.scheme_dark .footer_wrap_inner.widget_area_inner .content_wrap{border-color:rgba(255,255,255,0.1)}.scheme_dark .contacts_wrap_inner{color:#9daab0;	background-color:#282828}.scheme_dark .testimonials_wrap_inner,.scheme_dark .twitter_wrap_inner{color:#9daab0;	background-color:#282828}.scheme_dark .copyright_wrap_inner{background-color:#282828}.scheme_dark .copyright_wrap_inner .copyright_text{color:#5e657c}.scheme_dark .copyright_wrap_inner .menu_footer_nav li a{color:#9daab0}.scheme_dark .copyright_wrap_inner .menu_footer_nav li a:hover{color:#ffffff}.scheme_dark .scroll_to_top{background:#0071c3; 	background:-moz-linear-gradient(left,#0071c3 9%,#00a8eb 55%); 	background:-webkit-linear-gradient(left,#0071c3 9%,#00a8eb 55%); 	background:linear-gradient(to right,#0071c3 9%,#00a8eb 55%); 	filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071c3',endColorstr='#00a8eb',GradientType=1 );  background-size:200%; background-position:0; color:#ffffff}.scheme_dark .scroll_to_top:hover{color:#ffffff}.scheme_dark #page_preloader{background-color:#282828}.scheme_dark .preloader_wrap>div{background-color:#ffffff}.scheme_dark.gallery_preview:before{background-color:#282828}.scheme_dark .popup_wrap{background-color:#282828}.scheme_dark .woocommerce .woocommerce-message:before,.scheme_dark .woocommerce-page .woocommerce-message:before,.scheme_dark .woocommerce div.product span.price,.scheme_dark .woocommerce div.product p.price,.scheme_dark .woocommerce #content div.product span.price,.scheme_dark .woocommerce #content div.product p.price,.scheme_dark .woocommerce-page div.product span.price,.scheme_dark .woocommerce-page div.product p.price,.scheme_dark .woocommerce-page #content div.product span.price,.scheme_dark .woocommerce-page #content div.product p.price,.scheme_dark .woocommerce ul.products li.product .price,.scheme_dark .woocommerce-page ul.products li.product .price,.scheme_dark .woocommerce ul.cart_list li>.amount,.scheme_dark .woocommerce ul.product_list_widget li>.amount,.scheme_dark .woocommerce-page ul.cart_list li>.amount,.scheme_dark .woocommerce-page ul.product_list_widget li>.amount,.scheme_dark .woocommerce ul.cart_list li span .amount,.scheme_dark .woocommerce ul.product_list_widget li span .amount,.scheme_dark .woocommerce-page ul.cart_list li span .amount,.scheme_dark .woocommerce-page ul.product_list_widget li span .amount,.scheme_dark .woocommerce ul.cart_list li ins .amount,.scheme_dark .woocommerce ul.product_list_widget li ins .amount,.scheme_dark .woocommerce-page ul.cart_list li ins .amount,.scheme_dark .woocommerce-page ul.product_list_widget li ins .amount,.scheme_dark .woocommerce.widget_shopping_cart .total .amount,.scheme_dark .woocommerce .widget_shopping_cart .total .amount,.scheme_dark .woocommerce-page.widget_shopping_cart .total .amount,.scheme_dark .woocommerce-page .widget_shopping_cart .total .amount,.scheme_dark .woocommerce a:hover h3,.scheme_dark .woocommerce-page a:hover h3,.scheme_dark .woocommerce .cart-collaterals .order-total strong,.scheme_dark .woocommerce-page .cart-collaterals .order-total strong,.scheme_dark .woocommerce .checkout #order_review .order-total .amount,.scheme_dark .woocommerce-page .checkout #order_review .order-total .amount,.scheme_dark .woocommerce .star-rating,.scheme_dark .woocommerce-page .star-rating,.scheme_dark .woocommerce .star-rating:before,.scheme_dark .woocommerce-page .star-rating:before,.scheme_dark .widget_area_inner .widgetWrap ul>li .star-rating span,.scheme_dark .woocommerce #review_form #respond .stars a,.scheme_dark .woocommerce-page #review_form #respond .stars a{}.scheme_dark .woocommerce div.quantity span,.scheme_dark .woocommerce-page div.quantity span{color:#0a1f54;	background-color:#ffffff}.scheme_dark .woocommerce div.quantity span:hover,.scheme_dark .woocommerce-page div.quantity span:hover{color:#e5631b;	background-color:#ffffff}.scheme_dark .woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content{background-color:#aaaaaa}.scheme_dark .woocommerce .widget_price_filter .ui-slider .ui-slider-range,.scheme_dark .woocommerce-page .widget_price_filter .ui-slider .ui-slider-range{background-color:#0a1f54}.scheme_dark .woocommerce .widget_price_filter .ui-slider .ui-slider-handle,.scheme_dark .woocommerce-page .widget_price_filter .ui-slider .ui-slider-handle{background:#ffffff}.scheme_dark .woocommerce .woocommerce-message,.scheme_dark .woocommerce-page .woocommerce-message,.scheme_dark .woocommerce a.button.alt:active,.scheme_dark .woocommerce button.button.alt:active,.scheme_dark .woocommerce input.button.alt:active,.scheme_dark .woocommerce #respond input#submit.alt:active,.scheme_dark .woocommerce #content input.button.alt:active,.scheme_dark .woocommerce-page a.button.alt:active,.scheme_dark .woocommerce-page button.button.alt:active,.scheme_dark .woocommerce-page input.button.alt:active,.scheme_dark .woocommerce-page #respond input#submit.alt:active,.scheme_dark .woocommerce-page #content input.button.alt:active,.scheme_dark .woocommerce a.button:active,.scheme_dark .woocommerce button.button:active,.scheme_dark .woocommerce input.button:active,.scheme_dark .woocommerce #respond input#submit:active,.scheme_dark .woocommerce #content input.button:active,.scheme_dark .woocommerce-page a.button:active,.scheme_dark .woocommerce-page button.button:active,.scheme_dark .woocommerce-page input.button:active,.scheme_dark .woocommerce-page #respond input#submit:active,.scheme_dark .woocommerce-page #content input.button:active{border-top-color:#ffffff}.scheme_dark .woocommerce a.button:not(.pswp__button),.scheme_dark .woocommerce button.button,.scheme_dark .woocommerce input.button,.scheme_dark .woocommerce #respond input#submit,.scheme_dark .woocommerce #content input.button,.scheme_dark .woocommerce-page a.button,.scheme_dark .woocommerce-page button.button,.scheme_dark .woocommerce-page input.button,.scheme_dark .woocommerce-page #respond input#submit,.scheme_dark .woocommerce-page #content input.button,.scheme_dark .woocommerce a.button.alt,.scheme_dark .woocommerce button.button.alt,.scheme_dark .woocommerce input.button.alt,.scheme_dark .woocommerce #respond input#submit.alt,.scheme_dark .woocommerce #content input.button.alt,.scheme_dark .woocommerce-page a.button.alt,.scheme_dark .woocommerce-page button.button.alt,.scheme_dark .woocommerce-page input.button.alt,.scheme_dark .woocommerce-page #respond input#submit.alt,.scheme_dark .woocommerce-page #content input.button.alt,.scheme_dark .woocommerce-account .addresses .title .edit,.scheme_dark .woocommerce ul.products li.product .add_to_cart_button,.scheme_dark .woocommerce-page ul.products li.product .add_to_cart_button{background-color:#ffffff;	color:#ffffff}.scheme_dark .article_style_boxed.woocommerce .woocommerce-error,.scheme_dark .article_style_boxed.woocommerce .woocommerce-info,.scheme_dark .article_style_boxed.woocommerce .woocommerce-message,.scheme_dark .article_style_boxed.woocommerce-page .woocommerce-error,.scheme_dark .article_style_boxed.woocommerce-page .woocommerce-info,.scheme_dark .article_style_boxed.woocommerce-page .woocommerce-message{background-color:#ffffff}.scheme_dark .article_style_boxed.woocommerce.archive .woocommerce-error,.scheme_dark .article_style_boxed.woocommerce.archive .woocommerce-info,.scheme_dark .article_style_boxed.woocommerce.archive .woocommerce-message,.scheme_dark .article_style_boxed.woocommerce-page.archive .woocommerce-error,.scheme_dark .article_style_boxed.woocommerce-page.archive .woocommerce-info,.scheme_dark .article_style_boxed.woocommerce-page.archive .woocommerce-message{background-color:#ffffff}.scheme_dark .woocommerce span.new,.scheme_dark .woocommerce-page span.new,.scheme_dark .woocommerce span.onsale,.scheme_dark .woocommerce-page span.onsale{background-color:#00a5ea;	color:#ffffff}.scheme_dark .article_style_boxed.woocommerce ul.products li.product .post_item_wrap,.scheme_dark .article_style_boxed.woocommerce-page ul.products li.product .post_item_wrap{background-color:#ffffff}.scheme_dark .woocommerce ul.products li.product .price,.scheme_dark .woocommerce-page ul.products li.product .price,.scheme_dark .woocommerce ul.products li.product .star-rating:before,.scheme_dark .woocommerce ul.products li.product .star-rating span{}.scheme_dark .woocommerce ul.products li.product .price del,.scheme_dark .woocommerce-page ul.products li.product .price del{color:#656c77}.scheme_dark.article_style_boxed.woocommerce ul.products li.product .post_item_wrap{background-color:#505050}.scheme_dark.article_style_boxed.woocommerce-page ul.products li.product .post_item_wrap{background-color:#505050}.scheme_dark.article_style_boxed.woocommerce ul.products li.product .post_content{background-color:#ffffff}.scheme_dark.article_style_boxed.woocommerce-page ul.products li.product .post_content{background-color:#ffffff}.scheme_dark .woocommerce nav.woocommerce-pagination ul li a,.scheme_dark .woocommerce nav.woocommerce-pagination ul li span.current{background-color:#ffffff;	color:#00a5ea;	border-color:#00a5ea}.scheme_dark .woocommerce nav.woocommerce-pagination ul li a:focus,.scheme_dark .woocommerce nav.woocommerce-pagination ul li a:hover,.scheme_dark .woocommerce nav.woocommerce-pagination ul li span.current{color:#ffffff;	background-color:#00a5ea}.scheme_dark .woocommerce nav.woocommerce-pagination ul li .next,.scheme_dark .woocommerce nav.woocommerce-pagination ul li .prev{color:#ffffff}.scheme_dark .woocommerce nav.woocommerce-pagination ul li .next:hover,.scheme_dark .woocommerce nav.woocommerce-pagination ul li .prev:hover{color:#00a5ea}.scheme_dark .woocommerce div.product .woocommerce-tabs .panel,.scheme_dark .woocommerce #content div.product .woocommerce-tabs .panel,.scheme_dark .woocommerce-page div.product .woocommerce-tabs .panel,.scheme_dark .woocommerce-page #content div.product .woocommerce-tabs .panel{border-color:#29395f}.scheme_dark.woocommerce-tabs.trx-stretch-width{background-color:#282828}.scheme_dark .single-product div.product .woocommerce-tabs.trx-stretch-width .wc-tabs li a{color:#9daab0}.scheme_dark .single-product div.product .woocommerce-tabs.trx-stretch-width .wc-tabs li a:hover,.scheme_dark .single-product div.product .woocommerce-tabs.trx-stretch-width .wc-tabs li.active a{color:#0a1f54}.scheme_dark .single-product div.product .woocommerce-tabs.trx-stretch-width .wc-tabs li.active a:after{background-color:#ffffff}.scheme_dark .single-product div.product .woocommerce-tabs.trx-stretch-width .wc-tabs li.active a::after{background-color:#00a5ea}.scheme_dark .woocommerce table.cart thead th,.scheme_dark .woocommerce #content table.cart thead th,.scheme_dark .woocommerce-page table.cart thead th,.scheme_dark .woocommerce-page #content table.cart thead th{background-color:#ffffff;	color:#ffffff}.scheme_dark .woocommerce-account .woocommerce-MyAccount-navigation,.scheme_dark .woocommerce-MyAccount-navigation li+li{border-color:#29395f}.scheme_dark .woocommerce-MyAccount-navigation li.is-active a{color:#0a1f54}.scheme_dark .top_panel_inner_style_4 .widget_shopping_cart .empty,.scheme_dark .top_panel_inner_style_4 .widget_shopping_cart .quantity,.scheme_dark .top_panel_inner_style_4 .widget_shopping_cart .quantity .amount,.scheme_dark .top_panel_inner_style_4 .widget_shopping_cart .total,.scheme_dark .top_panel_inner_style_4 .widget_shopping_cart .total .amount{color:#ffffff}.scheme_dark .top_panel_wrap .widget_shopping_cart ul.cart_list>li>a:hover{color:#00a5ea}.scheme_dark body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories li+li{border-color:#909090}.scheme_dark body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories li,.scheme_dark body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories li>a{color:#9daab0}.scheme_dark body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories li:hover,.scheme_dark body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories li:hover>a,.scheme_dark body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories li>a:hover{color:#0a1f54}.scheme_dark body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories ul{background-color:#ffffff}.scheme_dark .widget_shopping_cart_content .woocommerce-Price-amount,.scheme_dark .product_list_widget ins .woocommerce-Price-amount{color:#00a5ea}.scheme_dark .woocommerce-page .product .entry-summary p.price del{color:#656c77}.scheme_dark .woocommerce-page .product .entry-summary p.price ins{color:#00a5ea}.scheme_dark .woocommerce div.product form.cart .variations tr{color:#9daab0}.scheme_dark .tribe-events-calendar thead th{background-color:#ffffff}.scheme_dark a.tribe-events-read-more,.scheme_dark .tribe-events-button,.scheme_dark .tribe-events-nav-previous a,.scheme_dark .tribe-events-nav-next a,.scheme_dark .tribe-events-widget-link a,.scheme_dark .tribe-events-viewmore a{background-color:#ffffff;	color:#ffffff}.scheme_dark a.tribe-events-read-more:hover,.scheme_dark .tribe-events-button:hover,.scheme_dark .tribe-events-nav-previous a:hover,.scheme_dark .tribe-events-nav-next a:hover,.scheme_dark .tribe-events-widget-link a:hover,.scheme_dark .tribe-events-viewmore a:hover{background-color:#00a5ea;	color:#ffffff}.scheme_dark #bbpress-forums div.bbp-topic-content a,.scheme_dark #buddypress button,.scheme_dark #buddypress a.button,.scheme_dark #buddypress input[type="submit"],.scheme_dark #buddypress input[type="button"],.scheme_dark #buddypress input[type="reset"],.scheme_dark #buddypress ul.button-nav li a,.scheme_dark #buddypress div.generic-button a,.scheme_dark #buddypress .comment-reply-link,.scheme_dark a.bp-title-button,.scheme_dark #buddypress div.item-list-tabs ul li.selected a,.scheme_dark #buddypress .acomment-options a{background:#ffffff;	color:#ffffff}.scheme_dark #bbpress-forums div.bbp-topic-content a:hover,.scheme_dark #buddypress button:hover,.scheme_dark #buddypress a.button:hover,.scheme_dark #buddypress input[type="submit"]:hover,.scheme_dark #buddypress input[type="button"]:hover,.scheme_dark #buddypress input[type="reset"]:hover,.scheme_dark #buddypress ul.button-nav li a:hover,.scheme_dark #buddypress div.generic-button a:hover,.scheme_dark #buddypress .comment-reply-link:hover,.scheme_dark a.bp-title-button:hover,.scheme_dark #buddypress div.item-list-tabs ul li.selected a:hover,.scheme_dark #buddypress .acomment-options a:hover{background:#00a5ea;	color:#ffffff}.scheme_dark #buddypress #item-nav,.scheme_dark #buddypress div#subnav.item-list-tabs,.scheme_dark #buddypress div.item-list-tabs{background-color:#ffffff}.scheme_dark #buddypress #item-nav li:not(.selected) a,.scheme_dark #buddypress div#subnav.item-list-tabs li:not(.selected) a,.scheme_dark #buddypress div.item-list-tabs li:not(.selected) a{color:#5e657c}.scheme_dark #buddypress #item-nav li:not(.selected) a:hover,.scheme_dark #buddypress div#subnav.item-list-tabs li:not(.selected) a:hover,.scheme_dark #buddypress div.item-list-tabs li:not(.selected) a:hover{color:#d0d0d0;	background-color:#505050}.scheme_dark #buddypress .dir-search input[type="search"],.scheme_dark #buddypress .dir-search input[type="text"],.scheme_dark #buddypress .groups-members-search input[type="search"],.scheme_dark #buddypress .groups-members-search input[type="text"],.scheme_dark #buddypress .standard-form input[type="color"],.scheme_dark #buddypress .standard-form input[type="date"],.scheme_dark #buddypress .standard-form input[type="datetime-local"],.scheme_dark #buddypress .standard-form input[type="datetime"],.scheme_dark #buddypress .standard-form input[type="email"],.scheme_dark #buddypress .standard-form input[type="month"],.scheme_dark #buddypress .standard-form input[type="number"],.scheme_dark #buddypress .standard-form input[type="password"],.scheme_dark #buddypress .standard-form input[type="range"],.scheme_dark #buddypress .standard-form input[type="search"],.scheme_dark #buddypress .standard-form input[type="tel"],.scheme_dark #buddypress .standard-form input[type="text"],.scheme_dark #buddypress .standard-form input[type="time"],.scheme_dark #buddypress .standard-form input[type="url"],.scheme_dark #buddypress .standard-form input[type="week"],.scheme_dark #buddypress .standard-form select,.scheme_dark #buddypress .standard-form textarea,.scheme_dark #buddypress form#whats-new-form textarea{color:#999999;	background-color:#666666;	border-color:#909090}.scheme_dark #buddypress .dir-search input[type="search"]:focus,.scheme_dark #buddypress .dir-search input[type="text"]:focus,.scheme_dark #buddypress .groups-members-search input[type="search"]:focus,.scheme_dark #buddypress .groups-members-search input[type="text"]:focus,.scheme_dark #buddypress .standard-form input[type="color"]:focus,.scheme_dark #buddypress .standard-form input[type="date"]:focus,.scheme_dark #buddypress .standard-form input[type="datetime-local"]:focus,.scheme_dark #buddypress .standard-form input[type="datetime"]:focus,.scheme_dark #buddypress .standard-form input[type="email"]:focus,.scheme_dark #buddypress .standard-form input[type="month"]:focus,.scheme_dark #buddypress .standard-form input[type="number"]:focus,.scheme_dark #buddypress .standard-form input[type="password"]:focus,.scheme_dark #buddypress .standard-form input[type="range"]:focus,.scheme_dark #buddypress .standard-form input[type="search"]:focus,.scheme_dark #buddypress .standard-form input[type="tel"]:focus,.scheme_dark #buddypress .standard-form input[type="text"]:focus,.scheme_dark #buddypress .standard-form input[type="time"]:focus,.scheme_dark #buddypress .standard-form input[type="url"]:focus,.scheme_dark #buddypress .standard-form input[type="week"]:focus,.scheme_dark #buddypress .standard-form select:focus,.scheme_dark #buddypress .standard-form textarea:focus,.scheme_dark #buddypress form#whats-new-form textarea:focus{color:#999999;	background-color:#505050;	border-color:#888888}.scheme_dark #buddypress #reply-title small a span,.scheme_dark #buddypress a.bp-primary-action span{color:#ffffff;	background-color:#ffffff}.scheme_dark #buddypress .activity .activity-item:nth-child(2n+1){background-color:#ffffff}.scheme_dark.vc_row{background-color:#282828}.scheme_dark .booking_month_container_custom,.scheme_dark .booking_month_navigation_button_custom{background-color:#ffffff !important}.scheme_dark .booking_month_name_custom,.scheme_dark .booking_month_navigation_button_custom{color:#d0d0d0 !important}.scheme_dark .booking_month_navigation_button_custom:hover{color:#ffffff !important;	background-color:#00a5ea !important}.scheme_dark #learndash_next_prev_link>a{color:#ffffff;	background-color:#ffffff}.scheme_dark #learndash_next_prev_link>a:hover{background-color:#00a5ea}.scheme_dark .widget_area dd.course_progress div.course_progress_blue{background-color:#00a5ea}.scheme_dark #myplayer .ttw-music-player .progress-wrapper{background-color:#505050}.scheme_dark #myplayer .ttw-music-player .tracklist li.track{border-color:#29395f}.scheme_dark #myplayer .ttw-music-player .tracklist,.scheme_dark #myplayer .ttw-music-player .buy,.scheme_dark #myplayer .ttw-music-player .description,.scheme_dark #myplayer .ttw-music-player .artist,.scheme_dark #myplayer .ttw-music-player .artist-outer{color:#9daab0}.scheme_dark #myplayer .ttw-music-player .player .title,.scheme_dark #myplayer .ttw-music-player .tracklist li:hover{color:#0a1f54}.scheme_dark .sc_accordion .sc_accordion_item .sc_accordion_title{border-color:#29395f}.scheme_dark .sc_accordion .sc_accordion_item .sc_accordion_title .sc_accordion_icon{color:#aaaaaa;	background-color:#ffffff}.scheme_dark .sc_accordion .sc_accordion_item .sc_accordion_title.ui-state-active{color:#ffffff;	border-color:#ffffff}.scheme_dark .sc_accordion .sc_accordion_item .sc_accordion_title.ui-state-active .sc_accordion_icon_opened{color:#ffffff;	background-color:#ffffff}.scheme_dark .sc_accordion .sc_accordion_item .sc_accordion_title:hover{color:#00a5ea;	border-color:#00a5ea}.scheme_dark .sc_accordion .sc_accordion_item .sc_accordion_title:hover .sc_accordion_icon_opened{background-color:#00a5ea}.scheme_dark .sc_accordion .sc_accordion_item .sc_accordion_content{border-color:#29395f}.scheme_dark .sc_audio.sc_audio_info,.scheme_dark .sc_audio_player.sc_audio,.scheme_dark .wp-audio-shortcode{background:#0071c3; background:-moz-linear-gradient(left,#0071c3 0%,#00a8eb 100%); background:-webkit-linear-gradient(left,#0071c3 0%,#00a8eb 100%); background:linear-gradient(to right,#0071c3 0%,#00a8eb 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071c3',endColorstr='#00a8eb',GradientType=1 ); }.scheme_dark .sc_audio .sc_audio_title{color:#ffffff}.scheme_dark .sc_audio .sc_audio_author_name{color:#ffffff}.scheme_dark .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.scheme_dark .wp-audio-shortcode .mejs-controls .mejs-volume-button .mejs-volume-slider,.scheme_dark .mejs-controls .mejs-time-rail .mejs-time-current{background:#ffffff !important}.scheme_dark .mejs-container .mejs-controls .mejs-time{color:#ffffff}.scheme_dark .mejs-container.wp-video-shortcode .mejs-controls .mejs-time{color:#ffffff}.scheme_dark .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total:before,.scheme_dark .mejs-controls .mejs-time-rail .mejs-time-total:before{background-color:rgba(40,40,40,0.1)}.scheme_dark .mejs-controls .mejs-time-rail .mejs-time-loaded{background:rgba(94,101,124,0.1) !important}.scheme_dark .mejs-container .mejs-controls .mejs-fullscreen-button,.scheme_dark .mejs-container .mejs-controls .mejs-volume-button,.scheme_dark .mejs-container .mejs-controls .mejs-playpause-button{background:#282828 !important}.scheme_dark .footer_wrap .mejs-container .mejs-controls .mejs-fullscreen-button,.scheme_dark .footer_wrap .mejs-container .mejs-controls .mejs-volume-button,.scheme_dark .footer_wrap .mejs-container .mejs-controls .mejs-playpause-button{background:#ffffff !important}.scheme_dark .mejs-container .mejs-controls .mejs-playpause-button.mejs-play:before,.scheme_dark .mejs-container .mejs-controls .mejs-playpause-button.mejs-pause:before,.scheme_dark .mejs-container .mejs-controls .mejs-playpause-button.mejs-replay:before,.scheme_dark .mejs-container .mejs-controls .mejs-fullscreen-button:before,.scheme_dark .mejs-container .mejs-controls .mejs-volume-button.mejs-mute:before,.scheme_dark .mejs-container .mejs-controls .mejs-volume-button.mejs-unmute:before{color:#e5631b}.scheme_dark input[type="submit"],.scheme_dark input[type="reset"],.scheme_dark input[type="button"],.scheme_dark button:not(.pswp__button),.scheme_dark .sc_button.sc_button_style_filled,	.scheme_dark .woocommerce a.button,.scheme_dark .woocommerce button.button,.scheme_dark .woocommerce input.button,.scheme_dark .woocommerce #respond input#submit,.scheme_dark .woocommerce #content input.button,.scheme_dark .woocommerce-page a.button,.scheme_dark .woocommerce-page button.button,.scheme_dark .woocommerce-page input.button,.scheme_dark .woocommerce-page #respond input#submit,.scheme_dark .woocommerce-page #content input.button,.scheme_dark .woocommerce a.button.alt,.scheme_dark .woocommerce button.button.alt,.scheme_dark .woocommerce input.button.alt,.scheme_dark .woocommerce #respond input#submit.alt,.scheme_dark .woocommerce #content input.button.alt,.scheme_dark .woocommerce-page a.button.alt,.scheme_dark .woocommerce-page button.button.alt,.scheme_dark .woocommerce-page input.button.alt,.scheme_dark .woocommerce-page #respond input#submit.alt,.scheme_dark .woocommerce-page #content input.button.alt,.scheme_dark .woocommerce-account .addresses .title .edit,.scheme_dark #btn-buy,.scheme_dark #btn-pay{background:#0071c3; 	background:-moz-linear-gradient(left,#0071c3 9%,#00a8eb 55%); 	background:-webkit-linear-gradient(left,#0071c3 9%,#00a8eb 55%); 	background:linear-gradient(to right,#0071c3 9%,#00a8eb 55%); 	filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071c3',endColorstr='#00a8eb',GradientType=1 );  background-size:200%; background-position:0; color:#ffffff}.scheme_dark input[type="submit"].sc_button_style_color_style2,.scheme_dark input[type="reset"].sc_button_style_color_style2,.scheme_dark input[type="button"].sc_button_style_color_style2,.scheme_dark button.sc_button_style_color_style2,.scheme_dark .cff-container-field input[type="button"],.scheme_dark .sc_button.sc_button_style_filled.sc_button_style_color_style2{color:#ffffff;	background:#d64a1a; 	background:-moz-linear-gradient(left,#d64a1a 9%,#f88120 55%); 	background:-webkit-linear-gradient(left,#d64a1a 9%,#f88120 55%); 	background:linear-gradient(to right,#d64a1a 9%,#f88120 55%); 	filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#d64a1a',endColorstr='#f88120',GradientType=1 ); 	background-size:200%; background-position:0}.scheme_dark .sc_button.sc_button_style_border{border-color:#ffffff;	color:#ffffff}.scheme_dark .sc_button.sc_button_style_border:hover{border-color:#00a5ea !important;	color:#00a5ea !important}.scheme_dark .sc_button.sc_button_style_filled.sc_button_style_color_style1.dark_button{background:#ffffff ;	color:#0a1f54}.scheme_dark .sc_button.sc_button_style_filled.sc_button_style_color_style1.dark_button:hover{background:#00a5ea ;	color:#ffffff} .scheme_dark [class*="sc_button_hover_fade"]:hover{background-color:#00a5ea !important;	color:#ffffff !important}.scheme_dark [class*="sc_button_hover_slide"]{color:#ffffff !important;	background-color:#ffffff}.scheme_dark [class*="sc_button_hover_slide"]:hover{background-color:#00a5ea !important}.scheme_dark .sc_button_hover_slide_left{background:linear-gradient(to right,#00a5ea 50%,#ffffff 50%) repeat scroll right bottom / 210% 100% rgba(0,0,0,0) !important}.scheme_dark .sc_button_hover_slide_top{background:linear-gradient(to bottom,#00a5ea 50%,#ffffff 50%) repeat scroll right bottom / 100% 210% rgba(0,0,0,0) !important} .scheme_dark .sc_blogger.layout_date .sc_blogger_item .sc_blogger_date{background-color:#ffffff;	border-color:#ffffff;	color:#ffffff}.scheme_dark .sc_blogger.layout_date .sc_blogger_item .sc_blogger_date .year:before{border-color:#ffffff}.scheme_dark .sc_blogger.layout_date .sc_blogger_item::before{background-color:#ffffff}.scheme_dark .sc_blogger_item.sc_plain_item{background-color:#ffffff}.scheme_dark .sc_blogger.layout_polaroid .photostack nav span.current{color:#ffffff;	background-color:#ffffff}.scheme_dark .sc_blogger.layout_polaroid .photostack nav span.current.flip{background-color:#00a5ea}.scheme_dark .sc_call_to_action .sc_call_to_action_descr{color:#9daab0}.scheme_dark .sc_call_to_action_accented{color:#ffffff;	background-color:#ffffff}.scheme_dark .sc_call_to_action_accented .sc_item_title,.scheme_dark .sc_call_to_action_accented .sc_item_subtitle,.scheme_dark .sc_call_to_action_accented .sc_item_descr{color:#ffffff}.scheme_dark .sc_call_to_action_accented .sc_item_button>a{color:#ffffff;	background-color:#ffffff}.scheme_dark .sc_call_to_action_accented .sc_item_button>a:before{background-color:#ffffff;	color:#ffffff}.scheme_dark .sc_call_to_action .sc_item_subtitle{color:#e5631b}.scheme_dark .sc_call_to_action .sc_item_buttons>.sc_item_button + .sc_item_button a{color:#e5631b}.scheme_dark .sc_call_to_action.sc_call_to_action_style_1 .sc_item_buttons>.sc_item_button + .sc_item_button a:before{color:#e5631b}.scheme_dark .sc_chat:after{background-color:#ffffff;	border-color:#909090}.scheme_dark .sc_chat_inner{color:#5e657c;	background-color:#ffffff;	border-color:#909090}.scheme_dark .sc_chat_inner a{color:#00a5ea}.scheme_dark .sc_chat_inner a:hover{color:#e5631b}.scheme_dark .sc_clients_style_clients-2 .sc_client_image .sc_client_hover{color:#ffffff;	background-color:rgba(10,31,84,0.8)}.scheme_dark .sc_clients_style_clients-2 .sc_client_title,.scheme_dark .sc_clients_style_clients-2 .sc_client_title a{color:#ffffff}.scheme_dark .sc_clients_style_clients-2 .sc_client_title a:hover{color:#ffffff}.scheme_dark .sc_clients_style_clients-2 .sc_client_description:before,.scheme_dark .sc_clients_style_clients-2 .sc_client_position{color:#ffffff}.scheme_dark .sc_clients .sc_slider_controls_side .sc_slider_controls_wrap a{background:#ffffff;	color:#0a1f54}.scheme_dark .sc_form .sc_form_item.sc_form_button button{color:#ffffff; background:#0071c3; background:-moz-linear-gradient(left,#0071c3 9%,#00a8eb 55%); background:-webkit-linear-gradient(left,#0071c3 9%,#00a8eb 55%); background:linear-gradient(to right,#0071c3 9%,#00a8eb 55%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071c3',endColorstr='#00a8eb',GradientType=1 );  background-size:200%; background-position:0}.scheme_dark .sc_form .sc_form_item .sc_form_element input[type="radio"] + label:before,.scheme_dark .sc_form .sc_form_item .sc_form_element input[type="checkbox"] + label:before{border-color:#909090;	background-color:#666666}.scheme_dark .sc_form_select_container{background-color:#666666}.scheme_dark .sc_form .sc_form_item input[type="text"],.scheme_dark .sc_form .sc_form_item select,.scheme_dark .sc_form .sc_form_item textarea{background-color:#ffffff}.scheme_dark .sc_form .picker{color:#999999;	border-color:#909090;	background-color:#666666}.scheme_dark .picker__month,.scheme_dark .picker__year{color:#d0d0d0}.scheme_dark .sc_form .picker__nav--prev:before,.scheme_dark .sc_form .picker__nav--next:before{color:#999999}.scheme_dark .sc_form .picker__nav--prev:hover:before,.scheme_dark .sc_form .picker__nav--next:hover:before{color:#d0d0d0}.scheme_dark .sc_form .picker__nav--disabled,.scheme_dark .sc_form .picker__nav--disabled:hover,.scheme_dark .sc_form .picker__nav--disabled:before,.scheme_dark .sc_form .picker__nav--disabled:before:hover{color:#aaaaaa}.scheme_dark .sc_form table.picker__table th{color:#ffffff;	background-color:#ffffff}.scheme_dark .sc_form .picker__day--infocus{color:#d0d0d0}.scheme_dark .sc_form .picker__day--today,.scheme_dark .sc_form .picker__day--infocus:hover,.scheme_dark .sc_form .picker__day--outfocus:hover,.scheme_dark .sc_form .picker__day--highlighted:hover,.scheme_dark .sc_form .picker--focused .picker__day--highlighted{color:#d0d0d0;	background-color:#505050}.scheme_dark .sc_form .picker__day--disabled,.scheme_dark .sc_form .picker__day--disabled:hover{color:#aaaaaa}.scheme_dark .sc_form .picker__day--highlighted.picker__day--disabled,.scheme_dark .sc_form .picker__day--highlighted.picker__day--disabled:hover{color:#aaaaaa;	background-color:#505050 !important}.scheme_dark .sc_form .picker__day--today:before,.scheme_dark .sc_form .picker__button--today:before,.scheme_dark .sc_form .picker__button--clear:before,.scheme_dark .sc_form button:focus{border-color:#ffffff}.scheme_dark .sc_form .picker__button--close:before{color:#ffffff}.scheme_dark .sc_form .picker--time .picker__button--clear:hover,.scheme_dark .sc_form .picker--time .picker__button--clear:focus{background-color:#00a5ea}.scheme_dark .sc_form .picker__footer{border-color:#909090}.scheme_dark .sc_form .picker__button--today,.scheme_dark .sc_form .picker__button--clear,.scheme_dark .sc_form .picker__button--close{color:#999999}.scheme_dark .sc_form .picker__button--today:hover,.scheme_dark .sc_form .picker__button--clear:hover,.scheme_dark .sc_form .picker__button--close:hover{color:#d0d0d0;	background-color:#505050 !important}.scheme_dark .sc_form .picker__button--today[disabled],.scheme_dark .sc_form .picker__button--today[disabled]:hover{color:#aaaaaa;	background-color:#505050;	border-color:#505050}.scheme_dark .sc_form .picker__button--today[disabled]:before{border-top-color:#aaaaaa}.scheme_dark .sc_form .picker__list-item{color:#999999;	border-color:#909090}.scheme_dark .sc_form .picker__list-item:hover,.scheme_dark .sc_form .picker__list-item--highlighted,.scheme_dark .sc_form .picker__list-item--highlighted:hover,.scheme_dark .sc_form .picker--focused .picker__list-item--highlighted,.scheme_dark .sc_form .picker__list-item--selected,.scheme_dark .sc_form .picker__list-item--selected:hover,.scheme_dark .sc_form .picker--focused .picker__list-item--selected{color:#d0d0d0;	background-color:#505050;	border-color:#888888}.scheme_dark .sc_form .picker__list-item--disabled,.scheme_dark .sc_form .picker__list-item--disabled:hover,.scheme_dark .sc_form .picker--focused .picker__list-item--disabled{color:#aaaaaa;	background-color:#666666;	border-color:#909090}.scheme_dark .sc_countdown.sc_countdown_style_1 .sc_countdown_digits,.scheme_dark .sc_countdown.sc_countdown_style_1 .sc_countdown_separator{color:#ffffff}.scheme_dark .sc_countdown.sc_countdown_style_1 .sc_countdown_digits{border-color:#909090;	background-color:#ffffff}.scheme_dark .sc_countdown.sc_countdown_style_1 .sc_countdown_label{color:#ffffff}.scheme_dark .sc_countdown.sc_countdown_style_2 .sc_countdown_separator{color:#ffffff}.scheme_dark .sc_countdown.sc_countdown_style_2 .sc_countdown_digits span{background-color:#ffffff}.scheme_dark .sc_countdown.sc_countdown_style_2 .sc_countdown_label{color:#ffffff}.scheme_dark .sc_dropcaps .sc_dropcaps_item{color:#ffffff}.scheme_dark .sc_dropcaps.sc_dropcaps_style_1 .sc_dropcaps_item{background:#d64a1a; background:-moz-linear-gradient(left,#d64a1a 0%,#f88120 100%); background:-webkit-linear-gradient(left,#d64a1a 0%,#f88120 100%); background:linear-gradient(to right,#d64a1a 0%,#f88120 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#d64a1a',endColorstr='#f88120',GradientType=1 ); }.scheme_dark .sc_dropcaps.sc_dropcaps_style_2 .sc_dropcaps_item{background:#0071c3; background:-moz-linear-gradient(left,#0071c3 0%,#00a8eb 100%); background:-webkit-linear-gradient(left,#0071c3 0%,#00a8eb 100%); background:linear-gradient(to right,#0071c3 0%,#00a8eb 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071c3',endColorstr='#00a8eb',GradientType=1 ); }.scheme_dark .mc4wp-form input[type="email"]{background-color:#d0d0d0}.scheme_dark .sc_video_frame.hover_icon:before{background:#d64a1a; background:-moz-linear-gradient(left,#d64a1a 0%,#f88120 100%); background:-webkit-linear-gradient(left,#d64a1a 0%,#f88120 100%); background:linear-gradient(to right,#d64a1a 0%,#f88120 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#d64a1a',endColorstr='#f88120',GradientType=1 ); 	color:#ffffff}.scheme_dark .sc_events_item .sc_events_item_readmore{color:#0a1f54}.scheme_dark .sc_events_item .sc_events_item_readmore span{color:#ffffff}.scheme_dark .sc_events_item .sc_events_item_readmore:hover,.scheme_dark .sc_events_item .sc_events_item_readmore:hover span{color:#00a5ea}.scheme_dark .sc_events_style_events-1 .sc_events_item{background-color:#282828;	color:#9daab0}.scheme_dark .sc_events_style_events-2 .sc_events_item{border-color:#29395f}.scheme_dark .sc_events_style_events-2 .sc_events_item_date{background-color:#ffffff;	color:#ffffff}.scheme_dark .sc_events_style_events-2 .sc_events_item_time:before,.scheme_dark .sc_events_style_events-2 .sc_events_item_details:before{background-color:#29395f}.scheme_dark .sc_googlemap_content{background-color:#282828}.scheme_dark .sc_highlight_style_1{background-color:#ffffff;	color:#ffffff}.scheme_dark .sc_highlight_style_2{background-color:#00a5ea;	color:#ffffff}.scheme_dark .sc_highlight_style_3{background-color:#ffffff;	color:#5e657c}.scheme_dark .sc_icon_hover:hover,.scheme_dark a:hover .sc_icon_hover{color:#ffffff !important;	background-color:#ffffff !important}.scheme_dark .sc_icon_shape_round.sc_icon,.scheme_dark .sc_icon_shape_square.sc_icon{background-color:#ffffff;	border-color:#ffffff;	color:#ffffff}.scheme_dark .sc_icon_shape_round.sc_icon:hover,.scheme_dark .sc_icon_shape_square.sc_icon:hover,.scheme_dark a:hover .sc_icon_shape_round.sc_icon,.scheme_dark a:hover .sc_icon_shape_square.sc_icon{color:#ffffff;	background-color:#282828}.scheme_dark figure figcaption,.scheme_dark .sc_image figcaption,.scheme_dark .wp-caption .wp-caption-text,{background-color:#ffffff;	color:#656c77}.scheme_dark figure figcaption a,.scheme_dark .sc_image figcaption a,.scheme_dark .wp-caption .wp-caption-text a{color:#00a5ea}.scheme_dark figure figcaption a:hover,.scheme_dark .sc_image figcaption a:hover,.scheme_dark .wp-caption .wp-caption-text a:hover{color:#00a5ea}.scheme_dark .sc_infobox.sc_infobox_style_regular{background-color:#ffffff}.scheme_dark .sc_intro_inner .sc_intro_subtitle{color:#00a5ea}.scheme_dark .sc_intro_inner .sc_intro_title{color:#ffffff}.scheme_dark .sc_intro_inner .sc_intro_descr,.scheme_dark .sc_intro_inner .sc_intro_icon{color:#ffffff}.scheme_dark .sc_list_style_iconed li:before,.scheme_dark .sc_list_style_iconed .sc_list_icon{color:#ffffff}.scheme_dark .sc_list_style_iconed li .sc_list_title{color:#0a1f54}.scheme_dark .sc_list_style_iconed li a:hover .sc_list_title{color:#00a5ea}.scheme_dark .sc_list .sc_list_item{color:#0a1f54}.scheme_dark .sc_line{border-color:#29395f}.scheme_dark .sc_line .sc_line_title{color:#0a1f54;	background-color:#282828}.scheme_dark .match_block .player_country{background-color:#ffffff;	color:#ffffff}.scheme_dark .match_block .player_name a{color:#d0d0d0;	background-color:#ffffff}.scheme_dark .match_block .player_name a:hover{color:#ffffff;	background-color:#ffffff}.scheme_dark .match_block .match_score{color:#d0d0d0;	background-color:#ffffff}.scheme_dark .match_block .match_category a{color:#9daab0}.scheme_dark .match_block .match_category a:hover,.scheme_dark .match_block .match_date{color:#ffffff}.scheme_dark .post_item_colored .match_date{color:#ffffff}.scheme_dark .matches_hover>a:after{background-color:rgba(255,255,255,0.3)}.scheme_dark .sc_matches.style_matches-1 .sc_matches_next{background-color:#ffffff;	color:#ffffff}.scheme_dark .sc_matches_next h2,.scheme_dark .sc_matches_next .sc_item_subtitle{color:#ffffff}.scheme_dark .sc_matches_next .sc_item_title:after{background-color:#ffffff}.scheme_dark .sc_match_date{background-color:#ffffff;	color:#00a5ea}.scheme_dark .sc_matches.style_matches-2 .sc_match_info{background-color:rgba(80,80,80,0.5)}.scheme_dark .sc_matches.style_matches-2 .sc_matches_next .sc_item_title{background-color:#ffffff}.scheme_dark .sc_matches.style_matches-2 .sc_matches_next .sc_match_date{background-color:#505050}.scheme_dark .post_item_single_players .post_title:after{background-color:#ffffff}.scheme_dark .post_item_single_players .player_info span{color:#0a1f54}.scheme_dark .sc_player .sc_player_info .sc_player_title a{color:#0a1f54}.scheme_dark .sc_player .sc_player_info .sc_player_club,.scheme_dark .sc_player .sc_player_info .sc_player_title a:hover{color:#ffffff}.scheme_dark .sc_player .sc_player_info{border-color:#ffffff}.scheme_dark .sc_player .sc_player_avatar .sc_player_hover{background-color:rgba(255,255,255,0.8)}.scheme_dark .sc_player .sc_socials.sc_socials_type_icons a,.scheme_dark .sc_player .sc_socials.sc_socials_type_icons a:hover{color:#ffffff;	border-color:#ffffff}.scheme_dark .post_item_colored .player_info{color:#ffffff}.scheme_dark .sc_players_table table tr .country{color:#656c77}.scheme_dark .sc_players_table.style_2 table tr:nth-child(n+2){background-color:rgba(80,80,80,0.5)}.scheme_dark .sc_players_table.style_2 .sc_table td{border-color:#282828}.scheme_dark .sc_menuitems_style_menuitems-1 .sc_menuitem_price{color:#0a1f54}.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_spicy{color:#0a1f54;	background-color:#282828}.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_box_title{color:#ffffff;	background-color:#ffffff}.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_content,.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_ingredients,.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions{color:#9daab0;	border-color:#29395f}.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_content_title,.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_ingredients_title,.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_title{color:#0a1f54}.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_content_title span,.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_ingredients_title span,.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_title span{color:#ffffff}.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_list li{color:#0a1f54}.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_list li:before,.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_list li span{color:#ffffff}.scheme_dark .popup_menuitem>.sc_menuitems_wrap{background-color:#282828}.scheme_dark .sc_popup:before{background-color:#ffffff}.scheme_dark .sc_price .sc_price_currency,.scheme_dark .sc_price .sc_price_money,.scheme_dark .sc_price .sc_price_penny{color:#0a1f54}.scheme_dark .sc_price .sc_price_info{color:#656c77}.scheme_dark .sc_price_block,.scheme_dark .sc_price_block .sc_price_block_money *{color:#ffffff}.scheme_dark .sc_price_block.sc_price_block_style_1{background-color:#ffffff}.scheme_dark .sc_price_block.sc_price_block_style_1 .sc_price_block_link .sc_button{background-color:#00a5ea}.scheme_dark .sc_price_block.sc_price_block_style_2{background-color:#00a5ea}.scheme_dark .sc_price_block.sc_price_block_style_3,.scheme_dark .sc_price_block.sc_price_block_style_3 .sc_price_block_money *{color:#ffffff;	background-color:#ffffff}.scheme_dark .sc_price_block.sc_price_block_style_3 .sc_price_block_title{background:#0071c3; 	background:-moz-linear-gradient(left,#0071c3 0%,#00a8eb 100%); 	background:-webkit-linear-gradient(left,#0071c3 0%,#00a8eb 100%); 	background:linear-gradient(to right,#0071c3 0%,#00a8eb 100%); 	filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071c3',endColorstr='#00a8eb',GradientType=1 ); 	color:#ffffff}.scheme_dark .sc_price_block.sc_price_block_style_3 .sc_price_block_money{border-color:#29395f}.scheme_dark .sc_promo_image,.scheme_dark .sc_promo_block{background-color:#505050}.scheme_dark .sc_promo_title{color:#d0d0d0}.scheme_dark .sc_promo_descr{color:#5e657c}.scheme_dark .sc_recent_news_header{border-color:#0a1f54}.scheme_dark .sc_recent_news_header_category_item_more{color:#ffffff}.scheme_dark .sc_recent_news_header_more_categories{border-color:#909090;	background-color:#ffffff}.scheme_dark .sc_recent_news_header_more_categories>a{color:#00a5ea}.scheme_dark .sc_recent_news_header_more_categories>a:hover{color:#e5631b;	background-color:#505050}.scheme_dark .sc_recent_news .post_counters_item,.scheme_dark .sc_recent_news .post_counters .post_edit a{background-color:#ffffff}.scheme_dark .sidebar .sc_recent_news .post_counters_item,.scheme_dark .sidebar .sc_recent_news .post_counters .post_edit a{background-color:#282828}.scheme_dark .sc_recent_news .post_counters .post_edit a{color:#d0d0d0}.scheme_dark .sc_recent_news_style_news-magazine .post_accented_border{border-color:#29395f}.scheme_dark .sc_recent_news_style_news-excerpt .post_item{border-color:#29395f}.scheme_dark .sc_section_inner{color:#9daab0}.scheme_dark .sc_services_item .sc_services_item_readmore{color:#0a1f54}.scheme_dark .sc_services_item .sc_services_item_readmore span{color:#ffffff}.scheme_dark .sc_services_item .sc_services_item_readmore:hover,.scheme_dark .sc_services_item .sc_services_item_readmore:hover span{color:#00a5ea}.scheme_dark .sc_services_style_services-1 .sc_services_item{color:#9daab0}.scheme_dark .sc_services_style_services-1 .sc_icon,.scheme_dark .sc_services_style_services-2 .sc_icon{color:#00a5ea;	background-color:#ffffff}.scheme_dark .sc_services_style_services-1 .sc_icon:hover,.scheme_dark .sc_services_style_services-1 a:hover .sc_icon,.scheme_dark .sc_services_style_services-2 .sc_icon:hover,.scheme_dark .sc_services_style_services-2 a:hover .sc_icon{background:#0071c3; background:-moz-linear-gradient(left,#0071c3 0%,#00a8eb 100%); background:-webkit-linear-gradient(left,#0071c3 0%,#00a8eb 100%); background:linear-gradient(to right,#0071c3 0%,#00a8eb 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071c3',endColorstr='#00a8eb',GradientType=1 );  color:#ffffff}.scheme_dark .sc_services_style_services-3 a:hover .sc_icon,.scheme_dark .sc_services_style_services-3 .sc_icon:hover{color:#ffffff;	background-color:#282828}.scheme_dark .sc_services_style_services-3 a:hover .sc_services_item_title{color:#ffffff}.scheme_dark .sc_services_style_services-4 .sc_icon{color:#ffffff;	background-color:#ffffff}.scheme_dark .sc_services_style_services-4 .sc_services_item_title{color:#0a1f54}.scheme_dark .sc_services_style_services-4 a:hover .sc_icon,.scheme_dark .sc_services_style_services-4 .sc_icon:hover{background-color:#00a5ea}.scheme_dark .sc_services_style_services-4 a:hover .sc_services_item_title{color:#ffffff}.scheme_dark .sc_services_style_services-5 .sc_icon{border-color:#e5631b}.scheme_dark .sc_services_style_services-5 .sc_icon{color:#e5631b}.scheme_dark .sc_services_style_services-5 .sc_icon:hover,.scheme_dark .sc_services_style_services-5 a:hover .sc_icon{background-color:#e5631b}.scheme_dark .sc_services_style_services-5 .sc_icon:hover,.scheme_dark .sc_services_style_services-5 a:hover .sc_icon{color:#ffffff}.scheme_dark .sc_services_style_services-1 .sc_services_item .sc_services_item_description p:after{color:#00a5ea}.scheme_dark .sc_scroll_controls_wrap a{background-color:#ffffff;	color:#ffffff}.scheme_dark .sc_scroll_controls_type_side .sc_scroll_controls_wrap a{background-color:rgba(255,255,255,0.8)}.scheme_dark .sc_scroll_controls_wrap a:hover{color:#ffffff;	background-color:#00a5ea}.scheme_dark .sc_scroll_bar .swiper-scrollbar-drag:before{background-color:#ffffff}.scheme_dark .sc_scroll .sc_scroll_bar{border-color:#ffffff}.scheme_dark .sc_skills_bar .sc_skills_item{background-color:#ffffff}.scheme_dark .sc_skills_counter .sc_skills_item .sc_skills_icon{color:#ffffff}.scheme_dark .sc_skills_counter .sc_skills_item:hover .sc_skills_icon{color:#00a5ea}.scheme_dark .sc_skills_counter .sc_skills_item .sc_skills_info{color:#0a1f54}.scheme_dark .sc_skills_bar .sc_skills_item .sc_skills_count{border-color:#ffffff}.scheme_dark .sc_skills_bar .sc_skills_info .sc_skills_label{color:#ffffff}.scheme_dark .sc_skills_bar.sc_skills_horizontal .sc_skills_total{color:#656c77}.scheme_dark .sc_skills_legend_title,.scheme_dark .sc_skills_legend_value{color:#0a1f54}.scheme_dark .sc_skills_counter .sc_skills_item.sc_skills_style_1{color:#ffffff;	background:#d64a1a; 	background:-moz-linear-gradient(left,#d64a1a 9%,#f88120 55%); 	background:-webkit-linear-gradient(left,#d64a1a 9%,#f88120 55%); 	background:linear-gradient(to right,#d64a1a 9%,#f88120 55%); 	filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#d64a1a',endColorstr='#f88120',GradientType=1 ); 	background-size:200%; background-position:0}.scheme_dark .sc_skills_counter .sc_skills_item.sc_skills_style_1:hover{}.scheme_dark .sc_skills_counter .sc_skills_item.sc_skills_style_1 .sc_skills_count{color:#d0d0d0}.scheme_dark .sc_skills_counter .sc_skills_item.sc_skills_style_1 .sc_skills_info{color:#ffffff}.scheme_dark .sc_skills_bar .sc_skills_item .sc_skills_count,.scheme_dark .sc_skills_counter .sc_skills_item.sc_skills_style_3 .sc_skills_count,.scheme_dark .sc_skills_counter .sc_skills_item.sc_skills_style_4 .sc_skills_count,.scheme_dark .sc_skills_counter .sc_skills_item.sc_skills_style_4 .sc_skills_info{color:#ffffff;	background-color:#ffffff}.scheme_dark .sc_skills_pie.sc_skills_compact_off .sc_skills_total,.scheme_dark .sc_skills_pie.sc_skills_compact_off .sc_skills_label{color:#ffffff}.scheme_dark .sc_skills .sc_skills_descr{color:#9daab0}.scheme_dark .sc_slider_controls_wrap a{color:#ffffff;	border-color:#ffffff}.scheme_dark .sc_slider_controls_bottom .sc_slider_controls_wrap a:hover{color:#ffffff;	background-color:#ffffff}.scheme_dark .sc_slider_swiper .sc_slider_pagination_wrap span{border-color:#29395f}.scheme_dark .sc_slider_swiper .sc_slider_pagination_wrap .swiper-pagination-bullet-active,.scheme_dark .sc_slider_swiper .sc_slider_pagination_wrap span:hover{border-color:#00a5ea;	background-color:#00a5ea}.scheme_dark .sc_slider_swiper .sc_slider_info{background-color:rgba(255,255,255,0.8) !important}.scheme_dark .sc_slider_pagination.widget_area .post_item + .post_item{border-color:#29395f}.scheme_dark .sc_slider_pagination_over .sc_slider_pagination_wrap span{border-color:#29395f}.scheme_dark .sc_slider_pagination_over .sc_slider_pagination_wrap span:hover,.scheme_dark .sc_slider_pagination_over .sc_slider_pagination_wrap .swiper-pagination-bullet-active{border-color:#ffffff;	background-color:#ffffff}.scheme_dark .sc_slider_pagination_over .sc_slider_pagination .post_title{color:#d0d0d0}.scheme_dark .sc_slider_pagination_over .sc_slider_pagination .post_info{color:#5e657c}.scheme_dark .sc_slider_pagination_area .sc_slider_pagination .post_item.active{background-color:#ffffff !important}.scheme_dark .sc_slider_controls_bottom .sc_slider_controls_wrap a{background-color:#00a5ea;	color:#ffffff}.scheme_dark .sc_socials.sc_socials_type_icons a{color:#aaaaaa;	border-color:#aaaaaa}.scheme_dark .sc_socials.sc_socials_type_icons a:hover{color:#ffffff;	border-color:#ffffff}.scheme_dark .sc_socials.sc_socials_share.sc_socials_dir_vertical .sc_socials_item a{background-color:#ffffff}.scheme_dark .sc_socials .social_icons{background-color:#00a5ea}.scheme_dark .sc_socials .social_icons span{color:#ffffff}.scheme_dark .sc_socials .social_icons:hover span{color:#00a5ea}.scheme_dark .sc_socials .social_icons:hover{background-color:#ffffff!important}.scheme_dark .post_author .post_author_info a{color:#00a5ea}.scheme_dark .post_author .post_author_info a:hover{color:#00a5ea}.scheme_dark .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li a{color:#0a1f54;	border-color:#29395f}.scheme_dark .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.ui-state-active a,.scheme_dark .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.sc_tabs_active a,.scheme_dark .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li a:hover{color:#ffffff}.scheme_dark .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.ui-state-active a:after,.scheme_dark .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.sc_tabs_active a:after{background-color:#ffffff}.scheme_dark .sc_tabs.sc_tabs_style_1 .sc_tabs_content,.scheme_dark .sc_tabs.sc_tabs_style_2 .sc_tabs_content{border-color:#29395f}.scheme_dark .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li a{border-color:#ffffff;	background-color:#ffffff;	color:#ffffff}.scheme_dark .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li a:hover,.scheme_dark .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li.ui-state-active a,.scheme_dark .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li.sc_tabs_active a{color:#ffffff}.scheme_dark .sc_team_item .sc_team_item_info .sc_team_item_title a{color:#0a1f54}.scheme_dark .sc_team_item .sc_team_item_info .sc_team_item_title a:hover{color:#00a5ea}.scheme_dark .sc_team_item .sc_team_item_info .sc_team_item_position{color:#00a5ea}.scheme_dark .sc_team_style_team-1 .sc_team_item_info,.scheme_dark .sc_team_style_team-3 .sc_team_item_info{border-color:#ffffff;	color:#9daab0;	background-color:#ffffff}.scheme_dark .sc_team_style_team-1.team_grey .sc_team_item_info,.scheme_dark .sc_team_style_team-3.team_grey .sc_team_item_info{background-color:#ffffff}.scheme_dark .sc_team.sc_team_style_team-3 .sc_socials_item a{color:#ffffff;	border-color:#ffffff}.scheme_dark .sc_team.sc_team_style_team-3 .sc_socials_item a:hover{color:#e5e5e5;	border-color:#e5e5e5}.scheme_dark .sc_team.sc_team_style_team-3 .sc_team_item_avatar .sc_team_item_hover{background-color:rgba(255,255,255,0.8)}.scheme_dark .sc_team.sc_team_style_team-4 .sc_socials_item a{color:#ffffff;	border-color:#ffffff}.scheme_dark .sc_team.sc_team_style_team-4 .sc_socials_item a:hover{color:#ffffff;	border-color:#ffffff}.scheme_dark .sc_team.sc_team_style_team-4 .sc_team_item_avatar .sc_team_item_hover{color:#ffffff;	background-color:rgba(10,31,84,0.8)}.scheme_dark .sc_team_style_team-4 .sc_team_item_info .sc_team_item_title a{color:#ffffff}.scheme_dark .sc_team_style_team-4 .sc_team_item_info .sc_team_item_title a:hover{color:#ffffff}.scheme_dark .sc_team_style_team-4 .sc_team_item_info .sc_team_item_position{color:#ffffff}.scheme_dark .sc_team .sc_team_descr{color:#9daab0}.scheme_dark .post_item_single_team .single_team_post_description .team_position{color:#00a5ea}.scheme_dark .post_item_single_team .single_team_post_description .team_meta{color:#656c77}.scheme_dark .post_item_single_team .single_team_post_description .team_brief_info_text p:after{background-color:#29395f}.scheme_dark .sc_testimonials{color:#9daab0}.scheme_dark .sc_testimonial_author_name{color:#0a1f54}.scheme_dark .sc_testimonial_position_position{color:#656c77}.scheme_dark .sc_testimonials_style_testimonials-2 .sc_testimonial_author_name:before{color:#656c77}.scheme_dark .sc_testimonials_style_testimonials-3 .sc_testimonial_content,.scheme_dark .sc_testimonials_style_testimonials-3 .sc_testimonial_content:after{background-color:#282828}.scheme_dark .sc_testimonials_style_testimonials-3 .sc_testimonial_content p:first-child:before{color:#ffffff}.scheme_dark .sc_testimonials_style_testimonials-4 .sc_testimonial_content p:first-child:before{color:#00a5ea}.scheme_dark .sc_testimonials_style_testimonials-4 .sc_testimonial_author_position{color:#ffffff}.scheme_dark .sc_testimonials_style_testimonials-4 .sc_testimonial_content{background-color:#ffffff}.scheme_dark .sc_testimonials_style_testimonials-4 .sc_testimonial_content:after{background-color:#ffffff;	border-color:#ffffff}.scheme_dark .sc_testimonials_style_testimonials-4 .sc_testimonial_author_position{color:#656c77}.scheme_dark .sc_testimonials.sc_testimonials_style_testimonials-4.sc_testimonials_style_test_yes .sc_testimonial_content{background-color:#ffffff}.scheme_dark .sc_testimonials_style_testimonials-4.sc_testimonials_style_test_yes .sc_testimonial_content:after{background-color:#ffffff;	border-color:#ffffff}.scheme_dark .sc_title_icon{color:#ffffff}.scheme_dark .sc_title_underline::after{border-color:#ffffff}.scheme_dark .sc_title_divider .sc_title_divider_before,.scheme_dark .sc_title_divider .sc_title_divider_after{background-color:#0a1f54}.scheme_dark .sc_toggles .sc_toggles_item .sc_toggles_title{border-color:#29395f}.scheme_dark .sc_toggles .sc_toggles_item .sc_toggles_title .sc_toggles_icon{color:#aaaaaa;	background-color:#ffffff}.scheme_dark .sc_toggles .sc_toggles_item .sc_toggles_title.ui-state-active{color:#ffffff;	border-color:#ffffff}.scheme_dark .sc_toggles .sc_toggles_item .sc_toggles_title.ui-state-active .sc_toggles_icon_opened{color:#ffffff;	background-color:#ffffff}.scheme_dark .sc_toggles .sc_toggles_item .sc_toggles_title:hover{color:#00a5ea;	border-color:#00a5ea}.scheme_dark .sc_toggles .sc_toggles_item .sc_toggles_title:hover .sc_toggles_icon_opened{background-color:#00a5ea}.scheme_dark .sc_toggles .sc_toggles_item .sc_toggles_content{border-color:#29395f}.scheme_dark .sc_tooltip_parent .sc_tooltip,.scheme_dark .sc_tooltip_parent .sc_tooltip:before{background-color:#ffffff}.scheme_dark .sc_twitter{color:#9daab0}.scheme_dark .sc_twitter .sc_slider_controls_wrap a{color:#ffffff} .scheme_dark .sc_item_subtitle{color:#e5631b}.scheme_dark .sc_item_title:after{background-color:#ffffff}.scheme_dark .sc_item_button>a:before{color:#ffffff;	background-color:#ffffff}.scheme_dark .sc_item_button>a:hover:before{color:#00a5ea}.scheme_dark body table.booked-calendar thead th .monthName,.scheme_dark body table.booked-calendar thead th .monthName a{color:#0a1f54}.scheme_dark body table.booked-calendar thead th .monthName a:hover{color:#00a5ea}.scheme_dark body table.booked-calendar thead th .page-right,.scheme_dark body table.booked-calendar thead th .page-left{color:#00a5ea !important}.scheme_dark body table.booked-calendar td .date{background-color:#ffffff}.scheme_dark body table.booked-calendar .booked-appt-list .timeslot .timeslot-people button:hover{background-color:#0a1f54 !important}.scheme_dark .wpcf7-form-control-wrap .select_container:after{color:#aaaaaa}.scheme_dark .cff-container-field label,.scheme_dark .cff-number-field label,.scheme_dark .cff-dropdown-field label,.scheme_dark .cff-date-field label,.scheme_dark .calculated-result .field[type="text"],.scheme_dark .cff-calculated-field label{color:#0a1f54}.scheme_dark .wp-block-button:not(.is-style-outline) .wp-block-button__link{color:#00a5ea}.scheme_dark .wp-block-button:not(.is-style-outline) .wp-block-button__link:hover{color:#00a5ea}.scheme_dark .is-style-outline>.wp-block-button__link:not(.has-text-color),.scheme_dark .wp-block-button__link.is-style-outline:not(.has-text-color){color:#00a5ea}.scheme_dark .is-style-outline>.wp-block-button__link:not(.has-text-color):hover,.scheme_dark .wp-block-button__link.is-style-outline:not(.has-text-color):hover{color:#00a5ea}.scheme_dark .wp-block-audio .mejs-container .mejs-controls .mejs-time{color:#00a5ea}.scheme_dark body .booked-modal input[type=submit].button-primary:hover{color:#00a5ea}